/* ============================================================
   MARIACHI ROYAL — STORE & GROUPS SHOWROOM STYLES
   Aesthetics: Luxury Imperial Clean White & Apple Minimalist
   100% Light Mode / White Background Design
   ============================================================ */

/* Tokens & Variables */
:root {
  --royal-red: #C8102E;
  --royal-red-dark: #9E0B22;
  --royal-gold: #C9A84C;
  --royal-gold-light: #E5C97A;
  --royal-gold-soft: rgba(201, 168, 76, 0.12);
  --royal-dark: #1d1d1f;
  --royal-gray: #86868b;
  --royal-light-gray: #f5f5f7;
  --royal-border: #e5e5e7;
  --royal-white: #FFFFFF;
  --royal-shadow-sm: 0 4px 12px rgba(0,0,0,0.04);
  --royal-shadow-md: 0 10px 30px rgba(0,0,0,0.06);
  --royal-shadow-lg: 0 20px 45px rgba(0,0,0,0.08);
  --royal-radius-sm: 12px;
  --royal-radius-md: 18px;
  --royal-radius-lg: 26px;
  --royal-transition: 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  --royal-font-head: 'Playfair Display', Georgia, serif;
  --royal-font-body: 'Inter', system-ui, -apple-system, sans-serif;
}

/* Base Utility & Structure */
.groups-hero {
  background: var(--royal-white);
  color: var(--royal-dark);
  padding: 120px 0 60px;
  text-align: center;
  position: relative;
  border-bottom: 1px solid var(--royal-border);
}

.groups-hero .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200, 16, 46, 0.06);
  border: 1px solid rgba(200, 16, 46, 0.18);
  color: var(--royal-red);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.groups-hero h1 {
  font-family: var(--royal-font-head);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--royal-dark);
  letter-spacing: -0.02em;
}

.groups-hero h1 span {
  color: var(--royal-red);
  font-style: italic;
}

.groups-hero p {
  font-size: 1.1rem;
  color: var(--royal-gray);
  max-width: 680px;
  margin: 0 auto 10px;
  line-height: 1.6;
}

/* Store Filter & Search Bar */
.filter-bar-container {
  max-width: 1120px;
  margin: 40px auto 40px;
  padding: 0 24px;
  position: relative;
  z-index: 10;
}

.filter-bar {
  background: var(--royal-white);
  border-radius: var(--royal-radius-md);
  padding: 16px 20px;
  box-shadow: var(--royal-shadow-md);
  border: 1px solid var(--royal-border);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.search-box {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--royal-light-gray);
  padding: 12px 20px;
  border-radius: 50px;
  flex: 1;
  min-width: 260px;
  border: 1px solid var(--royal-border);
  transition: var(--royal-transition);
}

.search-box:focus-within {
  border-color: var(--royal-red);
  background: var(--royal-white);
  box-shadow: 0 0 0 3px rgba(200, 16, 46, 0.1);
}

.search-box input {
  border: none;
  background: transparent;
  outline: none;
  font-family: var(--royal-font-body);
  font-size: 0.92rem;
  color: var(--royal-dark);
  width: 100%;
}

.filter-pills {
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 2px;
}

.pill-btn {
  background: var(--royal-light-gray);
  border: 1px solid var(--royal-border);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--royal-dark);
  cursor: pointer;
  white-space: nowrap;
  transition: var(--royal-transition);
}

.pill-btn:hover {
  background: #ebebee;
  border-color: #d1d1d6;
}

.pill-btn.active {
  background: var(--royal-red);
  color: var(--royal-white);
  border-color: var(--royal-red);
  box-shadow: 0 4px 12px rgba(200, 16, 46, 0.25);
}

/* Groups Grid (Store Layout) */
.groups-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
  max-width: 1120px;
  margin: 0 auto 80px;
  padding: 0 24px;
}

/* Group Card */
.group-card {
  background: var(--royal-white);
  border-radius: var(--royal-radius-md);
  border: 1px solid var(--royal-border);
  overflow: hidden;
  box-shadow: var(--royal-shadow-sm);
  transition: var(--royal-transition);
  display: flex;
  flex-direction: column;
  position: relative;
}

.group-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--royal-shadow-lg);
  border-color: var(--royal-red);
}

.card-media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--royal-light-gray);
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.group-card:hover .card-media img {
  transform: scale(1.06);
}

.media-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--royal-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 5px 12px;
  border-radius: 50px;
  backdrop-filter: blur(10px);
  border: 1px solid var(--royal-border);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  display: flex;
  align-items: center;
  gap: 6px;
}

