/* ═══════════════════════════════════════
   EXCURSION PAGE — DESIGN TOKENS
   ═══════════════════════════════════════ */
:root {
  --exp-primary: #E85D2A;
  --exp-primary-hover: #D04D1C;
  --exp-booking-btn: var(--exp-primary);
  --exp-booking-btn-hover: var(--exp-primary-hover);
  --exp-primary-light: #FFF3EE;
  --exp-success: #16A34A;
  --exp-success-light: #F0FDF4;
  --exp-danger: #DC2626;
  --exp-danger-light: #FEF2F2;
  --exp-gold: #FBBF24;
  --exp-text: #1A1A1A;
  --exp-text-secondary: #6B7280;
  --exp-text-muted: #9CA3AF;
  --exp-border: #E5E7EB;
  --exp-border-light: #F3F4F6;
  --exp-bg: #FFFFFF;
  --exp-bg-subtle: #F9FAFB;
  --exp-shadow-sm: 0 1px 2px rgba(0,0,0,.05);
  --exp-shadow-md: 0 4px 12px rgba(0,0,0,.08);
  --exp-shadow-lg: 0 12px 40px rgba(0,0,0,.12);
  --exp-radius-sm: 8px;
  --exp-radius-md: 12px;
  --exp-radius-lg: 16px;
  --exp-font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --exp-section-spacing: 25px;
  /* Акценты (расписание / вторичный акцент); Reboot подменяет через inline из кастомайзера */
  --exp-accent: #c04d1a;
  --exp-schedule-accent: #1a6458;
  --exp-section-line: #d9d2c4;
  /* Быстрые метаданные под заголовком — фикс. кегль, не типографика «Основной текст» темы */
  --exp-meta-text-size: 14px;
}

/* ═══════════════════════════════════════
   BASE
   ═══════════════════════════════════════ */
.exp-page {
  font-family: inherit;
  color: inherit;
  line-height: inherit;
  -webkit-font-smoothing: antialiased;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
.exp-page *, .exp-page *::before, .exp-page *::after { box-sizing: border-box; }
.exp-page img { max-width: 100%; height: auto; }
.exp-page a { color: inherit; text-decoration: none; }
.exp-page button { font-family: inherit; cursor: pointer; }

/* Ширина как у обычных записей/страниц: не ограничиваем 1200px, занимаем колонку темы (#primary / .site-main / .article-card) */
.exp-container {
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
}

/* ═══════════════════════════════════════
   BREADCRUMBS
   ═══════════════════════════════════════ */
.exp-breadcrumbs {
  padding: 12px 0;
  font-size: 13px;
  color: var(--exp-text-muted);
}
@media (max-width: 767px) {
  .exp-breadcrumbs { padding: 8px 0; font-size: 12px; }
}
.exp-breadcrumbs a { color: var(--exp-text-secondary); }
.exp-breadcrumbs a:hover { color: var(--exp-primary); }
.exp-bc-sep { margin: 0 6px; }
.exp-breadcrumbs--below-hero {
  padding-top: 4px;
  padding-bottom: 8px;
}

/* ═══════════════════════════════════════
   HERO GALLERY (сетка)
   ═══════════════════════════════════════ */
.exp-hero-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 260px 260px;
  gap: 8px;
  border-radius: var(--exp-radius-lg);
  overflow: hidden;
  position: relative;
}
/* Фото остаются прямыми участниками сетки .exp-hero-gallery (десктоп / планшет) */
.exp-hero-gallery-track {
  display: contents;
}
/* В сетке 2×2 на широких экранах — только первые 4 превью; остальные только в мобильном свайпе */
@media (min-width: 769px) {
  .exp-hero-gallery-track .exp-photo:nth-child(n+5) {
    display: none;
  }
}
.exp-photo {
  background-size: cover;
  background-position: center;
  cursor: pointer;
  transition: filter .3s;
  position: relative;
}
.exp-photo:hover { filter: brightness(1.05); }
.exp-photo--main { grid-row: 1 / 3; }
.exp-gallery-count-btn {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: rgba(255,255,255,.95);
  color: var(--exp-text);
  padding: 10px 18px;
  min-height: 44px;
  border-radius: var(--exp-radius-sm);
  font-size: 13px;
  font-weight: 600;
  border: none;
  box-shadow: var(--exp-shadow-md);
  z-index: 2;
  transition: transform .2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}
.exp-gallery-count-btn:hover { transform: scale(1.03); }
.exp-gallery-count-btn:focus-visible { outline: 2px solid var(--exp-primary); outline-offset: 2px; }

/* Hero-галерея: для wide/full/fullscreen используем классы темы entry-image — позиция и ширина как у миниатюры записи */
.exp-hero-gallery-section {
  margin-bottom: 0;
}
.exp-hero-gallery-section .entry-image {
  background-image: none;
  display: block;
}
.exp-hero-gallery-section .entry-image .exp-hero-gallery-inner {
  width: 100%;
  max-width: 100%;
}
.exp-hero-gallery-section .entry-image--fullscreen .exp-hero-gallery,
.exp-hero-gallery-section .entry-image--fullscreen .exp-hero-gallery-inner {
  min-height: 100vh;
}
.exp-hero-gallery-section .entry-image--full .exp-hero-gallery,
.exp-hero-gallery-section .entry-image--fullscreen .exp-hero-gallery {
  border-radius: 0;
}

