/* =====================================================
   FioraTravel — Main Stylesheet
   Colors: Gold #C8A96E | Dark #1C1C2E | Blue #2B6CB0 | Sand #F8F5F0
   ===================================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold:        #C8A96E;
  --gold-light:  #E4D0A9;
  --gold-dark:   #9B7D42;
  --dark:        #1C1C2E;
  --dark-2:      #2A2A40;
  --blue:        #2B6CB0;
  --blue-light:  #4299E1;
  --sand:        #F8F5F0;
  --sand-dark:   #EDE8E0;
  --white:       #FFFFFF;
  --text:        #2D3748;
  --text-light:  #718096;
  --border:      #E2D9CE;
  --shadow:      0 4px 24px rgba(28,28,46,0.10);
  --shadow-lg:   0 8px 48px rgba(28,28,46,0.16);
  --radius:      12px;
  --radius-lg:   20px;
  --transition:  0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: var(--sand);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── Typography ── */
h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', serif;
  line-height: 1.25;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Utility ── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--dark);
  text-align: center;
  margin-bottom: 0.5rem;
}
.section-subtitle {
  text-align: center;
  color: var(--text-light);
  font-size: 1.05rem;
  margin-bottom: 3rem;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}
.gold-line {
  width: 60px; height: 3px;
  background: var(--gold);
  margin: 1rem auto 0;
  border-radius: 2px;
}
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; border-radius: 50px;
  font-size: 0.95rem; font-weight: 600;
  transition: all var(--transition);
  cursor: pointer;
}
.btn-gold {
  background: var(--gold); color: var(--dark);
}
.btn-gold:hover { background: var(--gold-dark); color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-outline {
  background: transparent; color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--dark); transform: translateY(-2px); }
.btn-dark {
  background: var(--dark); color: var(--white);
}
.btn-dark:hover { background: var(--dark-2); transform: translateY(-2px); box-shadow: var(--shadow); }
.badge {
  display: inline-block; padding: 4px 12px;
  background: var(--gold-light); color: var(--gold-dark);
  border-radius: 50px; font-size: 0.78rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.05em;
}

/* ══════════════════════════════════════
   HEADER / NAV
══════════════════════════════════════ */
#site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}
#site-header.transparent { background: transparent; }
#site-header.scrolled {
  background: var(--dark);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
#site-header.solid { background: var(--dark); }

.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; max-width: 1280px; margin: 0 auto; padding: 0 24px;
}

.nav-logo img { height: 44px; width: auto; object-fit: contain; }
.nav-logo:focus { outline: 2px solid var(--gold); border-radius: 4px; }

.nav-menu {
  display: flex; align-items: center; gap: 8px;
}
.nav-link {
  color: var(--white); font-size: 0.92rem; font-weight: 500;
  padding: 8px 14px; border-radius: 6px;
  transition: color var(--transition), background var(--transition);
}
.nav-link:hover { color: var(--gold); }

.nav-right { display: flex; align-items: center; gap: 16px; }

/* Language switcher */
.lang-switcher {
  display: flex; align-items: center; gap: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: 50px; padding: 4px 6px;
}
.lang-btn {
  color: rgba(255,255,255,0.6); font-size: 0.8rem; font-weight: 600;
  padding: 4px 10px; border-radius: 50px;
  transition: all var(--transition); text-transform: uppercase;
}
.lang-btn.active { background: var(--gold); color: var(--dark); }
.lang-btn:hover:not(.active) { color: var(--white); }

/* Basket button */
.basket-btn {
  position: relative; color: var(--white);
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.1);
  transition: all var(--transition);
}
.basket-btn:hover { background: var(--gold); color: var(--dark); }
.basket-btn svg { width: 20px; height: 20px; }
.basket-count {
  position: absolute; top: -4px; right: -4px;
  background: #E53E3E; color: var(--white);
  width: 18px; height: 18px; border-radius: 50%;
  font-size: 0.68rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  display: none;
}
.basket-count.visible { display: flex; }

/* Mobile hamburger */
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  width: 32px; padding: 4px; color: var(--white);
}
.nav-hamburger span {
  display: block; height: 2px; background: currentColor;
  border-radius: 2px; transition: all var(--transition);
}

/* ══════════════════════════════════════
   HERO SLIDER
══════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  height: 100svh; /* respects mobile browser chrome */
  min-height: 520px;
  overflow: hidden; background: var(--dark);
}

.slider-track {
  display: flex; height: 100%;
  transition: transform 0.8s cubic-bezier(0.77,0,0.175,1);
  will-change: transform;
}

.slide {
  flex-shrink: 0;        /* JS sets exact px width */
  height: 100%; position: relative;
}
.slide img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center center;
  filter: brightness(0.6);
}

