/**
 * single-safari.css  v2.2.0
 * Full v3 design system — matches serengeti-safari-landing-v3.html exactly.
 * CSS variables use --gold / --earth / --cream (not --sv3-*).
 *
 * @package SAT_Packages
 */

/* ════════════════════════════════════════════
   CSS CUSTOM PROPERTIES
════════════════════════════════════════════ */
:root {
  --gold:        #C9973A;
  --gold-light:  #E8C27A;
  --gold-pale:   #F5ECD8;
  --gold-hover:  #B5852E;
  --earth:       #2C1A0E;
  --earth-mid:   #5C3D22;
  --earth-light: #8B6545;
  --sage:        #4A5240;
  --cream:       #F9F4EC;
  --warm-white:  #FDFAF5;
  --text-dark:   #1A1209;
  --text-mid:    #4A3728;
  --text-light:  #7A6555;
  --border:      rgba(201,151,58,0.18);
  --border-solid:#E8D8C0;
  --shadow:      0 2px 24px rgba(44,26,14,0.08);
  --shadow-md:   0 4px 32px rgba(44,26,14,0.12);
  --shadow-lg:   0 8px 48px rgba(44,26,14,0.16);
  --font-display:'Cormorant Garamond', Georgia, serif;
  --font-body:   'DM Sans', system-ui, sans-serif;
  --r:           6px;
  --r-lg:        14px;
  --r-xl:        20px;
  --tr:          all 0.22s cubic-bezier(.4,0,.2,1);
}

/* ════════════════════════════════════════════
   BASE RESET
════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body.sat-single-body {
  font-family: var(--font-body);
  background: var(--warm-white);
  color: var(--text-dark);
  font-size: 16px;
  line-height: 1.65;
}
.sat-single-body img { display: block; max-width: 100%; }

/* ════════════════════════════════════════════
   SCROLL PROGRESS BAR
════════════════════════════════════════════ */
.scroll-progress {
  position: fixed; top: 0; left: 0; z-index: 9999;
  height: 3px; width: 0%; background: var(--gold);
  transition: width 0.1s linear;
}

/* ════════════════════════════════════════════
   TOPBAR — removed (Elementor header now used)
════════════════════════════════════════════ */

/* ════════════════════════════════════════════
   HERO SECTION
════════════════════════════════════════════ */
.hero {
  position: relative; height: min(90vh, 700px); min-height: 480px;
  display: flex; align-items: flex-end; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center 40%;
  transform: scale(1.04);
  animation: heroZoom 14s ease-out forwards;
  will-change: transform;
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(26,18,9,0.78) 0%,
    rgba(26,18,9,0.38) 48%,
    rgba(26,18,9,0.12) 100%
  );
}
@keyframes heroZoom {
  from { transform: scale(1.04); }
  to   { transform: scale(1); }
}
.hero-content {
  position: relative; z-index: 2;
  padding: clamp(28px, 5vw, 64px) clamp(20px, 6vw, 80px) clamp(32px, 5vw, 60px);
  max-width: 760px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(201,151,58,0.22); backdrop-filter: blur(8px);
  border: 1px solid rgba(201,151,58,0.4);
  color: var(--gold-light); font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 100px; margin-bottom: 16px;
}
.hero-badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold-light);
  animation: badgePulse 2s ease infinite;
}
@keyframes badgePulse {
  0%, 100% { opacity: 1; } 50% { opacity: 0.4; }
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 600; color: #fff; line-height: 1.05;
  letter-spacing: -0.01em; margin-bottom: 14px;
}
.hero-title em { font-style: italic; color: var(--gold-light); }
.hero-subtitle {
  font-size: clamp(0.88rem, 2vw, 1.02rem);
  color: rgba(255,255,255,0.75); line-height: 1.6; margin-bottom: 24px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 4px; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: #fff;
  padding: 13px 26px; border-radius: var(--r);
  font-family: var(--font-body); font-size: 0.85rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase; text-decoration: none;
  transition: var(--tr);
}
.btn-primary:hover { background: var(--gold-hover); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(201,151,58,0.38); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.12); color: #fff;
  border: 1.5px solid rgba(255,255,255,0.35);
  padding: 12px 24px; border-radius: var(--r);
  font-family: var(--font-body); font-size: 0.85rem; font-weight: 500;
  text-decoration: none; backdrop-filter: blur(4px); transition: var(--tr);
}
.btn-secondary:hover { background: rgba(255,255,255,0.22); }
/* Hero trust row */
.hero-trust-row {
  display: flex; flex-wrap: wrap; align-items: center; gap: 12px;
  margin-top: 22px; padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.16);
  font-size: 0.78rem;
}
.hero-trust-item { display: flex; align-items: center; gap: 5px; color: rgba(255,255,255,0.75); }
.hero-trust-sep { color: rgba(255,255,255,0.3); font-size: 0.85rem; }
/* Scroll indicator */
.hero-scroll {
  position: absolute; bottom: 28px; right: 32px; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.55); font-size: 0.65rem; letter-spacing: 0.14em; text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.6));
  animation: scrollDrop 2.4s ease-in-out infinite;
}
@keyframes scrollDrop {
  0% { transform: scaleY(0); transform-origin: top; opacity: 0; }
  40% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  60% { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* ════════════════════════════════════════════
   FACTS BAR
════════════════════════════════════════════ */
.facts-bar {
  background: var(--earth);
  display: flex; flex-wrap: wrap;
  justify-content: center; gap: 0;
  padding: 0 clamp(16px, 4vw, 40px);
  border-bottom: 2px solid rgba(201,151,58,0.3);
}
.fact-item {
  display: flex; align-items: center; gap: 10px;
  padding: 15px 20px; color: rgba(255,255,255,0.85);
  border-right: 1px solid rgba(255,255,255,0.08);
  min-width: 120px;
}
.fact-item:last-child { border-right: none; }
.fact-icon { color: var(--gold-light); flex-shrink: 0; }
.fact-icon svg { width: 18px; height: 18px; }
.fact-label { font-size: 0.64rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 2px; }
.fact-value { font-size: 0.82rem; font-weight: 500; line-height: 1.45; }

/* Facts bar — mobile: 2-column grid, no side borders */
@media (max-width: 640px) {
  .facts-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 0;
  }
  .fact-item {
    flex-direction: row;
    align-items: center;
    gap: 9px;
    padding: 13px 14px;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    min-width: 0;
  }
  /* Right column items get a left border as vertical divider */
  .fact-item:nth-child(even) {
    border-left: 1px solid rgba(255,255,255,0.08);
  }
  .fact-icon svg { width: 16px; height: 16px; }
  .fact-label { font-size: 0.6rem; }
  .fact-value { font-size: 0.78rem; }
}

/* ════════════════════════════════════════════
   PAGE BODY — 2-COLUMN GRID
════════════════════════════════════════════ */
.page-body {
  max-width: 1240px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 0 35px;
  padding: 0 clamp(16px, 4vw, 40px) 80px;
  align-items: start;
}
.main-col { min-width: 0; padding-top: 8px; }
.sidebar-col {
  position: sticky; top: 90px; /* 74px fixed header + 16px gap */
  padding-top: 24px;
  min-width: 0;
  max-width: 100%;
  align-self: start; /* prevents stretching to column height */
}

/* ════════════════════════════════════════════
   BREADCRUMB
════════════════════════════════════════════ */
.breadcrumb {
  padding: 16px 0; font-size: 0.76rem; color: var(--text-light);
  display: flex; align-items: center; gap: 6px; flex-wrap: wrap;
}
.breadcrumb a { color: var(--text-light); text-decoration: none; transition: color 0.15s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: var(--border-solid); }
.breadcrumb .current { color: var(--text-dark); font-weight: 500; }

/* ════════════════════════════════════════════
   TABS — pill-button style
════════════════════════════════════════════ */
.tab-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
  scrollbar-width: none;
}
.tab-nav::-webkit-scrollbar { display: none; }
.tab-btn {
  flex: 0 0 auto;
  padding: 9px 20px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--text-mid);
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: 30px;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.18s, background 0.18s, border-color 0.18s, box-shadow 0.18s;
}
.tab-btn:hover:not(.active) {
  background: #ede6d8;
  border-color: rgba(201,151,58,0.4);
  color: var(--text-dark);
}
.tab-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
  font-weight: 600;
  box-shadow: 0 3px 10px rgba(201,151,58,0.35);
}
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ════════════════════════════════════════════
   SECTION COMPONENTS