/* Бейджи поверх героя-галереи (wide/full/fullscreen) — те же стили, что у .exp-badges */
.entry-image .exp-hero-gallery-badges {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 16px 20px;
  pointer-events: none;
}
.entry-image .exp-hero-gallery-badges .exp-badge {
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
  pointer-events: auto;
}
.entry-image .exp-hero-gallery-badges .exp-badge--hit { background: #FEF3C7; color: #92400E; }
.entry-image .exp-hero-gallery-badges .exp-badge--new { background: #DBEAFE; color: #1E40AF; }
.entry-image .exp-hero-gallery-badges .exp-badge--top { background: #F3E8FF; color: #6B21A8; }

@media (max-width: 767px) {
  .entry-image .exp-hero-gallery-badges {
    padding: 12px 16px;
    gap: 8px;
    padding-top: max(12px, env(safe-area-inset-top));
    padding-left: max(16px, env(safe-area-inset-left));
  }
}

/* ═══════════════════════════════════════
   HERO INFO
   ═══════════════════════════════════════ */
/* Отступ сверху не задаём — расстояние до контента даёт margin-bottom у .entry-image в теме (25px / 30px) */
.exp-hero-info { padding-top: 0; }
.exp-badges { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 12px; }
.exp-badge {
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.exp-badge--hit { background: #FEF3C7; color: #92400E; }
.exp-badge--new { background: #DBEAFE; color: #1E40AF; }
.exp-badge--top { background: #F3E8FF; color: #6B21A8; }

.exp-title {
  font-size: clamp(1.375rem, 0.5rem + 3.5vw, 2rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -.5px;
  margin: 0 0 8px;
}
.exp-subtitle {
  font-size: 16px;
  color: var(--exp-text-secondary);
  line-height: 1.5;
  margin: 0 0 20px;
}

.exp-meta { display: flex; flex-wrap: wrap; gap: 20px; align-items: center; margin-bottom: 20px; }
.exp-meta-item {
  display: inline-flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 7px;
  max-width: 100%;
  font-size: var(--exp-meta-text-size);
  color: var(--exp-text-secondary);
}
.exp-meta-icon {
  font-size: 18px;
  line-height: 1;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.exp-meta-item strong {
  color: var(--exp-text);
  font-weight: 600;
  min-width: 0;
  line-height: 1.35;
}

.exp-rating-badge {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 8px;
  padding: 10px 16px;
  background: var(--exp-bg-subtle);
  border-radius: var(--exp-radius-sm);
  width: fit-content;
}
.exp-stars {
  color: var(--exp-gold);
  font-size: 16px;
  letter-spacing: 2px;
  line-height: 1;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
}
.exp-score { font-size: 18px; font-weight: 700; line-height: 1.2; }
.exp-count { font-size: 14px; color: var(--exp-text-secondary); line-height: 1.2; }

/* ═══════════════════════════════════════
   STICKY SUB-NAV (JS: fixed + left/width как у .exp-container — sticky часто ломается из-за overflow у темы)
   ═══════════════════════════════════════ */
.exp-sub-nav {
  position: relative;
  /* Выше панелей Leaflet (тайлы/маркеры/popup до ~700, контролы ~800), иначе карта маршрута перекрывает бар */
  z-index: 1100;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--exp-border);
  margin-top: 24px;
}
.exp-sub-nav.is-fixed {
  position: fixed;
  top: 0;
  right: auto;
  margin-top: 0;
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
}
body.admin-bar .exp-sub-nav.is-fixed {
  top: 32px;
}
@media screen and (max-width: 782px) {
  body.admin-bar .exp-sub-nav.is-fixed {
    top: 46px;
  }
}
.exp-sub-nav-spacer {
  display: none;
}
.exp-sub-nav-spacer.is-active {
  display: block;
}
.exp-sub-nav-inner {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
}
.exp-sub-nav-inner::-webkit-scrollbar { display: none; }
.exp-sub-nav-link {
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--exp-text-secondary);
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: all .2s;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  box-sizing: border-box;
}
.exp-sub-nav-link:hover { color: var(--exp-text); }
.exp-sub-nav-link:focus-visible { outline: 2px solid var(--exp-primary); outline-offset: 2px; }
.exp-sub-nav-link.is-active {
  color: var(--exp-primary);
  border-bottom-color: var(--exp-primary);
  font-weight: 600;
}

/* ═══════════════════════════════════════
   MAIN LAYOUT
   ═══════════════════════════════════════ */
.exp-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  padding-top: 32px;
  align-items: start;
}
.exp-layout--one-col {
  grid-template-columns: 1fr;
}
.exp-content { min-width: 0; }

/* ═══════════════════════════════════════
   SECTIONS
   ═══════════════════════════════════════ */
.exp-section {
  padding-bottom: var(--exp-section-spacing);
  margin-bottom: var(--exp-section-spacing);
  border-bottom: 1px solid var(--exp-border-light);
  scroll-margin-top: 80px;
}
.exp-section:last-child { border-bottom: none; }

.exp-section-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--exp-text);
  margin: 0 0 16px;
}

/* DESCRIPTION */
.exp-desc-text { font-size: 16px; line-height: 1.5; color: var(--exp-text-secondary); }
.exp-desc-text p { margin: 0 0 12px; }
.exp-desc-collapse { max-height: 180px; overflow: hidden; position: relative; }
.exp-desc-collapse::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(transparent, var(--exp-bg));
  pointer-events: none;
}
.exp-desc-collapse.is-expanded { max-height: none; }
.exp-desc-collapse.is-expanded::after { display: none; }
.exp-btn-expand {
  margin-top: 8px;
  padding: 6px 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--exp-primary);
  background: none;
  border: none;
  cursor: pointer;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
}
.exp-btn-expand:hover { text-decoration: underline; }
.exp-btn-expand:focus-visible { outline: 2px solid var(--exp-primary); outline-offset: 2px; border-radius: 4px; }

/* HIGHLIGHTS */
.exp-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 20px;
}
.exp-highlight-item {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 14px;
  background: var(--exp-bg-subtle);
  border-left: 3px solid var(--exp-primary);
  border-radius: 0 var(--exp-radius-sm) var(--exp-radius-sm) 0;
}
.exp-highlight-icon {
  font-size: 20px;
  line-height: 1;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.1em;
  width: 1.35em;
}
.exp-highlight-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.exp-highlight-title {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--exp-text);
  line-height: 1.35;
}
.exp-highlight-text {
  display: block;
  font-size: 12px;
  color: var(--exp-text-secondary);
  line-height: 1.4;
}

@media (max-width: 767px) {
  .exp-highlights { grid-template-columns: 1fr; }
}

/* EARLY REVIEW */
.exp-early-review {
  margin: 24px 0;
  padding: 20px;
  background: var(--exp-bg-subtle);
  border-radius: var(--exp-radius-md);
  border-left: 3px solid var(--exp-gold);
}
@media (max-width: 767px) {
  .exp-early-review { margin: 20px 0; padding: 16px; }
}
.exp-early-review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.exp-early-review-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea, #764ba2);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 16px; font-weight: 700;
}
.exp-early-review-name { font-size: 14px; font-weight: 600; }
.exp-early-review-meta { font-size: 12px; color: var(--exp-text-muted); }
.exp-early-review-stars { color: var(--exp-gold); font-size: 14px; letter-spacing: 1px; margin-left: auto; }
.exp-early-review-text { font-size: 15px; line-height: 1.6; color: var(--exp-text-secondary); font-style: italic; margin: 0; }

/* ═══════════════════════════════════════
   TIMELINE
   ═══════════════════════════════════════ */
.exp-timeline { position: relative; padding-left: 32px; }
.exp-timeline::before {
  content: '';
  position: absolute; left: 10px; top: 8px; bottom: 8px;
  width: 3px;
  background: var(--exp-border);
}
.exp-timeline-item { position: relative; padding-bottom: 32px; }
.exp-timeline-item:last-child { padding-bottom: 0; }
.exp-timeline-dot {
  position: absolute; left: -32px; top: 4px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--exp-bg);
  border: 2.5px solid var(--exp-primary);
  display: flex; align-items: center; justify-content: center;
  z-index: 1;
}
@media (max-width: 767px) {
  .exp-timeline { padding-left: 24px; }
  .exp-timeline::before { left: 9px; }
  .exp-timeline-dot { left: -24px; width: 18px; height: 18px; }
  .exp-timeline-dot-inner { width: 6px; height: 6px; }
  .exp-timeline-item { padding-bottom: 24px; }
}
.exp-timeline-dot-inner {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--exp-primary);
}
.exp-timeline-time {
  font-size: 13px; font-weight: 700;
  color: var(--exp-primary);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 4px;
}
.exp-timeline-title { font-size: 1.05em; font-weight: 700; margin-bottom: 6px; }
.exp-timeline-desc { font-size: 14px; line-height: 1.6; color: var(--exp-text-secondary); }
/* Главная точка маршрута */
.exp-timeline-item--hl .exp-timeline-dot {
  background: var(--exp-accent);
  border-color: var(--exp-accent);
}
.exp-timeline-item--hl .exp-timeline-dot-inner { background: #fff; }
.exp-timeline-item--hl .exp-timeline-time { color: var(--exp-accent); }
.exp-timeline-item--hl .exp-timeline-title { color: var(--exp-accent); font-weight: 800; }

.exp-timeline-photo {
  margin-top: 12px;
  border-radius: var(--exp-radius-sm);
  overflow: hidden;
  max-width: 360px;
  height: 180px;
  background-size: cover;
  background-position: center;
}

/* ═══════════════════════════════════════
   ITINERARY BY DAY (accordion)
   ═══════════════════════════════════════ */
.exp-itinerary-day {
  margin-bottom: 8px;
}
.exp-itinerary-day-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  background: none;
  border: none;
  padding: 14px 0 10px;
  font-family: inherit;
  text-align: left;
}
.exp-itinerary-day-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #ffffff;
  background: #111009;
  padding: 6px 16px;
  border-radius: 20px;
  white-space: nowrap;
}
.exp-itinerary-day-toggle::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--exp-border);
}
.exp-itinerary-day-body { display: block; }

/* ═══════════════════════════════════════
   MAPS (Leaflet)
   ═══════════════════════════════════════ */