.slide-content {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; color: var(--white);
  padding: 0 24px; padding-top: 72px;
}
.slide-eyebrow {
  font-size: 0.85rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 1rem;
  font-weight: 500;
}
.slide-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-family: 'Playfair Display', serif;
  line-height: 1.1; margin-bottom: 1.25rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.slide-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.85);
  max-width: 520px; margin-bottom: 2.5rem;
}
.slide-actions { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }

/* Slider controls */
.slider-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(255,255,255,0.15); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition); backdrop-filter: blur(6px);
  z-index: 10;
}
.slider-arrow:hover { background: var(--gold); color: var(--dark); }
.slider-arrow.prev { left: 24px; }
.slider-arrow.next { right: 24px; }
.slider-arrow svg { width: 22px; height: 22px; }

.slider-dots {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 10px; z-index: 10;
}
.slider-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.4);
  transition: all var(--transition);
}
.slider-dot.active { background: var(--gold); width: 24px; border-radius: 4px; }

/* Scroll indicator */
.scroll-indicator {
  position: absolute; bottom: 36px; right: 36px;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.6); font-size: 0.7rem; letter-spacing: 0.12em;
  text-transform: uppercase; z-index: 10;
}
.scroll-indicator span { display: block; width: 1px; height: 40px; background: rgba(255,255,255,0.4); animation: scrollLine 1.8s ease infinite; }
@keyframes scrollLine { 0%,100%{transform:scaleY(0);transform-origin:top} 50%{transform:scaleY(1)} }

/* ══════════════════════════════════════
   STATS BAR
══════════════════════════════════════ */
.stats-bar {
  background: var(--dark);
  padding: 0;
}
.stats-inner {
  display: grid; grid-template-columns: repeat(4, 1fr);
  max-width: 1280px; margin: 0 auto;
}
.stat-item {
  padding: 28px 24px; text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
  color: var(--white);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem; color: var(--gold); font-weight: 700;
}
.stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-top: 4px; }

/* ══════════════════════════════════════
   CATEGORIES SECTION
══════════════════════════════════════ */
.categories-section {
  padding: 96px 0 80px;
  background: var(--white);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 3rem;
}

.category-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
  transition: all var(--transition);
  cursor: pointer;
  display: flex; flex-direction: column;
}
.category-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }

.cat-img-wrap {
  position: relative; height: 200px; overflow: hidden;
}
.cat-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.category-card:hover .cat-img-wrap img { transform: scale(1.08); }

.cat-icon-badge {
  position: absolute; top: 16px; left: 16px;
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(28,28,46,0.75); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
}
.cat-count {
  position: absolute; top: 16px; right: 16px;
  background: var(--gold); color: var(--dark);
  font-size: 0.72rem; font-weight: 700;
  padding: 4px 10px; border-radius: 50px;
  text-transform: uppercase; letter-spacing: 0.05em;
}

.cat-body {
  padding: 22px 24px 24px;
  flex: 1; display: flex; flex-direction: column;
}
.cat-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem; color: var(--dark); margin-bottom: 8px;
}
.cat-desc {
  color: var(--text-light); font-size: 0.88rem; line-height: 1.6;
  flex: 1; margin-bottom: 20px;
}
.cat-cta {
  align-self: flex-start;
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.88rem; font-weight: 600; color: var(--gold-dark);
  transition: gap var(--transition);
}
.cat-cta:hover { gap: 10px; }
.cat-cta svg { width: 16px; height: 16px; }

/* ══════════════════════════════════════
   TAILOR YOUR PACKAGE SECTION
══════════════════════════════════════ */
.tailor-section {
  padding: 96px 0;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  position: relative; overflow: hidden;
}
.tailor-section::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.tailor-header { text-align: center; margin-bottom: 3rem; }
.tailor-header .section-title { color: var(--white); }
.tailor-header .section-subtitle { color: rgba(255,255,255,0.65); }
.tailor-header .gold-line { background: var(--gold); }

.tailor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 3rem;
}

.tailor-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  display: flex; flex-direction: column;
}
.tailor-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--gold);
  transform: translateY(-4px);
}

.tailor-img-wrap {
  height: 180px; overflow: hidden; position: relative;
}
.tailor-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.75);
  transition: transform 0.6s ease, filter 0.3s ease;
}
.tailor-card:hover .tailor-img-wrap img { transform: scale(1.06); filter: brightness(0.85); }

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