════════════════════════════════════════════ */
.section { margin-bottom: 40px; }
.section-label {
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 6px;
}
.section-title {
  font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600; color: var(--text-dark); line-height: 1.2; margin-bottom: 8px;
}
.section-desc { font-size: 0.88rem; color: var(--text-light); line-height: 1.7; }
.divider { border: none; border-top: 1px solid var(--border); margin: 36px 0; }
.overview-text { color: var(--text-mid); line-height: 1.75; margin-bottom: 14px; font-size: 0.92rem; }
.highlight-strip {
  border-left: 3px solid var(--gold); padding: 14px 18px;
  background: var(--cream); border-radius: 0 var(--r) var(--r) 0;
  font-family: var(--font-display); font-size: 1.05rem; font-style: italic;
  color: var(--text-mid); line-height: 1.6; margin-bottom: 24px;
}

/* ════════════════════════════════════════════
   FEATURE CARDS
════════════════════════════════════════════ */
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
  margin-bottom: 32px;
}
.feature-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 18px 16px;
  transition: var(--tr);
}
.feature-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.feature-icon-wrap {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--gold-pale); display: flex; align-items: center; justify-content: center;
  color: var(--gold); margin-bottom: 10px;
}
.feature-icon-wrap svg { width: 18px; height: 18px; }
.feature-name { font-size: 0.82rem; font-weight: 600; color: var(--text-dark); margin-bottom: 5px; }
.feature-desc { font-size: 0.76rem; color: var(--text-light); line-height: 1.55; }

/* ════════════════════════════════════════════
   GALLERY
════════════════════════════════════════════ */
.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 200px 200px;
  gap: 6px;
  border-radius: var(--r-xl); overflow: hidden;
}
.gallery-item { position: relative; overflow: hidden; cursor: pointer; }
.gallery-item:first-child { grid-row: span 2; }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(26,18,9,0.7));
  color: rgba(255,255,255,0.9); font-size: 0.7rem; padding: 20px 10px 8px;
  opacity: 0; transition: opacity 0.3s;
}
.gallery-item:hover .gallery-caption { opacity: 1; }

/* ════════════════════════════════════════════
   DESTINATION STRIP
════════════════════════════════════════════ */
.dest-strip {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
}
.dest-card {
  position: relative; height: 120px; border-radius: var(--r-lg);
  overflow: hidden; cursor: pointer; text-decoration: none;
  display: flex; align-items: flex-end;
  transition: transform 0.3s;
}
.dest-card:hover { transform: scale(1.02); }
.dest-card-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  transition: transform 0.4s;
}
.dest-card:hover .dest-card-bg { transform: scale(1.05); }
.dest-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(transparent 30%, rgba(26,18,9,0.65));
}
.dest-info { position: relative; z-index: 1; padding: 10px 12px; }
.dest-day { font-size: 0.62rem; color: var(--gold-light); letter-spacing: 0.1em; text-transform: uppercase; }
.dest-name { font-size: 0.82rem; font-weight: 600; color: #fff; }
.dest-arrow {
  position: absolute; top: 10px; right: 10px; z-index: 1;
  color: rgba(255,255,255,0.7); transition: transform 0.3s;
}
.dest-card:hover .dest-arrow { transform: translateX(3px); }
.dest-arrow svg { width: 14px; height: 14px; }

/* ════════════════════════════════════════════
   ITINERARY
════════════════════════════════════════════ */
.itinerary { list-style: none; }
.itin-item {
  display: flex; gap: 18px;
  padding: 24px 0; border-bottom: 1px solid var(--border);
}
.itin-item:last-child { border-bottom: none; }
.itin-day-num {
  flex-shrink: 0; width: 36px; height: 36px; border-radius: 50%;
  background: var(--earth); color: var(--gold-light);
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 600;
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
}
.itin-body { flex: 1; }
.itin-title {
  font-family: var(--font-display); font-size: 1.15rem; font-weight: 600;
  color: var(--text-dark); margin-bottom: 8px;
}
.itin-meta { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 10px; }
.itin-tag {
  display: inline-flex; align-items: center; gap: 4px;
  background: var(--cream); border: 1px solid var(--border);
  color: var(--text-light); font-size: 0.72rem;
  padding: 3px 10px; border-radius: 100px;
}
.itin-tag svg { width: 11px; height: 11px; flex-shrink: 0; }
.itin-desc { font-size: 0.88rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 14px; }
.itin-lodge {
  display: flex; align-items: center; gap: 10px;
  background: var(--cream); border: 1px solid var(--border);
  border-radius: var(--r); padding: 10px 14px;
}
.itin-lodge-icon {
  width: 30px; height: 30px; border-radius: 8px;
  background: var(--gold-pale); display: flex; align-items: center; justify-content: center;
  color: var(--gold); flex-shrink: 0;
}
.itin-lodge-icon svg { width: 14px; height: 14px; }
.itin-lodge-name { font-size: 0.82rem; font-weight: 600; color: var(--text-dark); }
.itin-lodge-note { font-size: 0.72rem; color: var(--text-light); margin-top: 2px; }

/* ════════════════════════════════════════════
   INCLUSIONS GRID — removed (replaced by .sat-incl-* below)
════════════════════════════════════════════ */

/* ════════════════════════════════════════════
   PRICING
════════════════════════════════════════════ */
.pricing-intro { font-size: 0.88rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 20px; }
.urgency-bar {
  display: flex; align-items: center; gap: 8px;
  background: rgba(201,151,58,0.1); border: 1px solid rgba(201,151,58,0.3);
  border-radius: var(--r); padding: 8px 14px; margin-bottom: 20px;
  font-size: 0.78rem; color: var(--earth-mid);
}
.urgency-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--gold);
  flex-shrink: 0; animation: badgePulse 1.5s ease infinite;
}
/* ════════════════════════════════════════════
   PRICING CARDS — old .pc-* removed (replaced by .sat-pc-* below)
════════════════════════════════════════════ */
.price-note {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 0.8rem; color: var(--text-mid); margin-bottom: 8px;
}
.price-note svg { width: 14px; height: 14px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }

/* ════════════════════════════════════════════
   REVIEWS
════════════════════════════════════════════ */
.rp-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 16px;
  margin-bottom: 28px;
}
.rp-card {
  border-radius: var(--r-lg); padding: 20px 18px;
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 4px;
  border: 1.5px solid var(--border); background: var(--cream);
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: default;
}
.rp-card:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(44,26,14,0.1); }
.rp-logo-wrap {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 10px;
}
.rp-logo-ta   { background: rgba(0,170,108,0.1); }
.rp-logo-google { background: rgba(66,133,244,0.08); }
.rp-logo-sb   { background: rgba(201,151,58,0.12); }
.rp-ta   { border-color: rgba(0,170,108,0.25); }
.rp-google { border-color: rgba(66,133,244,0.2); }
.rp-sb   { border-color: rgba(201,151,58,0.3); }
.rp-score {
  font-family: var(--font-display); font-size: 2rem; font-weight: 600;
  color: var(--text-dark); line-height: 1;
}
.rp-stars-row { color: var(--gold); font-size: 0.78rem; letter-spacing: 1.5px; }
.rp-platform-name { font-weight: 600; font-size: 0.82rem; color: var(--text-dark); margin-top: 4px; }
.rp-count { font-size: 0.72rem; color: var(--text-light); }
.rp-award {
  font-size: 0.62rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--gold); margin-top: 6px;
  background: var(--gold-pale); padding: 3px 8px; border-radius: 100px;
}
/* Review filter bar */
.rev-filter-bar {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px;
}
.rev-filter {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 6px 14px; border-radius: 100px;
  border: 1px solid var(--border); background: var(--warm-white);
  font-family: var(--font-body); font-size: 0.75rem; font-weight: 500;
  color: var(--text-light); cursor: pointer; transition: all 0.15s;
}
.rev-filter:hover { border-color: var(--gold); color: var(--text-dark); }
.rev-filter.active { background: var(--earth); color: #fff; border-color: var(--earth); }
/* Reviews grid */
.reviews-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px;
  margin-bottom: 20px;
}
.review-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 18px 16px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.review-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.rev-card-top { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.rev-av {
  width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1rem; font-weight: 600; color: #fff;
}
.rev-info { flex: 1; }
.review-author { font-size: 0.82rem; font-weight: 600; color: var(--text-dark); }
.review-meta { font-size: 0.72rem; color: var(--text-light); }
.rev-plat-icon { width: 26px; height: 26px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.review-stars { color: var(--gold); font-size: 0.78rem; letter-spacing: 1.5px; margin-bottom: 8px; }
.review-text { font-size: 0.82rem; color: var(--text-mid); line-height: 1.65; font-style: italic; }

/* ════════════════════════════════════════════
   FAQ
════════════════════════════════════════════ */
.faq-list { list-style: none; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 0; cursor: pointer;
  font-size: 0.88rem; font-weight: 500; color: var(--text-dark);
  gap: 12px; transition: color 0.15s;
}
.faq-q:hover { color: var(--gold); }
.faq-chevron { flex-shrink: 0; color: var(--text-light); transition: transform 0.25s; }
.faq-chevron svg { width: 16px; height: 16px; display: block; }
.faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--gold); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-item.open .faq-a { max-height: 400px; }
.faq-a-inner { padding: 0 0 16px; font-size: 0.84rem; color: var(--text-mid); line-height: 1.72; }

/* ════════════════════════════════════════════
   SIDEBAR
════════════════════════════════════════════ */
.sidebar-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--r-xl); overflow: hidden;
  box-shadow: var(--shadow-md);
}
.sidebar-top {
  background: var(--earth); padding: 20px 20px 16px; text-align: center;
}
.sidebar-from { font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 4px; }
.sidebar-price {
  font-family: var(--font-display); font-size: 2.4rem; font-weight: 600;
  color: var(--gold-light); line-height: 1;
}
.sidebar-per { font-size: 0.72rem; color: rgba(255,255,255,0.45); margin-top: 4px; margin-bottom: 8px; }
.sidebar-saving {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 0.7rem; color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.08); padding: 4px 12px; border-radius: 100px;
}
.sidebar-saving svg { width: 11px; height: 11px; color: var(--gold-light); }
.sidebar-body { padding: 16px 18px 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.form-group { margin-bottom: 10px; }
.form-label {
  display: block; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--text-light); margin-bottom: 4px;
}
.form-input {
  width: 100%; padding: 9px 12px;
  border: 1.5px solid var(--border-solid); border-radius: var(--r);
  font-family: var(--font-body); font-size: 0.82rem; color: var(--text-dark);
  background: var(--warm-white); transition: border-color 0.2s;
  outline: none;
}
.form-input:focus { border-color: var(--gold); background: #fff; }
.form-input::placeholder { color: var(--text-light); opacity: 0.7; }
textarea.form-input { resize: vertical; min-height: 70px; }
select.form-input { cursor: pointer; }
.sidebar-submit {
  width: 100%; padding: 12px;
  background: var(--gold); color: #fff; border: none;
  border-radius: var(--r); cursor: pointer;
  font-family: var(--font-body); font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: var(--tr); margin-top: 4px;
}
.sidebar-submit:hover:not(:disabled) { background: var(--gold-hover); transform: translateY(-1px); }
.sidebar-submit:disabled { opacity: 0.75; cursor: not-allowed; }
.sidebar-guarantee {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  font-size: 0.7rem; color: var(--text-light); margin-top: 10px;
}
.sidebar-guarantee svg { width: 13px; height: 13px; color: var(--sage); flex-shrink: 0; }
.sidebar-divider { height: 1px; background: var(--border); margin: 14px 0; }
.sidebar-hl-title {
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--text-light); margin-bottom: 10px;
}
.sidebar-highlights { list-style: none; margin-bottom: 12px; }
.sidebar-highlights li {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.8rem; color: var(--text-mid);
  padding: 5px 0; border-bottom: 1px solid rgba(201,151,58,0.1);
}
.sidebar-highlights li:last-child { border-bottom: none; }
.sidebar-highlights li svg { width: 13px; height: 13px; color: var(--gold); flex-shrink: 0; }
.sidebar-link {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.04em;
  text-transform: uppercase; color: var(--gold);
  text-decoration: none; padding: 8px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.sidebar-link:last-child { border-bottom: none; }
.sidebar-link:hover { color: var(--gold-hover); }
.sidebar-link svg { width: 13px; height: 13px; }
/* Form messages */
.sat-form-msg {
  border-radius: var(--r); padding: 10px 14px;
  font-size: 0.8rem; margin-top: 10px; display: none;
}
.sat-form-msg.success { background: rgba(74,82,64,0.1); color: var(--sage); border: 1px solid rgba(74,82,64,0.3); }
.sat-form-msg.error   { background: rgba(176,80,80,0.1); color: #B05050; border: 1px solid rgba(176,80,80,0.3); }

/* ════════════════════════════════════════════
   RELATED TOURS — Section Wrappers
════════════════════════════════════════════ */
.related-section-full {
  background: var(--cream);
  padding: clamp(48px, 7vw, 88px) clamp(20px, 6vw, 80px);
  border-top: 1px solid var(--border-solid);
}
.related-fw-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.related-fw-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 36px;
}
.related-fw-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.related-view-all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  padding: 10px 20px;
  border: 1.5px solid var(--gold);
  border-radius: 100px;
  transition: var(--tr);
  white-space: nowrap;
  flex-shrink: 0;
}
.related-view-all:hover {
  background: var(--gold);
  color: #fff;
}