.exp-map-wrap {
  min-height: 280px;
  height: 280px;
  border-radius: var(--exp-radius-md);
  overflow: hidden;
  background: var(--exp-border-light);
}
.exp-route-map-wrap { min-height: 320px; height: 320px; }
.exp-google-map-wrap {
  position: relative;
  width: 100%;
  border-radius: var(--exp-radius-md);
  overflow: hidden;
  background: var(--exp-border-light);
}
.exp-google-map-wrap iframe {
  display: block;
  width: 100%;
  height: 450px;
  border: 0;
}
.exp-map-open-btn {
  position: absolute;
  bottom: 12px;
  right: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  color: #1a6458;
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  font-family: 'Nunito', sans-serif;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .12);
  transition: opacity .15s;
}
.exp-page a.exp-map-open-btn { color: #1a6458; }
.exp-map-open-btn:hover { opacity: .88; }
@media (max-width: 767px) {
  .exp-map-open-btn {
    bottom: 8px;
    right: 8px;
    padding: 8px 12px;
    font-size: 12px;
  }
}
@media (max-width: 767px) {
  .exp-google-map-wrap iframe { height: 320px; }
}
.exp-meeting-map-address {
  font-size: 14px;
  color: var(--exp-text-secondary);
  line-height: 1.5;
  margin: 12px 0 0;
}
.exp-meeting-map-photo-wrap { margin-top: 16px; border-radius: var(--exp-radius-md); overflow: hidden; }
.exp-meeting-map-photo { width: 100%; height: auto; display: block; }
.exp-info-card-map.exp-meeting-map-inline {
  min-height: 180px;
  height: 180px;
  margin-top: 12px;
}
.exp-info-card-meeting-photo {
  margin-top: 12px;
  border-radius: var(--exp-radius-sm);
  overflow: hidden;
}
.exp-info-card-meeting-photo img { width: 100%; height: auto; display: block; }

/* ═══════════════════════════════════════
   INCLUDES / EXCLUDES
   ═══════════════════════════════════════ */
.exp-includes-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.exp-inc-title { font-size: 1.1em; font-weight: 700; margin-bottom: 10px; }
.exp-inc-title--yes { color: var(--exp-success); }
.exp-inc-title--no { color: var(--exp-danger); }
.exp-inc-list { display: flex; flex-direction: column; gap: 8px; }
.exp-inc-item {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  line-height: 1.5;
}
.exp-inc-icon {
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 0.2em;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.exp-inc-icon::before { display: block; line-height: 1; }
.exp-inc-icon--yes::before { content: '\2714'; }
.exp-inc-icon--no::before { content: '\2716'; }
.exp-inc-icon--yes { color: var(--exp-success); }
.exp-inc-icon--no { color: var(--exp-danger); }

.exp-excludes-total {
  margin-top: 12px;
  padding: 10px 14px;
  background: rgba(0,0,0,.03);
  border-radius: 8px;
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  border-top: 2px solid #ede7d9;
}
.exp-excludes-total span:last-child { font-weight: 800; color: var(--exp-text); }

/* ═══════════════════════════════════════
   ЦЕНА ОТ КОЛИЧЕСТВА УЧАСТНИКОВ
   ═══════════════════════════════════════ */
.exp-price-tiers-intro {
  margin: 0 0 14px;
  font-size: 13px;
  color: var(--exp-text-secondary);
  line-height: 1.5;
}

/* ═══════════════════════════════════════
   РАСПИСАНИЕ (секция в контенте)
   ═══════════════════════════════════════ */
.exp-schedule-intro {
  font-size: 13px;
  color: var(--exp-text-secondary);
  background: #f8f3ea;
  background: color-mix(in srgb, var(--exp-schedule-accent) 9%, var(--exp-bg));
  border-left: 3px solid var(--exp-schedule-accent);
  padding: 10px 14px;
  border-radius: 0 8px 8px 0;
  margin-bottom: 14px;
  line-height: 1.5;
}
.exp-schedule-updated {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: var(--exp-text-secondary);
  margin-bottom: 12px;
}
.exp-schedule-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 4px;
}
.exp-schedule-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  background: #f8f3ea;
  cursor: pointer;
  transition: border-color .15s, background .15s;
  border: 2px solid transparent;
}
.exp-schedule-item:hover {
  border-color: var(--exp-schedule-accent);
  background: #f8f3ea;
  background: color-mix(in srgb, var(--exp-schedule-accent) 6%, var(--exp-bg));
}
.exp-schedule-item:focus-visible {
  outline: 2px solid var(--exp-schedule-accent);
  outline-offset: 2px;
}
.exp-schedule-date {
  font-weight: 700;
  font-size: 14px;
  color: var(--exp-text);
  min-width: 150px;
}
.exp-schedule-bar {
  flex: 1;
  height: 4px;
  background: var(--exp-border);
  border-radius: 2px;
  overflow: hidden;
}
.exp-schedule-bar-fill { height: 100%; background: var(--exp-schedule-accent); border-radius: 2px; transition: width .3s; }
.spots-few  .exp-schedule-bar-fill { background: #f59e0b; }
.spots-none .exp-schedule-bar-fill { background: var(--exp-danger); }
.exp-schedule-spots { font-size: 12px; font-weight: 700; white-space: nowrap; }
.spots-ok   { color: var(--exp-schedule-accent); }
.spots-few  { color: #f59e0b; }
.spots-none { color: var(--exp-danger); }
.exp-schedule-more {
  text-align: center;
  margin-top: 10px;
  font-size: 13px;
  font-weight: 700;
  color: var(--exp-schedule-accent);
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: background .15s;
}
.exp-schedule-more:hover {
  background: #f8f3ea;
  background: color-mix(in srgb, var(--exp-schedule-accent) 8%, var(--exp-bg));
}
.exp-schedule-empty { font-size: 13px; color: var(--exp-text-secondary); }

/* Попап календаря сайдбара (в body, #exp-sidebar-calendar-wrap): как .booking-modal-content .booking-calendar-wrap в affiliate-styles.css */
#exp-sidebar-calendar-wrap > .excursion-calendar-wrap {
  margin: 0;
  padding: 0;
  max-width: none;
  width: 100%;
}
#exp-sidebar-calendar-wrap .excursion-calendar-inner {
  margin: 0;
  padding: 0;
  width: 100%;
}
#exp-sidebar-calendar-wrap .excursion-calendar-months,
#exp-sidebar-calendar-wrap .excursion-calendar-months-strip {
  margin: 0;
  padding: 0;
  max-width: none;
  width: 100%;
}
#exp-sidebar-calendar-wrap .exc-calendar-month {
  box-sizing: border-box;
}
#exp-sidebar-calendar-wrap .exc-calendar-day-count {
  font-size: 9px;
}

/* Цвета ячеек календаря (доступно/занято/мало мест/закрыто) — усиленная специфичность для страницы экскурсии */
.exp-schedule-calendar .excursion-calendar-wrap .exc-calendar-day-available,
#exp-sidebar-calendar-wrap .excursion-calendar-wrap .exc-calendar-day-available {
  background: #d4edda;
  border-color: #c3e6cb;
}
.exp-schedule-calendar .excursion-calendar-wrap .exc-calendar-day-booked,
#exp-sidebar-calendar-wrap .excursion-calendar-wrap .exc-calendar-day-booked {
  background: #fff3cd;
  border-color: #ffeaa7;
}
.exp-schedule-calendar .excursion-calendar-wrap .exc-calendar-day-important,
#exp-sidebar-calendar-wrap .excursion-calendar-wrap .exc-calendar-day-important {
  background: #f8d7da;
  border-color: #f5c6cb;
}
.exp-schedule-calendar .excursion-calendar-wrap .exc-calendar-day-closed,
#exp-sidebar-calendar-wrap .excursion-calendar-wrap .exc-calendar-day-closed {
  background: #e2e2e2;
  border-color: #ccc;
  color: #666;
  text-decoration: line-through;
}
.exp-schedule-calendar .excursion-calendar-wrap .exc-calendar-day-past,
#exp-sidebar-calendar-wrap .excursion-calendar-wrap .exc-calendar-day-past {
  background: #e8e8e8;
  border-color: #ddd;
  color: #888;
  opacity: 0.6;
}