.tailor-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem; color: var(--white); margin-bottom: 10px;
}
.tailor-desc {
  font-size: 0.85rem; color: rgba(255,255,255,0.55);
  margin-bottom: 16px; line-height: 1.6;
}
.tailor-highlights {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 20px;
}
.tailor-highlights li {
  font-size: 0.75rem; color: var(--gold-light);
  background: rgba(200,169,110,0.12);
  border: 1px solid rgba(200,169,110,0.25);
  padding: 4px 10px; border-radius: 50px;
}
.tailor-footer {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: auto;
}
.tailor-price {
  font-size: 1.1rem; font-weight: 700; color: var(--gold);
}
.tailor-price span { font-size: 0.75rem; font-weight: 400; color: rgba(255,255,255,0.4); }
.btn-add-tailor {
  padding: 9px 20px; border-radius: 50px;
  font-size: 0.82rem; font-weight: 600;
  background: var(--gold); color: var(--dark);
  transition: all var(--transition);
  display: inline-flex; align-items: center; gap: 6px;
}
.btn-add-tailor:hover { background: var(--gold-dark); color: var(--white); }
.btn-add-tailor.added { background: #48BB78; color: var(--white); }
.btn-add-tailor svg { width: 14px; height: 14px; }

/* Tailor card → now a link into the experiences page */
.tailor-card { text-decoration: none; }
.tailor-exp-count {
  position: absolute; top: 12px; right: 12px;
  background: rgba(28,28,46,0.82); color: var(--gold-light);
  font-size: 0.72rem; font-weight: 600;
  padding: 5px 12px; border-radius: 50px;
  border: 1px solid rgba(200,169,110,0.3);
}
.tailor-cta {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.88rem; font-weight: 600; color: var(--gold);
  transition: gap var(--transition);
}
.tailor-card:hover .tailor-cta { gap: 10px; }
.tailor-cta svg { width: 16px; height: 16px; }

/* ══════════════════════════════════════
   TAILOR EXPERIENCES PAGE (tailor.html)
   ══════════════════════════════════════ */
.page-hero-sub {
  color: rgba(255,255,255,0.8); font-size: 0.95rem;
  max-width: 620px; margin-top: 12px; line-height: 1.6;
}
.tailor-exp-toolbar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap; margin-bottom: 28px;
}
.btn-back-tailor {
  font-size: 0.9rem; font-weight: 600; color: var(--text-light);
  transition: color var(--transition);
}
.btn-back-tailor:hover { color: var(--gold-dark); }
.btn-add-all {
  padding: 11px 24px; border-radius: 50px;
  font-size: 0.88rem; font-weight: 600;
  background: var(--gold); color: var(--dark);
  transition: all var(--transition);
}
.btn-add-all:hover { background: var(--gold-dark); color: var(--white); }
.btn-add-all.all-added { background: var(--dark); color: var(--white); }

/* Experience card (built on .tour-card) */
.exp-card-desc {
  font-size: 0.86rem; color: var(--text-light);
  line-height: 1.6; margin-bottom: 18px; flex: 1;
}
.btn-add-exp {
  padding: 9px 18px; border-radius: 50px;
  font-size: 0.82rem; font-weight: 600;
  background: var(--gold); color: var(--dark);
  transition: all var(--transition);
  display: inline-flex; align-items: center; gap: 6px;
}
.btn-add-exp:hover { background: var(--gold-dark); color: var(--white); }
.btn-add-exp.added { background: #48BB78; color: var(--white); }
.btn-add-exp svg { width: 14px; height: 14px; }

.tailor-note {
  text-align: center; color: rgba(255,255,255,0.5);
  font-size: 0.85rem; margin-top: 1rem;
}

/* ══════════════════════════════════════
   WHY CHOOSE US
══════════════════════════════════════ */
.why-section {
  padding: 96px 0;
  background: var(--sand);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 32px;
  margin-top: 3rem;
}
.why-card {
  text-align: center; padding: 36px 28px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}
.why-card:hover { transform: translateY(-4px); }
.why-icon {
  width: 64px; height: 64px; border-radius: 16px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; font-size: 1.75rem;
}
.why-card h3 {
  font-size: 1.1rem; color: var(--dark); margin-bottom: 10px;
}
.why-card p {
  font-size: 0.88rem; color: var(--text-light); line-height: 1.65;
}

/* ══════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════ */
.testimonials-section {
  padding: 96px 0;
  background: var(--white);
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 3rem;
}
.testimonial-card {
  background: var(--sand);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
}
.quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 5rem; color: var(--gold-light);
  line-height: 0.5; margin-bottom: 16px; display: block;
}
.testimonial-text {
  font-size: 0.93rem; color: var(--text); line-height: 1.7;
  margin-bottom: 20px; font-style: italic;
}
.testimonial-author {
  display: flex; align-items: center; gap: 12px;
}
.author-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gold-light); display: flex; align-items: center;
  justify-content: center; font-weight: 700; color: var(--gold-dark);
  font-size: 1rem; flex-shrink: 0;
}
.author-name { font-weight: 600; font-size: 0.9rem; color: var(--dark); }
.author-country { font-size: 0.78rem; color: var(--text-light); }
.star-rating { color: #F6AD55; font-size: 0.85rem; margin-top: 2px; }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px; padding: 64px 0 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  max-width: 1280px; margin: 0 auto; padding-left: 24px; padding-right: 24px;
}
.footer-brand img { height: 42px; margin-bottom: 20px; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; color: rgba(255,255,255,0.5); }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.social-btn {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6); font-size: 1rem;
  transition: all var(--transition);
}
.social-btn svg { width: 18px; height: 18px; fill: currentColor; }
.social-btn:hover { background: var(--gold); color: var(--dark); transform: translateY(-2px); }