/* ════════════════════════════════════════════
   WHATSAPP FLOAT BUTTON
════════════════════════════════════════════ */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 150;
  display: flex; align-items: center; gap: 0;
  background: #25D366; color: #fff; text-decoration: none;
  border-radius: 100px; box-shadow: 0 4px 20px rgba(37,211,102,0.38);
  transition: all 0.3s cubic-bezier(0.34,1.56,0.64,1);
  overflow: hidden; width: 48px; height: 48px;
  opacity: 0; pointer-events: none;
}
.wa-float.visible { opacity: 1; pointer-events: auto; }
.wa-float:hover {
  width: 192px; box-shadow: 0 6px 28px rgba(37,211,102,0.45);
}
.wa-float-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.wa-float-icon svg { width: 24px; height: 24px; color: #fff; }
.wa-float-text {
  font-family: var(--font-body); font-size: 0.78rem; font-weight: 600;
  white-space: nowrap; overflow: hidden; max-width: 0;
  transition: max-width 0.3s cubic-bezier(0.34,1.56,0.64,1), padding 0.3s;
  padding-right: 0;
}
.wa-float:hover .wa-float-text { max-width: 200px; padding-right: 18px; }

/* ════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════ */
.page-footer {
  background: var(--earth); color: rgba(255,255,255,0.6);
  padding: 40px 32px 32px;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: space-between; gap: 20px;
}
.footer-brand { font-family: var(--font-display); font-size: 1.1rem; color: #fff; font-weight: 500; }
.footer-brand small {
  display: block; font-family: var(--font-body);
  font-size: 0.72rem; color: rgba(255,255,255,0.45); margin-top: 4px; font-weight: 400;
}
.footer-links { display: flex; flex-wrap: wrap; gap: 6px 20px; }
.footer-links a {
  color: rgba(255,255,255,0.55); text-decoration: none;
  font-size: 0.78rem; transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold-light); }
.footer-copy {
  font-size: 0.74rem; color: rgba(255,255,255,0.35);
  margin-top: 24px; padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08); text-align: center;
}

/* ════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .page-body { grid-template-columns: 1fr 340px; }
  .related-fw-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 900px) {
  .page-body { grid-template-columns: 1fr; }
  .sidebar-col { position: static; display: none; }
  .reviews-grid { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .hero-trust-row { gap: 8px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .related-fw-grid { grid-template-columns: 1fr; }
  .related-fw-header { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 600px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: repeat(3, 168px); }
  .gallery-item:first-child { grid-row: auto; }
  /* facts-bar mobile styles are handled above in the dedicated @media (max-width: 640px) block */
  .features-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════
   ACCESSIBILITY — reduce motion
════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .hero-bg { animation: none; transform: scale(1); }
}

/* ════════════════════════════════════════════
   GPU CLEANUP — after hero zoom animation
════════════════════════════════════════════ */
.hero-bg.sv3-zoom-done { will-change: auto; }

/* ════════════════════════════════════════════
   WYSIWYG CONTENT (all tab panels)
   v2.1.0 — wraps all get_field() WYSIWYG output
════════════════════════════════════════════ */
.sat-wysiwyg-content {
  color: var(--text-mid);
  font-size: 0.92rem;
  line-height: 1.78;
}
.sat-wysiwyg-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 600;
  color: var(--text-dark);
  margin: 28px 0 12px;
  line-height: 1.25;
}
.sat-wysiwyg-content h3 {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 600;
  color: var(--text-dark);
  margin: 22px 0 10px;
  line-height: 1.3;
}
.sat-wysiwyg-content h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 18px 0 8px;
}
.sat-wysiwyg-content p {
  margin-bottom: 14px;
}
.sat-wysiwyg-content p:last-child { margin-bottom: 0; }
.sat-wysiwyg-content strong { color: var(--text-dark); font-weight: 600; }
.sat-wysiwyg-content em { font-style: italic; color: var(--earth-mid); }
.sat-wysiwyg-content a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.15s;
}
.sat-wysiwyg-content a:hover { color: var(--gold-hover); }
.sat-wysiwyg-content ul,
.sat-wysiwyg-content ol {
  margin: 12px 0 16px 20px;
  padding: 0;
}
.sat-wysiwyg-content li {
  margin-bottom: 7px;
  padding-left: 4px;
}
.sat-wysiwyg-content ul li::marker { color: var(--gold); }
.sat-wysiwyg-content ol li::marker { color: var(--gold); font-weight: 600; }
.sat-wysiwyg-content blockquote {
  border-left: 3px solid var(--gold);
  padding: 14px 18px;
  background: var(--cream);
  border-radius: 0 var(--r) var(--r) 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text-mid);
  line-height: 1.6;
  margin: 20px 0;
}
.sat-wysiwyg-content hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 28px 0;
}
/* Tables inside WYSIWYG */
.sat-wysiwyg-content table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
  margin: 20px 0 24px;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.sat-wysiwyg-content thead tr {
  background: var(--earth);
  color: #fff;
}
.sat-wysiwyg-content thead th {
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-light);
  border: none;
}
.sat-wysiwyg-content tbody tr:nth-child(odd) {
  background: var(--warm-white);
}
.sat-wysiwyg-content tbody tr:nth-child(even) {
  background: var(--cream);
}
.sat-wysiwyg-content tbody tr:hover {
  background: var(--gold-pale);
}
.sat-wysiwyg-content td {
  padding: 11px 16px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
  color: var(--text-mid);
}
.sat-wysiwyg-content td:first-child {
  font-weight: 600;
  color: var(--text-dark);
}
.sat-wysiwyg-content tbody tr:last-child td {
  border-bottom: none;
}

/* ════════════════════════════════════════════
   PRICING TAB — WYSIWYG TABLE OVERRIDE
   .sat-price-content wraps the price_range field
════════════════════════════════════════════ */
.sat-price-content {
  margin-top: 8px;
}
.sat-price-content table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 4px 28px rgba(44,26,14,0.10);
}
.sat-price-content thead tr {
  background: var(--earth);
}
.sat-price-content thead th {
  padding: 13px 18px;
  text-align: left;
  font-weight: 600;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-light);
  border: none;
}
.sat-price-content tbody tr:nth-child(odd) {
  background: var(--warm-white);
}
.sat-price-content tbody tr:nth-child(even) {
  background: var(--cream);
}
.sat-price-content tbody tr:hover {
  background: rgba(201,151,58,0.08);
  transition: background 0.15s;
}
.sat-price-content td {
  padding: 12px 18px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
  color: var(--text-mid);
  font-size: 0.86rem;
}
.sat-price-content td:first-child {
  font-weight: 600;
  color: var(--text-dark);
}
.sat-price-content tbody tr:last-child td {
  border-bottom: none;
}
/* Price values get the gold treatment */
.sat-price-content td strong,
.sat-price-content td b {
  color: var(--earth);
  font-weight: 700;
}