@media (max-width: 767px) {
  .exp-price-tiers-card { padding: 16px; max-width: none; }
  .exp-reviews-intro-wrap { padding: 12px 16px; margin-bottom: 20px; }
  .exp-schedule-date { min-width: 120px; }
}

/* ═══════════════════════════════════════
   ТАБЛИЦА ЦЕН И БЮДЖЕТ
   ═══════════════════════════════════════ */
/* ── Таблица цен (прототип) ── */
.exp-price-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 12px;
}
.exp-price-table tr { border-bottom: 1px solid #ede7d9; }
.exp-price-table tr:last-child { border-bottom: none; }
.exp-price-table tr:hover { background: #f8f3ea; }
.exp-price-table td { padding: 10px 8px; font-size: 14px; }
.exp-price-table td:first-child { color: var(--exp-text-secondary); }
.exp-price-table td:nth-child(2) {
  font-weight: 800;
  font-size: 18px;
  color: var(--exp-accent);
  text-align: right;
}
.exp-price-per-person {
  font-size: 11px;
  font-weight: 400;
  color: var(--exp-text-muted);
}
.exp-price-table td:last-child {
  font-weight: 800;
  color: var(--exp-accent);
}
.exp-price-table td:first-child::before {
  content: '';
}
.exp-price-table td:nth-child(2) { text-align: right; }

/* ── Скидка детям ── */
.exp-child-discount {
  font-size: 12px;
  color: var(--exp-schedule-accent);
  background: #f8f3ea;
  background: color-mix(in srgb, var(--exp-schedule-accent) 8%, var(--exp-bg));
  border-radius: 6px;
  padding: 6px 10px;
  margin-bottom: 14px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 8px;
  line-height: 1.4;
}
.exp-child-discount-icon {
  line-height: 1;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ── Бюджет на руки ── */
.exp-budget-tip {
  font-size: 12px;
  color: var(--exp-text-secondary);
  background: #f8f3ea;
  border-radius: 8px;
  padding: 10px 12px;
  margin-bottom: 14px;
  border-left: 3px solid #b8861e;
  line-height: 1.5;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: flex-start;
  gap: 10px;
}
.exp-budget-tip-icon {
  line-height: 1;
  flex-shrink: 0;
  margin-top: 0.15em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.exp-budget-tip-text { flex: 1; min-width: 0; }
.exp-budget-tip strong { color: var(--exp-text); }

.exp-price-note {
  font-size: 12px;
  color: var(--exp-text-secondary);
  margin: 0;
}

/* ═══════════════════════════════════════
   ВВОДНЫЙ ТЕКСТ ПЕРЕД ОТЗЫВАМИ
   ═══════════════════════════════════════ */
/* Вводный текст отзывов — отделён от первого отзыва */
.exp-reviews-intro-wrap {
  background: var(--exp-bg-subtle);
  border-left: 4px solid var(--exp-primary);
  border-radius: 0 var(--exp-radius-sm) var(--exp-radius-sm) 0;
  padding: 16px 20px;
  margin-bottom: 24px;
}
.exp-reviews-intro { margin: 0; font-size: 15px; line-height: 1.5; color: var(--exp-text-secondary); }

/* ═══════════════════════════════════════
   GUIDE
   ═══════════════════════════════════════ */
.exp-guide-card {
  display: flex; gap: 24px;
  padding: 24px;
  background: var(--exp-bg-subtle);
  border-radius: var(--exp-radius-lg);
}
.exp-guide-avatar-wrap { position: relative; flex-shrink: 0; }
.exp-guide-avatar-img {
  width: 100px; height: 100px;
  border-radius: 50%;
  object-fit: cover;
}
.exp-guide-avatar {
  width: 100px; height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--exp-primary), #1a1a1a);
  background: linear-gradient(135deg, var(--exp-primary), color-mix(in srgb, var(--exp-primary) 72%, #1a1a1a));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 36px; font-weight: 700;
}
.exp-guide-verified {
  position: absolute; bottom: 2px; right: 2px;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--exp-success);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  border: 3px solid var(--exp-bg-subtle);
}
.exp-guide-info { flex: 1; }
.exp-guide-name { font-size: 20px; font-weight: 700; margin: 0 0 2px; }
.exp-guide-title { font-size: 14px; color: var(--exp-text-secondary); margin: 0 0 10px; }
.exp-guide-stats { display: flex; gap: 20px; margin-bottom: 12px; flex-wrap: wrap; }
.exp-guide-stat {
  display: inline-flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--exp-text-secondary);
}
.exp-guide-stat > span:first-child {
  line-height: 1;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.exp-guide-stat strong { color: var(--exp-text); min-width: 0; }
.exp-guide-bio { font-size: 14px; line-height: 1.6; color: var(--exp-text-secondary); margin: 0; }

/* ═══════════════════════════════════════
   REVIEWS
   ═══════════════════════════════════════ */
.exp-reviews-summary {
  display: flex; gap: 32px; align-items: center;
  padding: 24px;
  background: var(--exp-bg-subtle);
  border-radius: var(--exp-radius-md);
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  .exp-reviews-summary { padding: 20px 16px; gap: 20px; margin-bottom: 20px; }
}
.exp-reviews-score-big { text-align: center; min-width: 100px; }
.exp-reviews-num { font-size: 48px; font-weight: 800; line-height: 1; }
.exp-reviews-stars { color: var(--exp-gold); margin: 6px 0; font-size: 18px; letter-spacing: 2px; }
.exp-reviews-total { font-size: 14px; color: var(--exp-text-secondary); }
.exp-reviews-bars { flex: 1; display: flex; flex-direction: column; gap: 6px; }
.exp-bar-row { display: flex; align-items: center; gap: 10px; font-size: 13px; }
.exp-bar-label { width: 12px; font-weight: 600; text-align: right; }
.exp-bar-track { flex: 1; height: 8px; background: var(--exp-border-light); border-radius: 4px; overflow: hidden; }
.exp-bar-fill { height: 100%; border-radius: 4px; background: var(--exp-gold); transition: width .6s ease; }
.exp-bar-count { font-size: 12px; color: var(--exp-text-muted); width: 30px; }

.exp-reviews-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.exp-reviews-filter-label { display: flex; align-items: center; gap: 8px; }
.exp-reviews-filter-text { font-size: 14px; color: var(--exp-text-secondary); }
.exp-reviews-sort {
  padding: 8px 12px;
  border: 1px solid var(--exp-border);
  border-radius: var(--exp-radius-sm);
  font-size: 14px;
  background: var(--exp-bg);
}
.exp-reviews-filter-checkbox { display: flex; align-items: center; gap: 8px; font-size: 14px; cursor: pointer; }
.exp-reviews-filter-checkbox input { margin: 0; }
.exp-review-card { padding: 20px 0; border-bottom: 1px solid var(--exp-border-light); }
.exp-review-card:last-child { border-bottom: none; }
.exp-review-card--hidden { display: none; }
@media (max-width: 767px) {
  .exp-review-card { padding: 16px 0; }
}
.exp-review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.exp-review-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 700; color: #fff;
}
.exp-review-author-info { flex: 1; }
.exp-review-verified-badge {
  font-size: 12px;
  font-weight: 600;
  color: #0d9488;
  white-space: nowrap;
}
.exp-early-review-name { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; }
.exp-early-review-name { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; }
.exp-early-review-name .exp-review-verified-badge { font-size: 11px; }
.exp-review-form--highlight {
  animation: exp-review-form-highlight 0.5s ease-out;
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.35);
  border-radius: var(--exp-radius-sm, 8px);
}
@keyframes exp-review-form-highlight {
  0% { box-shadow: 0 0 0 6px rgba(13, 148, 136, 0.5); }
  100% { box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.2); }
}
.exp-review-author { font-size: 14px; font-weight: 600; display: flex; align-items: center; flex-wrap: wrap; gap: 8px; }
.exp-review-date { font-size: 12px; color: var(--exp-text-muted); }
.exp-review-stars-small { color: var(--exp-gold); font-size: 13px; letter-spacing: 1px; }
.exp-review-text { font-size: 14px; line-height: 1.6; color: var(--exp-text-secondary); margin: 0; }

.exp-btn-more-reviews {
  width: 100%;
  padding: 14px;
  min-height: 48px;
  border: 1.5px solid var(--exp-border);
  border-radius: var(--exp-radius-sm);
  font-size: 14px;
  font-weight: 600;
  color: var(--exp-text-secondary);
  background: none;
  margin-top: 16px;
  transition: all .2s;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}
.exp-btn-more-reviews:hover { border-color: var(--exp-primary); color: var(--exp-primary); }
.exp-btn-more-reviews:focus-visible { outline: 2px solid var(--exp-primary); outline-offset: 2px; }

/* ═══════════════════════════════════════
   INFO CARDS
   ═══════════════════════════════════════ */
.exp-info-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.exp-info-card {
  padding: 16px;
  background: var(--exp-bg-subtle);
  border-radius: var(--exp-radius-sm);
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 10px;
  row-gap: 10px;
  align-items: start;
}
.exp-info-card-icon {
  font-size: 24px;
  line-height: 1;
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.35em;
  min-width: 1.35em;
  flex-shrink: 0;
  align-self: center;
}
.exp-info-card-title {
  font-size: 14px;
  font-weight: 600;
  margin: 0;
  line-height: 1.35;
  align-self: center;
}
.exp-info-card-text,
.exp-info-card-map,
.exp-info-card-meeting-photo { grid-column: 1 / -1; }
.exp-info-card-text { font-size: 13px; color: var(--exp-text-secondary); line-height: 1.5; }
@media (max-width: 767px) {
  .exp-info-cards { gap: 10px; }
  .exp-info-card { padding: 14px; }
}

/* ═══════════════════════════════════════
   FAQ
   ═══════════════════════════════════════ */
.exp-faq-list {
  display: flex;
  flex-direction: column;
}
.exp-faq-item {
  border-bottom: 1px solid #ede7d9;
}
.exp-faq-item:last-child {
  border-bottom: none;
}
.exp-faq-question {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  cursor: pointer;
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--exp-text);
  font-family: inherit;
  text-align: left;
  transition: color .15s;
}
.exp-faq-question:hover {
  color: var(--exp-accent);
}
.exp-faq-question:focus {
  outline: none;
}
.exp-faq-question span:first-child {
  flex: 1;
  line-height: 1.45;
}
.exp-faq-arrow {
  font-size: 16px;
  color: var(--exp-accent);
  transition: transform .2s;
  flex-shrink: 0;
}
.exp-faq-item.is-open .exp-faq-arrow {
  transform: rotate(180deg);
}
.exp-faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.28s ease;
  padding-bottom: 0;
}
.exp-faq-item.is-open .exp-faq-answer {
  grid-template-rows: 1fr;
  padding-bottom: 14px;
}
.exp-faq-answer-inner {
  overflow: hidden;
  min-height: 0;
  font-size: 13px;
  color: var(--exp-text-muted);
  line-height: 1.6;
  padding: 2px 0 0;
}