.footer-col h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem; color: var(--white);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 0.87rem; color: rgba(255,255,255,0.5);
  transition: color var(--transition);
  display: inline-flex; align-items: center; gap: 6px;
}
.footer-col a:hover { color: var(--gold); }
.footer-col a::before { content: '›'; color: var(--gold); }

.footer-contact-item {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.87rem; color: rgba(255,255,255,0.5);
  margin-bottom: 12px;
}
.footer-contact-item svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; color: var(--gold); }

.footer-bottom {
  max-width: 1280px; margin: 0 auto; padding: 20px 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.82rem; color: rgba(255,255,255,0.3);
}
.footer-bottom a { color: var(--gold); }

/* ══════════════════════════════════════
   BASKET DRAWER
══════════════════════════════════════ */
.basket-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.5);
  z-index: 2000; opacity: 0; pointer-events: none;
  transition: opacity var(--transition);
}
.basket-overlay.open { opacity: 1; pointer-events: all; }

.basket-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: 420px;
  background: var(--white); z-index: 2001;
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.77,0,0.175,1);
  box-shadow: -8px 0 40px rgba(0,0,0,0.2);
}
.basket-drawer.open { transform: translateX(0); }

.basket-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px; border-bottom: 1px solid var(--border);
}
.basket-header h3 { font-size: 1.2rem; color: var(--dark); }
.basket-close {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--sand); color: var(--text);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.basket-close:hover { background: var(--border); }
.basket-close svg { width: 18px; height: 18px; }

.basket-items { flex: 1; overflow-y: auto; padding: 16px 24px; }
.basket-empty {
  text-align: center; padding: 48px 24px; color: var(--text-light);
}
.basket-empty svg { width: 48px; height: 48px; margin: 0 auto 16px; opacity: 0.3; }
.basket-empty p { font-size: 0.95rem; }

.basket-item {
  display: flex; gap: 12px; padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.basket-item-img {
  width: 64px; height: 64px; border-radius: 10px;
  object-fit: cover; flex-shrink: 0;
}
.basket-item-info { flex: 1; min-width: 0; }
.basket-item-name {
  font-size: 0.88rem; font-weight: 600; color: var(--dark);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  margin-bottom: 4px;
}
.basket-item-cat { font-size: 0.75rem; color: var(--text-light); }
.basket-item-price { font-size: 0.92rem; font-weight: 700; color: var(--gold-dark); margin-top: 4px; }
.basket-item-remove {
  color: var(--text-light); width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; transition: all var(--transition);
  flex-shrink: 0;
}
.basket-item-remove:hover { background: #FFF5F5; color: #E53E3E; }
.basket-item-remove svg { width: 14px; height: 14px; }

.basket-footer { padding: 20px 24px; border-top: 1px solid var(--border); }
.basket-total {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 16px;
}
.basket-total span { font-size: 0.9rem; color: var(--text-light); }
.basket-total strong { font-size: 1.2rem; color: var(--dark); }
.btn-buy-now {
  width: 100%; padding: 14px;
  background: var(--gold); color: var(--dark);
  font-size: 1rem; font-weight: 700;
  border-radius: 50px; text-align: center;
  transition: all var(--transition);
}
.btn-buy-now:hover { background: var(--gold-dark); color: var(--white); }
.btn-buy-now:disabled { opacity: 0.4; cursor: not-allowed; }

/* ══════════════════════════════════════
   BUY NOW MODAL
══════════════════════════════════════ */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.6);
  z-index: 3000; display: flex; align-items: center; justify-content: center;
  padding: 24px; opacity: 0; pointer-events: none;
  transition: opacity var(--transition);
}
.modal-overlay.open { opacity: 1; pointer-events: all; }

.modal-box {
  background: var(--white); border-radius: var(--radius-lg);
  max-width: 480px; width: 100%;
  max-height: calc(100dvh - 48px);
  display: flex; flex-direction: column;
  transform: scale(0.9) translateY(20px);
  transition: transform 0.3s ease;
  overflow: hidden;
}
.modal-overlay.open .modal-box { transform: scale(1) translateY(0); }