/* ════════════════════════════════════════════
   FLUENT FORM — sidebar integration
   .sat-fluent-form-wrap wraps [fluentform id="1"]
════════════════════════════════════════════ */
.sat-fluent-form-wrap {
  padding: 6px 2px 2px;
}
/* Reset Fluent Form container */
.sat-fluent-form-wrap .frm-fluent-form,
.sat-fluent-form-wrap .ff-form-wrap {
  margin: 0;
  padding: 0;
}
/* Labels */
.sat-fluent-form-wrap .ff-el-group label,
.sat-fluent-form-wrap .ff-el-group .ff-el-input--label label {
  font-size: 0.7rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  color: var(--text-light) !important;
  margin-bottom: 5px !important;
  display: block;
}
/* Inputs */
.sat-fluent-form-wrap .ff-el-group input[type="text"],
.sat-fluent-form-wrap .ff-el-group input[type="email"],
.sat-fluent-form-wrap .ff-el-group input[type="tel"],
.sat-fluent-form-wrap .ff-el-group input[type="number"],
.sat-fluent-form-wrap .ff-el-group select,
.sat-fluent-form-wrap .ff-el-group textarea {
  width: 100% !important;
  padding: 9px 12px !important;
  border: 1.5px solid var(--border-solid) !important;
  border-radius: var(--r) !important;
  font-family: var(--font-body) !important;
  font-size: 0.82rem !important;
  color: var(--text-dark) !important;
  background: var(--warm-white) !important;
  transition: border-color 0.2s !important;
  outline: none !important;
  box-shadow: none !important;
}
.sat-fluent-form-wrap .ff-el-group input:focus,
.sat-fluent-form-wrap .ff-el-group select:focus,
.sat-fluent-form-wrap .ff-el-group textarea:focus {
  border-color: var(--gold) !important;
  background: #fff !important;
  box-shadow: 0 0 0 3px rgba(201,151,58,0.12) !important;
}
/* Submit button */
.sat-fluent-form-wrap .ff-btn-submit,
.sat-fluent-form-wrap button[type="submit"] {
  width: 100% !important;
  padding: 12px 16px !important;
  background: var(--gold) !important;
  color: #fff !important;
  border: none !important;
  border-radius: var(--r) !important;
  font-family: var(--font-body) !important;
  font-size: 0.82rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  transition: background 0.2s, transform 0.2s !important;
  margin-top: 6px !important;
}
.sat-fluent-form-wrap .ff-btn-submit:hover,
.sat-fluent-form-wrap button[type="submit"]:hover {
  background: var(--gold-hover) !important;
  transform: translateY(-1px) !important;
}
/* Error messages */
.sat-fluent-form-wrap .error,
.sat-fluent-form-wrap .ff-el-group .error {
  color: #B05050 !important;
  font-size: 0.72rem !important;
  margin-top: 4px !important;
}
/* Spacing between form groups */
.sat-fluent-form-wrap .ff-el-group {
  margin-bottom: 10px !important;
}
.sat-fluent-form-wrap .ff-el-group:last-of-type {
  margin-bottom: 0 !important;
}

/* ════════════════════════════════════════════
   NEW RELATED CARD COMPONENT  (.sat-related-*)
   v2.1.0 — matches homepage card style
════════════════════════════════════════════ */
.sat-related-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: transform 0.22s, box-shadow 0.22s;
}
.sat-related-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
/* Image area */
.sat-related-img {
  position: relative;
  height: 210px;
  overflow: hidden;
  flex-shrink: 0;
}
.sat-related-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.sat-related-card:hover .sat-related-img img {
  transform: scale(1.06);
}
.sat-related-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,18,9,0.45) 0%, transparent 55%);
  pointer-events: none;
}
/* Card body */
.sat-related-body {
  padding: 15px 16px 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.sat-related-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.3;
  margin-bottom: 8px;
}
.sat-related-card:hover .sat-related-title {
  color: var(--earth-mid);
}
/* Meta rows (Tour Type, Place Visited) */
.sat-related-meta {
  font-size: 0.78rem;
  color: var(--text-light);
  line-height: 1.55;
  margin-bottom: 5px;
  display: flex;
  align-items: baseline;
  gap: 5px;
}
.sat-related-meta-label {
  font-weight: 600;
  color: var(--text-mid);
  white-space: nowrap;
}
/* Divider between meta and price */
.sat-related-divider {
  height: 1px;
  background: var(--border);
  margin: 10px 0;
}
/* Footer row: price + CTA */
.sat-related-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  gap: 8px;
}
.sat-related-price {
  display: flex;
  align-items: baseline;
  gap: 3px;
}
.sat-related-price small {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
}
.sat-related-price strong {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--earth);
}
.sat-related-price span {
  font-size: 0.72rem;
  color: var(--text-light);
}
.sat-related-cta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--gold);
  white-space: nowrap;
  transition: gap 0.18s;
}
.sat-related-card:hover .sat-related-cta {
  gap: 8px;
  color: var(--gold-hover);
}

/* ── Responsive for new related cards ─── */
@media (max-width: 900px) {
  .sat-related-img { height: 190px; }
}
@media (max-width: 700px) {
  .sat-related-img { height: 175px; }
  .sat-related-title { font-size: 0.98rem; }
}
@media (max-width: 480px) {
  .sat-wysiwyg-content table,
  .sat-price-content table {
    font-size: 0.78rem;
  }
  .sat-wysiwyg-content thead th,
  .sat-price-content thead th,
  .sat-wysiwyg-content td,
  .sat-price-content td {
    padding: 9px 10px;
  }
}

/* ════════════════════════════════════════════
   RELATED BADGE — gold/orange to match homepage
   v2.2.0
════════════════════════════════════════════ */
.sat-related-badge {
  position: absolute;
  top: 11px;
  left: 11px;
  z-index: 2;
  background: var(--gold);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  white-space: nowrap;
}

/* ════════════════════════════════════════════
   INCLUSIONS CONTENT — improved display
   .sat-inclusions-content wraps the inclusions field
════════════════════════════════════════════ */
.sat-inclusions-content {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.7;
}
/* Two-column list layout */
.sat-inclusions-content ul {
  list-style: none;
  padding: 0;
  margin: 12px 0 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px 20px;
}
/* Green checkmark items (first ul = included) */
.sat-inclusions-content ul li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 0.86rem;
  padding: 7px 12px;
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  color: var(--text-mid);
  transition: border-color 0.15s;
}
.sat-inclusions-content ul li:hover {
  border-color: var(--gold);
}
.sat-inclusions-content ul li::before {
  content: '✓';
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(74,82,64,0.12);
  color: #4A7A50;
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
/* Second ul = excluded (red X) — uses adjacent sibling */
.sat-inclusions-content ul + ul li {
  background: rgba(176,80,80,0.03);
  border-color: rgba(176,80,80,0.15);
}
.sat-inclusions-content ul + ul li::before {
  content: '✕';
  background: rgba(176,80,80,0.1);
  color: #B05050;
}
/* Headings inside inclusions */
.sat-inclusions-content h2,
.sat-inclusions-content h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 20px 0 10px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}
.sat-inclusions-content h3 {
  font-size: 1rem;
  border-bottom: 1px solid var(--border);
}
/* Responsive single column */
@media (max-width: 640px) {
  .sat-inclusions-content ul {
    grid-template-columns: 1fr;
  }
}

