/* =========================================================
   SALLE.PHP — Page Detail Salle
   Premium Booking UI — MASALLE.AFRICA
   v2.0 — Enhanced UI/UX Design
   ========================================================= */

/* ===== SCROLL-REVEAL ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(139, 195, 74, 0.3); }
  50% { box-shadow: 0 0 0 8px rgba(139, 195, 74, 0); }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(.22,1,.36,1), transform 0.6s cubic-bezier(.22,1,.36,1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered children reveal */
.reveal-children > * {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s cubic-bezier(.22,1,.36,1), transform 0.5s cubic-bezier(.22,1,.36,1);
}

.reveal-children.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}
.reveal-children.is-visible > *:nth-child(1) { transition-delay: 0s; }
.reveal-children.is-visible > *:nth-child(2) { transition-delay: 0.05s; }
.reveal-children.is-visible > *:nth-child(3) { transition-delay: 0.05s; }
.reveal-children.is-visible > *:nth-child(4) { transition-delay: 0.1s; }
.reveal-children.is-visible > *:nth-child(5) { transition-delay: 0.1s; }
.reveal-children.is-visible > *:nth-child(6) { transition-delay: 0.15s; }
.reveal-children.is-visible > *:nth-child(n+7) { transition-delay: 0.2s; }

/* ===== UNIFIED WHITE CARD (hero + content + sidebar) ===== */
.room-page-card {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: 0 4px 32px rgba(0,0,0,0.06);
  margin-top: var(--space-sm);
}

/* overflow: clip uniquement sur le hero pour les coins arrondis,
   sans casser le position: sticky du sidebar */
.room-page-card > .hero-mosaic {
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

/* ===== HERO MOSAIC GALLERY ===== */
.hero-mosaic {
  position: relative;
}

.hero-mosaic__grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4px;
  height: 460px;
}

.hero-mosaic__main {
  position: relative;
  cursor: pointer;
  overflow: hidden;
}

.hero-mosaic__main--empty {
  background: var(--bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-mosaic__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(.25,.46,.45,.94);
  display: block;
}

.hero-mosaic__main:hover .hero-mosaic__img {
  transform: scale(1.04);
}

.hero-mosaic__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 20px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, transparent 35%, transparent 65%, rgba(0,0,0,0.1) 100%);
}

.hero-mosaic__badge {
  pointer-events: auto;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #fff;
  padding: 7px 16px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  animation: fadeIn 0.6s ease-out 0.3s both;
}

.hero-mosaic__badge--featured {
  background: var(--primary, #8BC34A);
  box-shadow: 0 4px 12px rgba(139, 195, 74, 0.35);
}

.hero-mosaic__badge--verified {
  background: rgba(5, 150, 105, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* Verified badge inline with title */
.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  background: #d1fae5;
  color: #059669;
  vertical-align: middle;
  margin-left: 8px;
}

.hero-mosaic__fav {
  pointer-events: auto;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  color: #6b7280;
  transition: all 0.3s cubic-bezier(.22,1,.36,1);
  box-shadow: 0 2px 12px rgba(0,0,0,0.12);
}

.hero-mosaic__fav:hover {
  background: #fff;
  transform: scale(1.12);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.hero-mosaic__fav:active {
  transform: scale(0.95);
}

.hero-mosaic__fav.is-favorite {
  color: #ef4444;
  background: #fff;
}

.hero-mosaic__fav.is-favorite svg {
  fill: #ef4444;
  stroke: #ef4444;
}

.hero-mosaic__side {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 4px;
  min-height: 0;
  overflow: hidden;
}

.hero-mosaic__thumb {
  overflow: hidden;
  cursor: pointer;
  position: relative;
  min-height: 0;
}

.hero-mosaic__thumb .hero-mosaic__img {
  transition: transform 0.5s cubic-bezier(.25,.46,.45,.94);
}

.hero-mosaic__thumb:hover .hero-mosaic__img {
  transform: scale(1.08);
}

/* Subtle overlay on thumb hover */
.hero-mosaic__thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: background 0.3s;
  pointer-events: none;
}

.hero-mosaic__thumb:hover::after {
  background: rgba(0,0,0,0.08);
}

.hero-mosaic__more {
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: none;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s;
  min-height: 0;
}

.hero-mosaic__more:hover {
  background: rgba(0,0,0,0.7);
}

.hero-mosaic__more svg {
  opacity: 0.7;
  transition: transform 0.3s, opacity 0.3s;
}

.hero-mosaic__more:hover svg {
  opacity: 1;
  transform: scale(1.1);
}

/* ===== LAYOUT inside card ===== */
.room-page-card .room-detail__layout {
  padding: var(--space-xl);
  padding-top: var(--space-lg);
}

/* Override base styles on main — card is the wrapper now */
.room-page-card .room-detail__main {
  background: transparent !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
}

/* ===== ROOM HEADER ===== */
.room-header {
  padding: var(--space-xl) 0 var(--space-lg);
  border-bottom: 1px solid var(--border);
  margin-bottom: var(--space-lg);
  animation: fadeInUp 0.5s ease-out;
}

.room-header__badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.room-header__rating {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #fef9c3;
  color: #92400e;
  padding: 5px 12px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  transition: transform 0.2s;
}

.room-header__rating:hover {
  transform: scale(1.02);
}

.room-header__rating svg {
  color: #f59e0b;
}

.room-header__rating span {
  color: #a8a29e;
  font-weight: 400;
}

.room-header__location {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.88rem;
  color: var(--muted);
}

.room-header__views {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.82rem;
  color: var(--muted);
  opacity: 0.7;
}

.room-header__title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
  letter-spacing: -0.03em;
}

/* ===== TYPE BADGE (under title) ===== */
.room-header__type {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  padding: 5px 14px;
  background: var(--primary-50);
  color: var(--primary-800);
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 500;
  border: 1px solid var(--primary-100);
}

.room-header__type svg {
  color: var(--primary);
}

/* ===== KEY FEATURES STRIP ===== */
.key-features {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 16px 24px;
  background: linear-gradient(135deg, var(--bg-cream, #f8fdf4), #f0f8e8);
  border: 1px solid var(--border);
  border-radius: 14px;
  margin-bottom: var(--space-lg);
  animation: fadeInUp 0.5s ease-out 0.1s both;
}

.key-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  justify-content: center;
  font-size: 0.88rem;
  color: var(--text-secondary);
  white-space: nowrap;
  transition: transform 0.2s;
}

.key-feature:hover {
  transform: translateY(-1px);
}

.key-feature svg {
  color: var(--primary);
  flex-shrink: 0;
  transition: transform 0.3s;
}

.key-feature:hover svg {
  transform: scale(1.15);
}

.key-feature strong {
  color: var(--text);
  font-weight: 700;
}

.key-feature__sep {
  width: 1px;
  height: 32px;
  background: var(--border);
  flex-shrink: 0;
  margin: 0 4px;
}

/* ===== SECTION NAV (sticky) ===== */
.section-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 0 var(--space-md);
}

.section-nav::-webkit-scrollbar {
  display: none;
}

.section-nav__link {
  position: relative;
  padding: 14px 18px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--muted);
  white-space: nowrap;
  transition: color 0.2s;
  text-decoration: none;
}