.modal-top {
  background: linear-gradient(135deg, var(--dark), var(--dark-2));
  padding: 32px 32px 28px; text-align: center; color: var(--white);
  flex-shrink: 0;
}
.modal-top h2 { font-size: 1.6rem; margin-bottom: 8px; }
.modal-top p { font-size: 0.88rem; color: rgba(255,255,255,0.6); }
.modal-close-btn {
  position: absolute; top: 16px; right: 16px;
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,0.1); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.modal-close-btn:hover { background: rgba(255,255,255,0.2); }
.modal-top { position: relative; }

/* Confirmation screen: drop the dark form header, keep only the ✕ */
#buy-modal.success .modal-top { background: transparent; padding: 0; }
#buy-modal.success .modal-top h2,
#buy-modal.success .modal-top p { display: none; }
#buy-modal.success .modal-close-btn { background: rgba(0,0,0,0.06); color: var(--dark); }
#buy-modal.success .modal-close-btn:hover { background: rgba(0,0,0,0.12); }
#buy-modal.success .modal-body { padding-top: 16px; }

.modal-body { padding: 28px 32px 32px; flex: 1; overflow-y: auto; overscroll-behavior: contain; }

/* Booking modal — reclaim vertical space on small screens so the
   submit button stays reachable within the scrollable body */
@media (max-width: 480px) {
  .modal-overlay { padding: 12px; }
  .modal-box { max-height: calc(100dvh - 24px); }
  .modal-top { padding: 24px 20px 20px; }
  .modal-top h2 { font-size: 1.35rem; }
  .modal-body { padding: 20px 20px 24px; }
}

.form-group { margin-bottom: 20px; }
.form-label {
  display: block; font-size: 0.85rem; font-weight: 600;
  color: var(--dark); margin-bottom: 8px;
}
.form-input {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--border); border-radius: 10px;
  font-size: 0.95rem; font-family: inherit; color: var(--text);
  background: var(--sand);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,169,110,0.2);
  background: var(--white);
}
.form-input::placeholder { color: var(--text-light); }
.form-hint { display: block; font-size: 0.75rem; color: var(--text-light); margin-top: 6px; }

/* Phone field with country-code selector */
.phone-input-row { display: flex; gap: 8px; align-items: stretch; }
.phone-input-row .form-input { flex: 1; min-width: 0; }
.country-code-select {
  flex: 0 0 auto; width: 104px; min-width: 96px;
  padding: 12px 8px;
  border: 1.5px solid var(--border); border-radius: 10px;
  background: var(--sand); color: var(--text);
  font-family: inherit; font-size: 0.9rem;
  cursor: pointer; text-overflow: ellipsis;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.country-code-select:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,169,110,0.2); background: var(--white);
}

.modal-summary {
  background: var(--sand); border-radius: 10px;
  padding: 14px 16px; margin-bottom: 24px;
}
.modal-summary-title {
  font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--text-light); margin-bottom: 10px;
}
.modal-summary-items {
  display: flex; flex-direction: column; gap: 6px;
  max-height: 168px; overflow-y: auto; overscroll-behavior: contain;
  padding-right: 4px;
}
.modal-summary-item {
  display: flex; justify-content: space-between;
  font-size: 0.85rem; color: var(--text);
}
.modal-summary-total {
  display: flex; justify-content: space-between;
  font-weight: 700; font-size: 0.95rem; color: var(--dark);
  margin-top: 10px; padding-top: 10px;
  border-top: 1px solid var(--border);
}

.btn-submit {
  width: 100%; padding: 14px;
  background: var(--gold); color: var(--dark);
  font-size: 1rem; font-weight: 700; border-radius: 50px;
  transition: all var(--transition);
}
.btn-submit:hover { background: var(--gold-dark); color: var(--white); transform: translateY(-1px); }

/* Success state */
.modal-success {
  display: none; text-align: center; padding: 48px 32px;
}
.modal-success.show { display: block; }
.success-icon {
  width: 72px; height: 72px; border-radius: 50%;
  background: #C6F6D5; color: #276749;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; font-size: 2rem;
}
.modal-success h3 { font-size: 1.4rem; color: var(--dark); margin-bottom: 10px; }
.modal-success p { font-size: 0.9rem; color: var(--text-light); line-height: 1.6; }

/* ══════════════════════════════════════
   CATEGORY PAGE
══════════════════════════════════════ */
.page-hero {
  height: 380px; position: relative;
  display: flex; align-items: flex-end;
  background: var(--dark);
  padding-top: 72px;
}
.page-hero img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; filter: brightness(0.45);
}
.page-hero-content {
  position: relative; z-index: 1; color: var(--white);
  max-width: 1280px; margin: 0 auto; padding: 0 24px 40px; width: 100%;
}
.breadcrumb {
  display: flex; gap: 8px; align-items: center;
  font-size: 0.83rem; color: rgba(255,255,255,0.6);
  margin-bottom: 12px;
}
.breadcrumb a { color: rgba(255,255,255,0.6); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb-sep { color: rgba(255,255,255,0.3); }
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); }
.page-hero .cat-icon-xl { font-size: 2rem; margin-bottom: 8px; display: block; }

