/* ═══════════════════════════════════════════════
   HOME — CSS DESIGN TOKENS (scoped to [data-page="home"])
═══════════════════════════════════════════════ */
[data-page="home"] {
  /* Aliased to the Wander system (tokens.css --w-*). Same computed values
     as before — changing a --w-* token now retunes the homepage too. */
  --hc-bg:       var(--w-surface, #FFFFFF);
  --hc-bg2:      var(--w-bg, #F9F5EC);
  --hc-ink:      var(--w-ink, #1B2921);
  --hc-ink2:     var(--w-ink-2, #3C4E42);
  --hc-ink3:     var(--w-ink-3, #8D9A8F);
  --hc-accent:   #3FA56B;                 /* legacy light green (decorative) */
  --hc-accent2:  var(--w-brand, #2E8553); /* actionable green = brand token  */
  --hc-dark:     var(--w-ink, #1B2921);
  --hc-line:     var(--w-line, #E6DCC8);
  --hc-card:     var(--w-surface, #FFFFFF);
  --hc-radius:   var(--w-r-card, 16px);
  --hc-radius-sm:var(--w-r-input, 10px);
  --hc-shadow:   var(--w-shadow-rest, 0 2px 12px rgba(27, 41, 33,.08));
  --hc-shadow-lg:var(--w-shadow-raised, 0 8px 40px rgba(27, 41, 33,.14));
  --hc-font:     var(--w-font, 'Inter', -apple-system, BlinkMacSystemFont, sans-serif);
  --hc-serif:    var(--w-font-serif, 'Source Serif 4', Georgia, serif);
  --hc-max:      1240px;
  background: var(--hc-bg);
  font-family: var(--hc-font);
}

@media (max-width: 880px) {
  body:has([data-page="home"]) {
    padding-top: 0 !important;
  }
}

/* ── shared utilities ── */
[data-page="home"] .hp-wrap   { width: 100%; max-width:var(--hc-max); margin:0 auto; padding:0 24px; }
[data-page="home"] .hp-tag    {
  display:inline-flex; align-items:center; gap:6px;
  background:rgba(63, 165, 107,.08); border:1px solid rgba(63, 165, 107,.18);
  color:var(--hc-accent); font-size:10px; font-weight:850; letter-spacing:1.3px;
  text-transform:uppercase; padding:6px 13px; border-radius:100px; width:fit-content;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.72);
}
[data-page="home"] .hp-reveal { opacity:0; transform:translateY(28px); transition:opacity .55s ease,transform .55s ease; }
[data-page="home"] .hp-reveal.vis { opacity:1; transform:none; }
[data-page="home"] section[id] { scroll-margin-top: calc(var(--header-h, 60px) + 14px); }

/* ═══════════════════════════════════════════════
   § 1 — HERO
═══════════════════════════════════════════════ */
[data-page="home"] .hp-hero {
  padding: 110px 0 90px;
  position: relative;
  overflow: hidden;
  z-index: 10;
  isolation: isolate;
  background: linear-gradient(158deg, #0C1F17 0%, #122A1E 48%, #1B3B2A 100%);
}

/* Warm brand glow — gold + evergreen, replacing the old sky-blue wash. */
[data-page="home"] .hp-hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 55% at 16% 20%, rgba(217, 154, 43, 0.16) 0%, transparent 60%),
    radial-gradient(55% 55% at 84% 82%, rgba(46, 133, 83, 0.20) 0%, transparent 62%);
  pointer-events: none;
  z-index: 0;
}

[data-page="home"] .hp-hero-centered-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

/* Eyebrow Badge */
[data-page="home"] .hp-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.92);
  font-family: 'Inter', sans-serif;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 5px 16px;
  border-radius: 999px;
  margin-bottom: 20px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}
[data-page="home"] .hp-hero-badge svg {
  color: #F59E0B;
}

[data-page="home"] .hp-hero-left {
  display: flex;
  flex-direction: column;
  align-items: center !important;
  text-align: center !important;
  margin: 0 auto !important;
  width: 100% !important;
}

[data-page="home"] .hp-h1 {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: clamp(34px, 4.4vw, 54px);
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.95), 0 1px 3px rgba(0, 0, 0, 1);
  filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.9));
  text-align: center !important;
  margin: 0 auto 28px auto !important;
  max-width: 780px;
}
[data-page="home"] .hp-h1 em {
  font-style: italic;
  font-weight: 700;
  color: #FBBF24 !important;
  -webkit-text-fill-color: #FBBF24 !important;
  background: none !important;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.95), 0 1px 3px rgba(0, 0, 0, 1);
  filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.9));
}
[data-page="home"] .hp-hero-sub {
  font-family: 'Inter', sans-serif;
  font-size: 15.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  text-align: center !important;
  margin: 0 auto 32px auto !important;
  max-width: 520px;
  font-weight: 400;
}

/* ═══════════════════════════════════════════════
   HERO SEARCH CONSOLE — CLEAN MODERN CARD
═══════════════════════════════════════════════ */
[data-page="home"] .hp-fc {
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 24px;
  padding: 24px 28px;
  box-shadow: 
    0 25px 60px -10px rgba(15, 23, 42, 0.35),
    0 10px 24px -5px rgba(15, 23, 42, 0.15);
  position: relative;
  text-align: left;
}

/* Tabs */
[data-page="home"] .hp-fc-tabs {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
[data-page="home"] .hp-fc-tab {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 999px;
  padding: 8px 18px;
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  color: #64748B;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
[data-page="home"] .hp-fc-tab:hover {
  background: #F1F5F9;
  color: #0F172A;
}
[data-page="home"] .hp-fc-tab.active {
  background: #EFF6FF;
  color: #2E8553;
  border-color: #BFDBFE;
  box-shadow: 0 2px 8px rgba(46, 133, 83, 0.12);
}

/* Search Form Wrap */
[data-page="home"] .hp-search-form {
  margin: 0;
}
[data-page="home"] .hp-search-input-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
}
[data-page="home"] .hp-search-input-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  background: #F8FAFC;
  border: 1.5px solid #E2E8F0;
  border-radius: 999px;
  padding: 6px 20px;
  transition: all 0.2s ease;
}
[data-page="home"] .hp-search-input-inner:focus-within {
  background: #FFFFFF;
  border-color: #2E8553;
  box-shadow: 0 4px 16px rgba(46, 133, 83, 0.12);
}
[data-page="home"] .hp-search-input-inner input {
  flex: 1;
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  padding: 10px 4px !important;
  font-size: 15px;
  font-weight: 500;
  color: #0F172A;
  outline: none !important;
  font-family: 'Inter', sans-serif;
  min-width: 0;
}
[data-page="home"] .hp-search-input-inner input:focus {
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
}
[data-page="home"] .hp-search-input-inner input::placeholder {
  color: #94A3B8;
  font-weight: 400;
}

/* Submit button — pill rounded with text and arrow */
[data-page="home"] .hp-search-submit-btn {
  background: linear-gradient(135deg, #2E8553 0%, #256E44 100%);
  color: #FFFFFF !important;
  border: none;
  border-radius: 999px !important;
  padding: 12px 26px;
  height: 50px;
  width: auto;
  min-width: 140px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(46, 133, 83, 0.35);
  transition: all 0.2s ease;
}
[data-page="home"] .hp-search-submit-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(46, 133, 83, 0.45);
}
[data-page="home"] .hp-search-submit-btn:active {
  transform: scale(0.98);
}
/* Glow state */
[data-page="home"] .hp-fc[data-theme="itinerary"],
[data-page="home"] .hp-fc[data-theme="tour"],
[data-page="home"] .hp-fc[data-theme="guide"] {
  box-shadow: 0 25px 65px -12px rgba(15, 23, 42, 0.35);
}

/* ── Revamp Section 2: Travel Styles Grid ── */
[data-page="home"] .hp-revamp-styles-section {
  padding: 60px 0;
  background: var(--hc-bg);
}
[data-page="home"] .hp-revamp-styles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
}
[data-page="home"] .hp-revamp-style-card {
  background: #ffffff;
  border: 1.5px solid rgba(63, 165, 107, 0.12);
  border-radius: 20px;
  padding: 28px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
}
[data-page="home"] .hp-revamp-style-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(63, 165, 107, 0.12);
  border-color: #3FA56B;
}
[data-page="home"] .hp-revamp-style-icon {
  font-size: 28px;
  margin-bottom: 16px;
}
[data-page="home"] .hp-revamp-style-card h3 {
  font-size: 16.5px;
  font-weight: 800;
  color: #1B2921;
  margin: 0 0 6px 0;
  font-family: var(--hc-font);
}
[data-page="home"] .hp-revamp-style-card p {
  font-size: 13px;
  color: #3C4E42;
  line-height: 1.5;
  margin: 0 0 16px 0;
}
[data-page="home"] .hp-revamp-style-card .hp-revamp-style-cta {
  font-size: 12.5px;
  font-weight: 800;
  color: #3FA56B;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: auto;
}
[data-page="home"] .hp-revamp-style-card .hp-revamp-style-cta svg {
  transition: transform 0.2s ease;
}
[data-page="home"] .hp-revamp-style-card:hover .hp-revamp-style-cta svg {
  transform: translateX(3px);
}

@media (max-width: 991px) {
  [data-page="home"] .hp-revamp-value-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  [data-page="home"] .hp-revamp-styles-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* ── Segment Switcher ── */
[data-page="home"] .hp-fc-tabs {
  display: flex;
  position: relative;
  background: transparent;
  padding: 0;
  border-radius: 0;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  gap: 24px;
}
/* Underline sliding indicator */
[data-page="home"] .hp-fc-tab-slider {
  position: absolute;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: #2E8553;
  border-radius: 2px;
  box-shadow: 0 2px 6px rgba(46, 133, 83, 0.4);
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1), width 0.35s cubic-bezier(0.16,1,0.3,1);
  pointer-events: none;
  z-index: 2;
}
[data-page="home"] .hp-fc-tab {
  position: relative;
  z-index: 1;
  border: none;
  background: transparent;
  padding: 10px 4px 14px 4px;
  font-size: 14px;
  font-weight: 600;
  color: #64748B;
  border-radius: 0;
  cursor: pointer;
  transition: color 0.25s cubic-bezier(0.16,1,0.3,1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
  user-select: none;
  font-family: 'Inter', sans-serif;
}
[data-page="home"] .hp-fc-tab.active {
  color: #2E8553;
  font-weight: 700;
}
[data-page="home"] .hp-fc-tab svg {
  flex-shrink: 0;
  transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1), color 0.2s;
}
[data-page="home"] .hp-fc-tab.active svg {
  transform: scale(1.05);
}
[data-page="home"] .hp-fc-tab:not(.active):hover svg {
  transform: scale(1.05);
}

/* ── Card Header ── */
[data-page="home"] .hp-fc-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
[data-page="home"] .hp-fc-head h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #0F172A;
  margin: 0;
  letter-spacing: -0.2px;
}
[data-page="home"] .hp-fc-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  background: rgba(46, 133, 83, 0.08);
  color: #2E8553;
  padding: 4px 10px 4px 8px;
  border-radius: 100px;
  border: 1px solid rgba(46, 133, 83, 0.18);
}

/* ── Stays Extra Fields ── */