.section-nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2.5px;
  background: var(--primary);
  border-radius: 2px 2px 0 0;
  transition: width 0.3s cubic-bezier(.22,1,.36,1), left 0.3s cubic-bezier(.22,1,.36,1);
}

.section-nav__link:hover {
  color: var(--text);
}

.section-nav__link--active {
  color: var(--primary-800);
  font-weight: 600;
}

.section-nav__link--active::after {
  width: 100%;
  left: 0;
}

/* ===== DETAIL SECTIONS ===== */
/* Consistent spacing: 28px top padding, 24px bottom, thin border */
.detail-section {
  scroll-margin-top: 80px;
  padding: 28px 0 24px;
  border-bottom: 1px solid var(--border);
}

.detail-section:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}

.detail-section__title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 20px;
}

.detail-section__title svg {
  flex-shrink: 0;
}

.detail-section__subtitle {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-top: 20px;
  margin-bottom: 12px;
}

.detail-section__text {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-secondary);
}

/* ===== DESCRIPTION TOGGLE ===== */
.detail-section__text.is-collapsed {
  max-height: 120px;
  overflow: hidden;
  position: relative;
}

.detail-section__text.is-collapsed::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(transparent, #fff);
  pointer-events: none;
}

.description-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  padding: 6px 14px;
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--primary-700);
  cursor: pointer;
  transition: all 0.2s;
}

.description-toggle:hover {
  background: var(--primary-50);
  border-color: var(--primary);
}

.description-toggle.is-expanded svg {
  transform: rotate(180deg);
}

.description-toggle svg {
  transition: transform 0.3s;
}

/* ===== IDEAL STRIP (above section nav) ===== */
.ideal-strip {
  padding: 14px 0 0;
}

/* ===== IDEAL FOR TAGS ===== */
.ideal-for {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ideal-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  background: var(--primary-50);
  color: var(--primary-800);
  font-size: 0.85rem;
  font-weight: 500;
  border-radius: 10px;
  border: 1px solid var(--primary-100);
  transition: all 0.2s;
}

.ideal-tag:hover {
  background: var(--primary-100);
  transform: translateY(-1px);
}

/* ===== CAPACITY TABLE ===== */
.capacity-table {
  background: var(--bg-cream);
  border-radius: 14px;
  margin-top: var(--space-md);
  overflow: hidden;
  border: 1px solid var(--border);
}

.capacity-table__header {
  display: grid;
  grid-template-columns: 2fr 1fr;
  padding: 12px 20px;
  background: var(--primary-50);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary-800);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.capacity-table__row {
  display: grid;
  grid-template-columns: 2fr 1fr;
  padding: 12px 20px;
  background: #fff;
  border-top: 1px solid var(--border);
  font-size: 0.92rem;
  transition: background 0.2s;
}

.capacity-table__row:hover {
  background: var(--bg-cream);
}

.capacity-table__cell {
  display: flex;
  align-items: center;
}

.capacity-table__cell--label {
  font-weight: 500;
  color: var(--text);
  gap: 12px;
}

.capacity-table__icon {
  width: 36px;
  height: 26px;
  flex-shrink: 0;
  object-fit: contain;
  opacity: 0.75;
}

.capacity-table__cell:last-child {
  color: var(--text-secondary);
  font-weight: 600;
}

/* ===== PRICING CARDS ===== */
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.pricing-card {
  position: relative;
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 24px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: all 0.3s cubic-bezier(.22,1,.36,1);
}

.pricing-card:hover {
  border-color: var(--primary-300);
  box-shadow: 0 8px 32px rgba(139,195,74,0.12);
  transform: translateY(-4px);
}

.pricing-card--featured {
  border-color: var(--primary);
  background: linear-gradient(135deg, var(--primary-50), #fff);
  box-shadow: 0 4px 20px rgba(139,195,74,0.1);
}

.pricing-card--featured:hover {
  box-shadow: 0 12px 40px rgba(139,195,74,0.18);
}

.pricing-card__popular {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 4px 14px;
  border-radius: 10px;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(139,195,74,0.3);
}

.pricing-card__icon {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: var(--primary-50);
  color: var(--primary-700);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
}

.pricing-card:hover .pricing-card__icon {
  transform: scale(1.08);
}

.pricing-card--featured .pricing-card__icon {
  background: var(--primary-100);
}

.pricing-card__label {
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 500;
}

.pricing-card__amount {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
}

.pricing-card__currency {
  font-size: 0.78rem;
  color: var(--muted);
}

/* ===== PRICING NOTE ===== */
.pricing-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 16px;
  background: var(--primary-50);
  border-radius: 12px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
  border: 1px solid var(--primary-100);
}

.pricing-note svg {
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 1px;
}

/* ===== AMENITIES SECTION ===== */
/* Override style.css grid columns — single group takes full width */
.room-page-card .amenities-grid {
  display: block;
}

.room-page-card .amenity-group__title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: var(--space-md);
}

.room-page-card .amenity-group__title svg {
  color: var(--primary);
}

/* Override style.css flex column — use grid for 2-col layout */
.room-page-card .amenity-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.room-page-card .amenity-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-secondary);
  padding: 10px 14px;
  background: var(--bg-cream);
  border-radius: 10px;
  border: 1px solid transparent;
  transition: all 0.2s;
}

.room-page-card .amenity-item:hover {
  background: var(--primary-50);
  border-color: var(--primary-100);
  transform: translateX(2px);
}

.room-page-card .amenity-item--included svg {
  color: var(--primary);
  flex-shrink: 0;
}

/* ===== LOCATION SECTION ===== */
.room-page-card .location-map {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: var(--space-lg);
  border: 1px solid var(--border);
}

.room-page-card .location-map iframe {
  border-radius: 16px;
  display: block;
}

.room-page-card .location-map__placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 60px 20px;
  background: linear-gradient(135deg, var(--bg-cream), var(--bg-soft));
  color: var(--muted);
  font-size: 0.9rem;
}

/* Override style.css 3-col grid — address takes full width */
.room-page-card .location-details {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  padding: 0;
}

.room-page-card .location-address {
  padding: 18px 22px;
  background: var(--bg-cream);
  border-radius: 12px;
  border: 1px solid var(--border);
}

.room-page-card .location-address h3 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.room-page-card .location-address p {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--text-secondary);
}