.status-dot-pulse {
  width: 8px;
  height: 8px;
  background: #10B981;
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.2);
}

.card-director-avatar {
  position: absolute;
  bottom: -20px;
  right: 20px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 3px solid var(--royal-white);
  box-shadow: var(--royal-shadow-md);
  overflow: hidden;
  background: var(--royal-light-gray);
  z-index: 2;
}

.card-director-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-body {
  padding: 24px 22px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-zone-tag {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--royal-red);
  margin-bottom: 6px;
}

.card-title {
  font-family: var(--royal-font-head);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--royal-dark);
  margin-bottom: 8px;
  line-height: 1.25;
}

.card-director-text {
  font-size: 0.85rem;
  color: var(--royal-gray);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.card-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  background: var(--royal-light-gray);
  padding: 12px 14px;
  border-radius: var(--royal-radius-sm);
  border: 1px solid var(--royal-border);
  margin-bottom: 20px;
}

.spec-item {
  display: flex;
  flex-direction: column;
}

.spec-label {
  font-size: 0.68rem;
  color: var(--royal-gray);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.spec-value {
  font-size: 0.85rem;
  color: var(--royal-dark);
  font-weight: 700;
  margin-top: 2px;
}

/* Card Rating & Qualification Results Section */
.card-rating-section {
  background: #fbfbfd;
  border: 1px solid rgba(201, 168, 76, 0.22);
  border-radius: var(--royal-radius-sm);
  padding: 10px 12px;
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: var(--royal-transition);
}

.group-card:hover .card-rating-section {
  border-color: rgba(201, 168, 76, 0.45);
  background: #fefdf9;
  box-shadow: 0 2px 8px rgba(201, 168, 76, 0.08);
}

.rating-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.rating-score-badge {
  display: flex;
  align-items: center;
  gap: 5px;
}

.rating-num {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--royal-dark);
  line-height: 1;
}

.rating-stars {
  display: flex;
  align-items: center;
  gap: 1.5px;
}

.rating-badge-text {
  font-size: 0.68rem;
  font-weight: 700;
  color: #059669;
  background: rgba(16, 185, 129, 0.1);
  padding: 2px 6px;
  border-radius: 4px;
  letter-spacing: 0.02em;
}

.rating-count-pill {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--royal-gray);
  background: var(--royal-white);
  padding: 2px 8px;
  border-radius: 50px;
  border: 1px solid var(--royal-border);
  white-space: nowrap;
}

.rating-metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  padding-top: 6px;
  border-top: 1px dashed rgba(0, 0, 0, 0.08);
}

.rating-metric-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--royal-white);
  padding: 4px 4px;
  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.rating-metric-item .m-label {
  font-size: 0.62rem;
  color: var(--royal-gray);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.rating-metric-item .m-val {
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--royal-dark);
  margin-top: 1px;
}

.rating-metric-item .m-val.m-highlight {
  color: #059669;
}

.card-footer-actions {
  margin-top: auto;
  display: flex;
  gap: 10px;
}

.card-footer-actions .btn-detail {
  flex: 1;
  background: var(--royal-white);
  border: 1.5px solid var(--royal-dark);
  color: var(--royal-dark);
  padding: 10px 14px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
  transition: var(--royal-transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-decoration: none;
}

.card-footer-actions .btn-detail:hover {
  background: var(--royal-dark);
  color: var(--royal-white);
}

.card-footer-actions .btn-book {
  flex: 1;
  background: var(--royal-red);
  border: 1.5px solid var(--royal-red);
  color: var(--royal-white);
  padding: 10px 14px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
  transition: var(--royal-transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-decoration: none;
}

.card-footer-actions .btn-book:hover {
  background: var(--royal-red-dark);
  border-color: var(--royal-red-dark);
}

/* ============================================================
   SINGLE GROUP PROFILE LANDING PAGE STYLES (CLEAN WHITE)
   ============================================================ */

.group-profile-header {
  background: var(--royal-white);
  color: var(--royal-dark);
  padding: 110px 0 50px;
  position: relative;
  border-bottom: 1px solid var(--royal-border);
}

.profile-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--royal-gray);
  margin-bottom: 24px;
}

.profile-breadcrumb a {
  color: var(--royal-dark);
  font-weight: 500;
  transition: color 0.2s;
  text-decoration: none;
}

.profile-breadcrumb a:hover {
  color: var(--royal-red);
}

