.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.88rem; color: var(--text-tertiary); margin-bottom: 16px; }
.breadcrumb a { color: var(--navy); text-decoration: none; font-weight: 500; transition: color var(--transition-fast); }
.breadcrumb a:hover { color: var(--gold-700); }
.breadcrumb .separator { color: var(--text-tertiary); }

.entity-header { display: flex; align-items: center; gap: 20px; background: var(--bg-elevated); border: 1px solid var(--stone); border-top: 2px solid var(--gold); border-radius: var(--radius-lg); padding: 28px 32px; margin-bottom: 24px; box-shadow: var(--shadow-sm); }
.entity-icon { width: 80px; height: 80px; display: flex; align-items: center; justify-content: center; background: var(--gold-100); color: var(--gold-700); border-radius: var(--radius-lg); flex-shrink: 0; }
.entity-image { width: 120px; height: 120px; object-fit: cover; border-radius: var(--radius-lg); flex-shrink: 0; border: 2px solid var(--gold-300); }
.entity-info { flex: 1; min-width: 0; }
.entity-info h1 { font-size: 1.8rem; font-weight: 800; color: var(--navy-900); margin-bottom: 12px; line-height: 1.3; }
.entity-description { font-size: 0.92rem; color: var(--text-secondary); margin-bottom: 12px; line-height: 1.6; }
.entity-meta { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }

@media (max-width: 600px) {
  .entity-header { flex-direction: column; text-align: center; padding: 24px 20px; }
  .entity-info h1 { font-size: 1.4rem; }
  .entity-meta { justify-content: center; }
}

.reviews-section { background: var(--bg-elevated); border-radius: var(--radius-lg); border: 1px solid var(--stone); padding: 28px; box-shadow: var(--shadow-sm); }
.reviews-list { display: flex; flex-direction: column; gap: 16px; }
.review-item { padding: 16px; background: var(--marble-light); border-radius: var(--radius-sm); border-right: 3px solid var(--gold-300); }
.review-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; flex-wrap: wrap; gap: 8px; }
.review-stars { color: var(--gold); font-size: 1.1rem; letter-spacing: 2px; margin-left: 8px; }
.review-name { font-weight: 700; color: var(--navy-800); font-size: 0.95rem; }
.review-date { font-size: 0.78rem; color: var(--text-tertiary); }
.review-comment { color: var(--text-primary); line-height: 1.7; font-size: 0.95rem; margin: 0; }
.review-form-card { background: var(--marble); border-radius: var(--radius-md); padding: 20px; border: 1px solid var(--stone); }

.star-rating { display: flex; gap: 4px; font-size: 2rem; cursor: pointer; user-select: none; }
.star-rating .star { color: var(--stone); transition: color var(--transition-fast); cursor: pointer; }
.star-rating .star.active,
.star-rating .star:hover { color: var(--gold); }

.entity-image { width: 80px; height: 80px; object-fit: cover; border-radius: var(--radius-lg); flex-shrink: 0; }