/* ===== RULES SECTION ===== */
/* Override style.css 2-col grid — single card should be full width */
.room-page-card .rules-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin-bottom: 0;
}

.room-page-card .rule-card {
  padding: 20px 24px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: #fff;
}

.rule-card--allowed {
  border-left: 4px solid var(--primary);
  background: linear-gradient(135deg, var(--primary-50) 0%, #fff 100%);
}

.rule-card h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.rule-card--allowed h3 {
  color: var(--primary-800);
}

.rule-card--allowed h3 svg {
  color: var(--primary);
}

.rule-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.rule-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 6px 0;
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.rule-card ul li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary-300);
  flex-shrink: 0;
  margin-top: 7px;
}

/* ===== COMPACT CALENDAR PICKER ===== */
.cal-picker {
  background: var(--bg-cream);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px;
  margin-top: 16px;
  margin-bottom: 10px;
}

.cal-picker__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.cal-picker__month {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text);
  text-transform: capitalize;
}

.cal-picker__nav {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: #fff;
  color: var(--text);
  transition: all 0.2s;
}

.cal-picker__nav:hover {
  background: var(--primary-50);
  border-color: var(--primary);
  color: var(--primary);
}

.cal-picker__days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-bottom: 2px;
}

.cal-picker__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1px;
}

.cal-day {
  width: 100%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  border-radius: 6px;
  cursor: pointer;
  border: none;
  background: none;
  color: var(--text);
  font-weight: 500;
  transition: all 0.15s;
}

.cal-day:hover:not(.cal-day--disabled):not(.cal-day--empty) {
  background: var(--primary-100);
}

.cal-day--today {
  font-weight: 700;
  box-shadow: inset 0 0 0 1.5px var(--primary);
}

.cal-day--disabled { color: #d1d5db; cursor: default; }
.cal-day--empty { cursor: default; }

.cal-day--start {
  background: var(--primary) !important;
  color: #fff !important;
  border-radius: 6px 0 0 6px;
  font-weight: 700;
}

.cal-day--end {
  background: var(--primary) !important;
  color: #fff !important;
  border-radius: 0 6px 6px 0;
  font-weight: 700;
}

.cal-day--start.cal-day--end {
  border-radius: 6px;
}

.cal-day--range {
  background: var(--primary-100) !important;
  color: var(--primary-900) !important;
  border-radius: 0;
}

.cal-picker__selection {
  text-align: center;
  padding-top: 8px;
  border-top: 1px solid var(--border);
  margin-top: 6px;
}

.cal-picker__hint {
  font-size: 0.72rem;
  color: var(--muted);
}

.cal-picker__dates {
  font-size: 0.78rem;
  color: var(--primary-700);
  font-weight: 600;
}

/* ===== COMPACT BOOKING CARD ===== */
.booking-card--compact {
  padding: 0;
}

.booking-card--compact .booking-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px 12px;
}

.booking-card__fav-mini {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--muted);
  transition: all 0.25s;
  flex-shrink: 0;
}

.booking-card__fav-mini:hover {
  border-color: #fca5a5;
  color: #ef4444;
  background: #fef2f2;
}

.booking-card__fav-mini.is-favorite {
  color: #ef4444;
  border-color: #fecaca;
  background: #fef2f2;
}

.booking-card__fav-mini.is-favorite svg {
  fill: #ef4444;
  stroke: #ef4444;
}

/* --- Compact Form --- */
.booking-form--compact {
  padding: 0 20px 16px;
}

.booking-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 8px;
}

.booking-form__row--3col {
  grid-template-columns: 1fr 1fr 1fr;
}

.booking-form__field {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.booking-form__label {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.booking-form__input {
  width: 100%;
  padding: 9px 10px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.82rem;
  color: var(--text);
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
  appearance: none;
}

.booking-form__input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(139,195,74,0.12);
}

.booking-form__input::placeholder {
  color: var(--muted);
}

/* Select custom styling */
select.booking-form__input {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%239ca3af' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  padding-right: 28px;
}

/* --- Inline Estimate --- */
.booking-estimate {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--primary-50);
  border: 1px solid var(--primary-100);
  border-radius: 8px;
  padding: 10px 12px;
  margin-bottom: 10px;
  animation: scaleIn 0.2s ease-out;
}

.booking-estimate__label {
  font-size: 0.82rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.booking-estimate__total {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--primary-800);
}

/* --- Compact Footer & Trust --- */
.booking-card__footer--compact {
  padding: 12px 20px 16px;
  border-top: 1px solid var(--border);
}

.trust-row {
  display: flex;
  align-items: center;
  gap: 6px;
}

.trust-chip {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 5px 6px;
  background: var(--bg-cream);
  border-radius: 20px;
  font-size: 0.7rem;
  color: var(--muted);
  font-weight: 500;
  white-space: nowrap;
}

.trust-chip svg {
  color: var(--primary);
  flex-shrink: 0;
}

/* ===== BOOKING BUTTON ===== */
.booking-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px;
  background: linear-gradient(135deg, var(--primary), var(--primary-600));
  color: #fff;
  border: none;
  border-radius: 13px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(.22,1,.36,1);
  box-shadow: 0 4px 16px rgba(139,195,74,0.3);
  letter-spacing: 0.01em;
}

.booking-btn:hover {
  background: linear-gradient(135deg, var(--primary-600), var(--primary-700));
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(139,195,74,0.35);
}

.booking-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(139,195,74,0.3);
}

/* ===== BOOKING CARD ===== */
.room-page-card .booking-card {
  border: 1px solid var(--border);
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  background: #fff;
  border-radius: var(--radius-lg);
}

.booking-card__header {
  background: linear-gradient(135deg, var(--bg-cream), #fff);
}

.booking-card__footer {
  padding: 16px var(--space-lg);
  border-top: 1px solid var(--border);
}

.booking-card__fav {
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 16px;
  width: 100%;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.3s;
  margin-bottom: 14px;
}

.booking-card__fav:hover {
  border-color: #fca5a5;
  color: #ef4444;
  background: #fef2f2;
}

.booking-card__fav:active {
  transform: scale(0.97);
}

.booking-card__fav.is-favorite {
  color: #ef4444;
  border-color: #fecaca;
  background: #fef2f2;
}

.booking-card__fav.is-favorite svg {
  fill: #ef4444;
  stroke: #ef4444;
}

.booking-card__steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--muted);
  padding: 8px 0 4px;
}

.booking-step {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.booking-step b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary-100);
  color: var(--primary-800);
  font-size: 0.7rem;
  transition: background 0.3s;
}

.booking-step__arrow {
  color: var(--border-strong);
  font-size: 0.75rem;
}

/* ===== TRUST INDICATORS ===== */
.trust-indicators {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 14px 0;
  border-top: 1px solid var(--border);
  margin-top: 12px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  color: var(--muted);
}