/* Popular Destinations Quick Row Below Console */
[data-page="home"] .hp-hero-popular-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
  animation: heroFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.4s;
  opacity: 0;
}
[data-page="home"] .hp-hero-popular-row .hp-pop-chips {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
[data-page="home"] .hp-pop-label {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
[data-page="home"] .hp-hero-pop-pill {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  background: #165B36 !important;
  border: 1px solid rgba(255, 255, 255, 0.25) !important;
  color: #FFFFFF !important;
  padding: 6px 16px !important;
  border-radius: 999px !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.22) !important;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
[data-page="home"] .hp-hero-pop-pill:hover {
  background: #2E8553 !important;
  color: #FFFFFF !important;
  border-color: #3FA56B !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 18px rgba(46, 133, 83, 0.45) !important;
}
[data-page="home"] .hp-hero-pop-img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: cover;
}

/* ── Stays Extra Fields ── */
[data-page="home"] .hp-stays-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.38s cubic-bezier(0.16,1,0.3,1), opacity 0.28s ease, margin-top 0.28s ease;
  margin-top: 0;
}
[data-page="home"] .hp-stays-fields.visible {
  max-height: 250px;
  opacity: 1;
  margin-top: 12px;
  overflow: visible;
}
[data-page="home"] .hp-stays-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
[data-page="home"] .hp-stays-field label,
[data-page="home"] .hp-stays-sub-field label {
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
  color: #64748B !important;
  padding-left: 2px !important;
}
[data-page="home"] .hp-stays-field input,
[data-page="home"] .hp-stays-field select {
  width: 100%;
  border: 1.5px solid #E2E8F0 !important;
  border-radius: 12px !important;
  background: #FFFFFF !important;
  padding: 10px 14px !important;
  font-size: 13.5px !important;
  font-weight: 600 !important;
  color: #0F172A !important;
  font-family: 'Inter', sans-serif !important;
  outline: none !important;
  -webkit-appearance: none;
  appearance: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  cursor: pointer;
  box-sizing: border-box;
}
[data-page="home"] .hp-stays-field input[type="date"]::-webkit-calendar-picker-indicator {
  opacity: 0.5;
  cursor: pointer;
}
[data-page="home"] .hp-stays-field input:focus,
[data-page="home"] .hp-stays-field select:focus {
  border-color: #2E8553 !important;
  background: #FFFFFF !important;
  box-shadow: 0 0 0 4px rgba(46, 133, 83, 0.12) !important;
}
[data-page="home"] .hp-stays-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
}
/* full-width date row on wide cards */
[data-page="home"] .hp-stays-fields .hp-stays-field--dates {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
[data-page="home"] .hp-stays-field--dates .hp-stays-sub-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* ── Stays Occupancy Dropdown (Homepage) ── */
[data-page="home"] .hp-guests-toggle-btn {
  width: 100%;
  border: 1.5px solid #E2E8F0 !important;
  border-radius: 12px !important;
  background: #FFFFFF !important;
  padding: 10px 14px !important;
  font-size: 13.5px !important;
  font-weight: 600 !important;
  color: #0F172A !important;
  font-family: 'Inter', sans-serif !important;
  outline: none !important;
  -webkit-appearance: none;
  appearance: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  cursor: pointer;
  box-sizing: border-box;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
[data-page="home"] .hp-guests-toggle-btn:focus {
  border-color: #2E8553 !important;
  background-color: #FFFFFF !important;
  box-shadow: 0 0 0 4px rgba(46, 133, 83, 0.12) !important;
}

[data-page="home"] .hp-guests-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  z-index: 1000;
  background: #fff;
  border: 1px solid rgba(27, 41, 33,0.08);
  border-radius: 16px;
  box-shadow: 0 10px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
  padding: 16px;
  box-sizing: border-box;
  text-align: left;
}
[data-page="home"] .hp-guests-dropdown.open {
  display: block;
}
[data-page="home"] .hp-add-room-btn {
  margin-top: 12px;
  width: 100%;
  padding: 10px;
  font-size: 13px;
  font-weight: 600;
  background: #EFE7D6;
  color: #3C4E42;
  border: 1.5px dashed #D9CDB4;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s;
}
[data-page="home"] .hp-add-room-btn:hover {
  background: #E6DCC8;
  color: #1B2921;
}
[data-page="home"] .hp-done-btn {
  margin-top: 8px;
  width: 100%;
  padding: 10px;
  font-size: 13px;
  font-weight: 700;
  background: #3FA56B;
  color: #fff;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: opacity 0.2s;
}
[data-page="home"] .hp-done-btn:hover {
  opacity: 0.95;
}

/* ── Autocomplete Panel ── fixed so it escapes overflow:hidden hero ── */
.hp-ac-panel {
  position: fixed;
  background: #fff;
  border: 1px solid rgba(27, 41, 33,0.07);
  border-radius: 18px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.02), 0 20px 48px rgba(0,0,0,0.14), 0 0 0 1px rgba(255,255,255,0.8);
  max-height: 320px;
  overflow-y: auto;
  z-index: 99999;
  display: none;
  padding: 8px;
  animation: hp-ac-drop 0.2s cubic-bezier(0.16,1,0.3,1) both;
}
@keyframes hp-ac-drop {
  from { opacity: 0; transform: translateY(-6px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.hp-ac-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 12px;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.12s;
}
.hp-ac-item:hover,
.hp-ac-item.active {
  background: rgba(63, 165, 107,0.06);
}
.hp-ac-panel[data-theme="tour"] .hp-ac-item:hover,
.hp-ac-panel[data-theme="tour"] .hp-ac-item.active {
  background: rgba(63, 165, 107,0.06);
}
.hp-ac-icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: linear-gradient(135deg, #F0FDF4, #F0FDF4);
  border: 1px solid rgba(63, 165, 107,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 15px;
}
.hp-ac-panel[data-theme="tour"] .hp-ac-icon {
  background: linear-gradient(135deg, #e0e7ff, #e0e7ff);
  border-color: rgba(63, 165, 107,0.12);
}
.hp-ac-info {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.hp-ac-name {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--hc-ink);
  line-height: 1.2;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.hp-ac-type {
  font-size: 10px;
  font-weight: 600;
  color: #8D9A8F;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-top: 2px;
  text-align: left;
}

/* ── Popular Searches (Instagram Story Style) ── */
[data-page="home"] .hp-popular-searches {
  border-top: 1px solid rgba(27, 41, 33,0.06);
  padding-top: 16px;
  text-align: left;
}
[data-page="home"] .hp-pop-title {
  font-size: 11px;
  font-weight: 700;
  color: #5C6B60;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}
[data-page="home"] .hp-pop-chips {
  display: flex;
  flex-wrap: nowrap;
  gap: 16px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 4px;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}
[data-page="home"] .hp-pop-chips::-webkit-scrollbar { display: none; }

[data-page="home"] .hp-pop-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  flex-shrink: 0;
  width: 64px;
  padding: 0 !important;
  border: none !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}
[data-page="home"] .hp-story-ring {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  padding: 2.5px;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}
[data-page="home"] .hp-pop-chip:hover .hp-story-ring {
  transform: scale(1.05);
}
[data-page="home"] .hp-story-ring img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #FFFFFF;
}
[data-page="home"] .hp-story-name {
  font-size: 11px;
  font-weight: 600;
  color: #3C4E42;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
}

/* ═══════════════════════════════════════════════
   § 2 — STATS BAR
═══════════════════════════════════════════════ */
/* ═══════════════════════════════════════════════
   § 2 — AUTHORITY STATS SECTION
═══════════════════════════════════════════════ */
[data-page="home"] .hp-stats {
  background: #FFFFFF;
  padding: 24px 0 16px;
  position: relative;
  overflow: visible;
  box-shadow: 0 4px 24px rgba(27, 41, 33,0.04);
}
/* Rainbow gradient top border band */
[data-page="home"] .hp-stats::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: #3FA56B;
  pointer-events: none;
}
/* Soft inner glow */
[data-page="home"] .hp-stats::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 10% 50%, rgba(63, 165, 107,0.03) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 90% 50%, rgba(63, 165, 107,0.03) 0%, transparent 60%);
  pointer-events: none;
}
[data-page="home"] .hp-stats-eyebrow {
  text-align: center;
  margin-bottom: 44px;
}
[data-page="home"] .hp-stats-eyebrow span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #8D9A8F;
}
[data-page="home"] .hp-stats-grid {
  display: flex;
  align-items: stretch;
  gap: 0;
  position: relative;
  z-index: 1;
}
@media (max-width: 1024px) {
  [data-page="home"] .hp-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
  }
}
[data-page="home"] .hp-st {
  flex: 1;
  padding: 0 32px;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background 0.25s ease;
}
[data-page="home"] .hp-st:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(27, 41, 33,0.1), transparent);
}
[data-page="home"] .hp-st:hover {
  background: rgba(63, 165, 107,0.02);
}
[data-page="home"] .hp-st-top {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}
[data-page="home"] .hp-st-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
[data-page="home"] .hp-st-num {
  font-size: clamp(32px, 3.5vw, 44px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
  margin: 0;
}
[data-page="home"] .hp-st-lbl {
  font-size: 13px;
  font-weight: 700;
  color: var(--hc-ink);
  letter-spacing: -0.01em;
  margin: 0;
  line-height: 1.2;
}
[data-page="home"] .hp-st-sub {
  font-size: 11.5px;
  color: #8D9A8F;
  font-weight: 500;
  margin: 0;
  line-height: 1.4;
}

/* ═══════════════════════════════════════════════
   § 3 — TICKER
═══════════════════════════════════════════════ */
[data-page="home"] .hp-ticker-wrap {
  border-top: 1px solid rgba(27, 41, 33, 0.04);
  padding: 12px 0;
  margin-top: 24px;
  overflow: hidden;
  position: relative;
}
[data-page="home"] .hp-ticker { display: flex; overflow: hidden; }
[data-page="home"] .hp-ticker-track {
  display: flex;
  align-items: center;
  animation: hptick 120s linear infinite;
  white-space: nowrap;
  will-change: transform;
}
[data-page="home"] .hp-ticker-wrap:hover .hp-ticker-track { animation-play-state: paused; }
[data-page="home"] .hp-tick-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  margin: 0 14px;
  background: rgba(254, 243, 199, 0.35);
  border: 1px solid rgba(63, 165, 107, 0.18);
  border-radius: 99px;
  color: var(--hc-ink2);
  font-size: 13.5px;
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(63, 165, 107, 0.03);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  text-decoration: none;
}
[data-page="home"] .hp-tick-item:hover {
  background: rgba(254, 243, 199, 0.6);
  border-color: rgba(63, 165, 107, 0.35);
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 4px 12px rgba(63, 165, 107, 0.08);
}
[data-page="home"] .hp-tick-item strong {
  color: #2E8553;
  font-weight: 700;
}
[data-page="home"] .hp-tick-destination {
  font-weight: 700;
  color: #2E8553;
  background: rgba(13, 148, 136, 0.07);
  padding: 2px 10px;
  border-radius: 99px;
  margin-left: 2px;
  border: 1px solid rgba(13, 148, 136, 0.1);
  font-size: 12.5px;
}
[data-page="home"] .hp-pulse-dot {
  width: 7px;
  height: 7px;
  background: #3FA56B;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  flex-shrink: 0;
}
[data-page="home"] .hp-pulse-dot::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #3FA56B;
  border-radius: 50%;
  animation: hppulsewave 2s infinite ease-out;
}
@keyframes hppulsewave {
  0% {
     transform: scale(1);
     opacity: 1;
  }
  100% {
     transform: scale(3.5);
     opacity: 0;
  }
}
@keyframes hptick {
  0% { transform: translateX(0%); }
  8%, 10% { transform: translateX(-5%); }
  18%, 20% { transform: translateX(-10%); }
  28%, 30% { transform: translateX(-15%); }
  38%, 40% { transform: translateX(-20%); }
  48%, 50% { transform: translateX(-25%); }
  58%, 60% { transform: translateX(-30%); }
  68%, 70% { transform: translateX(-35%); }
  78%, 80% { transform: translateX(-40%); }
  88%, 90% { transform: translateX(-45%); }
  98%, 100% { transform: translateX(-50%); }
}
[data-page="home"] .hp-sec-head {
  text-align: center;
  margin-bottom: 28px;
}
[data-page="home"] .hp-sec-head h2 {
  font-family: var(--font-display, var(--font-sans, system-ui, sans-serif));
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 850;
  color: var(--hc-ink, #1B2921);
  -webkit-text-fill-color: var(--hc-ink, #1B2921);
  letter-spacing: -0.03em;
  margin: 10px auto 8px;
  line-height: 1.08;
  max-width: 720px;
}
[data-page="home"] .hp-sec-head p {
  font-size: 15px;
  line-height: 1.55;
  font-weight: 500;
  color: var(--hc-ink2);
  max-width: 640px;
  margin: 0 auto;
}
[data-page="home"] .hp-filters {
  display:flex; flex-wrap:wrap; justify-content:center; gap:8px; margin-bottom:24px;
}
[data-page="home"] .hp-fpill {
  padding: 8px 16px; border-radius: 99px; font-size: 12.5px; font-weight: 800;
  border: 1.25px solid #D8E0EA; color: #3C4E42; background: rgba(255,255,255,0.86);
  cursor: pointer; transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 20px rgba(27, 41, 33,0.04);
  letter-spacing: -0.01em;
}
[data-page="home"] .hp-fpill.active,
[data-page="home"] .hp-fpill:hover {
  background: var(--hc-accent); border-color: var(--hc-accent); color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(63, 165, 107, 0.22);
}

[data-page="home"] .hp-grid {
  display:grid; grid-template-columns:repeat(4,1fr); gap:24px;
}
/* Revamped hp-card styling */
[data-page="home"] .hp-card {
  background: #ffffff;
  border: 1px solid #EFE7D6;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(27, 41, 33, 0.03), 0 2px 8px rgba(27, 41, 33, 0.02);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  position: relative;
}
[data-page="home"] .hp-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(27, 41, 33, 0.08), 0 4px 12px rgba(27, 41, 33, 0.03);
  border-color: rgba(16, 185, 129, 0.2);
}

[data-page="home"] .hp-card-img {
  aspect-ratio: 1.4 / 1;
  overflow: hidden;
  position: relative;
  background: #F9F5EC;
}
[data-page="home"] .hp-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
[data-page="home"] .hp-card:hover .hp-card-img img {
  transform: scale(1.06);
}

/* Badges styling */
[data-page="home"] .hp-card-badges-left {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
[data-page="home"] .hp-card-badge {
  display: inline-flex;
  align-items: center;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 9px;
  border-radius: 6px;
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}
[data-page="home"] .hp-card-badge.bestseller {
  background: linear-gradient(135deg, #f59e0b, #d97706);
}
[data-page="home"] .hp-card-badge.free {
  background: linear-gradient(135deg, #10b981, #059669);
}

[data-page="home"] .hp-card-badges-right {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}
[data-page="home"] .hp-card-rating {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #1B2921;
  border: 1px solid rgba(255, 255, 255, 0.42);
  font-size: 10px;
  font-weight: 900;
  box-shadow: 0 4px 12px rgba(27, 41, 33, 0.06);
}
[data-page="home"] .hp-card-match {
  display: inline-flex;
  align-items: center;
  padding: 4px 8px;
  border-radius: 99px;
  background: linear-gradient(135deg, #059669, #10b981);
  color: #ffffff;
  font-size: 9px;
  font-weight: 800;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

/* bottom image tag overlay */
[data-page="home"] .hp-card-img-overlay-bottom {
  position: absolute;
  bottom: 12px;
  left: 12px;
  z-index: 3;
}
[data-page="home"] .hp-card-img-dest-tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 8px;
  border-radius: 6px;
  background: rgba(27, 41, 33, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Body and Typography */
[data-page="home"] .hp-card-body {
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
[data-page="home"] .hp-card-subtitle {
  font-size: 10.5px;
  font-weight: 700;
  color: #5C6B60;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
[data-page="home"] .hp-card-title {
  font-family: var(--font-display, inherit);
  font-size: 17px;
  font-weight: 800;
  color: #1B2921;
  margin-bottom: 12px;
  line-height: 1.35;
  letter-spacing: -0.01em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 46px;
}

/* Signals and Tags */
[data-page="home"] .hp-card-signals {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}
[data-page="home"] .hp-card-tag {
  display: inline-flex;
  align-items: center;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 99px;
}
[data-page="home"] .hp-card-tag.vibe {
  color: #0d9488;
  background: #f0fdfa;
  border: 1px solid #ccfbf1;
}
[data-page="home"] .hp-card-tag.free-badge {
  color: #059669;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
}
[data-page="home"] .hp-card-tag.premium-badge {
  color: #b45309;
  background: #fffbeb;
  border: 1px solid #fde68a;
}

/* Trust Proof row */
[data-page="home"] .hp-card-proof {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 16px;
  padding: 8px 12px;
  border-radius: 10px;
  background: #F9F5EC;
  border: 1px solid #E6DCC8;
}
[data-page="home"] .hp-card-proof span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #3C4E42;
  font-size: 10px;
  font-weight: 700;
}

/* Footer & CTA */
[data-page="home"] .hp-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #EFE7D6;
  padding-top: 14px;
  margin-top: auto;
  gap: 10px;
}
[data-page="home"] .hp-card-price-block {
  display: flex;
  flex-direction: column;
}
[data-page="home"] .hp-card-price-block .price-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
}
[data-page="home"] .hp-card-price-block .price-val {
  font-size: 18px;
  font-weight: 900;
  color: #1B2921;
  letter-spacing: -0.02em;
}
[data-page="home"] .hp-card-price-block .price-val.free {
  color: #10b981;
}
[data-page="home"] .hp-card-price-block .price-mrp {
  font-size: 11px;
  font-weight: 500;
  color: #8D9A8F;
  text-decoration: line-through;
}
[data-page="home"] .hp-card-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 8px 18px;
  border-radius: 14px;
  background: linear-gradient(135deg, #2E8553 0%, #256E44 100%) !important;
  color: #ffffff !important;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(46, 133, 83, 0.25) !important;
  transition: all 0.25s ease;
}
[data-page="home"] .hp-card:hover .hp-card-cta {
  background: linear-gradient(135deg, #256E44 0%, #1B5537 100%) !important;
  transform: translateY(-2px) scale(1.015);
  box-shadow: 0 8px 24px rgba(46, 133, 83, 0.38) !important;
}
[data-page="home"] .hp-card:hover .hp-card-cta svg {
  transform: translateX(2px);
}
[data-page="home"] .hp-trips-more { text-align:center; margin-top:18px; }
[data-page="home"] .hp-btn-outline {
  display:inline-flex; align-items:center; gap:8px; padding:12px 28px;
  border:1.5px solid #2E8553 !important; color:#2E8553 !important; border-radius:14px !important;
  font-size:14px; font-weight:600; text-decoration:none; transition:all 0.25s ease;
  background:#FFFFFF !important; box-shadow: 0 2px 8px rgba(46, 133, 83, 0.06);
}
[data-page="home"] .hp-btn-outline:hover {
  background:#EFF6FF !important; color:#256E44 !important; border-color:#256E44 !important;
  transform:translateY(-2px) scale(1.015); box-shadow: 0 6px 18px rgba(46, 133, 83, 0.15);
}


/* ═══════════════════════════════════════════════
   § 5 — THE PROMISE
═══════════════════════════════════════════════ */
[data-page="home"] .hp-promise { background:#F9F5EC; padding:96px 0; border-top:1px solid #EFE7D6; border-bottom:1px solid #EFE7D6; }
[data-page="home"] .hp-promise-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:28px; margin-top:48px; }
[data-page="home"] .hp-pm-card {
  background:#ffffff; border:1px solid #E6DCC8; border-radius:24px;
  padding:32px 28px;
  transition: border-color 0.25s ease;
}
[data-page="home"] .hp-pm-card:hover {
  border-color: rgba(63, 165, 107,0.25);
}
[data-page="home"] .hp-pm-icon-wrap {
  width:52px; height:52px; border-radius:16px; display:flex; align-items:center; justify-content:center;
  margin-bottom:20px; transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
[data-page="home"] .hp-pm-card:hover .hp-pm-icon-wrap {
  transform: scale(1.1) rotate(6deg);
}
[data-page="home"] .hp-pm-card h3 {
  font-size:19px; font-weight:900; color:#1B2921; margin:0 0 8px; letter-spacing:-0.02em;
}
[data-page="home"] .hp-pm-card p {
  font-size:13.5px; color:#3C4E42; margin:0 0 24px; line-height:1.55;
}
[data-page="home"] .hp-pm-rows { display:flex; flex-direction:column; gap:10px; }
[data-page="home"] .hp-pm-row {
  display:flex; align-items:center; gap:10px; font-size:13px; padding:8px 14px;
  border-radius:10px; font-weight: 600;
  transition: all 0.3s ease;
}
[data-page="home"] .hp-pm-row.ours { background:rgba(63, 165, 107, 0.06); color:#2E8553; }
[data-page="home"] .hp-pm-row.theirs { background:rgba(239, 68, 68, 0.04); color:rgba(220, 38, 38, 0.7); text-decoration:line-through; }

/* ═══════════════════════════════════════════════
   § 6 — BROWSE BY OCCASION
═══════════════════════════════════════════════ */
[data-page="home"] .hp-occasions {
  padding:96px 0;
  background: radial-gradient(circle at 50% 50%, rgba(63, 165, 107, 0.02), transparent 80%), #ffffff;
  position:relative;
  overflow:hidden;
  border-top: 1px solid #E6DCC8;
  border-bottom: 1px solid #E6DCC8;
}
[data-page="home"] .hp-occasions::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at 80% 90%, rgba(63, 165, 107, 0.02), transparent 70%);
  pointer-events: none;
}
[data-page="home"] .hp-occ-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  grid-auto-rows: 280px;
  gap: 24px; margin-top: 48px;
}
[data-page="home"] .hp-occ-card {
  position:relative; border-radius:24px; overflow:hidden;
  background:#ffffff; text-decoration:none; display:block;
  border: 1px solid rgba(27, 41, 33, 0.08);
  transition: border-color 0.25s ease;
}
@media (min-width: 1024px) {
  [data-page="home"] .hp-occ-card:first-child { grid-row: span 2; grid-column: span 2; }
  [data-page="home"] .hp-occ-card:nth-child(2) { grid-column: span 2; }
}
[data-page="home"] .hp-occ-card img {
  width:100%; height:100%; object-fit:cover; transition:transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  filter: brightness(0.9) contrast(1.02);
}
[data-page="home"] .hp-occ-card:hover {
  border-color: rgba(var(--occ-rgb), 0.4);
}
[data-page="home"] .hp-occ-card:hover img {
  transform:scale(1.04);
  filter: brightness(0.85) contrast(1.05);
}
[data-page="home"] .hp-occ-over {
  position:absolute; inset:0;
  background:linear-gradient(to top, rgba(27, 41, 33, 0.85) 0%, rgba(27, 41, 33, 0.25) 55%, transparent 100%);
  display:flex; flex-direction:column; justify-content:flex-end; padding:24px;
  z-index: 2;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
[data-page="home"] .hp-occ-badge {
  align-self: flex-start;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 12px;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.3s ease;
}
[data-page="home"] .hp-occ-label {
  font-size:18px; font-weight:900; color:#fff; margin-bottom:6px; line-height:1.2;
  letter-spacing: -0.02em;
  transition: transform 0.3s ease;
}
[data-page="home"] .hp-occ-card:first-child .hp-occ-label { font-size:26px; }
[data-page="home"] .hp-occ-count {
  font-size:13px; color:rgba(255,255,255,.75); font-weight:600;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s ease;
}
[data-page="home"] .hp-occ-count::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.6;
}
[data-page="home"] .hp-occ-arrow {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 3;
}
[data-page="home"] .hp-occ-card:hover .hp-occ-arrow {
  opacity: 1;
  transform: translateX(0);
  background: rgb(var(--occ-rgb));
  border-color: rgb(var(--occ-rgb));
  color: #fff;
  box-shadow: 0 8px 24px rgba(var(--occ-rgb), 0.35);
}

/* ═══════════════════════════════════════════════
   § 7 — HOW IT WORKS
═══════════════════════════════════════════════ */
[data-page="home"] .hp-how { background:var(--hc-bg2); padding:80px 0; }
[data-page="home"] .hp-how-steps {
  display:grid; grid-template-columns:repeat(3,1fr); gap:40px; margin-top:48px; position:relative;
}
[data-page="home"] .hp-how-steps::before {
  content:''; position:absolute; top:32px; left:calc(16.66% + 32px); right:calc(16.66% + 32px);
  height:1px; background:var(--hc-line); z-index:0;
}
[data-page="home"] .hp-step { text-align:center; position:relative; z-index:1; }
[data-page="home"] .hp-step-num {
  width:64px; height:64px; border-radius:50%;
  background:#3FA56B; color:#fff;
  font-size:22px; font-weight:800; display:flex; align-items:center; justify-content:center;
  margin:0 auto 20px; box-shadow:0 6px 20px rgba(63, 165, 107,.35);
}
[data-page="home"] .hp-step h3 { font-size:17px; font-weight:700; color:var(--hc-ink); margin:0 0 8px; }
[data-page="home"] .hp-step p { font-size:14px; color:var(--hc-ink2); line-height:1.65; margin:0; }

/* ═══════════════════════════════════════════════
   § 8 — TESTIMONIALS
═══════════════════════════════════════════════ */
/* ═══════════════════════════════════════════════
   § 8 — TESTIMONIALS
═══════════════════════════════════════════════ */
[data-page="home"] .hp-reviews {
  background: #ffffff;
  padding: 96px 0;
  border-top: 1px solid #E6DCC8;
}
[data-page="home"] .hp-rev-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  max-width: 460px;
  margin: 0 auto 48px;
  padding: 16px 28px;
  background: #F9F5EC;
  border: 1px solid #E6DCC8;
  border-radius: 20px;
}
[data-page="home"] .hp-rev-num {
  font-size: 48px;
  font-weight: 900;
  color: var(--hc-ink);
  line-height: 1;
  letter-spacing: -1.5px;
}
[data-page="home"] .hp-rev-summary-details {
  border-left: 1px solid #E6DCC8;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
[data-page="home"] .hp-rev-stars { display:flex; gap:3px; }
[data-page="home"] .hp-rev-stars span { font-size:18px; color:#3FA56B; text-shadow: 0 0 4px rgba(63, 165, 107, 0.25); }
[data-page="home"] .hp-rev-sub {
  font-size:12px;
  font-weight:700;
  color:var(--hc-ink2);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0;
}
[data-page="home"] .hp-rev-grid {
  display:grid; grid-template-columns:repeat(3,1fr); gap:24px;
}
[data-page="home"] .hp-rev-card {
  background:#ffffff;
  border:1px solid #E6DCC8;
  border-radius:20px;
  padding:28px;
  transition: border-color 0.25s ease;
}
[data-page="home"] .hp-rev-card:hover {
  border-color: rgba(63, 165, 107, 0.25);
}
[data-page="home"] .hp-rev-header {
  display:flex; align-items:center; gap:14px; margin-bottom:18px;
}
[data-page="home"] .hp-rev-av {
  width:46px; height:46px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-size:15px; font-weight:800; color:#fff; flex-shrink:0;
  border: 2px solid #ffffff;
}
[data-page="home"] .hp-rev-name { font-size:15px; font-weight:800; color:var(--hc-ink); }
[data-page="home"] .hp-rev-trip {
  font-size:12px;
  color:var(--hc-accent);
  font-weight:700;
  margin-top:3px;
  display: flex;
  align-items: center;
  gap: 6px;
}
[data-page="home"] .hp-rev-verified {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(63, 165, 107, 0.1);
  color: var(--hc-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
[data-page="home"] .hp-rev-stars-sm { display:flex; gap:2.5px; margin-bottom:12px; }
[data-page="home"] .hp-rev-stars-sm span { font-size:13px; color:#3FA56B; text-shadow: 0 0 3px rgba(63, 165, 107, 0.2); }
[data-page="home"] .hp-rev-text { font-size:14px; color:var(--hc-ink2); line-height:1.6; font-style:italic; margin:0; }

@media (max-width: 768px) {
  [data-page="home"] .hp-rev-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding: 8px 24px 28px;
    margin: 0 -24px -20px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  [data-page="home"] .hp-rev-grid::-webkit-scrollbar {
    display: none;
  }
  [data-page="home"] .hp-rev-card {
    flex: 0 0 290px;
    scroll-snap-align: start;
    box-shadow: 0 8px 24px rgba(27, 41, 33, 0.04);
  }
}

/* ═══════════════════════════════════════════════
   § 9 — GROUP BANNER
═══════════════════════════════════════════════ */
[data-page="home"] .hp-group {
  background:var(--hc-bg2); padding:60px 0;
}
[data-page="home"] .hp-group-card {
  background:linear-gradient(135deg,#1B2921 0%,#1B2921 100%);
  border-radius:24px; padding:56px 48px; display:grid;
  grid-template-columns:1fr 360px; gap:48px; align-items:center;
  position:relative; overflow:hidden;
}
[data-page="home"] .hp-group-card::after {
  content:''; position:absolute; top:-40%; right:-10%;
  width:500px; height:500px; border-radius:50%;
  background:radial-gradient(circle, rgba(63, 165, 107,.12) 0%, transparent 70%);
  pointer-events:none;
}
[data-page="home"] .hp-group-card h2 {
  font-size:clamp(24px,3.5vw,36px); font-weight:800; color:#fff; margin:0 0 12px; line-height:1.15;
}
[data-page="home"] .hp-group-card p {
  font-size:15px; color:rgba(255,255,255,.65); margin:0 0 24px; line-height:1.65;
}
[data-page="home"] .hp-group-perks { list-style:none; margin:0 0 28px; padding:0; display:flex; flex-direction:column; gap:8px; }
[data-page="home"] .hp-group-perks li {
  display:flex; align-items:center; gap:8px; font-size:14px; color:rgba(255,255,255,.8);
}
[data-page="home"] .hp-group-perks li::before {
  content: '';
  width: 5px;
  height: 9px;
  border: solid var(--hc-accent);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  margin-right: 8px;
  margin-bottom: 2px;
  display: inline-block;
  flex-shrink: 0;
}
[data-page="home"] .hp-group-actions { display:flex; gap:12px; flex-wrap:wrap; }
[data-page="home"] .hp-btn-primary {
  display:inline-flex; align-items:center; gap:8px; padding:13px 26px;
  background:#3FA56B; color:#fff; border-radius:100px;
  font-size:14px; font-weight:700; text-decoration:none;
  box-shadow:0 4px 18px rgba(63, 165, 107,.4); transition:all .18s;
}
[data-page="home"] .hp-btn-primary:hover { transform:translateY(-2px); box-shadow:0 6px 24px rgba(63, 165, 107,.5); }
[data-page="home"] .hp-btn-ghost {
  display:inline-flex; align-items:center; gap:8px; padding:13px 26px;
  border:2px solid rgba(255,255,255,.25); color:rgba(255,255,255,.85); border-radius:100px;
  font-size:14px; font-weight:700; text-decoration:none; transition:all .18s;
}
[data-page="home"] .hp-btn-ghost:hover { border-color:#fff; color:#fff; }
[data-page="home"] .hp-group-visual {
  display:grid; grid-template-columns:1fr 1fr; gap:12px;
}
[data-page="home"] .hp-gv-stat {
  background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.1);
  border-radius:14px; padding:20px; text-align:center;
}
[data-page="home"] .hp-gv-stat-num {
  font-size:28px; font-weight:800; color:#fff; line-height:1; margin-bottom:4px;
}
[data-page="home"] .hp-gv-stat-lbl { font-size:12px; color:rgba(255,255,255,.5); }

/* ═══════════════════════════════════════════════
   § 10 — FINAL CTA
═══════════════════════════════════════════════ */
[data-page="home"] .hp-cta {
  background:#3FA56B; padding:80px 0;
  text-align:center; position:relative; overflow:hidden;
}
[data-page="home"] .hp-cta::before {
  content:''; position:absolute; inset:0;
  background-image:radial-gradient(circle, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size:24px 24px; pointer-events:none;
}
[data-page="home"] .hp-cta h2 {
  font-size:clamp(28px,4.5vw,50px); font-weight:800; color:#fff;
  letter-spacing:-1px; margin:0 0 14px; position:relative;
}
[data-page="home"] .hp-cta p { font-size:17px; color:rgba(255,255,255,.85); margin:0 0 36px; position:relative; }
[data-page="home"] .hp-cta-btns { display:flex; justify-content:center; gap:14px; flex-wrap:wrap; position:relative; }
[data-page="home"] .hp-cta-btn-white {
  display:inline-flex; align-items:center; gap:8px; padding:14px 30px;
  background:#fff; color:var(--hc-accent); border-radius:100px;
  font-size:15px; font-weight:700; text-decoration:none;
  box-shadow:0 4px 20px rgba(0,0,0,.15); transition:all .18s;
}
[data-page="home"] .hp-cta-btn-white:hover { transform:translateY(-2px); box-shadow:0 6px 28px rgba(0,0,0,.2); }
[data-page="home"] .hp-cta-btn-outline {
  display:inline-flex; align-items:center; gap:8px; padding:14px 30px;
  border:2px solid rgba(255,255,255,.5); color:#fff; border-radius:100px;
  font-size:15px; font-weight:700; text-decoration:none; transition:all .18s;
}
[data-page="home"] .hp-cta-btn-outline:hover { border-color:#fff; background:rgba(255,255,255,.1); }

/* ═══════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════ */
@media (max-width: 1100px) {
  [data-page="home"] .hp-hero-grid { flex-direction:column; gap:20px; }
  [data-page="home"] .hp-hero-copy { max-width: 680px; }
  [data-page="home"] .hp-fc { max-width: 620px; margin: 8px 0 0; }
  [data-page="home"] .hp-live { margin: 0 auto 12px; }
  [data-page="home"] .hp-h1 { margin: 0 auto 12px; }
  [data-page="home"] .hp-hero-sub { margin: 0 auto 16px; }
  [data-page="home"] .hp-avatars { margin: 0 auto 16px; justify-content: center; }
  [data-page="home"] .hp-hero-pills { margin: 0; }
  [data-page="home"] .hp-grid { grid-template-columns:repeat(2,1fr); }
  [data-page="home"] .hp-stats-grid { gap:8px 0; }
  [data-page="home"] .hp-occ-grid { grid-auto-rows: 240px; }
  [data-page="home"] .hp-group-card { grid-template-columns:1fr; }
  [data-page="home"] .hp-group-visual { grid-template-columns:repeat(4,1fr); }
}
@media (max-width: 768px) {
  [data-page="home"] .hp-hero {
    background-position: 45% center;
    padding: 38px 0 64px;
  }
  [data-page="home"],
  [data-page="home"] .hp-hero {
    overflow-x: clip;
  }
  [data-page="home"] .hp-hero-grid,
  [data-page="home"] .hp-hero-copy,
  [data-page="home"] .hp-fc {
    min-width: 0;
    max-width: 100%;
  }
  [data-page="home"] .hp-live {
    max-width: 100%;
    white-space: normal;
  }
  [data-page="home"] .hp-hero-pills {
    width: 100%;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 2px;
    scrollbar-width: none;
  }
  [data-page="home"] .hp-hero-pills::-webkit-scrollbar {
    display: none;
  }
  [data-page="home"] .hp-hero-pill {
    flex: 0 0 auto;
  }
  [data-page="home"] .hp-fc {
    width: 100%;
    overflow: hidden;
  }
  [data-page="home"] .hp-fc-tabs {
    max-width: 100%;
    min-width: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 16px;
  }
  [data-page="home"] .hp-fc-tabs::-webkit-scrollbar {
    display: none;
  }
  [data-page="home"] .hp-search-input-wrap,
  [data-page="home"] .hp-popular-searches,
  [data-page="home"] .hp-pop-chips {
    max-width: 100%;
    min-width: 0;
  }
  [data-page="home"] .hp-fc-tab {
    min-width: 0;
    flex: 0 0 auto;
  }
  [data-page="home"] .hp-fc-tab span {
    overflow: visible;
    text-overflow: clip;
    white-space: nowrap;
  }
  [data-page="home"] .hp-grid { grid-template-columns:1fr 1fr; gap:16px; }
  [data-page="home"] .hp-filters {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 4px 16px 12px;
    margin-left: -16px;
    margin-right: -16px;
    margin-bottom: 24px;
  }
  [data-page="home"] .hp-filters::-webkit-scrollbar {
    display: none;
  }
  [data-page="home"] .hp-fpill {
    flex-shrink: 0;
    padding: 8px 18px;
    font-size: 13px;
  }
  [data-page="home"] .hp-promise-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 16px;
    margin-top: 24px;
    padding: 8px 16px 24px;
    margin-left: -16px;
    margin-right: -16px;
  }
  [data-page="home"] .hp-promise-grid::-webkit-scrollbar {
    display: none;
  }
  [data-page="home"] .hp-pm-card {
    flex: 0 0 290px;
    scroll-snap-align: start;
    padding: 24px 20px;
  }
  [data-page="home"] .hp-stats-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 12px;
    padding: 8px 16px 20px;
    margin-left: -16px;
    margin-right: -16px;
  }
  [data-page="home"] .hp-stats-grid::-webkit-scrollbar {
    display: none;
  }
  [data-page="home"] .hp-st {
    flex: 0 0 160px;
    height: 90px;
    min-height: 90px;
    padding: 10px 8px;
    gap: 4px;
    border-radius: 14px;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
  }
  [data-page="home"] .hp-st-div { display:none; }
  [data-page="home"] .hp-occ-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 200px;
    gap: 16px;
  }
  [data-page="home"] .hp-occ-card:first-child { grid-row: span 2; grid-column: span 2; }
  [data-page="home"] .hp-occ-card:nth-child(2) { grid-column: auto; }
  [data-page="home"] .hp-occ-card:last-child { grid-column:span 2; }
  [data-page="home"] .hp-how {
    overflow: hidden;
    padding: 60px 0 50px;
  }
  [data-page="home"] .hp-how-steps {
    display: flex !important;
    gap: 16px;
    margin-top: 32px;
    margin-left: -16px;
    margin-right: -16px;
    padding: 8px 16px 24px;
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  [data-page="home"] .hp-how-steps::-webkit-scrollbar {
    display: none;
  }
  [data-page="home"] .hp-how-steps::before {
    display: none !important;
  }
  [data-page="home"] .hp-step {
    flex: 0 0 280px;
    scroll-snap-align: start;
    background: #ffffff;
    border: 1px solid var(--line-2, #edf0f5);
    border-radius: 24px;
    padding: 28px 20px;
    box-shadow: 0 8px 24px rgba(27, 41, 33, 0.04);
    box-sizing: border-box;
    text-align: center;
  }
  [data-page="home"] .hp-group-card { padding:32px 24px; }
  [data-page="home"] .hp-group-visual { grid-template-columns:repeat(2,1fr); }
}
@media (max-width: 480px) {
  [data-page="home"] .hp-grid { grid-template-columns:1fr; }
  [data-page="home"] .hp-fc { padding: 20px 18px; border-radius: 20px; }
  [data-page="home"] .hp-fc-tabs { margin-bottom: 16px; }
  [data-page="home"] .hp-fc-tab { padding: 8px 10px; font-size: 12px; gap: 5px; }
  [data-page="home"] .hp-fc-head h3 { font-size: 14px; }
  [data-page="home"] .hp-fc-badge { font-size: 10px; padding: 3px 8px; }
  [data-page="home"] .hp-search-input-wrap input { font-size: 14px; padding: 9px 0; }
  [data-page="home"] .hp-search-submit-btn { width: 40px; height: 40px; border-radius: 10px; }
  [data-page="home"] .hp-pop-chips { gap: 6px; }
  [data-page="home"] .hp-pop-chip { padding: 0 !important; width: 64px; background: transparent !important; border: none !important; box-shadow: none !important; }
  [data-page="home"] .hp-occ-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
    gap: 16px;
  }
  [data-page="home"] .hp-occ-card:first-child { grid-column: auto; grid-row: auto; }
  [data-page="home"] .hp-occ-card:last-child { grid-column:auto; }
  [data-page="home"] .hp-occ-card { height:200px; }
  [data-page="home"] .hp-occ-card:first-child { height:260px; }
}

/* Mobile vibe section: side-scroll cards instead of stacked grid. */
@media (max-width: 768px) {
  [data-page="home"] .hp-occasions {
    padding: 44px 0 38px;
    overflow: hidden;
  }
  [data-page="home"] .hp-occasions .hp-sec-head {
    margin-bottom: 18px;
  }
  [data-page="home"] .hp-occ-grid {
    display: flex !important;
    grid-template-columns: none !important;
    grid-template-rows: none !important;
    gap: 14px;
    margin-top: 20px;
    margin-left: -16px;
    margin-right: -16px;
    padding: 4px 16px 12px;
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  [data-page="home"] .hp-occ-grid::-webkit-scrollbar {
    display: none;
  }
  [data-page="home"] .hp-occ-card,
  [data-page="home"] .hp-occ-card:first-child,
  [data-page="home"] .hp-occ-card:last-child {
    flex: 0 0 74%;
    width: auto;
    height: 220px;
    grid-row: auto !important;
    grid-column: auto !important;
    scroll-snap-align: start;
    border-radius: 20px;
  }
  [data-page="home"] .hp-occ-card:first-child {
    flex-basis: 82%;
  }
  [data-page="home"] .hp-occ-over {
    padding: 18px;
  }
  [data-page="home"] .hp-occ-card:first-child .hp-occ-label,
  [data-page="home"] .hp-occ-label {
    font-size: 20px;
  }
  [data-page="home"] .hp-occ-arrow {
    opacity: 1;
    transform: none;
    width: 34px;
    height: 34px;
    right: 18px;
    bottom: 18px;
  }
}

/* Desktop Viewport & Height-Aware Optimization */
@media (min-width: 1025px) {
  [data-page="home"] .hp-hero {
    min-height: clamp(560px, calc(100svh - var(--header-h, 68px) - 28px), 720px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0 64px 0;
    margin: 0;
    box-sizing: border-box;
  }
  [data-page="home"] .hp-hero-grid {
    gap: 52px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
  [data-page="home"] .hp-hero-copy {
    text-align: center;
    margin: 0;
  }
  [data-page="home"] .hp-h1 {
    font-size: clamp(42px, 4.2vw, 64px);
    margin-bottom: 16px;
  }
  [data-page="home"] .hp-hero-sub {
    margin-bottom: 24px;
    font-size: 16.5px;
  }
  [data-page="home"] .hp-avatars {
    margin-bottom: 24px;
    justify-content: center;
  }
  [data-page="home"] .hp-hero-pills {
    justify-content: center;
  }
  [data-page="home"] .hp-fc {
    padding: 24px 20px;
  }
  [data-page="home"] .hp-stats {
    padding: 36px 0;
  }
  [data-page="home"] .hp-st {
    padding: 16px 20px;
    gap: 8px;
  }
  [data-page="home"] .hp-st-top { gap: 8px; }
  [data-page="home"] .hp-st-icon { width: 34px; height: 34px; border-radius: 10px; }
  [data-page="home"] .hp-st-icon svg { width: 17px; height: 17px; }
  [data-page="home"] .hp-st-num { font-size: 26px; }
  [data-page="home"] .hp-st-lbl { font-size: 12px; }
  [data-page="home"] .hp-st-sub { display: none; }
  [data-page="home"] .hp-stats-eyebrow { margin-bottom: 28px; }
}

@media (min-width: 1025px) and (max-height: 880px) {
  [data-page="home"] .hp-hero {
    min-height: 520px;
  }
  [data-page="home"] .hp-hero-grid {
    gap: 40px;
  }
  [data-page="home"] .hp-live {
    margin-bottom: 10px;
    padding: 4px 10px;
  }
  [data-page="home"] .hp-h1 {
    font-size: clamp(38px, 3.8vw, 56px);
    margin-bottom: 12px;
    letter-spacing: -1.2px;
    line-height: 1.1;
  }
  [data-page="home"] .hp-hero-sub {
    font-size: 15.5px;
    line-height: 1.48;
    margin-bottom: 16px;
  }
  [data-page="home"] .hp-avatars {
    margin-bottom: 10px;
  }
  [data-page="home"] .hp-av-stack img {
    width: 30px;
    height: 30px;
  }
  [data-page="home"] .hp-hero-pills {
    gap: 6px;
  }
  [data-page="home"] .hp-hero-pill {
    padding: 4px 8px;
    font-size: 11px;
  }
  [data-page="home"] .hp-fc {
    padding: 16px 15px;
    border-radius: 20px;
  }
  [data-page="home"] .hp-fc-head {
    margin-bottom: 8px;
  }
  [data-page="home"] .hp-fc-head h3 {
    font-size: 13.5px;
  }
  [data-page="home"] .hp-fc-tabs {
    margin-bottom: 14px;
  }
  [data-page="home"] .hp-fc-tab {
    padding: 8px 12px;
    font-size: 12px;
    gap: 5px;
  }
  [data-page="home"] .hp-search-form {
    margin-bottom: 10px;
  }
  [data-page="home"] .hp-search-input-wrap {
    padding: 3px 5px 3px 12px;
  }
  [data-page="home"] .hp-search-input-wrap input {
    padding: 7px 0;
    font-size: 13px;
  }
  [data-page="home"] .hp-search-submit-btn {
    width: 34px;
    height: 34px;
    border-radius: 10px;
  }
  [data-page="home"] .hp-popular-searches {
    padding-top: 10px;
  }
  [data-page="home"] .hp-pop-title {
    margin-bottom: 6px;
    font-size: 10px;
  }
  [data-page="home"] .hp-pop-chip {
    padding: 0 !important;
    width: 64px;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
  }
  [data-page="home"] .hp-stats {
    padding: 40px 0;
  }
  [data-page="home"] .hp-stats-eyebrow { margin-bottom: 28px; }
  [data-page="home"] .hp-stats-grid {
    gap: 0;
  }
  [data-page="home"] .hp-st {
    padding: 0 20px;
    gap: 6px;
  }
  [data-page="home"] .hp-st-top { gap: 8px; }
  [data-page="home"] .hp-st-num { font-size: 26px; }
  [data-page="home"] .hp-st-lbl { font-size: 11px; }
  [data-page="home"] .hp-st-sub { display: none; }
  [data-page="home"] .hp-st-icon { width: 32px; height: 32px; border-radius: 9px; }
  [data-page="home"] .hp-st-icon svg { width: 16px; height: 16px; }
}

/* First viewport fit: hero + unlock badge + trust strip must share one screen. */
[data-page="home"] .hp-stats {
  padding: 10px 0 8px !important;
}
[data-page="home"] .hp-stats-eyebrow {
  margin-bottom: 8px !important;
}
[data-page="home"] .hp-st {
  gap: 4px;
  padding: 0 18px !important;
}
[data-page="home"] .hp-st-icon {
  width: 30px;
  height: 30px;
  border-radius: 9px;
}
[data-page="home"] .hp-st-icon svg {
  width: 15px;
  height: 15px;
}
[data-page="home"] .hp-st-num {
  font-size: clamp(22px, 2.3vw, 30px);
}
[data-page="home"] .hp-st-lbl {
  font-size: 11px;
}
[data-page="home"] .hp-st-sub {
  display: none;
}
[data-page="home"] .hp-ticker-wrap {
  padding: 6px 0 !important;
}
[data-page="home"] .hp-tick-item {
  padding: 5px 13px;
  margin: 0 10px;
  font-size: 12.5px;
}
[data-page="home"] .hp-tick-destination {
  padding: 1px 8px;
  font-size: 11.5px;
}

@media (min-width: 1025px) {
  [data-page="home"] .hp-hero {
    height: calc(100svh - var(--header-h, 68px) - 160px);
    min-height: 388px;
    max-height: 560px;
  }
}

@media (min-width: 1025px) and (max-height: 680px) {
  [data-page="home"] .hp-hero {
    height: calc(100svh - var(--header-h, 68px) - 98px);
    min-height: 360px;
  }
  [data-page="home"] .hp-live {
    margin-bottom: 8px;
  }
  [data-page="home"] .hp-h1 {
    font-size: clamp(32px, 3.3vw, 44px);
    margin-bottom: 8px;
  }
  [data-page="home"] .hp-hero-sub,
  [data-page="home"] .hp-avatars {
    margin-bottom: 10px;
  }
  [data-page="home"] .hp-hero-sub {
    font-size: 14px;
    line-height: 1.42;
  }
  [data-page="home"] .hp-fc {
    padding: 14px 14px;
  }
  [data-page="home"] .hp-fc-head,
  [data-page="home"] .hp-fc-tabs,
  [data-page="home"] .hp-search-form {
    margin-bottom: 8px;
  }
  [data-page="home"] .hp-popular-searches {
    padding-top: 8px;
  }
  [data-page="home"] .hp-stats {
    padding: 12px 0 10px;
  }
  [data-page="home"] .hp-stats-eyebrow {
    margin-bottom: 8px;
  }
  [data-page="home"] .hp-st-icon {
    width: 26px;
    height: 26px;
  }
  [data-page="home"] .hp-st-num {
    font-size: 21px;
  }
  [data-page="home"] .hp-ticker-wrap {
    padding: 6px 0 !important;
    margin-top: 14px !important;
  }
  [data-page="home"] .hp-tick-item {
    padding: 4px 11px;
    margin: 0 8px;
    font-size: 11.5px;
  }
}

@media (max-width: 768px) {
  [data-page="home"] .hp-wrap {
    padding: 0 16px;
  }
  [data-page="home"] .hp-hero {
    padding: 14px 0 64px;
  }
  [data-page="home"] .hp-live {
    font-size: 11px;
    line-height: 1.2;
    padding: 5px 11px;
    margin-bottom: 12px;
  }
  [data-page="home"] .hp-h1 {
    font-size: clamp(31px, 8vw, 36px);
    line-height: 1.04;
    letter-spacing: -1px;
    margin-bottom: 12px;
  }
  [data-page="home"] .hp-hero-sub {
    font-size: 14.5px;
    line-height: 1.45;
    margin-bottom: 12px;
  }
  [data-page="home"] .hp-avatars {
    gap: 8px;
    margin-bottom: 10px;
  }
  [data-page="home"] .hp-av-stack img {
    width: 30px;
    height: 30px;
    margin-left: -8px;
  }
  [data-page="home"] .hp-av-text {
    font-size: 11.5px;
  }
  [data-page="home"] .hp-hero-pill {
    padding: 5px 10px;
    font-size: 11px;
  }
  [data-page="home"] .hp-fc {
    margin-top: 10px;
    padding: 14px 14px;
    border-radius: 18px;
  }
  [data-page="home"] .hp-fc-head {
    margin-bottom: 10px;
  }
  [data-page="home"] .hp-fc-tabs {
    margin-bottom: 10px;
  }
  [data-page="home"] .hp-fc-tab {
    padding: 7px 8px;
    font-size: 11px;
  }
  [data-page="home"] .hp-search-form {
    margin-bottom: 9px;
  }
  [data-page="home"] .hp-search-input-wrap {
    padding: 3px 5px 3px 10px;
    border-radius: 14px;
  }
  [data-page="home"] .hp-search-input-wrap input {
    padding: 8px 0;
  }
  [data-page="home"] .hp-search-submit-btn {
    width: 38px;
    height: 38px;
  }
  [data-page="home"] .hp-popular-searches {
    padding-top: 8px;
  }
  [data-page="home"] .hp-pop-title {
    margin-bottom: 6px;
  }
  [data-page="home"] .hp-stats {
    padding: 7px 0 5px !important;
  }
  [data-page="home"] .hp-stats-eyebrow {
    margin-bottom: 8px;
  }
  [data-page="home"] .hp-stats-eyebrow span {
    font-size: 9.5px;
    letter-spacing: .9px;
  }
  [data-page="home"] .hp-stats-grid {
    gap: 8px;
    padding: 0 16px 2px;
  }
  [data-page="home"] .hp-st {
    flex: 0 0 128px;
    height: 48px;
    min-height: 48px;
    padding: 4px 8px !important;
    gap: 2px;
  }
  [data-page="home"] .hp-st-top {
    gap: 5px;
  }
  [data-page="home"] .hp-st-icon {
    width: 24px;
    height: 24px;
    border-radius: 7px;
  }
  [data-page="home"] .hp-st-icon svg {
    width: 13px;
    height: 13px;
  }
  [data-page="home"] .hp-st-num {
    font-size: 19px;
  }
  [data-page="home"] .hp-st-lbl {
    font-size: 9.5px;
    line-height: 1.1;
  }
  [data-page="home"] .hp-ticker-wrap {
    padding: 4px 0 !important;
  }
  [data-page="home"] .hp-tick-item {
    padding: 4px 10px;
    margin: 0 6px;
    font-size: 11px;
  }
  [data-page="home"] .hp-tick-destination {
    padding: 1px 7px;
    font-size: 10.5px;
  }
}

@media (max-width: 768px) and (max-height: 780px) {
  [data-page="home"] .hp-avatars {
    display: none;
  }
  [data-page="home"] .hp-hero-sub {
    font-size: 13.5px;
    line-height: 1.38;
  }
  [data-page="home"] .hp-popular-searches {
    display: none;
  }
}

/* Mobile hero: clear fixed header and keep copy centered. */
@media (max-width: 768px) {
  [data-page="home"] .hp-hero {
    padding-top: calc(var(--header-h, 60px) + var(--banner-h, 0px) + 18px) !important;
    padding-bottom: 64px !important;
  }
  [data-page="home"] .hp-hero-grid {
    align-items: center !important;
    justify-items: center !important;
    text-align: center;
    row-gap: 8px !important;
  }
  [data-page="home"] .hp-hero-copy {
    display: contents;
    text-align: center;
    width: 100%;
  }
  [data-page="home"] .hp-live { order: 1; }
  [data-page="home"] .hp-h1 { order: 2; }
  [data-page="home"] .hp-hero-sub { order: 3; }
  [data-page="home"] .hp-avatars { order: 4; }
  [data-page="home"] .hp-fc { order: 5; }
  [data-page="home"] .hp-hero-pills { order: 6; }
  [data-page="home"] .hp-live {
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }
  [data-page="home"] .hp-h1,
  [data-page="home"] .hp-hero-sub {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
  [data-page="home"] .hp-h1 {
    max-width: 342px;
    font-size: clamp(26px, 7.1vw, 32px) !important;
    line-height: 0.98 !important;
    letter-spacing: -0.045em !important;
    margin-bottom: 0 !important;
    text-wrap: normal;
    color: #ffffff !important;
    text-shadow: 0 4px 12px rgba(27, 41, 33,0.4) !important;
  }
  [data-page="home"] .hp-h1 br:first-of-type {
    display: none;
  }
  [data-page="home"] .hp-h1 em {
    filter: drop-shadow(0 4px 14px rgba(63, 165, 107,0.18));
  }
  [data-page="home"] .hp-hero-sub {
    max-width: 318px;
    font-size: 13.35px !important;
    line-height: 1.38 !important;
    font-weight: 520;
    color: rgba(255, 255, 255, 0.95) !important;
    margin-top: 0 !important;
    margin-bottom: 4px !important;
    text-wrap: balance;
    text-shadow: 0 2px 8px rgba(27, 41, 33,0.4) !important;
  }
  [data-page="home"] .hp-avatars {
    justify-content: center;
    text-align: left;
  }
  [data-page="home"] .hp-hero-pills {
    justify-content: center;
    text-align: center;
    flex-wrap: wrap !important;
    overflow-x: visible !important;
    padding-bottom: 0 !important;
    margin-top: 4px !important;
  }
  [data-page="home"] .hp-fc {
    margin-left: auto;
    margin-right: auto;
    margin-top: 10px;
  }
}

/* Compact fixed-departures intro */
[data-page="home"] .hp-tours {
  padding-top: 42px !important;
}
[data-page="home"] .hp-tours .hp-sec-head {
  margin-bottom: 12px !important;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
[data-page="home"] .hp-tours .hp-tag {
  display: inline-flex;
  margin-bottom: 9px;
}
[data-page="home"] .hp-tours .hp-sec-head h2 {
  margin-bottom: 9px !important;
  font-size: clamp(26px, 3.5vw, 36px) !important;
  color: #1B2921;
  -webkit-text-fill-color: #1B2921;
  background: none;
}
@media (min-width: 769px) {
  [data-page="home"] .hp-tours .hp-sec-head h2 {
    white-space: nowrap;
  }
}
[data-page="home"] .hp-tours .hp-scroll-hint {
  margin-bottom: 8px !important;
}

@media (max-width: 768px) {
  [data-page="home"] .hp-tours {
    padding: 30px 0 42px !important;
  }
  [data-page="home"] .hp-tours .hp-sec-head {
    height: auto !important;
    padding: 0 16px !important;
    margin-bottom: 10px !important;
  }
  [data-page="home"] .hp-tours .hp-tag {
    padding: 4px 11px !important;
    font-size: 9.5px !important;
    letter-spacing: 1px !important;
    margin-bottom: 8px !important;
  }
  [data-page="home"] .hp-tours .hp-sec-head h2 {
    font-size: clamp(24px, 7vw, 30px) !important;
    line-height: 1.1 !important;
    letter-spacing: -1px !important;
    margin-bottom: 8px !important;
    white-space: normal !important;
  }
  [data-page="home"] .hp-tours .hp-sec-head p {
    font-size: 13.5px !important;
    line-height: 1.38 !important;
    max-width: 320px !important;
  }
  [data-page="home"] .hp-tours .hp-scroll-hint {
    justify-content: center !important;
    padding: 0 16px !important;
    margin-bottom: 8px !important;
    font-size: 10px !important;
  }
  [data-page="home"] .hp-tour-scroll {
    gap: 14px !important;
    padding-top: 6px !important;
  }
}

/* ═══════════════════════════════════════════════
   § INLINE BANNER
═══════════════════════════════════════════════ */
[data-page="home"] .hp-banner-zone { padding:16px 0 32px; }
[data-page="home"] .hp-banner {
  position:relative; overflow:hidden; border-radius:var(--hc-radius);
  background:#1B2921; text-decoration:none; display:block;
}
[data-page="home"] .hp-banner img {
  width:100%; object-fit:cover; display:block; max-height:160px; min-height:120px;
}
[data-page="home"] .hp-banner-over {
  position:absolute; inset:0;
  background:linear-gradient(90deg,rgba(27, 41, 33,.88) 0%,rgba(27, 41, 33,.4) 55%,transparent 100%);
  display:flex; align-items:center; padding:24px 40px;
}
[data-page="home"] .hp-banner-text { color:#fff; max-width:520px; }
[data-page="home"] .hp-banner-text strong {
  display:block; font-size:clamp(15px,2.2vw,20px); font-weight:800; line-height:1.2; margin-bottom:4px;
}
[data-page="home"] .hp-banner-cta {
  display:inline-flex; align-items:center; gap:6px; margin-top:10px;
  background:var(--hc-accent); color:#fff; padding:7px 18px; border-radius:100px;
  font-size:12px; font-weight:700; text-decoration:none; transition:all .18s;
}
[data-page="home"] .hp-banner-cta:hover { background:var(--hc-accent2); transform:translateY(-1px); }

/* ═══════════════════════════════════════════════
   § TRENDING ITINERARIES — SIDE SCROLL
═══════════════════════════════════════════════ */
[data-page="home"] .hp-scroll-row {
  display:flex; gap:24px; overflow-x:auto; padding:8px 4px 10px;
  scroll-snap-type:x mandatory; -webkit-overflow-scrolling:touch;
  scrollbar-width: none;
}
[data-page="home"] .hp-scroll-row::-webkit-scrollbar {
  display: none;
}
[data-page="home"] .hp-scroll-row .hp-card { flex:0 0 280px; scroll-snap-align:start; }
[data-page="home"] .hp-scroll-row .fresh-trip-card { flex:0 0 300px; max-width:300px; scroll-snap-align:start; margin:0; }
/* Narrow scroll cards: stack price above CTA so they never collide */
[data-page="home"] .hp-scroll-row .fresh-trip-card .fresh-trip-footer { flex-direction:column; align-items:stretch; gap:10px; }
[data-page="home"] .hp-scroll-row .fresh-trip-card .fresh-trip-footer .fresh-trip-price { flex-direction:row; align-items:baseline; gap:8px; justify-content:space-between; }
[data-page="home"] .hp-scroll-row .fresh-trip-card .fresh-trip-footer .btn { display:block; text-align:center; width:100%; }
[data-page="home"] .hp-scroll-hint {
  font-size:11px; font-weight:700; color:var(--hc-ink3); text-align:right; margin-bottom:12px;
  display:flex; align-items:center; justify-content:flex-end; gap:8px;
  text-transform: uppercase; letter-spacing: 0.8px;
}

/* ═══════════════════════════════════════════════
   § TRENDING DESTINATIONS — FOOTER-STRIP CARDS
═══════════════════════════════════════════════ */
[data-page="home"] .hp-dests {
  background: linear-gradient(180deg, #FAFAF9 0%, #F5F5F0 100%);
  padding: 88px 0 80px;
  position: relative;
  overflow: hidden;
}
[data-page="home"] .hp-dests::before {
  content: '';
  position: absolute;
  top: -120px; right: -80px;
  width: 400px; height: 400px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(46,133,83,0.06) 0%, transparent 70%);
  pointer-events: none;
}

/* ── Grid container ── */
[data-page="home"] .hp-dest-scroll {
  display: flex; gap: 14px; overflow-x: auto; padding: 8px 4px 24px;
  scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
[data-page="home"] .hp-dest-scroll::-webkit-scrollbar { display: none; }

/* ── Card base — flexbox column: image + footer ── */
[data-page="home"] .hp-dest-card {
  flex: 0 0 280px; scroll-snap-align: start;
  border-radius: 20px; overflow: hidden;
  text-decoration: none; display: flex; flex-direction: column;
  background: #FFFFFF;
  box-shadow: 0 4px 24px rgba(15,23,42,0.08);
  border: 1px solid rgba(15,23,42,0.06);
  box-sizing: border-box;
}

/* ── Image wrapper ── */
[data-page="home"] .hp-dest-img-wrap {
  position: relative;
  height: 180px;
  flex: 0 0 180px;
  overflow: hidden;
}
[data-page="home"] .hp-dest-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
}

/* ── Price pill on image ── */
[data-page="home"] .hp-dest-price-pill {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  background: #2E8553;
  border: none; border-radius: 99px;
  padding: 6px 14px; font-size: 11px; font-weight: 700; color: #FFFFFF;
  letter-spacing: 0.3px;
  box-shadow: 0 2px 8px rgba(46,133,83,0.3);
}

/* ── Featured badge on image ── */
[data-page="home"] .hp-dest-featured-badge {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #FFFFFF;
  font-size: 10.5px; font-weight: 800;
  padding: 5px 12px; border-radius: 99px;
  text-transform: uppercase; letter-spacing: 0.8px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.22);
}

/* ── Footer strip ── */
[data-page="home"] .hp-dest-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 18px;
  background: #FFFFFF;
  border-top: 1px solid rgba(15,23,42,0.05);
  gap: 12px;
  box-sizing: border-box;
  flex: 1;
}
[data-page="home"] .hp-dest-footer-left {
  display: flex; flex-direction: column; gap: 2px;
  min-width: 0; flex: 1;
}

/* ── Vibe tag ── */
[data-page="home"] .hp-dest-vibe-tag {
  font-size: 10px; font-weight: 800; color: #2E8553;
  text-transform: uppercase; letter-spacing: 1.1px;
  line-height: 1.4;
}

/* ── Destination name ── */
[data-page="home"] .hp-dest-name {
  font-size: 17px; font-weight: 800; color: #1B2921; line-height: 1.25;
  font-family: 'Outfit', sans-serif;
  margin: 0;
  height: 42px; min-height: 42px; max-height: 42px;
  overflow: hidden; text-overflow: ellipsis;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
}

/* ── Trip count / meta ── */
[data-page="home"] .hp-dest-meta {
  font-size: 12px; color: #7A8A7E; font-weight: 600;
  display: flex; align-items: center; gap: 4px;
  line-height: 1.4;
}
[data-page="home"] .hp-dest-dot {
  opacity: 0.4; margin: 0 2px;
}

/* ── Arrow button ── */
[data-page="home"] .hp-dest-arrow {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(46,133,83,0.08);
  color: #2E8553; display: grid; place-items: center;
  border: 1px solid rgba(46,133,83,0.15);
  flex-shrink: 0;
}

/* ── Desktop bento grid ── */
@media (min-width: 900px) {
  [data-page="home"] .hp-dest-scroll {
    display: grid;
    grid-template-columns: 1.25fr 1fr 1fr;
    grid-template-rows: 255px 255px;
    gap: 20px;
    overflow: visible;
    padding: 0;
  }
  [data-page="home"] .hp-dest-card {
    flex: none; border-radius: 24px;
    height: 255px;
  }
  [data-page="home"] .hp-dest-card .hp-dest-img-wrap {
    height: 150px; flex: 0 0 150px;
  }
  [data-page="home"] .hp-dest-card .hp-dest-footer {
    height: 105px; flex: 0 0 105px;
  }

  /* Hero card: tall left column */
  [data-page="home"] .hp-dest-card:nth-child(1) {
    grid-column: 1; grid-row: 1 / 3;
    height: 530px !important;
  }
  [data-page="home"] .hp-dest-card:nth-child(1) .hp-dest-img-wrap {
    height: 350px !important; flex: 0 0 350px !important;
  }
  [data-page="home"] .hp-dest-card:nth-child(1) .hp-dest-footer {
    height: 180px !important; flex: 0 0 180px !important;
    padding: 22px 24px !important;
    box-sizing: border-box !important;
  }

  /* Hero card bigger title & button */
  [data-page="home"] .hp-dest-card:nth-child(1) .hp-dest-vibe-tag {
    font-size: 11.5px !important;
    letter-spacing: 1.2px !important;
  }
  [data-page="home"] .hp-dest-card:nth-child(1) .hp-dest-name {
    font-size: 26px !important; font-weight: 900 !important; line-height: 1.25 !important;
    height: auto !important; max-height: 66px !important; margin: 4px 0 6px !important;
  }
  [data-page="home"] .hp-dest-card:nth-child(1) .hp-dest-meta {
    font-size: 13.5px !important; color: #475569 !important; font-weight: 650 !important;
  }
  [data-page="home"] .hp-dest-card:nth-child(1) .hp-dest-arrow {
    width: 44px !important; height: 44px !important;
    background: #2E8553 !important; color: #FFFFFF !important;
    box-shadow: 0 6px 18px rgba(46,133,83,0.35) !important;
    transition: transform 0.25s ease !important;
  }
  [data-page="home"] .hp-dest-card:nth-child(1):hover .hp-dest-arrow {
    transform: scale(1.1) translateX(2px) !important;
    background: #256E44 !important;
  }

  [data-page="home"] .hp-dest-card:nth-child(2) { grid-column: 2; grid-row: 1; }
  [data-page="home"] .hp-dest-card:nth-child(3) { grid-column: 3; grid-row: 1; }
  [data-page="home"] .hp-dest-card:nth-child(4) { grid-column: 2; grid-row: 2; }
  [data-page="home"] .hp-dest-card:nth-child(5) { grid-column: 3; grid-row: 2; }
  [data-page="home"] .hp-dest-card:nth-child(n+6) { display: none; }
}

/* ── Destination CTA buttons ── */
[data-page="home"] .hp-dest-nav-buttons {
  display: flex; gap: 14px; justify-content: center; margin-top: 36px; flex-wrap: wrap;
}
[data-page="home"] .hp-dest-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px; border-radius: 14px;
  background: #FFFFFF; border: 1.5px solid rgba(15,23,42,0.1);
  color: #1B2921; font-weight: 700; font-size: 14px;
  text-decoration: none;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
  transition: all 0.3s cubic-bezier(0.22,1,0.36,1);
}
[data-page="home"] .hp-dest-btn:hover {
  border-color: #2E8553;
  box-shadow: 0 6px 20px rgba(46,133,83,0.12);
  transform: translateY(-2px);
  color: #2E8553;
}


/* ═══════════════════════════════════════════════
   § TOURS
═══════════════════════════════════════════════ */
[data-page="home"] .hp-tours {
  background:
    radial-gradient(circle at 82% 0%, rgba(63, 165, 107, 0.06) 0%, transparent 34%),
    linear-gradient(180deg, #fff 0%, #fffbf7 100%);
  padding: 48px 0 56px;
  border-bottom: 1px solid rgba(27, 41, 33, 0.05);
}
[data-page="home"] .hp-tours .hp-sec-head {
  max-width: 860px;
  margin: 0 auto 18px;
  padding: 18px 22px 10px;
}
[data-page="home"] .hp-tours .hp-tag {
  padding: 5px 13px;
  font-size: 10.5px;
  letter-spacing: 1.2px;
  margin-bottom: 10px;
}
[data-page="home"] .hp-tours .hp-sec-head h2 {
  font-size: clamp(32px, 4.2vw, 52px);
  line-height: 1;
  margin: 0 0 12px;
  letter-spacing: -1.8px;
}
[data-page="home"] .hp-tours .hp-sec-head p {
  max-width: 760px;
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.45;
}
[data-page="home"] .hp-tours .hp-scroll-hint {
  max-width: var(--hc-max);
  margin: 0 auto 10px;
  padding: 0 24px;
  color: #8D9A8F;
}
[data-page="home"] .hp-tour-scroll {
  display: flex; gap: 18px; overflow-x: auto; padding: 8px 4px 18px;
  scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
[data-page="home"] .hp-tour-scroll::-webkit-scrollbar {
  display: none;
}
[data-page="home"] .hp-tour-card {
  flex: 0 0 292px; scroll-snap-align: start;
  background: rgba(255,255,255,.92); border: 1px solid rgba(27, 41, 33, 0.07); border-radius: 18px;
  overflow: hidden; box-shadow: 0 10px 30px rgba(27, 41, 33, 0.02); text-decoration: none; color: inherit; display: block;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s;
  position: relative;
}
[data-page="home"] .hp-tour-card:hover {
  transform: translateY(-5px);
  border-color: rgba(63, 165, 107, 0.2);
  box-shadow: 0 20px 48px rgba(27, 41, 33, 0.08), 0 0 0 1px rgba(63, 165, 107, 0.12);
}
[data-page="home"] .hp-tour-img {
  aspect-ratio: 16/9; overflow: hidden; background: #EFE7D6; position: relative;
}
[data-page="home"] .hp-tour-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(27, 41, 33, 0.5) 100%);
  pointer-events: none;
}
[data-page="home"] .hp-tour-img img {
  width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
[data-page="home"] .hp-tour-card:hover .hp-tour-img img { transform: scale(1.08); }

/* Left Badge: Curated Theme Tag */
[data-page="home"] .hp-tour-badge {
  position: absolute; top: 12px; left: 12px;
  background: linear-gradient(135deg, #1B2921 0%, #1B2921 100%);
  border: 1px solid rgba(255, 255, 255, 0.15); color: #fff;
  font-size: 10px; font-weight: 800; letter-spacing: 0.05em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 100px; z-index: 5;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Right Badge: Duration */
[data-page="home"] .hp-tour-dur-badge {
  position: absolute; top: 12px; right: 12px;
  background: rgba(255, 255, 255, 0.92); color: #1B2921;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(27, 41, 33, 0.05);
  font-size: 10px; font-weight: 800; padding: 4px 10px; border-radius: 100px; z-index: 5;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

/* Bottom Overlay: Departs date badge */
[data-page="home"] .hp-tour-date-badge {
  position: absolute; bottom: 12px; left: 12px;
  background: #3FA56B;
  color: #fff; font-size: 10.5px; font-weight: 800;
  padding: 4px 12px; border-radius: 100px; z-index: 5;
  box-shadow: 0 4px 12px rgba(46, 133, 83, 0.25);
  display: flex; align-items: center; gap: 4px;
}

[data-page="home"] .hp-tour-body { padding: 20px; display: flex; flex-direction: column; height: calc(100% - 200px); box-sizing: border-box; }
[data-page="home"] .hp-tour-dest {
  font-size: 10.5px; font-weight: 700; color: var(--hc-accent); letter-spacing: 0.08em;
  text-transform: uppercase; margin-bottom: 6px;
}
[data-page="home"] .hp-tour-title {
  font-size: 15.5px; font-weight: 800; color: var(--hc-ink); margin-bottom: 12px; line-height: 1.4;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  height: 44px; letter-spacing: -0.01em;
}
[data-page="home"] .hp-tour-desc {
  font-size: 12.5px; color: var(--hc-ink2); margin-bottom: 18px; line-height: 1.5;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  height: 38px;
}
[data-page="home"] .hp-tour-meta {
  display: flex; align-items: flex-end; justify-content: space-between; margin-top: auto;
  border-top: 1px solid rgba(27, 41, 33, 0.05); padding-top: 14px;
}
[data-page="home"] .hp-tour-price { font-size: 18px; font-weight: 800; color: var(--hc-ink); line-height: 1.15; }
[data-page="home"] .hp-tour-price small { font-size: 10px; font-weight: 500; color: var(--hc-ink3); display: block; margin-top: 2px; }
[data-page="home"] .hp-tour-all-inc {
  font-size: 9.5px; font-weight: 700; color: #2E8553; background: rgba(46, 133, 83, 0.08);
  border: 1px solid rgba(46, 133, 83, 0.12); padding: 4px 8px; border-radius: 6px;
  text-transform: uppercase; letter-spacing: 0.02em; display: inline-flex; align-items: center; gap: 3px;
}
[data-page="home"] .hp-tours-more { text-align: center; margin-top: 40px; }

@media(max-width:768px) {
  [data-page="home"] .hp-sec-head {
    margin-bottom: 18px;
  }
  [data-page="home"] .hp-tag {
    padding: 5px 11px;
    font-size: 9px;
    letter-spacing: 1px;
  }
  [data-page="home"] .hp-sec-head h2 {
    font-size: clamp(24px, 7.2vw, 30px);
    line-height: 1.05;
    letter-spacing: -0.035em;
    margin: 9px auto 7px;
  }
  [data-page="home"] .hp-sec-head p {
    font-size: 13.5px;
    line-height: 1.45;
    max-width: 32rem;
  }
  [data-page="home"] .hp-filters {
    gap: 7px;
    margin-bottom: 18px;
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    padding: 0 16px 4px;
    margin-left: -16px;
    margin-right: -16px;
    scrollbar-width: none;
  }
  [data-page="home"] .hp-filters::-webkit-scrollbar {
    display: none;
  }
  [data-page="home"] .hp-fpill {
    flex: 0 0 auto;
    padding: 8px 14px;
    font-size: 12px;
  }
  [data-page="home"] .hp-scroll-row {
    padding-bottom: 0;
  }
  [data-page="home"] .hp-trips-more {
    margin-top: 24px;
  }
  [data-page="home"] .hp-scroll-row .hp-card { flex:0 0 240px; }
  [data-page="home"] .hp-scroll-row .fresh-trip-card { flex:0 0 260px; max-width:260px; }
  [data-page="home"] .hp-tour-card { flex:0 0 285px; }
  [data-page="home"] .hp-dest-card {
    flex: 0 0 172px !important; width: 172px !important; max-width: 172px !important;
    height: 260px !important; min-height: 260px !important; max-height: 260px !important;
    border-radius: 20px !important; box-sizing: border-box !important;
  }
  [data-page="home"] .hp-dest-img-wrap {
    height: 140px !important; flex: 0 0 140px !important;
    min-height: 140px !important; max-height: 140px !important;
  }
  [data-page="home"] .hp-dest-footer {
    height: 120px !important; flex: 0 0 120px !important;
    min-height: 120px !important; max-height: 120px !important;
    padding: 12px 14px !important; gap: 6px !important;
    box-sizing: border-box !important; display: flex !important;
    align-items: center !important; justify-content: space-between !important;
  }
  [data-page="home"] .hp-dest-footer-left { min-width: 0 !important; flex: 1 !important; display: flex !important; flex-direction: column !important; justify-content: center !important; }
  [data-page="home"] .hp-dest-name {
    font-size: 14.5px !important; font-weight: 800 !important; line-height: 1.25 !important;
    height: 36px !important; min-height: 36px !important; max-height: 36px !important;
    margin: 2px 0 3px !important; overflow: hidden !important; text-overflow: ellipsis !important;
    display: -webkit-box !important; -webkit-line-clamp: 2 !important; -webkit-box-orient: vertical !important;
  }
  [data-page="home"] .hp-dest-meta { font-size: 11.5px !important; color: #64748B !important; font-weight: 600 !important; display: flex !important; align-items: center !important; flex-wrap: wrap !important; gap: 2px 4px !important; line-height: 1.35 !important; }
  [data-page="home"] .hp-dest-dot { margin: 0 1px !important; opacity: 0.4 !important; }
  [data-page="home"] .hp-dest-arrow { width:28px !important; height:28px !important; border-radius: 50% !important; background: #F1F5F9 !important; color: #2E8553 !important; flex-shrink: 0 !important; display: flex !important; align-items: center !important; justify-content: center !important; }
  [data-page="home"] .hp-dest-price-pill { font-size: 10.5px !important; padding: 5px 11px !important; top: 10px !important; right: 10px !important; background: #2E8553 !important; border-radius: 99px !important; }
  [data-page="home"] .hp-banner-over { padding:16px 20px; }
}

/* Destinations Nav Buttons styling (desktop-first & responsive hover animations) */
[data-page="home"] .hp-dest-nav-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}

[data-page="home"] .hp-dest-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 28px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  background: #FFFFFF !important;
  border: 1.5px solid #2E8553 !important;
  color: #2E8553 !important;
  box-shadow: 0 2px 8px rgba(46, 133, 83, 0.08) !important;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-page="home"] .hp-dest-btn:hover {
  background: linear-gradient(135deg, #2E8553 0%, #256E44 100%) !important;
  color: #ffffff !important;
  border-color: #256E44 !important;
  box-shadow: 0 8px 24px rgba(46, 133, 83, 0.35) !important;
  transform: translateY(-2px);
}

[data-page="home"] .hp-dest-btn-icon {
  font-size: 16px;
  display: inline-block;
  transition: transform 0.25s ease;
}

[data-page="home"] .hp-dest-btn:hover .hp-dest-btn-icon {
  transform: scale(1.15) rotate(6deg);
}

[data-page="home"] .hp-dest-btn-text-mobile {
  display: none;
}

[data-page="home"] .hp-dest-btn-text-desktop {
  display: inline;
}

/* Mobile responsive override */
@media (max-width: 768px) {
  [data-page="home"] .hp-dest-nav-buttons {
    display: flex !important;
    flex-direction: row !important; /* Force side by side layout on mobile */
    gap: 10px !important;
    margin-top: 24px !important;
    padding: 0 16px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  
  [data-page="home"] .hp-dest-btn {
    flex: 1 !important; /* Distribute equal 50% width space to both buttons */
    padding: 12px 6px !important; /* Tighten padding so it perfectly fits */
    font-size: 13px !important; /* Adjust font size for better readability on smaller screens */
    gap: 6px !important;
    white-space: nowrap !important; /* Prevent text wrapping inside the button */
    border-radius: 99px !important; /* Keep modern pill look */
    border-width: 1.5px !important;
  }

  [data-page="home"] .hp-dest-btn-icon {
    font-size: 14px !important;
  }

  [data-page="home"] .hp-dest-btn-text-desktop {
    display: none !important;
  }

  [data-page="home"] .hp-dest-btn-text-mobile {
    display: inline !important;
  }
}

/* ═══════════ UNIVERSAL 2-ROW + LOAD MORE GRID SYSTEM ═══════════ */
[data-page="home"] .hp-2row-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 24px !important;
  overflow: visible !important;
}
@media (max-width: 1024px) {
  [data-page="home"] .hp-2row-grid { grid-template-columns: repeat(3, 1fr) !important; }
}
@media (max-width: 768px) {
  [data-page="home"] .hp-2row-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 480px) {
  [data-page="home"] .hp-2row-grid { grid-template-columns: 1fr !important; }
}

[data-page="home"] .hp-blogs-grid.hp-2row-grid {
  grid-template-columns: repeat(3, 1fr) !important;
}
@media (max-width: 900px) {
  [data-page="home"] .hp-blogs-grid.hp-2row-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 600px) {
  [data-page="home"] .hp-blogs-grid.hp-2row-grid { grid-template-columns: 1fr !important; }
}

.hp-item-hidden {
  display: none !important;
}

@keyframes hpFadeInUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
.hp-fade-in-up {
  animation: hpFadeInUp 0.35s ease forwards !important;
}

.hp-load-more-wrap {
  text-align: center !important;
  margin-top: 36px !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  width: 100% !important;
}
.hp-load-more-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  background: #FFFFFF !important;
  color: #0F172A !important;
  border: 1.5px solid #CBD5E1 !important;
  padding: 13px 30px !important;
  border-radius: 99px !important;
  font-family: 'Outfit', sans-serif !important;
  font-size: 14.5px !important;
  font-weight: 750 !important;
  cursor: pointer !important;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.05) !important;
  transition: all 0.25s ease !important;
}
.hp-load-more-btn:hover {
  background: #2E8553 !important;
  color: #FFFFFF !important;
  border-color: #2E8553 !important;
  box-shadow: 0 6px 20px rgba(46, 133, 83, 0.3) !important;
}
.hp-load-more-btn:disabled {
  background: #F1F5F9 !important;
  color: #94A3B8 !important;
  border-color: #E2E8F0 !important;
  box-shadow: none !important;
  cursor: default !important;
}

/* Homepage Blog Topic Filter Chips */
.hp-blog-topic-chips {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.hp-blog-chip {
  background: #FFFFFF;
  color: #475569;
  border: 1.5px solid #E2E8F0;
  padding: 8px 18px;
  border-radius: 99px;
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.03);
  transition: all 0.2s ease;
}
.hp-blog-chip:hover {
  background: #EFF6FF;
  color: #2E8553;
  border-color: #BFDBFE;
  transform: translateY(-1px);
}
.hp-blog-chip.active {
  background: #2E8553 !important;
  color: #FFFFFF !important;
  border-color: #2E8553 !important;
  box-shadow: 0 4px 14px rgba(46, 133, 83, 0.25) !important;
}