.tours-section { padding: 64px 0 80px; background: var(--sand); }

.tours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px; margin-top: 2rem;
}

.tour-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  display: flex; flex-direction: column;
}
.tour-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.tour-card-img {
  position: relative; height: 220px; overflow: hidden;
}
.tour-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.tour-card:hover .tour-card-img img { transform: scale(1.06); }
.tour-card-img .badge {
  position: absolute; top: 14px; left: 14px;
}
.tour-card-price {
  position: absolute; bottom: 14px; right: 14px;
  background: var(--dark); color: var(--gold);
  font-weight: 700; font-size: 1.05rem;
  padding: 6px 14px; border-radius: 50px;
}

.tour-card-body { padding: 22px 24px 24px; flex: 1; display: flex; flex-direction: column; }
.tour-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; color: var(--dark); margin-bottom: 8px;
  display: -webkit-box; -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; overflow: hidden;
}
.tour-card-meta {
  display: flex; gap: 16px; margin-bottom: 16px;
}
.tour-meta-item {
  display: flex; align-items: center; gap: 5px;
  font-size: 0.8rem; color: var(--text-light);
}
.tour-meta-item svg { width: 14px; height: 14px; color: var(--gold); }
.tour-card-highlights {
  display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px;
}
.tour-card-highlights span {
  font-size: 0.73rem; padding: 3px 10px; border-radius: 50px;
  background: var(--sand); color: var(--text-light);
  border: 1px solid var(--border);
}
.tour-card-footer {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: auto;
}
.btn-view-tour {
  padding: 9px 20px; border-radius: 50px;
  background: var(--gold); color: var(--dark);
  font-size: 0.85rem; font-weight: 600;
  transition: all var(--transition);
}
.btn-view-tour:hover { background: var(--gold-dark); color: var(--white); }

/* ══════════════════════════════════════
   TOUR DETAIL PAGE
══════════════════════════════════════ */
.tour-detail-wrap {
  padding-top: 72px; /* header height */
  background: var(--sand); min-height: 100vh;
}

.tour-gallery {
  background: var(--dark); padding-top: 0;
}
.gallery-main {
  position: relative; height: 480px;
}
.gallery-main img {
  width: 100%; height: 100%; object-fit: cover; filter: brightness(0.92);
}
.gallery-thumbnails {
  position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 10px;
}
.gallery-thumb {
  width: 72px; height: 52px; border-radius: 8px;
  overflow: hidden; border: 2px solid transparent;
  transition: border-color var(--transition);
  cursor: pointer;
}
.gallery-thumb.active { border-color: var(--gold); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }

.tour-layout {
  display: grid; grid-template-columns: 1fr 360px;
  gap: 32px; max-width: 1280px; margin: 0 auto;
  padding: 40px 24px 80px;
  align-items: flex-start;
}

/* Left column */
.tour-main {}

.tour-header-block { margin-bottom: 32px; }
.tour-category-tag {
  font-size: 0.78rem; font-weight: 600; color: var(--gold-dark);
  text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 10px;
}
.tour-main-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--dark); margin-bottom: 14px;
}
.tour-main-meta {
  display: flex; flex-wrap: wrap; gap: 20px;
}
.tour-main-meta-item {
  display: flex; align-items: center; gap: 7px;
  font-size: 0.87rem; color: var(--text-light);
}
.tour-main-meta-item svg { width: 16px; height: 16px; color: var(--gold); }
.tour-main-meta-item strong { color: var(--text); }

.detail-section { margin-bottom: 36px; }
.detail-section h3 {
  font-size: 1.25rem; color: var(--dark);
  margin-bottom: 16px; padding-bottom: 10px;
  border-bottom: 2px solid var(--sand-dark);
  display: flex; align-items: center; gap: 8px;
}
.detail-section h3 svg { width: 18px; height: 18px; color: var(--gold); }
.detail-section p { font-size: 0.93rem; color: var(--text); line-height: 1.75; }