/* ═══════════════════════════════════════
   BOOKING SIDEBAR
   ═══════════════════════════════════════ */
.exp-booking-sidebar {
  position: sticky;
  top: 80px;
  align-self: start;
  background: var(--exp-bg);
  border: 1px solid var(--exp-border);
  border-radius: var(--exp-radius-lg);
  padding: 28px;
  box-shadow: var(--exp-shadow-lg);
}
.exp-booking-price { display: flex; align-items: baseline; gap: 8px; margin-bottom: 4px; }
.exp-price-from { font-size: 15px; color: var(--exp-text-secondary); font-weight: 500; }
.exp-price-old { font-size: 18px; color: var(--exp-text-muted); text-decoration: line-through; }
.exp-price-current { font-size: 32px; font-weight: 800; color: var(--exp-text); }
.exp-price-per { font-size: 14px; color: var(--exp-text-secondary); }
.exp-booking-save {
  display: inline-block;
  background: var(--exp-danger-light);
  color: var(--exp-danger);
  font-size: 12px; font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.exp-booking-form-group { margin-bottom: 16px; }
.exp-booking-label {
  display: block; font-size: 13px; font-weight: 600;
  color: var(--exp-text-secondary); margin-bottom: 6px;
  text-transform: uppercase; letter-spacing: .5px;
}
/* Поле выбора даты — визуально как input, удобная зона нажатия */
.exp-booking-date-group .booking-date-display {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1.5px solid var(--exp-border);
  border-radius: var(--exp-radius-sm);
  font-size: 15px;
  font-family: inherit;
  color: var(--exp-text);
  background: var(--exp-bg);
  cursor: pointer;
  transition: border-color .2s, background .2s;
  display: flex;
  align-items: center;
  box-sizing: border-box;
}
.exp-booking-date-group .booking-date-display:hover { border-color: var(--exp-text-muted); }
.exp-booking-date-group .booking-date-display:focus { outline: none; }
.exp-booking-date-group .booking-date-display:focus-visible {
  border-color: var(--exp-primary);
  box-shadow: 0 0 0 3px rgba(232, 93, 42, 0.22);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--exp-primary) 18%, transparent);
}
.exp-booking-date-group .booking-date-display.booking-date-display-filled { color: var(--exp-text); font-weight: 500; }
.exp-booking-input {
  width: 100%;
  padding: 12px 14px;
  min-height: 48px;
  border: 1.5px solid var(--exp-border);
  border-radius: var(--exp-radius-sm);
  font-size: 15px;
  font-family: inherit;
  color: var(--exp-text);
  background: var(--exp-bg);
  transition: border-color .2s;
  box-sizing: border-box;
}
.exp-booking-input:focus { outline: none; border-color: var(--exp-primary); }

.exp-guests-selector {
  display: flex; align-items: center;
  border: 1.5px solid var(--exp-border);
  border-radius: var(--exp-radius-sm);
  overflow: hidden;
}
.exp-guests-btn {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 600;
  color: var(--exp-text-secondary);
  background: none;
  border: none;
  transition: all .2s;
}
.exp-guests-btn:hover { background: var(--exp-bg-subtle); color: var(--exp-primary); }
.exp-guests-value { flex: 1; text-align: center; font-size: 15px; font-weight: 600; }

.exp-booking-total {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 0;
  border-top: 1px solid var(--exp-border);
  margin-bottom: 16px;
}
.exp-booking-total-label { font-size: 15px; color: var(--exp-text-secondary); }
.exp-booking-total-value { font-size: 22px; font-weight: 800; }

.exp-booking-price-message {
  padding: 14px 0;
  border-top: 1px solid var(--exp-border);
  margin-bottom: 16px;
  font-size: 14px;
  line-height: 1.45;
  color: var(--exp-text);
  font-weight: 500;
}
.exp-booking-price-message:empty { display: none; }

.exp-btn-book {
  width: 100%;
  padding: 16px;
  min-height: 52px;
  background: var(--exp-booking-btn);
  color: #fff;
  font-size: 16px; font-weight: 700;
  border-radius: var(--exp-radius-sm);
  border: none;
  transition: all .2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}