.trust-item svg {
  color: var(--primary);
  flex-shrink: 0;
}

/* ===== PHOTOS GALLERY ===== */
.room-page-card .photos-gallery {
  margin-top: 0;
  padding: 28px 0 24px;
  border-top: 1px solid var(--border);
  scroll-margin-top: 100px;
}

.room-page-card .photos-gallery__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
}

.photos-gallery__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.photos-gallery__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photos-gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  aspect-ratio: 4/3;
}

.photos-gallery__item:first-child {
  grid-column: span 2;
  aspect-ratio: 16/9;
}

.photos-gallery__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.photos-gallery__overlay svg {
  color: #fff;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.3s cubic-bezier(.22,1,.36,1);
}

.photos-gallery__item:hover .photos-gallery__overlay {
  background: rgba(0,0,0,0.35);
}

.photos-gallery__item:hover .photos-gallery__overlay svg {
  opacity: 1;
  transform: scale(1);
}

.photos-gallery__item:hover {
  transform: none;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.96);
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(.22,1,.36,1);
}

.lightbox--open {
  opacity: 1;
  visibility: visible;
}

.lightbox--open .lightbox__img {
  animation: scaleIn 0.3s ease-out;
}

.lightbox__close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255,255,255,0.1);
  border: none;
  color: #fff;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  z-index: 10;
}

.lightbox__close:hover {
  background: rgba(255,255,255,0.25);
  transform: rotate(90deg);
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: none;
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  z-index: 10;
}

.lightbox__nav:hover {
  background: rgba(255,255,255,0.25);
  transform: translateY(-50%) scale(1.1);
}

.lightbox__nav--prev { left: 16px; }
.lightbox__nav--next { right: 16px; }

.lightbox__content {
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox__img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 16px 64px rgba(0,0,0,0.5);
}

.lightbox__counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.8);
  font-size: 13px;
  font-weight: 500;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(8px);
  padding: 7px 16px;
  border-radius: 20px;
  letter-spacing: 1px;
}

/* ===== EXPERT REVIEW ===== */
.expert-review {
  background: linear-gradient(135deg, #f0fdf4, #dcfce7);
  border: 1px solid #bbf7d0;
  border-radius: 18px;
  padding: 24px;
  margin-top: 0;
  border-bottom: none !important;
}

.expert-review__header { margin-bottom: 1rem; }

.expert-review__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #16a34a, #15803d);
  color: #fff;
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(22,163,74,0.2);
}