.profile-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.profile-hero-info .official-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200, 16, 46, 0.06);
  border: 1px solid rgba(200, 16, 46, 0.2);
  color: var(--royal-red);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.profile-hero-info h1 {
  font-family: var(--royal-font-head);
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--royal-dark);
  margin-bottom: 16px;
}

.profile-hero-info .director-lead {
  font-size: 1.1rem;
  color: var(--royal-gray);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.director-lead-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--royal-border);
  box-shadow: var(--royal-shadow-sm);
  object-fit: cover;
}

.profile-quick-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 30px;
}

.p-stat-box {
  background: var(--royal-light-gray);
  border: 1px solid var(--royal-border);
  padding: 12px 20px;
  border-radius: var(--royal-radius-sm);
}

.p-stat-box .num {
  font-family: var(--royal-font-head);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--royal-red);
  line-height: 1;
}

.p-stat-box .lbl {
  font-size: 0.72rem;
  color: var(--royal-gray);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 4px;
  font-weight: 600;
}

.profile-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.profile-hero-actions .btn-main-reserve {
  background: var(--royal-red);
  color: var(--royal-white);
  font-weight: 700;
  padding: 15px 32px;
  border-radius: 50px;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 24px rgba(200, 16, 46, 0.25);
  transition: var(--royal-transition);
  text-decoration: none;
}

.profile-hero-actions .btn-main-reserve:hover {
  background: var(--royal-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(200, 16, 46, 0.35);
}

.profile-hero-actions .btn-wp-chat {
  background: #25D366;
  color: var(--royal-white);
  font-weight: 700;
  padding: 15px 28px;
  border-radius: 50px;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--royal-transition);
  text-decoration: none;
}

.profile-hero-actions .btn-wp-chat:hover {
  background: #1eb956;
  transform: translateY(-2px);
}

.profile-hero-media-card {
  background: var(--royal-light-gray);
  border: 1px solid var(--royal-border);
  border-radius: var(--royal-radius-md);
  overflow: hidden;
  box-shadow: var(--royal-shadow-md);
  position: relative;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.profile-hero-media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
}

.director-lead-avatar-wrap {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--royal-gold);
  background: var(--royal-light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.director-lead-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.director-lead-initials {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--royal-red), #9E0B22);
  color: #fff;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

.hero-media-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(145deg, #fdfbfb, #f5f5f7);
  padding: 30px;
  text-align: center;
}

.hero-media-placeholder .ph-title {
  font-family: var(--royal-font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--royal-dark);
}

.hero-media-placeholder .ph-sub {
  font-size: 0.8rem;
  color: var(--royal-gray);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.card-director-initials {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--royal-red), #9E0B22);
  color: #fff;
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}

.card-media-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(145deg, #fafafa, #f0f0f2);
  padding: 20px;
  text-align: center;
}

.card-media-placeholder span {
  font-family: var(--royal-font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--royal-dark);
}

/* Gallery & Video Section */
.profile-media-section {
  padding: 80px 0;
  background: var(--royal-white);
}

.profile-section-title {
  text-align: center;
  margin-bottom: 50px;
}

.profile-section-title h2 {
  font-family: var(--royal-font-head);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--royal-dark);
  margin-bottom: 12px;
}

.profile-section-title h2 span {
  color: var(--royal-red);
  font-style: italic;
}

.profile-section-title p {
  color: var(--royal-gray);
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.gallery-item {
  border-radius: var(--royal-radius-md);
  overflow: hidden;
  position: relative;
  aspect-ratio: 16 / 10;
  background: var(--royal-light-gray);
  cursor: pointer;
  box-shadow: var(--royal-shadow-sm);
  border: 1px solid var(--royal-border);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  color: var(--royal-white);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* Video Showcase Box (Pure Clean White Layout) */
.video-showcase-box {
  background: var(--royal-light-gray);
  border-radius: var(--royal-radius-lg);
  padding: 30px;
  border: 1px solid var(--royal-border);
  margin: 40px auto 0;
  max-width: 900px;
  box-shadow: var(--royal-shadow-md);
}

.video-responsive-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  border-radius: var(--royal-radius-md);
  border: 1px solid var(--royal-border);
}

.video-responsive-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Features & Guarantee Badges */
.guarantee-strip {
  background: var(--royal-light-gray);
  border-top: 1px solid var(--royal-border);
  border-bottom: 1px solid var(--royal-border);
  padding: 60px 0;
}

.guarantee-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.g-card {
  background: var(--royal-white);
  padding: 26px;
  border-radius: var(--royal-radius-md);
  border: 1px solid var(--royal-border);
  box-shadow: var(--royal-shadow-sm);
  text-align: center;
}

.g-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: rgba(200, 16, 46, 0.08);
  color: var(--royal-red);
  display: flex;
  align-items: center;
  justify-content: center;
}