.highlights-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 10px;
}
.highlight-item {
  display: flex; align-items: center; gap: 8px;
  background: var(--white); border-radius: 10px;
  padding: 10px 14px; font-size: 0.83rem; color: var(--text);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.highlight-item::before {
  content: '✦';
  color: var(--gold); font-size: 0.7rem; flex-shrink: 0;
}

/* Itinerary */
.itinerary-list { display: flex; flex-direction: column; gap: 0; }
.itin-item {
  display: flex; gap: 0; position: relative;
}
.itin-item::before {
  content: '';
  position: absolute; left: 20px; top: 44px; bottom: 0;
  width: 2px; background: var(--border);
}
.itin-item:last-child::before { display: none; }

.itin-day-badge {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--gold); color: var(--dark);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.82rem;
  flex-shrink: 0; position: relative; z-index: 1;
  margin-right: 20px; margin-top: 2px;
}
.itin-content {
  flex: 1; padding-bottom: 28px;
}
.itin-day-title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem; color: var(--dark); margin-bottom: 6px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
}
.itin-day-title .itin-toggle { color: var(--gold); transition: transform var(--transition); width: 18px; height: 18px; flex-shrink: 0; }
.itin-day-title.open .itin-toggle { transform: rotate(180deg); }
.itin-desc {
  font-size: 0.87rem; color: var(--text-light); line-height: 1.7;
  display: none; padding-top: 8px;
}
.itin-desc.open { display: block; }
.itin-label {
  font-size: 0.73rem; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--gold-dark); font-weight: 600; margin-bottom: 4px;
}

.incl-excl-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.incl-block, .excl-block {
  background: var(--white); border-radius: var(--radius);
  padding: 20px; box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.incl-block h4 { font-size: 0.9rem; color: #276749; margin-bottom: 12px; display: flex; gap: 6px; align-items: center; }
.excl-block h4 { font-size: 0.9rem; color: #9B2335; margin-bottom: 12px; display: flex; gap: 6px; align-items: center; }
.incl-block li, .excl-block li {
  font-size: 0.82rem; color: var(--text-light);
  padding: 5px 0; border-bottom: 1px solid var(--border);
  display: flex; align-items: flex-start; gap: 7px;
}
.incl-block li:last-child, .excl-block li:last-child { border-bottom: none; }
.incl-block li::before { content: '✓'; color: #276749; font-weight: 700; flex-shrink: 0; }
.excl-block li::before { content: '✗'; color: #9B2335; font-weight: 700; flex-shrink: 0; }

/* Right sidebar */
.tour-sidebar {
  position: sticky; top: 88px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.sidebar-header {
  background: linear-gradient(135deg, var(--dark), var(--dark-2));
  padding: 24px;
  text-align: center; color: var(--white);
}
.sidebar-price {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem; color: var(--gold); font-weight: 700;
}
.sidebar-price-note { font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-top: 4px; }
.sidebar-body { padding: 24px; }

.tour-feature-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.tour-feature {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.85rem; color: var(--text);
}
.tour-feature svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; }

.btn-add-package {
  width: 100%; padding: 14px;
  background: var(--gold); color: var(--dark);
  font-size: 0.98rem; font-weight: 700;
  border-radius: 50px; text-align: center;
  transition: all var(--transition);
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-bottom: 12px;
}
.btn-add-package:hover { background: var(--gold-dark); color: var(--white); }
.btn-add-package.added { background: #48BB78; color: var(--white); }
.btn-add-package svg { width: 18px; height: 18px; }

.btn-view-basket {
  width: 100%; padding: 12px;
  background: transparent; border: 2px solid var(--border);
  color: var(--text); border-radius: 50px;
  font-size: 0.88rem; font-weight: 600;
  text-align: center; transition: all var(--transition);
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.btn-view-basket:hover { border-color: var(--dark); color: var(--dark); }
.btn-view-basket svg { width: 18px; height: 18px; flex-shrink: 0; }

.sidebar-divider { height: 1px; background: var(--border); margin: 20px 0; }

.sidebar-trust {
  display: flex; flex-direction: column; gap: 8px;
}
.trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.78rem; color: var(--text-light);
}
.trust-item svg { width: 14px; height: 14px; color: #48BB78; }

/* ══════════════════════════════════════
   MOBILE RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 768px) {
  /* ── Nav ── */
  .nav-menu { display: none; }
  .nav-hamburger { display: flex; }
  .nav-inner { height: 60px; }

  .nav-menu.mobile-open {
    display: flex; flex-direction: column;
    position: fixed; top: 60px; left: 0; right: 0;
    background: var(--dark); padding: 16px 24px 24px;
    box-shadow: var(--shadow-lg); gap: 4px;
  }

  /* Social icons live inside the mobile dropdown menu */
  .nav-menu.mobile-open .nav-social-mobile {
    display: flex; gap: 10px;
    margin-top: 14px; padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.12);
  }
  .nav-social-mobile a {
    width: 42px; height: 42px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.1); color: var(--white);
    transition: all var(--transition);
  }
  .nav-social-mobile a svg { width: 18px; height: 18px; fill: currentColor; }
  .nav-social-mobile a:hover,
  .nav-social-mobile a:active { background: var(--gold); color: var(--dark); }

  /* ── Hero slider ── */
  .hero {
    height: 88svh;
    height: 88vh; /* fallback */
    min-height: 460px;
  }

  .slide-content {
    padding: 60px 20px 80px;
    justify-content: flex-end; /* anchor text to bottom on portrait */
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.1) 60%, transparent 100%);
  }

  .slide-eyebrow { display: none; } /* save vertical space */

  .slide-title {
    font-size: clamp(1.7rem, 7vw, 2.4rem);
    margin-bottom: 0.6rem;
    line-height: 1.15;
  }

  .slide-subtitle {
    font-size: 0.88rem;
    margin-bottom: 1.4rem;
    color: rgba(255,255,255,0.8);
    max-width: 100%;
  }

  .slide-actions {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 100%;
  }

  .slide-actions .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
    padding: 13px 20px;
    font-size: 0.92rem;
  }

  .slider-arrow { display: none; }
  .scroll-indicator { display: none; }

  .slider-dots { bottom: 16px; }

  /* ── Stats ── */
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }

  /* ── Grids ── */
  .category-grid { grid-template-columns: 1fr; }
  .tailor-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: 1fr; }

  /* ── Footer ── */
  .footer-top { grid-template-columns: 1fr; gap: 32px; }

  /* ── Tour detail ── */
  .tour-layout { grid-template-columns: 1fr; }
  .tour-sidebar { position: static; }
  .incl-excl-grid { grid-template-columns: 1fr; }
  .tours-grid { grid-template-columns: 1fr; }

  /* ── Basket / Gallery ── */
  .basket-drawer { width: 100%; }
  .gallery-main { height: 240px; }
}