.expert-review .detail-section__title { color: #166534; margin-bottom: 1rem; }

.expert-review__content {
  background: rgba(255,255,255,0.85);
  border-radius: 14px;
  padding: 1.5rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  backdrop-filter: blur(8px);
}

.expert-review__text { font-size: 0.95rem; line-height: 1.75; color: #374151; }

.expert-review__highlights {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #d1fae5;
}

.expert-review__highlights h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #166534;
  margin-bottom: 1rem;
}

.expert-highlights-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.75rem; }
.expert-highlight-item { display: flex; align-items: center; gap: 10px; font-size: 0.92rem; color: #374151; }
.expert-highlight-item svg { color: #eab308; flex-shrink: 0; }

/* ===== SIMILAR ROOMS ===== */
.room-page-card .similar-rooms {
  margin-top: 0;
  padding: 28px 0 0;
  border-top: 1px solid var(--border);
}

.room-page-card .similar-rooms__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
}

.similar-rooms__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.room-card--small {
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(.22,1,.36,1);
}

.room-card--small:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

/* ===== TOAST NOTIFICATION ===== */
.toast-notification {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: #1f2937;
  color: #fff;
  padding: 14px 22px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 12px 32px rgba(0,0,0,0.25);
  z-index: 99999;
  opacity: 0;
  transition: all 0.4s cubic-bezier(.22,1,.36,1);
  backdrop-filter: blur(12px);
}

.toast-notification--visible { transform: translateX(-50%) translateY(0); opacity: 1; }
.toast-notification--success { background: #059669; }
.toast-notification--error { background: #dc2626; }
.toast-notification--info { background: #3b82f6; }

/* ===== LOGIN MODAL ===== */
.login-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.login-modal--visible { opacity: 1; visibility: visible; }

.login-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(6px);
}

.login-modal__content {
  position: relative;
  background: #fff;
  border-radius: 20px;
  padding: 2.5rem;
  max-width: 400px;
  width: 90%;
  text-align: center;
  box-shadow: 0 24px 64px rgba(0,0,0,0.2);
  transform: scale(0.9) translateY(20px);
  transition: transform 0.4s cubic-bezier(.22,1,.36,1);
}

.login-modal--visible .login-modal__content { transform: scale(1) translateY(0); }

.login-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #6b7280;
  padding: 6px;
  border-radius: 8px;
  transition: all 0.2s;
}

.login-modal__close:hover { background: #f3f4f6; color: #1f2937; }

.login-modal__icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, #fef2f2, #fee2e2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  color: #ef4444;
}

.login-modal__title { font-size: 1.25rem; font-weight: 700; color: #1f2937; margin: 0 0 0.5rem; }
.login-modal__text { font-size: 0.88rem; color: #6b7280; line-height: 1.6; margin: 0 0 1.5rem; }
.login-modal__actions { display: flex; flex-direction: column; gap: 0.75rem; }
.login-modal__actions .btn { width: 100%; justify-content: center; }
.login-modal__actions .btn--outline { background: transparent; border: 1px solid #d1d5db; color: #374151; }
.login-modal__actions .btn--outline:hover { background: #f9fafb; }

/* =========================================================
   MOBILE STICKY BOOKING BAR
   ========================================================= */

.mobile-booking-bar {
  display: none; /* hidden on desktop */
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

/* Tablet */
@media (max-width: 1024px) {
  .room-page-card .amenity-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .similar-rooms__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-mosaic__grid {
    height: 380px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  /* --- Header: compact on mobile --- */
  .header {
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }

  .header__inner {
    height: 56px;
  }

  .logo {
    font-size: 1.25rem;
  }

  /* --- Breadcrumb: hidden on mobile, space saving --- */
  .breadcrumb {
    padding: 8px 0;
  }

  .breadcrumb__list {
    font-size: 0.75rem;
    gap: 4px;
  }

  .breadcrumb__item:not(:last-child)::after {
    margin: 0 2px;
  }

  /* Hide middle breadcrumb items on very small screens */
  .breadcrumb__item:nth-child(2) {
    display: none;
  }

  /* --- Nav Drawer: full-screen, modern --- */
  .nav--open {
    top: 56px;
    padding: 20px 16px;
    background: rgba(250, 253, 247, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
    animation: fadeInUp 0.25s ease-out;
  }

  .nav--open .nav__link {
    padding: 14px 0;
    font-size: 1rem;
    font-weight: 500;
  }

  .nav--open .btn--primary {
    margin-top: 8px;
    padding: 14px;
    border-radius: 14px;
    font-size: 0.92rem;
  }

  /* --- Card: full-width, no border-radius --- */
  .room-page-card {
    border-radius: 0;
    border-left: none;
    border-right: none;
    margin-top: 0;
    box-shadow: none;
  }

  /* --- Hero: swipeable feel, taller image --- */
  .hero-mosaic__grid {
    grid-template-columns: 1fr;
    height: 300px;
  }

  .hero-mosaic__side { display: none; }

  .hero-mosaic__overlay {
    padding: 14px 16px;
  }

  .hero-mosaic__badge {
    padding: 5px 12px;
    font-size: 0.72rem;
  }

  .hero-mosaic__fav {
    width: 38px;
    height: 38px;
  }

  /* --- Layout: comfortable mobile padding --- */
  .room-page-card .room-detail__layout {
    padding: 0 16px 100px; /* 100px bottom for mobile booking bar */
  }

  /* --- Room Header: compact --- */
  .room-header {
    padding: 20px 0 16px;
    margin-bottom: 0;
  }

  .room-header__badges {
    gap: 8px;
    margin-bottom: 10px;
  }

  .room-header__rating {
    padding: 4px 10px;
    font-size: 0.78rem;
  }

  .room-header__location {
    font-size: 0.82rem;
  }

  .room-header__views {
    font-size: 0.78rem;
  }

  .room-header__title {
    font-size: 1.35rem;
    letter-spacing: -0.02em;
  }

  .room-header__type {
    margin-top: 6px;
    padding: 4px 10px;
    font-size: 0.78rem;
  }

  /* --- Key Features: 2x2 grid --- */
  .key-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
    margin-bottom: 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }

  .key-feature {
    flex: none;
    justify-content: flex-start;
    font-size: 0.82rem;
    padding: 12px 14px;
    gap: 8px;
    border-bottom: 1px solid var(--border);
    white-space: normal;
  }

  .key-feature:nth-child(-n+2) {
    border-bottom: 1px solid var(--border);
  }

  .key-feature:nth-last-child(-n+2) {
    border-bottom: none;
  }

  .key-feature:nth-child(odd) {
    border-right: 1px solid var(--border);
  }

  .key-feature svg {
    width: 18px;
    height: 18px;
  }

  .key-feature__sep { display: none; }

  /* --- Section Nav: scrollable tabs --- */
  .section-nav {
    padding: 0;
    margin: 0 -16px;
    top: 0;
    z-index: 51;
  }

  .section-nav__link {
    padding: 12px 14px;
    font-size: 0.8rem;
  }

  /* --- Detail Sections: tighter spacing --- */
  .detail-section {
    padding: 20px 0 16px;
  }

  .detail-section__title {
    font-size: 1.05rem;
    margin-bottom: 14px;
    gap: 8px;
  }

  .detail-section__title svg {
    width: 20px;
    height: 20px;
  }

  .detail-section__subtitle {
    font-size: 0.92rem;
  }

  .detail-section__text {
    font-size: 0.9rem;
    line-height: 1.7;
  }

  /* --- Pricing Cards: horizontal scroll --- */
  .pricing-cards {
    display: flex;
    overflow-x: auto;
    gap: 10px;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
  }

  .pricing-cards::-webkit-scrollbar { display: none; }

  .pricing-card {
    min-width: 150px;
    flex: 0 0 42%;
    padding: 18px 14px;
    gap: 6px;
    scroll-snap-align: start;
  }

  .pricing-card--featured {
    padding-top: 24px;
    flex: 0 0 46%;
  }

  .pricing-card__icon {
    width: 40px;
    height: 40px;
  }

  .pricing-card__amount {
    font-size: 1.15rem;
  }

  .pricing-note {
    padding: 12px 14px;
    font-size: 0.82rem;
  }

  /* --- Amenities: 2 colonnes --- */
  .room-page-card .amenity-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .room-page-card .amenity-item {
    padding: 8px 10px;
    font-size: 0.82rem;
    gap: 8px;
  }

  .room-page-card .amenity-item svg {
    width: 14px;
    height: 14px;
  }

  /* --- Capacity Table --- */
  .capacity-table {
    border-radius: 10px;
  }

  .capacity-table__header,
  .capacity-table__row {
    grid-template-columns: 2fr 1fr;
    padding: 10px 14px;
    font-size: 0.85rem;
  }

  /* --- Location --- */
  .room-page-card .location-map {
    border-radius: 12px;
    margin-bottom: var(--space-md);
  }

  .room-page-card .location-map iframe {
    height: 220px;
  }

  .room-page-card .location-address {
    padding: 14px 16px;
    border-radius: 10px;
  }

  .room-page-card .location-address h3 {
    font-size: 0.85rem;
  }

  .room-page-card .location-address p {
    font-size: 0.85rem;
  }

  /* --- Rules --- */
  .room-page-card .rule-card {
    padding: 16px 18px;
    border-radius: 10px;
  }

  .rule-card h3 {
    font-size: 0.9rem;
    margin-bottom: 10px;
  }

  .rule-card ul li {
    font-size: 0.85rem;
    padding: 5px 0;
  }

  /* --- Expert Review --- */
  .expert-review {
    border-radius: 14px;
    padding: 18px;
  }

  .expert-review__badge {
    font-size: 0.75rem;
    padding: 6px 12px;
  }

  /* --- Photos Gallery --- */
  .photos-gallery__grid {
    grid-template-columns: 1fr 1fr;
    gap: 6px;
  }

  .photos-gallery__item:first-child {
    grid-column: span 2;
  }

  .photos-gallery__item {
    border-radius: 8px;
  }

  .photos-gallery__img {
    height: 140px;
  }

  .photos-gallery__item:first-child .photos-gallery__img {
    height: 200px;
  }

  /* --- Similar Rooms: horizontal scroll --- */
  .similar-rooms__grid {
    display: flex;
    overflow-x: auto;
    gap: 12px;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
  }

  .similar-rooms__grid::-webkit-scrollbar { display: none; }

  .similar-rooms__grid .room-card {
    min-width: 240px;
    flex: 0 0 72%;
    scroll-snap-align: start;
  }

  /* --- Booking Sidebar: hidden on mobile, replaced by bottom bar --- */
  .booking-sidebar {
    display: none !important;
  }

  /* --- Mobile Booking Bar --- */
  .mobile-booking-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99;
    background: #fff;
    border-top: 1px solid var(--border);
    padding: 12px 16px;
    padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
  }

  .mobile-booking-bar__price {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .mobile-booking-bar__amount {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.02em;
  }

  .mobile-booking-bar__period {
    font-size: 0.75rem;
    color: var(--muted);
    font-weight: 500;
  }

  .mobile-booking-bar__btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 12px 20px;
    background: linear-gradient(135deg, var(--primary), var(--primary-600));
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(139,195,74,0.3);
    transition: all 0.2s;
  }

  .mobile-booking-bar__btn:active {
    transform: scale(0.97);
  }

  /* --- Ideal Tags: compact --- */
  .ideal-tag {
    padding: 5px 12px;
    font-size: 0.8rem;
  }

  /* --- Lightbox: fullscreen --- */
  .lightbox__nav {
    width: 36px;
    height: 36px;
  }

  .lightbox__close {
    top: 12px;
    right: 12px;
  }

  .lightbox__counter {
    font-size: 0.8rem;
    bottom: 16px;
  }

  /* --- Trust Indicators (in booking card, hidden via sidebar) --- */
  /* Mobile trust bar — shown inline before footer */

  /* --- Login Modal --- */
  .login-modal__content {
    padding: 2rem 1.5rem;
    margin: 0 16px;
    border-radius: 16px;
  }

  .login-modal__icon {
    width: 56px;
    height: 56px;
  }

  .login-modal__title {
    font-size: 1.1rem;
  }

  .login-modal__text {
    font-size: 0.82rem;
  }

  /* --- Footer: optimized for mobile + booking bar clearance --- */
  .footer {
    padding-bottom: 80px;
    margin-top: var(--space-xl);
  }

  .footer__inner {
    padding: var(--space-lg) 0;
    gap: var(--space-lg);
  }

  .footer__nav {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
  }

  .footer__col h4 {
    font-size: 0.82rem;
    margin-bottom: var(--space-sm);
  }

  .footer__col a {
    font-size: 0.82rem;
    padding: 6px 0;
  }

  .footer__tagline {
    font-size: 0.82rem;
  }

  .footer__bottom {
    font-size: 0.78rem;
    padding-top: var(--space-md);
  }

  .footer__social .social-link {
    width: 36px;
    height: 36px;
  }
}

/* Mid-tablet (640px) */
@media (max-width: 640px) {
  .hero-mosaic__grid {
    height: 320px;
  }
}

/* Mid-mobile (480px) */
@media (max-width: 480px) {
  .room-page-card .room-detail__layout {
    padding: 0 12px 100px;
  }

  .room-header__title {
    font-size: 1.25rem;
  }

  .room-page-card .amenity-list {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .photos-gallery__grid {
    gap: 4px;
  }

  .similar-rooms__grid .room-card {
    flex: 0 0 80%;
  }

  .login-modal__content {
    padding: 1.5rem 1rem;
    margin: 0 12px;
  }

  .pricing-card {
    flex: 0 0 55%;
    min-width: 130px;
  }
}

/* Small mobile (iPhone SE, etc.) */
@media (max-width: 400px) {
  .hero-mosaic__grid {
    height: 240px;
  }

  .room-header__title {
    font-size: 1.15rem;
  }

  .key-features {
    grid-template-columns: 1fr;
  }

  .key-feature {
    border-right: none !important;
    border-bottom: 1px solid var(--border);
    padding: 10px 14px;
    font-size: 0.8rem;
  }

  .key-feature:last-child {
    border-bottom: none;
  }

  .pricing-card {
    flex: 0 0 65%;
  }

  .room-page-card .amenity-list {
    grid-template-columns: 1fr;
  }

  .photos-gallery__grid {
    grid-template-columns: 1fr;
  }

  .photos-gallery__item:first-child {
    grid-column: span 1;
  }

  .similar-rooms__grid .room-card {
    min-width: 200px;
    flex: 0 0 85%;
  }

  .mobile-booking-bar__amount {
    font-size: 0.95rem;
  }

  .mobile-booking-bar__btn {
    padding: 10px 16px;
    font-size: 0.82rem;
  }
}

/* =======================================================
   v2 — PRODUCT-STYLE GALLERY (main + thumbnails strip)
   Remplace hero-mosaic (2col) par layout e-commerce
   ======================================================= */
.room-page-card > .hero-gallery {
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.hero-gallery {
  position: relative;
  background: #0f172a;
}

.hero-gallery__main {
  position: relative;
  width: 100%;
  height: 520px;
  overflow: hidden;
  cursor: zoom-in;
  background: #0f172a;
}

.hero-gallery__main--empty {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-soft);
  color: var(--muted);
}

.hero-gallery__main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.25s cubic-bezier(.22,1,.36,1), transform 0.7s cubic-bezier(.25,.46,.45,.94);
}

.hero-gallery__main:hover .hero-gallery__main-img {
  transform: scale(1.02);
}

.hero-gallery__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 20px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, transparent 25%, transparent 70%, rgba(0,0,0,0.25) 100%);
}

.hero-gallery__badges {
  display: flex;
  flex-direction: column;
  gap: 8px;
  pointer-events: auto;
}

.hero-gallery__badge {
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #fff;
  padding: 7px 16px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  animation: fadeIn 0.6s ease-out 0.2s both;
}

.hero-gallery__badge--featured {
  background: var(--primary, #8BC34A);
  box-shadow: 0 4px 12px rgba(139, 195, 74, 0.35);
}

.hero-gallery__actions {
  display: flex;
  gap: 10px;
  pointer-events: auto;
}

.hero-gallery__zoom,
.hero-gallery__fav {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  color: #1f2937;
  transition: all 0.25s cubic-bezier(.22,1,.36,1);
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}

.hero-gallery__zoom:hover,
.hero-gallery__fav:hover {
  background: #fff;
  transform: scale(1.1);
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

.hero-gallery__fav.is-favorite {
  color: #ef4444;
}

.hero-gallery__fav.is-favorite svg {
  fill: #ef4444;
  stroke: #ef4444;
}

/* Arrows on main image */
.hero-gallery__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  border: none;
  color: #1f2937;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition: all 0.25s cubic-bezier(.22,1,.36,1);
  box-shadow: 0 4px 14px rgba(0,0,0,0.2);
  z-index: 3;
}

.hero-gallery__main:hover .hero-gallery__arrow {
  opacity: 1;
}

.hero-gallery__arrow:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.08);
}

.hero-gallery__arrow--prev { left: 16px; }
.hero-gallery__arrow--next { right: 16px; }

.hero-gallery__counter {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: rgba(0,0,0,0.65);
  color: #fff;
  padding: 6px 12px;
  border-radius: 14px;
  font-size: 0.78rem;
  font-weight: 600;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2;
}

/* Thumbnails strip */
.hero-gallery__thumbs {
  display: flex;
  gap: 8px;
  padding: 12px 16px;
  background: #fff;
  overflow-x: auto;
  scrollbar-width: thin;
  scroll-behavior: smooth;
}

.hero-gallery__thumbs::-webkit-scrollbar {
  height: 5px;
}
.hero-gallery__thumbs::-webkit-scrollbar-track {
  background: #f3f4f6;
  border-radius: 3px;
}
.hero-gallery__thumbs::-webkit-scrollbar-thumb {
  background: #d1d5db;
  border-radius: 3px;
}

.hero-gallery__thumb {
  flex: 0 0 auto;
  width: 96px;
  height: 72px;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  padding: 0;
  background: none;
  transition: all 0.25s cubic-bezier(.22,1,.36,1);
  opacity: 0.65;
  position: relative;
}

.hero-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-gallery__thumb:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.hero-gallery__thumb.is-active {
  opacity: 1;
  border-color: var(--primary, #8BC34A);
  box-shadow: 0 4px 12px rgba(139, 195, 74, 0.28);
}

/* =======================================================
   v2 — VERIFIED BADGE tooltip (rich)
   ======================================================= */
.verified-badge {
  position: relative;
  cursor: help;
  transition: background 0.2s, transform 0.2s;
}

.verified-badge:hover,
.verified-badge:focus {
  background: #a7f3d0;
  transform: scale(1.03);
  outline: none;
}

.verified-tooltip {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  min-width: 280px;
  background: #fff;
  border: 1px solid #d1fae5;
  border-radius: 14px;
  padding: 14px 16px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.14), 0 2px 8px rgba(0,0,0,0.06);
  opacity: 0;
  visibility: hidden;
  transition: all 0.22s cubic-bezier(.22,1,.36,1);
  pointer-events: none;
  z-index: 100;
  font-size: 0.82rem;
  color: #374151;
  text-align: left;
  font-weight: normal;
  letter-spacing: normal;
  text-transform: none;
}

.verified-tooltip::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: #fff;
  border-top: 1px solid #d1fae5;
  border-left: 1px solid #d1fae5;
}

.verified-badge:hover .verified-tooltip,
.verified-badge:focus .verified-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.verified-tooltip__title {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 700;
  color: #059669;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #d1fae5;
}

.verified-tooltip__list {
  display: grid;
  gap: 8px;
}

.verified-tooltip__item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #374151;
}

.verified-tooltip__item svg {
  color: #059669;
  flex-shrink: 0;
}

/* =======================================================
   v3 — ROOM HEADER spacing (aerer le bloc)
   + stacking context pour que le tooltip verifie passe AU-DESSUS
     de la nav sticky et des elements suivants
   ======================================================= */
.room-page-card .room-detail__layout {
  padding-top: var(--space-xl);
}

.room-header {
  padding: 0 0 24px !important;
  margin-bottom: 28px !important;
  position: relative;
  z-index: 60;
}

.room-header__badges {
  gap: 12px !important;
  margin-bottom: 16px !important;
}

.room-header__title {
  margin-bottom: 0;
  line-height: 1.2;
  position: relative;
  z-index: 70;
}

.room-header__type {
  margin-top: 14px !important;
}

.key-features {
  margin-top: 24px;
  margin-bottom: 24px !important;
  position: relative;
  z-index: 1;
}

.ideal-strip {
  padding: 0 !important;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

/* Tooltip verifie : z-index tres eleve pour ecraser toute la pile */
.verified-tooltip {
  z-index: 9999 !important;
}

/* =======================================================
   v3 — SECTION-NAV as sticky tab filter (text-only, BOLD BLACK)
   Tab filter avec fond colore, sticky, active state tracking
   ======================================================= */
.section-nav-wrapper {
  position: sticky;
  top: -1px; /* -1px pour que l'IntersectionObserver detecte l'accroche */
  z-index: 50;
  margin: 4px calc(-1 * var(--space-xl)) 28px;
  padding: 14px var(--space-xl);
  background: linear-gradient(180deg, rgba(248, 253, 244, 0.98) 0%, rgba(240, 248, 232, 0.96) 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(139, 195, 74, 0.15);
  border-bottom: 1px solid rgba(139, 195, 74, 0.15);
  transition: box-shadow 0.25s cubic-bezier(.22,1,.36,1), background 0.25s;
}

/* Etat "detache" : ombre + fond blanc opaque quand la barre est collee */
.section-nav-wrapper.is-stuck {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  border-top-color: transparent;
  border-bottom-color: rgba(0, 0, 0, 0.06);
}

.section-nav {
  position: static !important;
  top: auto !important;
  z-index: auto !important;
  display: flex !important;
  gap: 4px !important;
  padding: 0 !important;
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  margin: 0 !important;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.section-nav::-webkit-scrollbar {
  display: none;
}

.section-nav__link {
  display: inline-block !important;
  padding: 10px 18px !important;
  border: none !important;
  border-radius: 10px !important;
  font-size: 0.92rem !important;
  font-weight: 800 !important;
  color: #111827 !important; /* noir (gras noir) */
  background: transparent;
  white-space: nowrap;
  text-decoration: none;
  transition: all 0.22s cubic-bezier(.22,1,.36,1);
  letter-spacing: -0.01em;
}

.section-nav__link::after {
  display: none !important;
}

.section-nav__link:hover {
  color: #000 !important;
  background: rgba(139, 195, 74, 0.15);
}

.section-nav__link--active {
  color: #fff !important;
  background: var(--primary, #8BC34A) !important;
  box-shadow: 0 2px 10px rgba(139, 195, 74, 0.35);
}

.section-nav__link--active:hover {
  background: var(--primary-700, #7cb342) !important;
  color: #fff !important;
}

/* =======================================================
   v2 — EXPERT REVIEW (editorial redesign)
   ======================================================= */
.expert-review {
  background: linear-gradient(160deg, #f0fdf4 0%, #ecfccb 100%);
  border: 1px solid #bbf7d0;
  border-radius: 18px;
  padding: 28px 32px !important;
  margin: 24px 0 !important;
  box-shadow: 0 8px 24px rgba(22, 163, 74, 0.08);
  border-bottom: 1px solid #bbf7d0 !important;
  position: relative;
  overflow: hidden;
}

.expert-review::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(22,163,74,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.expert-review__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.expert-review__badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: linear-gradient(135deg, #16a34a, #15803d);
  color: #fff;
  padding: 7px 14px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 12px rgba(22, 163, 74, 0.25);
}

.expert-review__meta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #166534;
  font-size: 0.82rem;
  font-weight: 500;
  opacity: 0.85;
}

.expert-review__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #14532d;
  margin: 0 0 20px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.expert-review__quote {
  position: relative;
  margin: 0 0 24px;
  padding: 22px 26px;
  background: rgba(255, 255, 255, 0.75);
  border-radius: 14px;
  border-left: 4px solid #16a34a;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.expert-review__quote-mark {
  position: absolute;
  top: -4px;
  left: 14px;
  color: #86efac;
  opacity: 0.6;
}

.expert-review__text {
  font-size: 1rem;
  line-height: 1.75;
  color: #1f2937;
  margin: 0;
  font-style: italic;
  padding-left: 36px;
}

.expert-review__sign {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px dashed #bbf7d0;
  color: #166534;
}

.expert-review__sign-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #16a34a, #15803d);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(22, 163, 74, 0.25);
}

.expert-review__sign strong {
  display: block;
  font-size: 0.9rem;
  color: #14532d;
}

.expert-review__sign-role {
  display: block;
  font-size: 0.78rem;
  color: #4b5563;
  font-weight: normal;
}

.expert-review__highlights {
  padding-top: 18px;
  border-top: 1px solid #bbf7d0;
}

.expert-review__highlights-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.98rem;
  font-weight: 700;
  color: #14532d;
  margin: 0 0 14px;
}

.expert-review__highlights-title svg {
  color: #eab308;
}

.expert-highlights-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.expert-highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 10px;
  border: 1px solid rgba(187, 247, 208, 0.6);
  font-size: 0.9rem;
  color: #166534;
  font-weight: 500;
  transition: transform 0.22s, box-shadow 0.22s;
}

.expert-highlight-item:hover {
  transform: translateX(3px);
  box-shadow: 0 4px 12px rgba(22, 163, 74, 0.1);
}

.expert-highlight-item__num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
  letter-spacing: -0.02em;
}

/* =======================================================
   v2 — REVIEWS SECTION (positive customer reviews)
   ======================================================= */
.reviews-section__count {
  display: inline-flex;
  align-items: center;
  background: #fef3c7;
  color: #92400e;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 10px;
  margin-left: 8px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.reviews-summary {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 32px;
  align-items: center;
  padding: 24px;
  background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
  border: 1px solid #fde68a;
  border-radius: 16px;
  margin-bottom: 24px;
}

.reviews-summary__score {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 18px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}

.reviews-summary__number {
  font-size: 3rem;
  font-weight: 700;
  color: #92400e;
  line-height: 1;
  letter-spacing: -0.04em;
}

.reviews-summary__stars {
  display: inline-flex;
  gap: 2px;
  margin: 10px 0 6px;
}

.reviews-summary__total {
  font-size: 0.82rem;
  color: #78716c;
}

.reviews-summary__bars {
  display: grid;
  gap: 8px;
}

.reviews-bar {
  display: grid;
  grid-template-columns: 70px 1fr 28px;
  align-items: center;
  gap: 12px;
  font-size: 0.82rem;
}

.reviews-bar__label {
  color: #78716c;
  font-weight: 500;
}

.reviews-bar__track {
  height: 8px;
  background: #fef3c7;
  border-radius: 4px;
  overflow: hidden;
}

.reviews-bar__fill {
  height: 100%;
  background: linear-gradient(90deg, #fbbf24, #f59e0b);
  border-radius: 4px;
  transition: width 0.8s cubic-bezier(.22,1,.36,1);
}

.reviews-bar__count {
  color: #44403c;
  font-weight: 600;
  text-align: right;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.review-card {
  padding: 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: all 0.25s cubic-bezier(.22,1,.36,1);
}

.review-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  border-color: #fde68a;
}

.review-card__header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}

.review-card__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-700, #7cb342));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
  overflow: hidden;
}

.review-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-card__who {
  flex: 1;
  min-width: 0;
}

.review-card__name {
  display: block;
  font-size: 0.92rem;
  color: var(--text);
  font-weight: 600;
  margin-bottom: 3px;
}

.review-card__loc {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.76rem;
  color: var(--muted);
}

.review-card__date::before {
  content: '·';
  margin-right: 6px;
  color: #d6d3d1;
}

.review-card__rating {
  display: inline-flex;
  gap: 1px;
  flex-shrink: 0;
}

.review-card__title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 6px;
  line-height: 1.3;
}

.review-card__comment {
  font-size: 0.88rem;
  line-height: 1.6;
  color: #4b5563;
  margin: 0 0 12px;
}

.review-card__pros {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 8px 12px;
  background: #ecfdf5;
  border-radius: 8px;
  font-size: 0.82rem;
  color: #065f46;
  font-weight: 500;
}

.review-card__pros svg {
  color: #10b981;
  flex-shrink: 0;
  margin-top: 2px;
}

.review-card__helpful {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid #f3f4f6;
  font-size: 0.75rem;
  color: var(--muted);
}

.reviews-section__footer {
  margin-top: 20px;
  text-align: center;
}

/* Empty state */
.reviews-empty {
  text-align: center;
  padding: 36px 20px;
  background: #fafaf9;
  border: 1px dashed #e7e5e4;
  border-radius: 14px;
}

.reviews-empty__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: #fff;
  color: var(--muted);
  margin-bottom: 12px;
}

.reviews-empty__title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 6px;
}

.reviews-empty__text {
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0 0 16px;
}

/* =======================================================
   v2 — RESPONSIVE (gallery + reviews)
   ======================================================= */
@media (max-width: 1024px) {
  .hero-gallery__main {
    height: 420px;
  }
  .reviews-summary {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .expert-highlights-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero-gallery__main {
    height: 320px;
  }
  .hero-gallery__thumbs {
    padding: 10px 14px;
    gap: 6px;
  }
  .hero-gallery__thumb {
    width: 72px;
    height: 56px;
  }
  .hero-gallery__overlay {
    padding: 14px;
  }
  .hero-gallery__zoom { display: none; }
  .hero-gallery__arrow { display: none; }
  .hero-gallery__counter {
    bottom: 12px;
    right: 12px;
    padding: 4px 10px;
    font-size: 0.72rem;
  }

  .verified-tooltip {
    position: fixed;
    left: 50% !important;
    top: auto !important;
    bottom: 20px;
    transform: translateX(-50%) translateY(0) !important;
    max-width: 90vw;
    min-width: 280px;
  }
  .verified-tooltip::before { display: none; }

  .section-nav-wrapper {
    margin: 4px -16px 20px !important;
    padding: 10px 16px !important;
  }
  .section-nav {
    gap: 3px !important;
  }
  .section-nav__link {
    padding: 8px 14px !important;
    font-size: 0.85rem !important;
  }

  .expert-review {
    padding: 22px 18px !important;
  }
  .expert-review__title {
    font-size: 1.2rem;
  }
  .expert-review__text {
    font-size: 0.92rem;
    padding-left: 24px;
  }
  .expert-review__quote {
    padding: 16px 18px;
  }

  .reviews-summary {
    padding: 18px;
  }
  .reviews-summary__number {
    font-size: 2.25rem;
  }
}

@media (max-width: 480px) {
  .hero-gallery__main {
    height: 260px;
  }
  .hero-gallery__thumb {
    width: 60px;
    height: 48px;
  }
}