/* ════════════════════════════════════════════
   REVIEWS — compact rating summary strip
   Replaces the old full rp-grid
════════════════════════════════════════════ */
.rev-summary-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}
.rev-summary-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: var(--r-lg);
  border: 1.5px solid var(--border);
  background: var(--warm-white);
  text-decoration: none;
  flex: 1 1 auto;
  min-width: 170px;
  transition: transform 0.18s, box-shadow 0.18s;
}
.rev-summary-pill:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.rev-pill-ta    { border-color: rgba(0,170,108,0.25); }
.rev-pill-google { border-color: rgba(66,133,244,0.2); }
.rev-pill-sb    { border-color: rgba(201,151,58,0.3); }
.rev-pill-score {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1;
}
.rev-pill-stars {
  font-size: 0.7rem;
  color: var(--gold);
  letter-spacing: 1.5px;
}
.rev-pill-name {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-dark);
}
.rev-pill-count {
  font-size: 0.7rem;
  color: var(--text-light);
  margin-left: auto;
}

/* ════════════════════════════════════════════
   REVIEWS WYSIWYG CONTENT — improved display
   Hides oversized badge images, styles review text
════════════════════════════════════════════ */
.sat-reviews-content {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.72;
}
/* Contain any badge/logo images to thumbnail size */
.sat-reviews-content img {
  max-height: 56px !important;
  width: auto !important;
  display: inline-block !important;
  vertical-align: middle !important;
  border-radius: var(--r) !important;
  margin: 4px 8px 4px 0 !important;
  object-fit: contain !important;
}
/* A row of badge images — keep them inline */
.sat-reviews-content p:has(img) {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  padding: 12px 16px;
  background: var(--cream);
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
}
/* Individual review blockquotes styled as review cards */
.sat-reviews-content blockquote {
  border-left: none;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 18px 20px;
  margin: 14px 0;
  font-style: normal;
  font-size: 0.85rem;
  color: var(--text-mid);
  position: relative;
}
.sat-reviews-content blockquote::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 16px;
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--gold);
  line-height: 1;
  opacity: 0.35;
}
.sat-reviews-content blockquote p {
  margin: 0;
  padding-left: 24px;
}
/* Review CTA row */
.rev-cta-row {
  text-align: center;
  margin-top: 28px;
}
.rev-cta-btn {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-size: 0.8rem;
  padding: 10px 24px;
  border: 1.5px solid var(--border-solid);
  border-radius: var(--r);
  color: var(--text-mid);
  text-decoration: none;
  background: var(--warm-white);
  font-weight: 500;
  transition: border-color 0.18s, color 0.18s;
}
.rev-cta-btn:hover {
  border-color: var(--gold);
  color: var(--earth);
}
/* Review strip responsive */
@media (max-width: 600px) {
  .rev-summary-strip { gap: 8px; }
  .rev-summary-pill { min-width: 140px; padding: 9px 12px; }
  .rev-pill-score { font-size: 1.3rem; }
}

/* ════════════════════════════════════════════
   MOBILE BOOKING SECTION
   Shown only on mobile (<900px), below tabs
════════════════════════════════════════════ */
.sat-mobile-booking {
  display: none; /* hidden on desktop */
}
@media (max-width: 900px) {
  .sat-mobile-booking {
    display: block;
    margin: 32px 0 0;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
  }
  .sat-mob-book-head {
    background: var(--earth);
    padding: 20px 20px 16px;
    text-align: center;
  }
  .sat-mob-book-from {
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    margin-bottom: 4px;
  }
  .sat-mob-book-price {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--gold-light);
    line-height: 1;
  }
  .sat-mob-book-price span {
    font-family: var(--font-body);
    font-size: 0.72rem;
    color: rgba(255,255,255,0.45);
    margin-left: 2px;
  }
  .sat-mob-book-note {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.5);
    margin-top: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
  }
  .sat-mobile-booking .urgency-bar {
    margin: 12px 16px 0;
  }
  .sat-mobile-booking .sat-fluent-form-wrap {
    padding: 12px 16px 20px;
  }
  /* Keep desktop sidebar completely hidden */
  .sidebar-col {
    display: none !important;
  }
}

/* ════════════════════════════════════════════
   MOBILE BOOKING — v2.2.0 toggle behaviour
   Hidden by default, revealed by JS on btn click
════════════════════════════════════════════ */
.sat-mobile-booking {
  display: none;  /* hidden on desktop */
}
@media (max-width: 900px) {
  .sat-mobile-booking {
    display: block;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1),
                opacity   0.35s ease;
    opacity: 0;
    margin: 0;
  }
  .sat-mobile-booking.sat-mob-open {
    max-height: 2000px;
    opacity: 1;
    margin: 28px 0 0;
  }
  .sat-mob-book-body {
    padding: 0 16px 20px;
  }
}

/* ════════════════════════════════════════════
   INCLUSIONS — single card, two-column layout  (v2.3.0)
   Simple: one light card, "Included" / "Not Included"
   columns side-by-side with gold dot bullets.
════════════════════════════════════════════ */
.sat-incl-panels {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 28px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 8px;
}
/* Vertical divider between the two columns */
.sat-incl-box + .sat-incl-box {
  border-left: 1px solid var(--border);
  padding-left: 28px;
}
.sat-incl-box {
  padding-right: 24px;
}
/* Column heading */
.sat-incl-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.sat-incl-included .sat-incl-header { color: var(--gold); }
.sat-incl-excluded .sat-incl-header { color: var(--text-light); }
.sat-incl-icon-check { width: 15px; height: 15px; color: var(--gold); }
.sat-incl-icon-x     { width: 15px; height: 15px; color: var(--text-light); }
/* List */
.sat-incl-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sat-incl-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.86rem;
  color: var(--text-mid);
  line-height: 1.55;
  padding: 5px 0;
}
/* Gold dot bullet for included */
.sat-incl-included .sat-incl-list li::before {
  content: '•';
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
  line-height: 1.3;
}
/* Grey dash bullet for excluded */
.sat-incl-excluded .sat-incl-list li::before {
  content: '–';
  color: var(--text-light);
  font-size: 0.95rem;
  flex-shrink: 0;
  line-height: 1.5;
}
/* Hide the inline SVG icons (not needed with pseudo-element bullets) */
.sat-li-check,
.sat-li-x {
  display: none;
}
/* Single column on mobile */
@media (max-width: 640px) {
  .sat-incl-panels {
    grid-template-columns: 1fr;
    padding: 20px 20px 14px;
  }
  .sat-incl-box + .sat-incl-box {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid var(--border);
    padding-top: 18px;
    margin-top: 18px;
  }
  .sat-incl-box {
    padding-right: 0;
  }
}