.g-card h3 {
  font-family: var(--royal-font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--royal-dark);
  margin-bottom: 8px;
}

.g-card p {
  font-size: 0.85rem;
  color: var(--royal-gray);
  line-height: 1.5;
}

/* Lightbox Modal */
.royal-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  backdrop-filter: blur(10px);
}

.royal-lightbox.active {
  display: flex;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 85vh;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 85vh;
  border-radius: var(--royal-radius-md);
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.lightbox-close {
  position: absolute;
  top: -45px;
  right: 0;
  color: var(--royal-white);
  background: rgba(255,255,255,0.2);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
}

.lightbox-close:hover {
  background: var(--royal-red);
}

/* ============================================================
   CLIENT REVIEWS SECTION ("LO QUE NUESTROS CLIENTES DICEN")
   ============================================================ */

.profile-reviews-section {
  padding: 80px 0;
  background: var(--royal-white);
  border-top: 1px solid var(--royal-border);
  border-bottom: 1px solid var(--royal-border);
}

.reviews-summary-bar {
  background: #fbfbfd;
  border: 1px solid var(--royal-border);
  border-radius: var(--royal-radius-md);
  padding: 18px 24px;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.reviews-summary-score {
  display: flex;
  align-items: center;
  gap: 12px;
}

.summary-score-num {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--royal-dark);
  line-height: 1;
}

.summary-score-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.summary-stars {
  display: flex;
  align-items: center;
  gap: 2px;
  color: var(--royal-gold);
}

.summary-reviews-count {
  font-size: 0.78rem;
  color: var(--royal-gray);
  font-weight: 600;
}

.reviews-summary-metrics {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.summary-metric-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--royal-white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--royal-dark);
}

.summary-metric-badge svg {
  color: #059669;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.review-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--royal-radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  transition: var(--royal-transition);
  position: relative;
  box-shadow: var(--royal-shadow-sm);
}

.review-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--royal-shadow-md);
  border-color: rgba(201, 168, 76, 0.4);
}

.review-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.review-author-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--royal-red) 0%, #7e081c 100%);
  color: var(--royal-white);
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(200, 16, 46, 0.2);
}

.review-author-name {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--royal-dark);
  display: flex;
  align-items: center;
  gap: 6px;
}

.review-verified-pill {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 0.65rem;
  color: #059669;
  background: rgba(16, 185, 129, 0.1);
  padding: 1px 6px;
  border-radius: 50px;
  font-weight: 700;
}

.review-event-meta {
  font-size: 0.74rem;
  color: var(--royal-gray);
  margin-top: 2px;
}

.review-stars-badge {
  display: flex;
  align-items: center;
  gap: 2px;
  color: var(--royal-gold);
}

/* 3 Official Criteria Answers from Client App */
.review-criteria-box {
  background: #fbfbfd;
  border: 1px solid var(--royal-border);
  border-radius: var(--royal-radius-sm);
  padding: 12px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.review-criterion-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 3px;
}

.review-criterion-label {
  font-size: 0.64rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--royal-gray);
  font-weight: 700;
  white-space: nowrap;
}

.review-criterion-status {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #059669;
  background: rgba(5, 150, 105, 0.08);
  padding: 2px 6px;
  border-radius: 4px;
  white-space: nowrap;
}

.review-comment {
  font-size: 0.88rem;
  color: #374151;
  line-height: 1.55;
  font-style: italic;
  position: relative;
  padding-left: 14px;
  border-left: 3px solid var(--royal-red);
}

.review-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.72rem;
  color: var(--royal-gray);
  padding-top: 10px;
  border-top: 1px dashed rgba(0, 0, 0, 0.06);
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .profile-hero-grid {
    grid-template-columns: 1fr;
  }
  .filter-bar {
    flex-direction: column;
    align-items: stretch;
  }
  .reviews-summary-bar {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .groups-grid {
    grid-template-columns: 1fr;
  }
  .profile-hero-actions {
    flex-direction: column;
  }
  .profile-hero-actions .btn-main-reserve,
  .profile-hero-actions .btn-wp-chat {
    width: 100%;
    justify-content: center;
  }
  .review-criteria-box {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .review-criterion-item {
    flex-direction: row;
    justify-content: space-between;
  }
}