.exp-btn-book:hover {
  background: var(--exp-booking-btn-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(232, 93, 42, 0.28);
  box-shadow: 0 6px 20px color-mix(in srgb, var(--exp-primary) 32%, transparent);
}
.exp-btn-book:focus-visible { outline: 2px solid var(--exp-booking-btn); outline-offset: 2px; }

.exp-booking-guarantees { margin-top: 16px; }
.exp-guarantee-item {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--exp-text-secondary);
  padding: 5px 0;
}
.exp-g-icon {
  font-size: 16px;
  line-height: 1;
  color: var(--exp-success);
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.exp-booking-urgency {
  margin-top: 16px;
  padding: 12px 14px;
  background: #FFF7ED;
  border: 1px solid #FED7AA;
  border-radius: var(--exp-radius-sm);
  display: flex; align-items: center; gap: 10px;
}
.exp-urgency-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--exp-primary);
  animation: expPulse 1.5s infinite;
}
@keyframes expPulse { 0%, 100% { opacity: 1; } 50% { opacity: .4; } }
.exp-urgency-text { font-size: 13px; color: #9A3412; font-weight: 500; }
.exp-urgency-text strong { font-weight: 700; }

.exp-booking-social-proof {
  margin-top: 12px;
  font-size: 12px;
  color: var(--exp-text-muted);
  text-align: center;
}

/* ═══════════════════════════════════════
   SIMILAR TOURS (carousel + compare)
   ═══════════════════════════════════════ */
.exp-similar-tours { padding: 48px 0; background: var(--exp-bg-subtle); }
@media (max-width: 767px) {
  .exp-similar-tours { padding: 32px 0; }
}
.exp-similar-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; margin-top: 24px; }
.exp-similar-item { min-width: 0; }
.exp-tour-card {
  background: var(--exp-bg);
  border-radius: var(--exp-radius-md);
  overflow: hidden;
  box-shadow: var(--exp-shadow-sm);
  transition: box-shadow .2s;
  display: block;
  position: relative;
  height: 100%;
}
.exp-tour-card:hover { box-shadow: var(--exp-shadow-md); }
.exp-tour-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform .2s;
}
.exp-tour-card-link:hover { transform: translateY(-2px); }
.exp-tour-card-img {
  width: 100%; height: 180px;
  background-size: cover; background-position: center;
}
.exp-tour-card-body { padding: 16px; }
.exp-tour-card-title { font-size: 15px; font-weight: 600; margin: 0 0 6px; line-height: 1.3; }
.exp-tour-card-duration {
  display: inline-flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--exp-text-secondary);
  margin-bottom: 10px;
  line-height: 1.35;
}
.exp-tour-card-duration .exp-tc-meta-icon {
  line-height: 1;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.exp-tour-card-bottom { display: flex; justify-content: space-between; align-items: center; }
.exp-tour-card-rating { display: flex; align-items: center; gap: 4px; font-size: 13px; }
.exp-tc-star { color: var(--exp-gold); }
.exp-tour-card-rating span { color: var(--exp-text-muted); }
.exp-tour-card-price { font-size: 17px; font-weight: 700; }
.exp-tour-card-price small { font-size: 12px; font-weight: 400; color: var(--exp-text-muted); }
.exp-tour-card-compare {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 8px 12px;
  min-height: 40px;
  font-size: 12px;
  font-weight: 600;
  background: rgba(255,255,255,.95);
  border: 1px solid var(--exp-border);
  border-radius: var(--exp-radius-sm);
  cursor: pointer;
  z-index: 1;
  transition: background .2s, border-color .2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}
.exp-tour-card-compare:hover { background: #fff; border-color: var(--exp-primary); color: var(--exp-primary); }
.exp-tour-card-compare:focus-visible { outline: 2px solid var(--exp-primary); outline-offset: 2px; }
.exp-compare-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
  padding: 14px;
  background: var(--exp-primary-light);
  border-radius: var(--exp-radius-sm);
}
.exp-compare-bar .exp-compare-count { font-size: 14px; font-weight: 600; }
.exp-compare-link {
  font-weight: 700;
  color: var(--exp-primary);
  text-decoration: underline;
  padding: 4px 8px;
  margin: -4px -8px;
  border-radius: var(--exp-radius-sm);
  min-height: 32px;
  display: inline-flex;
  align-items: center;
}
.exp-compare-link:hover { color: var(--exp-primary-hover); }
.exp-compare-link:focus-visible { outline: 2px solid var(--exp-primary); outline-offset: 2px; }

/* ═══════════════════════════════════════
   FINAL CTA
   ═══════════════════════════════════════ */
.exp-final-cta {
  text-align: center;
  padding: 56px 20px;
  background: linear-gradient(135deg, #1e293b, #0f172a);
  color: #fff;
}
@media (max-width: 767px) {
  .exp-final-cta { padding: 40px 16px; }
}
.exp-final-cta-title { font-size: 28px; font-weight: 800; margin: 0 0 8px; line-height: 1.25; }
.exp-final-cta-sub { font-size: 16px; color: #94A3B8; margin: 0 0 24px; line-height: 1.5; }
.exp-final-cta-row { display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap; }
.exp-final-cta-price { font-size: 28px; font-weight: 800; }
.exp-final-cta-price small { font-size: 14px; font-weight: 400; color: #94A3B8; }
.exp-btn-book-final {
  padding: 16px 48px;
  min-height: 52px;
  background: var(--exp-booking-btn);
  color: #fff;
  font-size: 17px; font-weight: 700;
  border-radius: var(--exp-radius-sm);
  border: none;
  transition: all .2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}
.exp-btn-book-final:hover {
  background: var(--exp-booking-btn-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 93, 42, 0.35);
  box-shadow: 0 8px 24px color-mix(in srgb, var(--exp-primary) 38%, transparent);
}
.exp-btn-book-final:focus-visible { outline: 2px solid #fff; outline-offset: 2px; }
.exp-final-cta-guarantee { margin-top: 16px; font-size: 13px; color: #64748B; }

/* ═══════════════════════════════════════
   MOBILE BOTTOM BAR
   ═══════════════════════════════════════ */
.exp-mobile-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,.98);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--exp-border);
  padding: 12px 20px;
  padding-bottom: max(12px, env(safe-area-inset-bottom));
  box-shadow: 0 -4px 20px rgba(0,0,0,.08);
  transition: transform .25s ease, opacity .2s ease;
}
.exp-mobile-bar.is-hidden-by-cta {
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
}
.exp-mobile-bar-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 600px; margin: 0 auto;
}
.exp-mobile-bar-left {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.exp-mobile-bar-no-prepay {
  font-size: 11px;
  color: var(--exp-text-muted);
  line-height: 1.3;
}
.exp-mobile-bar-price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 4px 6px;
}
.exp-mobile-bar-price .exp-price-from { font-size: 14px; color: var(--exp-text-secondary); font-weight: 500; }
.exp-mobile-bar-price .exp-price-current { font-size: 22px; font-weight: 800; }
.exp-mobile-bar-price .exp-price-per { font-size: 12px; color: var(--exp-text-muted); }
.exp-mobile-bar-price .exp-price-old { font-size: 13px; color: var(--exp-text-muted); text-decoration: line-through; }
.exp-btn-book-mobile {
  padding: 14px 32px;
  min-height: 48px;
  background: var(--exp-booking-btn);
  color: #fff;
  font-size: 15px; font-weight: 700;
  border-radius: var(--exp-radius-sm);
  border: none;
  transition: all .2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}
.exp-btn-book-mobile:hover { background: var(--exp-booking-btn-hover); }
.exp-btn-book-mobile:focus-visible { outline: 2px solid var(--exp-booking-btn); outline-offset: 2px; }

/* ═══════════════════════════════════════
   LIGHTBOX (анимации открытия/закрытия и свайпа)
   ═══════════════════════════════════════ */
.exp-lightbox {
  display: flex;
  position: fixed; inset: 0;
  z-index: 20000;
  background: rgba(0,0,0,.92);
  align-items: center; justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease-out, visibility 0.25s ease-out;
}
.exp-lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.exp-lightbox-close {
  position: absolute;
  top: max(20px, env(safe-area-inset-top));
  right: max(20px, env(safe-area-inset-right));
  z-index: 20;
  width: 48px; height: 48px;
  color: #fff; font-size: 28px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  border: none;
  transition: background .2s;
}
.exp-lightbox-close:hover { background: rgba(255,255,255,.2); }
.exp-lightbox-close:focus-visible { outline: 2px solid #fff; outline-offset: 2px; }
.exp-lightbox-swiper-wrap {
  position: relative;
  z-index: 1;
  width: 90vw;
  max-width: 1200px;
  height: 85vh;
  flex: 0 0 auto;
  opacity: 0.95;
  transform: scale(0.96);
  transition: transform 0.28s cubic-bezier(0.34, 1.2, 0.64, 1), opacity 0.25s ease-out;
}
.exp-lightbox.is-open .exp-lightbox-swiper-wrap {
  opacity: 1;
  transform: scale(1);
}
.exp-lightbox-swiper-wrap.is-swipe-closing--down {
  transform: translateY(20%) scale(0.97);
  opacity: 0;
  transition: transform 0.22s ease-out, opacity 0.2s ease-out;
}
.exp-lightbox-swiper-wrap.is-swipe-closing--up {
  transform: translateY(-20%) scale(0.97);
  opacity: 0;
  transition: transform 0.22s ease-out, opacity 0.2s ease-out;
}
.exp-lightbox-swiper.swiper { width: 100%; height: 100%; }
.exp-lightbox-swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}
.exp-lightbox-swiper .swiper-slide img {
  max-width: 100%;
  max-height: 85vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--exp-radius-md);
}
.exp-lightbox-nav {
  position: absolute; top: 50%;
  z-index: 20;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  background: rgba(255,255,255,.15);
  color: #fff; font-size: 24px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: none;
  transition: background .2s;
}
.exp-lightbox-nav:hover { background: rgba(255,255,255,.25); }
.exp-lightbox-nav:focus-visible { outline: 2px solid #fff; outline-offset: 2px; }
.exp-lightbox-prev { left: max(20px, env(safe-area-inset-left)); }
.exp-lightbox-next { right: max(20px, env(safe-area-inset-right)); }
.exp-lightbox-counter {
  position: absolute;
  bottom: max(24px, env(safe-area-inset-bottom));
  z-index: 20;
  left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,.7);
  font-size: 14px; font-weight: 500;
}
.exp-lightbox-caption {
  position: absolute;
  bottom: 52px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  width: 100%;
  max-width: min(90vw, 560px);
  padding: 12px 16px;
  background: rgba(0,0,0,.65);
  color: #fff;
  font-size: 14px;
  line-height: 1.45;
  border-radius: var(--exp-radius-sm);
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  box-sizing: border-box;
}
.exp-lightbox-caption.is-visible { opacity: 1; }
.exp-lightbox-caption-author { display: block; margin-bottom: 4px; font-weight: 600; }
.exp-lightbox-caption-text { font-style: italic; }
@media (max-width: 767px) {
  .exp-lightbox-caption { bottom: 48px; padding: 10px 12px; font-size: 13px; }
}

/* UGC — Посмотрите глазами участника */
.exp-ugc-intro {
  font-size: 15px;
  color: var(--exp-text-secondary);
  margin: -8px 0 20px;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .exp-ugc-intro { margin-bottom: 16px; font-size: 14px; }
}
.exp-ugc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(100px, 140px);
  gap: 10px;
}
@media (max-width: 767px) {
  .exp-ugc-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: minmax(90px, 120px);
    gap: 8px;
  }
}
.exp-ugc-item {
  position: relative;
  min-height: 0;
  border-radius: var(--exp-radius-sm);
  overflow: hidden;
  padding: 0;
  border: none;
  background: var(--exp-border-light);
  cursor: pointer;
  display: block;
  font: inherit;
  transition: transform .2s, box-shadow .2s;
}
.exp-ugc-item--large {
  grid-column: span 2;
  grid-row: span 2;
}
.exp-ugc-item--wide { grid-column: span 2; }
.exp-ugc-item--tall { grid-row: span 2; }
@media (max-width: 767px) {
  .exp-ugc-item--large { grid-column: span 2; grid-row: span 2; }
  .exp-ugc-item--wide { grid-column: span 2; }
  .exp-ugc-item--tall { grid-row: span 2; }
}
.exp-ugc-item:hover { transform: scale(1.02); box-shadow: var(--exp-shadow-md); }
.exp-ugc-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}
.exp-ugc-item-author {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 6px 8px;
  background: linear-gradient(transparent, rgba(0,0,0,.75));
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
}
/* Карточка «Ещё N фото» */
.exp-ugc-more {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  background: linear-gradient(145deg, var(--exp-primary) 0%, #0c4a6e 100%);
  color: #fff;
  font-weight: 600;
}
.exp-ugc-more:hover { color: #fff; }
.exp-ugc-more-num {
  font-size: 28px;
  line-height: 1;
  opacity: .95;
}
.exp-ugc-more-text {
  font-size: 13px;
  opacity: .9;
}
.exp-ugc-actions {
  margin-top: 20px;
  text-align: center;
}
.exp-ugc-show-more {
  padding: 12px 24px;
  min-height: 48px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  background: var(--exp-primary);
  border: none;
  border-radius: var(--exp-radius-md);
  cursor: pointer;
  transition: opacity .2s, transform .05s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}
.exp-ugc-show-more:hover { opacity: .92; }
.exp-ugc-show-more:focus-visible { outline: 2px solid var(--exp-primary); outline-offset: 2px; }
.exp-ugc-show-more:active { transform: scale(0.98); }

/* ═══════════════════════════════════════
   BOOKING SIDEBAR — SCHEDULE DATES
   ═══════════════════════════════════════ */
.exp-booking-schedule {
  margin-top: 20px;
  padding: 18px 16px;
  background: linear-gradient(135deg, var(--exp-primary-light) 0%, #fff 100%);
  border-radius: var(--exp-radius-md);
  border: 1px solid rgba(232, 93, 42, .15);
}

/* ═══════════════════════════════════════
   РАСПИСАНИЕ В САЙДБАРЕ (booking-sidebar-block)
   ═══════════════════════════════════════ */
.exp-booking-schedule .exp-schedule-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--exp-text);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.exp-booking-schedule .exp-schedule-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 10px;
  border-radius: var(--exp-radius-sm);
  transition: background .2s;
  font-size: 13px;
}
.exp-booking-schedule .exp-schedule-row:hover {
  background: #faf8f5;
  background: color-mix(in srgb, var(--exp-primary) 7%, var(--exp-bg));
}
.exp-booking-schedule .exp-schedule-row + .exp-schedule-row { border-top: 1px solid var(--exp-border-light); }
.exp-booking-schedule .exp-schedule-date {
  min-width: 90px;
  font-weight: 600;
  color: var(--exp-text);
  font-size: 13px;
}
.exp-booking-schedule .exp-schedule-bar-wrap {
  flex: 1;
  height: 8px;
  background: var(--exp-border);
  border-radius: 4px;
  overflow: hidden;
}
.exp-booking-schedule .exp-schedule-bar {
  height: 100%;
  border-radius: 4px;
  transition: width .5s ease;
}
.exp-booking-schedule .exp-schedule-places {
  min-width: 56px;
  text-align: right;
  font-weight: 700;
  font-size: 12px;
  white-space: nowrap;
}
.exp-booking-schedule .exp-schedule-row--full { opacity: .4; }
.exp-booking-schedule .exp-schedule-row--full .exp-schedule-date {
  text-decoration: line-through;
  color: var(--exp-text-muted);
}

/* ═══════════════════════════════════════
   REVIEW FORM
   ═══════════════════════════════════════ */
.exp-review-form {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--exp-border);
}
.exp-review-form .comment-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 14px;
  color: var(--exp-text);
}
.exp-review-form .comment-form input[type="text"],
.exp-review-form .comment-form input[type="email"],
.exp-review-form .comment-form input[type="url"],
.exp-review-form .comment-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--exp-border);
  border-radius: var(--exp-radius-sm);
  font-size: 14px;
  font-family: inherit;
  color: var(--exp-text);
  background: var(--exp-bg);
  transition: border-color .2s, box-shadow .2s;
  box-sizing: border-box;
}
.exp-review-form .comment-form input:focus,
.exp-review-form .comment-form textarea:focus {
  border-color: var(--exp-primary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(232, 93, 42, .1);
}
.exp-review-form .comment-form .form-submit input[type="submit"] {
  background: var(--exp-primary);
  color: #fff;
  border: none;
  padding: 14px 36px;
  min-height: 48px;
  border-radius: var(--exp-radius-sm);
  font-size: 15px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: all .2s;
  box-sizing: border-box;
}
.exp-review-form .comment-form .form-submit input[type="submit"]:hover {
  background: var(--exp-primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(232, 93, 42, .3);
}
.exp-review-form .comment-form .form-submit input[type="submit"]:focus-visible {
  outline: 2px solid var(--exp-primary); outline-offset: 2px;
}
.exp-review-form .comment-form p { margin-bottom: 16px; }
.exp-review-form .comment-notes { font-size: 12px; color: var(--exp-text-muted); margin-bottom: 16px; }
.exp-review-form #reply-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--exp-text);
  margin-bottom: 16px;
}

/* Rating stars in form */
.exp-comment-rating { margin-bottom: 16px; }
.exp-form-label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 14px;
  color: var(--exp-text);
}
.exp-label-hint { font-weight: 400; color: var(--exp-text-muted); font-size: 12px; }
.exp-star-input { font-size: 32px; cursor: pointer; color: var(--exp-border); letter-spacing: 4px; }
.exp-star-pick { transition: color .15s; }
.exp-star-pick.is-active { color: var(--exp-gold); }
.exp-star-pick:hover { color: #F59E0B; }

/* Photo upload area (компактный блок) */
.exp-comment-photos { margin-bottom: 20px; }
.exp-photo-upload-area {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  min-height: 44px;
  border: 2px dashed var(--exp-border);
  border-radius: var(--exp-radius-sm);
  background: var(--exp-bg-subtle);
  cursor: pointer;
  transition: all .2s;
  text-align: center;
  box-sizing: border-box;
}
.exp-photo-upload-area:hover,
.exp-photo-upload-area.is-dragover {
  border-color: var(--exp-primary);
  background: var(--exp-primary-light);
}
.exp-photo-upload-area:focus-visible { outline: 2px solid var(--exp-primary); outline-offset: 2px; }
.exp-upload-icon { font-size: 20px; }
.exp-upload-text { font-size: 13px; font-weight: 600; color: var(--exp-text); }
.exp-upload-hint { font-size: 11px; color: var(--exp-text-muted); }

/* Photo previews */
.exp-photo-previews {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.exp-photo-preview-item {
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: var(--exp-radius-sm);
  overflow: hidden;
  border: 2px solid var(--exp-border);
}
.exp-photo-preview-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.exp-photo-preview-remove {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(0,0,0,.6);
  color: #fff;
  border: none;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  cursor: pointer;
  padding: 0;
}
.exp-photo-preview-remove:hover { background: var(--exp-danger); }

/* Review photos in cards */
.exp-review-photos {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.exp-review-photo {
  width: 100px;
  height: 80px;
  border-radius: var(--exp-radius-sm);
  overflow: hidden;
  display: block;
  transition: transform .2s;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  font: inherit;
}
.exp-review-photo:hover { transform: scale(1.05); }
.exp-review-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

/* No reviews state */
.exp-no-reviews {
  text-align: center;
  padding: 32px 20px;
  background: var(--exp-bg-subtle);
  border-radius: var(--exp-radius-md);
  border: 1px dashed var(--exp-border);
}
.exp-no-reviews-icon { font-size: 40px; margin-bottom: 8px; }
.exp-no-reviews-text {
  font-size: 15px;
  color: var(--exp-text-secondary);
  font-weight: 500;
  margin: 0;
}

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .exp-layout { grid-template-columns: 1fr; }
  .exp-booking-sidebar { display: none; }
  .exp-mobile-bar { display: block; }
  .exp-similar-grid { grid-template-columns: repeat(2, 1fr); }
  .exp-page { padding-bottom: 80px; }
}

@media (max-width: 768px) {
  /* Свайп по hero: горизонтальный scroll-snap, без изменения логики лайтбокса по тапу */
  .exp-hero-gallery {
    display: block;
    grid-template-columns: unset;
    grid-template-rows: unset;
    gap: 0;
    overflow: visible;
  }
  .exp-hero-gallery-track {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 0;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x;
    min-height: 280px;
    border-radius: inherit;
    scrollbar-width: none;
  }
  .exp-hero-gallery-track::-webkit-scrollbar {
    display: none;
  }
  .exp-hero-gallery-section .entry-image--fullscreen .exp-hero-gallery-track {
    min-height: 100vh;
  }
  .exp-hero-gallery .exp-photo {
    flex: 0 0 100%;
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    box-sizing: border-box;
    border-radius: var(--exp-radius-lg);
  }
  .exp-photo--main { grid-row: auto; }
  .exp-title { font-size: 24px; }
  .exp-subtitle { font-size: 15px; }
  .exp-meta { gap: 12px; }
  .exp-highlights { grid-template-columns: 1fr; }
  .exp-includes-grid { grid-template-columns: 1fr; }
  .exp-guide-card { flex-direction: column; align-items: center; text-align: center; padding: 20px; }
  .exp-guide-stats { justify-content: center; }
  .exp-reviews-summary { flex-direction: column; text-align: center; }
  .exp-reviews-bars { width: 100%; max-width: 280px; margin: 0 auto; }
  .exp-info-cards { grid-template-columns: 1fr; }
  .exp-similar-grid { grid-template-columns: 1fr; }
  .exp-sub-nav-link { padding: 12px 14px; font-size: 13px; }
  .exp-section-title { font-size: 20px; margin-bottom: 16px; }
  .exp-section { padding-bottom: 20px; margin-bottom: 20px; }
  .exp-final-cta-title { font-size: 22px; }
  .exp-final-cta-row { flex-direction: column; gap: 12px; }
}

@media (max-width: 480px) {
  /* Стандартная галерея в контенте: компенсация типичных полей темы */
  .exp-hero-gallery { border-radius: 0; margin: 0 -16px; }
  /* У wide/full/fullscreen родитель .entry-image даёт full-bleed (Reboot) — не суммируем отрицательный margin */
  .entry-image .exp-hero-gallery {
    margin-left: 0;
    margin-right: 0;
  }
  .exp-hero-gallery .exp-photo { border-radius: 0; }
}

/* ═══════════════════════════════════════
   COMPARE PAGE
   ═══════════════════════════════════════ */
.exp-compare-page { padding: 24px 0; }
.exp-compare-title { font-size: 24px; font-weight: 800; margin: 0 0 20px; }
.exp-compare-empty { text-align: center; max-width: 480px; margin: 0 auto; }
.exp-compare-empty-text { font-size: 16px; color: var(--exp-text-secondary); margin-bottom: 20px; line-height: 1.6; }
.exp-compare-empty-link {
  display: inline-block;
  padding: 12px 24px;
  background: var(--exp-primary);
  color: #fff;
  font-weight: 600;
  border-radius: var(--exp-radius-sm);
  transition: background .2s;
}
.exp-compare-empty-link:hover { background: var(--exp-primary-hover); color: #fff; }
.exp-compare-table-wrap { overflow: hidden; }
.exp-compare-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 0 -20px; padding: 0 20px; }
.exp-compare-table { width: 100%; min-width: 500px; border-collapse: collapse; }
.exp-compare-table th,
.exp-compare-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--exp-border);
  vertical-align: top;
}
.exp-compare-table thead th {
  background: var(--exp-bg-subtle);
  font-weight: 700;
  font-size: 14px;
}
.exp-compare-row-label {
  font-weight: 600;
  color: var(--exp-text-secondary);
  width: 140px;
}
.exp-compare-col a { font-weight: 600; color: var(--exp-primary); }
.exp-compare-col a:hover { text-decoration: underline; }
.exp-compare-cell { font-size: 14px; }

/* Responsive: similar swiper & maps */
@media (max-width: 768px) {
  .exp-map-wrap { min-height: 220px; height: 220px; }
  .exp-route-map-wrap { min-height: 260px; height: 260px; }
  .exp-info-card-map.exp-meeting-map-inline { min-height: 140px; height: 140px; }
  .exp-reviews-toolbar { flex-direction: column; align-items: flex-start; }
}