/* Note below inclusions (e.g. "Discount for kids…") */
.sat-incl-note {
  margin-top: 14px;
  padding: 12px 18px;
  background: rgba(201,151,58,0.07);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  font-size: 0.86rem;
  color: var(--text-mid);
  line-height: 1.6;
}
.sat-incl-note h4,
.sat-incl-note p { margin: 0; }
.sat-incl-note strong { color: var(--text-dark); }

/* ════════════════════════════════════════════
   PRICING CARDS — group-size card layout (v2.2.0)
════════════════════════════════════════════ */
.sat-price-cards-wrap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
  margin: 20px 0;
}
.sat-pc-card {
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}
.sat-pc-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.sat-pc-featured {
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(201,151,58,0.2);
}
.sat-pc-badge {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #fff;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 14px;
  border-radius: 0 0 8px 8px;
  white-space: nowrap;
  z-index: 1;
}
.sat-pc-head {
  background: var(--earth);
  padding: 18px 14px 14px;
  text-align: center;
}
.sat-pc-featured .sat-pc-head { padding-top: 26px; }
.sat-pc-group {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.sat-pc-price {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: #fff;
  line-height: 1;
}
.sat-pc-price span {
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: rgba(255,255,255,0.5);
}
.sat-pc-body {
  padding: 12px 14px;
  background: var(--warm-white);
}
.sat-pc-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.8rem;
}
.sat-pc-row:last-child { border-bottom: none; }
.sat-pc-tier { color: var(--text-light); font-size: 0.74rem; }
.sat-pc-val  { font-weight: 600; color: var(--text-dark); }
/* Legend */
.sat-pc-legend {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 4px 0 16px;
}
.sat-pc-legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-mid);
}
.sat-pc-legend-dot {
  width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0;
}
/* Notes block */
.sat-pc-notes {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 16px;
}
/* Responsive */
@media (max-width: 700px) {
  .sat-price-cards-wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 400px) {
  .sat-price-cards-wrap {
    grid-template-columns: 1fr;
  }
}

/* ════════════════════════════════════════════
   FAQ TAB — card-style accordion (v2.3.0)
   Each item = standalone card with border, gap between cards.
════════════════════════════════════════════ */
#tab-faq .faq-list {
  margin-top: 4px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
/* Each FAQ item is a standalone bordered card */
#tab-faq .faq-item {
  border: 1px solid var(--border);
  border-bottom: 1px solid var(--border); /* override generic rule */
  border-radius: var(--r-lg);
  background: var(--warm-white);
  overflow: hidden;
  transition: box-shadow 0.2s, border-color 0.2s;
}
#tab-faq .faq-item:hover {
  border-color: rgba(201,151,58,0.35);
  box-shadow: 0 2px 12px rgba(44,26,14,0.07);
}
#tab-faq .faq-item.open {
  border-color: rgba(201,151,58,0.45);
  box-shadow: 0 3px 16px rgba(44,26,14,0.09);
}
#tab-faq .faq-q {
  cursor: pointer;
  outline: none;
  padding: 16px 20px;
}
#tab-faq .faq-item.open .faq-q {
  border-bottom: 1px solid var(--border);
}
#tab-faq .faq-q:focus-visible {
  color: var(--gold);
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
/* FAQ answer area */
#tab-faq .faq-a { max-height: 0; overflow: hidden; transition: max-height 0.32s ease; }
#tab-faq .faq-item.open .faq-a { max-height: 600px; }
#tab-faq .faq-a-inner {
  padding: 14px 20px 18px;
}
/* FAQ answer WYSIWYG typography */
#tab-faq .faq-a-inner h3,
#tab-faq .faq-a-inner h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 12px 0 6px;
}
#tab-faq .faq-a-inner ul,
#tab-faq .faq-a-inner ol {
  margin: 8px 0 12px 18px;
}
#tab-faq .faq-a-inner li {
  font-size: 0.86rem;
  color: var(--text-mid);
  margin-bottom: 5px;
}
#tab-faq .faq-a-inner ul li::marker { color: var(--gold); }

/* ════════════════════════════════════════════
   HERO PRICE BADGE  (v2.4.0)
════════════════════════════════════════════ */
.hero-price-badge {
  position: absolute;
  top: clamp(70px, 10vw, 100px);
  right: clamp(16px, 4vw, 48px);
  background: rgba(44,26,14,0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(201,151,58,0.45);
  border-radius: var(--r-lg);
  padding: 10px 18px;
  text-align: center;
  z-index: 10;
  animation: fadeInDown 0.6s 0.4s both;
}
.hpb-from  { display: block; font-size: 0.64rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-bottom: 2px; }
.hpb-price { display: block; font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; color: var(--gold-light); line-height: 1.15; }
.hpb-pp    { display: block; font-size: 0.7rem; color: rgba(255,255,255,0.5); margin-top: 2px; }
@keyframes fadeInDown { from { opacity:0; transform:translateY(-10px); } to { opacity:1; transform:none; } }
/* Make sure .hero has position:relative (should already) */
.hero { position: relative; }

/* ════════════════════════════════════════════
   TRUST STRIP  (v2.4.0)
════════════════════════════════════════════ */
.trust-strip {
  background: var(--warm-white);
  border-bottom: 1px solid var(--border);
}
.trust-strip-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 clamp(16px,4vw,40px);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 28px;
  border-right: 1px solid var(--border);
  flex: 1 1 200px;
}
.trust-item:last-child { border-right: none; }
.trust-icon {
  flex-shrink: 0;
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(201,151,58,0.1);
  border-radius: 50%;
  color: var(--gold);
}
.trust-icon svg { width: 18px; height: 18px; }
.trust-title { font-size: 0.84rem; font-weight: 600; color: var(--text-dark); margin-bottom: 2px; }
.trust-sub   { font-size: 0.72rem; color: var(--text-light); }
@media (max-width: 720px) {
  .trust-strip-inner { gap: 0; }
  .trust-item { padding: 14px 16px; border-right: none; border-bottom: 1px solid var(--border); flex: 1 1 45%; }
  .trust-item:last-child { border-bottom: none; }
  .trust-item:nth-child(odd) { border-right: 1px solid var(--border); }
}

/* ════════════════════════════════════════════
   ITINERARY DAY ACCORDION  (v2.4.0)
════════════════════════════════════════════ */
.itin-accordion {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}
.itin-day {
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background: var(--warm-white);
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.itin-day:hover { border-color: rgba(201,151,58,0.35); box-shadow: 0 2px 12px rgba(44,26,14,0.07); }
.itin-day.open  { border-color: rgba(201,151,58,0.45); box-shadow: 0 3px 16px rgba(44,26,14,0.09); }
.itin-day-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
}
.itin-day.open .itin-day-head { border-bottom: 1px solid var(--border); }
.itin-day-num {
  flex-shrink: 0;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  background: var(--gold);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  border-radius: 50%;
}
.itin-day.open .itin-day-num { background: var(--earth); }
.itin-day-title {
  flex: 1;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.4;
}
.itin-chevron {
  flex-shrink: 0;
  color: var(--text-light);
  transition: transform 0.25s;
}
.itin-chevron svg { width: 16px; height: 16px; display: block; }
.itin-day.open .itin-chevron { transform: rotate(180deg); color: var(--gold); }
/* Accordion body */
.itin-day-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.itin-day.open .itin-day-body { max-height: 3000px; }
.itin-day-content { padding: 18px 22px 20px; }
/* Kill top margin on the very first element so no blank gap appears */
.itin-day-content > *:first-child { margin-top: 0 !important; }