@media (max-width: 480px) {
  .hero { height: 92svh; height: 92vh; min-height: 420px; }

  .slide-title { font-size: clamp(1.5rem, 8vw, 1.9rem); }

  .slide-subtitle { font-size: 0.82rem; }

  .why-grid { grid-template-columns: 1fr; }
  .highlights-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

/* ── Animations ── */
.fade-up {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* Scroll-top button (sits above the WhatsApp float) */
.scroll-top {
  position: fixed; bottom: 92px; right: 28px;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gold); color: var(--dark);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow); z-index: 900;
  opacity: 0; pointer-events: none;
  transition: all var(--transition);
}
.scroll-top.visible { opacity: 1; pointer-events: all; }
.scroll-top:hover { background: var(--gold-dark); color: var(--white); transform: translateY(-3px); }
.scroll-top svg { width: 20px; height: 20px; }

/* ─────────────────────────────────────────────
   Header social icons
   ───────────────────────────────────────────── */
.header-social { display: flex; align-items: center; gap: 4px; }
.hsocial-btn {
  width: 34px; height: 34px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); background: rgba(255,255,255,0.1);
  transition: all var(--transition);
}
.hsocial-btn svg { width: 16px; height: 16px; fill: currentColor; }
.hsocial-btn:hover { background: var(--gold); color: var(--dark); }
/* On smaller screens the hamburger menu takes over — hide header socials */
@media (max-width: 768px) { .header-social { display: none; } }
/* Mobile-menu social row is hidden on desktop; shown inside .nav-menu.mobile-open */
.nav-social-mobile { display: none; }

/* ─────────────────────────────────────────────
   Floating WhatsApp button
   ───────────────────────────────────────────── */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(37,211,102,0.45); z-index: 950;
  transition: transform var(--transition), box-shadow var(--transition);
}
.whatsapp-float svg { width: 30px; height: 30px; fill: currentColor; }
.whatsapp-float:hover { transform: scale(1.08); box-shadow: 0 8px 26px rgba(37,211,102,0.6); }
.whatsapp-float::after {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid #25D366; opacity: 0.7;
  animation: wa-pulse 2.4s ease-out infinite;
}
@keyframes wa-pulse {
  0%   { transform: scale(1);   opacity: 0.6; }
  70%  { transform: scale(1.5); opacity: 0; }
  100% { transform: scale(1.5); opacity: 0; }
}
@media (max-width: 480px) {
  .whatsapp-float { width: 52px; height: 52px; bottom: 20px; right: 20px; }
  .scroll-top { bottom: 82px; right: 20px; }
}

/* Booking form error line — injected by basket.js on submit failure */
.form-error {
  background: #FDECEA;
  border: 1px solid #F5C6C0;
  border-left: 4px solid #C0392B;
  color: #8B2A1F;
  padding: 12px 14px;
  border-radius: 6px;
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 16px;
}

/* Honeypot — hidden from people, visible to naive bots.
   Deliberately not display:none, which some bots detect. */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