/* ════════════════════════════════════════════
   ITINERARY — OLD-THEME CONTENT COMPAT (v2.4.1)
   Handles .day__inner / .day__inner__block markup
   that may appear in the ACF WYSIWYG field from
   a previous WP Travel Engine / Safari Bookings
   plugin structure stored in the database.
════════════════════════════════════════════ */

/* Suppress any photo-header remnants that slip through */
.itin-day-content .day__header,
.itin-day-content .day__header--photo,
.itin-day-content .animals,
.itin-day-content .photos,
.itin-day-content .caption { display: none !important; }

/* Main day content wrapper */
.itin-day-content .day__inner {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* Individual content blocks */
.itin-day-content .day__inner__block {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Paragraph text inside day blocks */
.itin-day-content .day__inner__block p,
.itin-day-content .day__inner__block p.shorten-m {
  color: var(--text-mid);
  font-size: 0.92rem;
  line-height: 1.72;
  margin: 0;
}

/* Definition lists — Destination / Accommodation / Meals */
.itin-day-content dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 14px;
  align-items: start;
  margin: 0;
}
.itin-day-content dl.no-top-margin { margin-top: 0 !important; }
.itin-day-content dt {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
  padding-top: 3px;
}
.itin-day-content dd {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-dark);
}
.itin-day-content dd a,
.itin-day-content dd a b { color: var(--gold); font-weight: 600; text-decoration: none; }
.itin-day-content dd a:hover { text-decoration: underline; }

/* Metabox — Best Time / High Season / Best Weather row */
.itin-day-content .metabox {
  background: var(--cream);
  border: 1px solid var(--border-solid);
  border-radius: var(--r);
  padding: 12px 16px;
}
.itin-day-content .detail__numbers {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
}
.itin-day-content .detail__numbers .col {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 4px;
  font-size: 0.8rem;
  flex: 1 1 200px;
  min-width: 0;
}
.itin-day-content .detail__numbers b {
  font-weight: 600;
  color: var(--text-dark);
  white-space: nowrap;
}
.itin-day-content .detail__numbers em {
  color: var(--text-mid);
  font-style: normal;
}
/* Hide icon font glyphs (custom font not loaded in this template) */
.itin-day-content .detail__numbers__icon,
.itin-day-content i[class*="sbi"] { display: none !important; }

/* Bullet lists — accommodation notes, meals */
.itin-day-content .list {
  list-style: none;
  padding: 2px 0 0 0;
  margin: 0;
}
.itin-day-content .list li {
  font-size: 0.85rem;
  color: var(--text-mid);
  padding-left: 16px;
  position: relative;
  margin-bottom: 3px;
  line-height: 1.55;
}
.itin-day-content .list li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.3;
}

/* Small-text and colour utilities from old theme */
.itin-day-content .txt--small { font-size: 0.8rem !important; }
.itin-day-content .txt--grey  { color: var(--text-light) !important; }
.itin-day-content .txt--xgrey { color: #9A8875 !important; }
.itin-day-content .mb-4       { margin-bottom: 5px !important; }
.itin-day-content .with-bullet { padding-left: 0; }

/* ════════════════════════════════════════════
   GALLERY LIGHTBOX  (v2.4.0)
════════════════════════════════════════════ */
/* Zoom icon on hover */
.gallery-item {
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.gallery-zoom-icon {
  position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(44,26,14,0.4);
  color: #fff;
  opacity: 0;
  transition: opacity 0.2s;
}
.gallery-zoom-icon svg { width: 28px; height: 28px; }
.gallery-item:hover .gallery-zoom-icon { opacity: 1; }

/* Lightbox overlay */
.sat-lb {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.92);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity 0.25s, visibility 0.25s;
}
.sat-lb.lb-open { opacity: 1; visibility: visible; }
.sat-lb-img-wrap {
  max-width: 90vw; max-height: 85vh;
  display: flex; align-items: center; justify-content: center;
}
.sat-lb-img {
  max-width: 100%; max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 8px 48px rgba(0,0,0,0.6);
  transition: opacity 0.2s;
}
.sat-lb-close {
  position: fixed; top: 20px; right: 24px;
  background: rgba(255,255,255,0.12); border: none; border-radius: 50%;
  width: 44px; height: 44px; cursor: pointer; color: #fff;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s;
}
.sat-lb-close:hover { background: rgba(255,255,255,0.25); }
.sat-lb-close svg { width: 20px; height: 20px; }
.sat-lb-prev,
.sat-lb-next {
  position: fixed; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.12); border: none; border-radius: 50%;
  width: 48px; height: 48px; cursor: pointer; color: #fff;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s;
}
.sat-lb-prev { left: 16px; }
.sat-lb-next { right: 16px; }
.sat-lb-prev:hover,
.sat-lb-next:hover { background: rgba(255,255,255,0.25); }
.sat-lb-prev svg,
.sat-lb-next svg { width: 22px; height: 22px; }
.sat-lb-caption {
  position: fixed; bottom: 36px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.7); font-size: 0.82rem; text-align: center;
  max-width: 80vw; pointer-events: none;
}
.sat-lb-counter {
  position: fixed; bottom: 16px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.4); font-size: 0.72rem; pointer-events: none;
}

/* ════════════════════════════════════════════
   WHATSAPP BUTTONS  (v2.4.0)
════════════════════════════════════════════ */
.sidebar-wa-btn,
.mob-wa-btn {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  width: 100%;
  padding: 11px 16px;
  border-radius: var(--r);
  font-size: 0.84rem; font-weight: 600;
  text-decoration: none;
  transition: filter 0.18s, transform 0.18s;
  margin-bottom: 14px;
}
.sidebar-wa-btn {
  background: #25D366; color: #fff;
  margin-top: 12px;
  box-shadow: 0 3px 10px rgba(37,211,102,0.3);
}
.mob-wa-btn {
  background: #25D366; color: #fff;
  margin-top: 12px;
  box-shadow: 0 3px 10px rgba(37,211,102,0.3);
}
.sidebar-wa-btn:hover,
.mob-wa-btn:hover { filter: brightness(1.08); transform: translateY(-1px); }

/* ════════════════════════════════════════════
   SIDEBAR VISUAL POLISH  (v2.4.0)
   Gold top accent border + stronger shadow
════════════════════════════════════════════ */
.sidebar-card {
  border-top: 3px solid var(--gold) !important;
  box-shadow: 0 4px 24px rgba(44,26,14,0.14) !important;
}
