/* ═══════════════════════════════════════════════════════════════════════════
   BACK 40 UTFITTERS — UNIFIED DESIGN SYSTEM

   A production-grade, modular external stylesheet consolidating all pages:
   - index.html (homepage)
   - camping-kits.html (kit listing & date selection)
   - upsell.html (add-on selection)
   - checkout.html (reservation form)
   - confirmation.html (booking confirmed)
   - my-bookings.html (reservation management)

   ═════════════════════════════════════════════════════════════════════════════ */

/* ──────────────────────────────────────────────────────────────────────────
   RESET & BASE
   ────────────────────────────────────────────────────────────────────────── */

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

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #1a1a18;
  background: var(--color-canvas);
  min-height: 100vh;
  overflow-x: hidden;
}

/* ──────────────────────────────────────────────────────────────────────────
   DESIGN TOKENS
   ────────────────────────────────────────────────────────────────────────── */

:root {
  /* PRIMARY COLORS — down-to-earth outdoor premium aesthetic */
  --color-trail-green: #4A7C59;      /* Primary CTAs, active states, accents */
  --color-deep-timber: #2C3E2D;      /* Dark backgrounds, hover states */
  --color-campfire: #B5631A;         /* Secondary CTAs, highlights */
  --color-dry-grass: #C8AA6E;        /* Accent text on dark, eyebrows */
  --color-canvas: #F4F0E6;           /* Light section backgrounds */

  /* NEUTRAL SCALE */
  --text-primary: #1a1a18;           /* Primary body text */
  --text-secondary: #555;            /* Secondary text */
  --text-muted: #6b6b60;             /* Muted labels, hints */
  --text-light: rgba(255,255,255,0.85); /* Light text on dark */
  --text-light-muted: rgba(255,255,255,0.6); /* Light muted */
  --text-disabled: #888;             /* Disabled states */

  /* BORDERS & SHADOWS */
  --border-color: rgba(44,62,45,0.12);
  --border-light: 1px solid var(--border-color);
  --shadow-sm: 0 2px 12px rgba(44,62,45,0.07);
  --shadow-md: 0 4px 20px rgba(44,62,45,0.07);
  --shadow-lg: 0 12px 40px rgba(44,62,45,0.12);
  --shadow-card: 0 14px 40px rgba(44,62,45,0.08);

  /* TYPOGRAPHY SCALE */
  --font-display: 'Playfair Display', serif;
  --font-body: 'DM Sans', sans-serif;
  --text-xs: 10px;
  --text-sm: 12px;
  --text-base: 14px;
  --text-md: 15px;
  --text-lg: 16px;
  --text-xl: 17px;
  --text-2xl: 18px;
  --text-3xl: 22px;
  --text-4xl: 24px;
  --text-5xl: 26px;
  --text-6xl: 28px;
  --text-7xl: 36px;
  --text-8xl: 38px;
  --text-9xl: 52px;
  --text-10xl: 58px;

  /* LETTER SPACING (for uppercase eyebrows) */
  --letter-tight: 0.06em;
  --letter-normal: 0.08em;
  --letter-wide: 0.1em;
  --letter-wider: 0.12em;
  --letter-widest: 0.18em;

  /* SPACING SCALE */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-base: 12px;
  --space-md: 16px;
  --space-lg: 20px;
  --space-xl: 24px;
  --space-2xl: 28px;
  --space-3xl: 32px;
  --space-4xl: 40px;
  --space-5xl: 48px;
  --space-6xl: 56px;
  --space-7xl: 64px;
  --space-8xl: 80px;

  /* BORDER RADIUS */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 10px;
  --radius-xl: 12px;
  --radius-2xl: 16px;
  --radius-3xl: 20px;
  --radius-full: 999px;

  /* TRANSITIONS */
  --transition-fast: 0.15s;
  --transition-base: 0.2s;
  --transition-slow: 0.3s;
}

/* ──────────────────────────────────────────────────────────────────────────
   TYPOGRAPHY
   ────────────────────────────────────────────────────────────────────────── */

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-family: var(--font-display);
  line-height: 1.05;
  font-weight: 700;
}

h1 {
  font-size: clamp(40px, 6vw, 96px);
  font-weight: 900;
}

h2 {
  font-size: clamp(28px, 4vw, 52px);
}

h3 {
  font-size: var(--text-3xl);
}

p {
  margin: 0;
  line-height: 1.6;
}

em { font-style: italic; }
strong { font-weight: 600; }

/* Eye­brow labels: uppercase, tight tracking, elevated weight */
.eyebrow,
[class*='eyebrow'] {
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: var(--letter-widest);
  text-transform: uppercase;
  font-family: var(--font-body);
  margin: 0;
}

/* ──────────────────────────────────────────────────────────────────────────
   GLOBAL LAYOUT UTILITIES
   ────────────────────────────────────────────────────────────────────────── */

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--space-5xl);
}

.container-sm {
  max-width: 960px;
  margin: 0 auto;
}

.container-xs {
  max-width: 600px;
  margin: 0 auto;
}

.section-pad {
  padding: var(--space-8xl) var(--space-5xl);
}

.section-pad-sm {
  padding: var(--space-6xl) var(--space-5xl);
}

/* ──────────────────────────────────────────────────────────────────────────
   BUTTONS — UNIVERSAL PATTERNS
   ────────────────────────────────────────────────────────────────────────── */

.btn,
button[class*='btn'],
a[class*='btn'] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-sm) var(--space-md);
  border: none;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: background var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
  white-space: nowrap;
  text-align: center;
}

.btn:active {
  transform: scale(0.97);
}

.btn:disabled {
  background: #d0cdc7 !important;
  color: #888 !important;
  cursor: not-allowed;
  pointer-events: none;
}

/* PRIMARY BUTTON (green) */
.btn-primary,
[class*='btn-primary'] {
  background: var(--color-trail-green);
  color: #fff;
}

.btn-primary:hover {
  background: var(--color-deep-timber);
}

/* SECONDARY BUTTON (orange) */
.btn-secondary,
[class*='btn-secondary'] {
  background: var(--color-campfire);
  color: #fff;
}

.btn-secondary:hover {
  background: #8a4a12;
}

/* GHOST BUTTON (outline) */
.btn-ghost,
[class*='btn-ghost'] {
  background: none;
  border: 1px solid currentColor;
  color: var(--color-trail-green);
}

.btn-ghost:hover {
  background: #e8f0eb;
}

.btn-ghost.orange,
[class*='btn-orange'] {
  color: var(--color-campfire);
  border-color: var(--color-campfire);
}

.btn-ghost.orange:hover {
  background: #fae8d8;
}

/* ICON BUTTONS & UTILITIES */
.btn-sm { padding: var(--space-xs) var(--space-sm); font-size: var(--text-xs); }
.btn-lg { padding: var(--space-md) var(--space-2xl); font-size: var(--text-base); }

/* ──────────────────────────────────────────────────────────────────────────
   CARDS — UNIVERSAL PATTERN
   ────────────────────────────────────────────────────────────────────────── */

.card,
[class^='card-'] {
  background: #fff;
  border-radius: var(--radius-2xl);
  border: var(--border-light);
  overflow: hidden;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.b40-card {
  background: #fff;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.card-header {
  padding: var(--space-xl);
  border-bottom: var(--border-light);
  background: #fafaf8;
}

.card-header h2 {
  font-size: var(--text-3xl);
  color: var(--color-deep-timber);
  margin: 0;
}

.card-body {
  padding: var(--space-xl);
}

.card-footer {
  padding: var(--space-xl);
  border-top: var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  flex-wrap: wrap;
}

/* ──────────────────────────────────────────────────────────────────────────
   FORMS & INPUTS
   ────────────────────────────────────────────────────────────────────────── */

.form-group {
  margin-bottom: var(--space-lg);
}

.form-group label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: var(--letter-normal);
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--space-xs);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: var(--space-sm) var(--space-md);
  border: 1px solid rgba(44,62,45,0.2);
  border-radius: var(--radius-lg);
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: #1a1a18;
  background: #fff;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b6b60' stroke-width='1.8' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right var(--space-md) center;
  padding-right: var(--space-2xl);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-trail-green);
  box-shadow: 0 0 0 3px rgba(74,124,89,0.12);
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.form-group.required label::after {
  content: ' *';
  color: #c0392b;
}

/* ──────────────────────────────────────────────────────────────────────────
   BADGES & PILLS
   ────────────────────────────────────────────────────────────────────────── */

.badge,
[class*='badge'] {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: var(--letter-wide);
  text-transform: uppercase;
  color: #fff;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: var(--radius-full);
  padding: var(--space-xs) var(--space-sm);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: var(--letter-wide);
}

.pill.success {
  background: rgba(212,237,218,0.8);
  color: #1a6b30;
}

.pill.danger {
  background: rgba(253,232,232,0.8);
  color: #c0392b;
}

.pill.info {
  background: rgba(74,124,89,0.08);
  color: var(--color-deep-timber);
}

/* ──────────────────────────────────────────────────────────────────────────
   ALERTS & STATUS
   ────────────────────────────────────────────────────────────────────────── */

.alert {
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-lg);
  font-size: var(--text-base);
  line-height: 1.5;
  margin-bottom: var(--space-lg);
  display: none;
}

.alert.visible { display: block; }

.alert-error {
  background: #fde8e8;
  color: #921b1b;
  border: 1px solid #f5c6c6;
}

.alert-success {
  background: #d4edda;
  color: #1a6b30;
  border: 1px solid #a8d5ba;
}

.alert-info {
  background: rgba(74,124,89,0.08);
  color: var(--color-deep-timber);
  border: 1px solid var(--border-color);
}

/* ──────────────────────────────────────────────────────────────────────────
   NAVIGATION
   ────────────────────────────────────────────────────────────────────────── */

.nav {
  background: var(--color-deep-timber);
  padding: 0 var(--space-2xl);
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: #fff;
  text-decoration: none;
}

.nav-link {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  transition: color var(--transition-fast);
}

.nav-link:hover {
  color: #fff;
}

/* ──────────────────────────────────────────────────────────────────────────
   HOMEPAGE — INDEX.HTML
   ────────────────────────────────────────────────────────────────────────── */

/* HERO SECTION */
.hp-hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hp-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hp-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(44, 62, 45, 0.15) 0%,
    rgba(44, 62, 45, 0.5) 50%,
    rgba(44, 62, 45, 0.85) 100%
  );
}

.hp-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: var(--space-8xl) var(--space-5xl);
}

.hp-hero-eyebrow {
  color: #fff;
  margin-bottom: var(--space-lg);
}

.hp-hero h1 {
  color: #fff;
  line-height: 1.0;
  margin-bottom: var(--space-sm);
}

.hp-hero h1 em {
  color: var(--color-dry-grass);
}

.hp-hero-sub {
  font-size: var(--text-xl);
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  line-height: 1.65;
  max-width: 480px;
  margin-bottom: var(--space-4xl);
}

.hp-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  list-style: none;
  margin-bottom: var(--space-3xl);
}

.hp-hero-tags li {
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: var(--radius-full);
  padding: var(--space-xs) var(--space-md);
  font-size: var(--text-xs);
  color: #fff;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(4px);
  font-family: var(--font-body);
}

.hp-hero-btns {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.hp-btn-primary {
  padding: var(--space-sm) var(--space-md);
}

.hp-btn-ghost {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.35);
  backdrop-filter: blur(4px);
  padding: var(--space-xs) var(--space-md);
}

.hp-btn-ghost:hover {
  background: rgba(255,255,255,0.22);
}

/* HOW IT WORKS SECTION */
.hp-hiw {
  background: var(--color-deep-timber);
  padding: var(--space-8xl) var(--space-5xl);
}

.hp-hiw-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.hp-hiw-eyebrow {
  color: var(--color-dry-grass);
  margin-bottom: var(--space-sm);
}

.hp-hiw-title {
  color: #fff;
  margin-bottom: var(--space-sm);
}

.hp-hiw-sub {
  font-size: var(--text-base);
  color: rgba(255,255,255,0.6);
  margin-bottom: var(--space-8xl);
}

.hp-hiw-steps {
  display: grid;
  grid-template-columns: 1fr 40px 1fr 40px 1fr;
  align-items: start;
  gap: 0;
}

.hp-step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-trail-green);
  color: #fff;
  font-size: var(--text-lg);
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-base);
}

.hp-step-title {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: #fff;
  margin-bottom: var(--space-sm);
}

.hp-step-body {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
}

.hp-hiw-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: var(--space-md);
}

.hp-hiw-arrow svg {
  width: 24px;
  height: 24px;
  stroke: var(--color-dry-grass);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.6;
}

.hp-hiw-cta {
  margin-top: var(--space-8xl);
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.hp-hiw-btn {
  padding: var(--space-sm) var(--space-md);
}

.hp-hiw-btn:hover {
  background: #8a4a12;
}

.hp-hiw-link {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.55);
  text-decoration: none;
}

.hp-hiw-link:hover {
  color: var(--color-dry-grass);
}

/* CAROUSEL SECTION */
.b40-carousel-section {
  background: var(--color-canvas);
  padding: var(--space-8xl) 0;
  overflow: hidden;
  position: relative;
}

.b40-carousel-header {
  max-width: 1100px;
  margin: 0 auto var(--space-3xl);
  padding: 0 var(--space-5xl);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--space-base);
  flex-wrap: wrap;
}

.b40-carousel-label {
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: var(--letter-wide);
  text-transform: uppercase;
  color: var(--text-muted);
}

.b40-carousel-hint {
  font-size: var(--text-sm);
  color: var(--color-trail-green);
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.b40-carousel-hint svg {
  width: 14px;
  height: 14px;
  stroke: var(--color-trail-green);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  animation: b40Nudge 2s ease-in-out infinite;
}

@keyframes b40Nudge {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(4px); }
}

.b40-track {
  display: flex;
  gap: var(--space-xl);
  padding: 0 var(--space-5xl) var(--space-base);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
}

.b40-track::-webkit-scrollbar { display: none; }
.b40-track.is-dragging { cursor: grabbing; scroll-snap-type: none; }

.b40-card {
  flex: 0 0 380px;
  scroll-snap-align: start;
  min-height: 660px;
}

.b40-card-photo {
  height: 200px;
  border-radius: var(--radius-2xl) var(--radius-2xl) 0 0;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}

.b40-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.b40-photo-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-lg) var(--space-xl);
  background: linear-gradient(transparent, rgba(0,0,0,0.5));
}

.b40-card-body {
  padding: var(--space-xl);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.b40-card-title {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--color-deep-timber);
  margin-bottom: var(--space-xs);
  line-height: 1.15;
}

.b40-card-excerpt {
  font-size: var(--text-sm);
  color: #1a1a18;
  line-height: 1.6;
  margin-bottom: var(--space-xs);
}

.b40-card-tagline {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: var(--space-base);
  font-style: italic;
}

.b40-gear-list {
  list-style: none;
  padding: 0;
  margin-bottom: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  flex: 1;
}

.b40-gear-item {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: var(--text-sm);
  color: #1a1a18;
}

.b40-gear-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

.b40-gear-qty {
  margin-left: auto;
  font-size: var(--text-xs);
  color: var(--text-muted);
  background: var(--color-canvas);
  border-radius: var(--radius-sm);
  padding: var(--space-xs) var(--space-xs);
}

.b40-card-footer {
  padding-top: var(--space-lg);
  display: flex;
  align-items: flex-end;
  gap: var(--space-xs);
  flex-wrap: wrap;
  margin-top: auto;
}

.b40-card-footer > .b40-btn-group {
  margin-left: auto;
}

.b40-price-label {
  font-size: var(--text-xs);
  color: var(--text-muted);
  display: block;
  white-space: nowrap;
}

.b40-price {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--color-deep-timber);
  line-height: 1.2;
}

.b40-price span {
  font-size: var(--text-sm);
  font-weight: 400;
  font-family: var(--font-body);
}

.b40-btn-group {
  display: flex;
  gap: var(--space-xs);
  flex-shrink: 0;
}

.b40-dots {
  display: flex;
  justify-content: center;
  gap: var(--space-xs);
  padding-top: var(--space-lg);
}

.b40-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(44,62,45,0.2);
  cursor: pointer;
  transition: background var(--transition-fast), width var(--transition-fast);
  border: none;
  padding: 0;
}

.b40-dot.active {
  background: var(--color-trail-green);
  width: 20px;
  border-radius: var(--radius-sm);
}

/* STATS SECTION */
.hp-stats {
  background: var(--color-deep-timber);
  padding: var(--space-3xl) var(--space-5xl);
}

.hp-stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-2xl);
  text-align: center;
}

.hp-stat-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--color-dry-grass);
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.hp-stat-label {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.55);
  line-height: 1.4;
}

/* CTA SECTION */
.hp-cta-wrap {
  background: var(--color-canvas);
  padding: var(--space-8xl) var(--space-5xl);
}

.hp-cta-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8xl);
  align-items: center;
}

.hp-cta-eyebrow {
  color: var(--color-campfire);
  margin-bottom: var(--space-base);
}

.hp-cta-heading {
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 900;
  color: var(--color-deep-timber);
  line-height: 1.05;
  margin-bottom: var(--space-lg);
}

.hp-cta-heading em {
  color: var(--color-trail-green);
}

.hp-cta-body {
  font-size: var(--text-base);
  color: #555;
  line-height: 1.7;
  margin-bottom: var(--space-2xl);
  max-width: 440px;
}

.hp-cta-btns {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.hp-cta-image {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  position: relative;
  aspect-ratio: 3/4;
}

.hp-cta-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hp-cta-image-badge {
  position: absolute;
  bottom: var(--space-lg);
  left: var(--space-lg);
  background: rgba(44, 62, 45, 0.9);
  border-radius: var(--radius-xl);
  padding: var(--space-base) var(--space-base);
  backdrop-filter: blur(8px);
  line-height: 1.0;
}

.hp-cta-image-badge strong {
  display: block;
  font-size: var(--text-sm);
  font-weight: 500;
  color: #fff;
  margin-bottom: var(--space-xs);
}

.hp-cta-image-badge span {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.6);
}

/* ──────────────────────────────────────────────────────────────────────────
   CAMPING KITS PAGE — CAMPING-KITS.HTML
   ────────────────────────────────────────────────────────────────────────── */

.b40-hero {
  background: var(--color-deep-timber);
  padding: var(--space-8xl) var(--space-5xl);
  position: relative;
  overflow: hidden;
}

.b40-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 80% 20%, rgba(74,124,89,0.35) 0%, transparent 55%),
    radial-gradient(circle at 10% 80%, rgba(181,99,26,0.2) 0%, transparent 45%);
  pointer-events: none;
}

.b40-hero-inner {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
}

.b40-hero-eyebrow {
  color: var(--color-dry-grass);
  margin-bottom: var(--space-lg);
}

.b40-hero h1 {
  color: #fff;
  line-height: 1.05;
  margin-bottom: var(--space-lg);
  max-width: 640px;
}

.b40-hero h1 em {
  color: var(--color-dry-grass);
}

.b40-hero-sub {
  font-size: var(--text-lg);
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  line-height: 1.65;
  max-width: 500px;
  margin-bottom: var(--space-4xl);
}

.b40-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  list-style: none;
}

.b40-hero-tags li {
  border: 1px solid rgba(200,170,110,0.4);
  border-radius: var(--radius-full);
  padding: var(--space-xs) var(--space-base);
  font-size: var(--text-sm);
  color: var(--color-dry-grass);
}

/* TRUST STRIP */
.b40-trust {
  background: var(--color-deep-timber);
  padding: var(--space-xl) var(--space-5xl);
  display: flex;
  justify-content: center;
  gap: var(--space-8xl);
  flex-wrap: wrap;
}

.b40-trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: rgba(255,255,255,0.8);
  font-size: var(--text-sm);
}

.b40-trust-icon {
  width: 18px;
  height: 18px;
  stroke: var(--color-dry-grass);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

/* BUNDLES SECTION */
.b40-bundles-wrap {
  background: var(--color-canvas);
  padding: var(--space-8xl) var(--space-5xl);
}

.b40-section-label {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: var(--letter-wide);
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--space-8xl);
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.b40-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
  max-width: 1100px;
  margin: 0 auto;
}

.b40-card {
  opacity: 0;
  transform: translateY(20px);
  animation: b40FadeUp 0.5s ease forwards;
}

.b40-card:nth-child(1) { animation-delay: 0.05s; }
.b40-card:nth-child(2) { animation-delay: 0.12s; }
.b40-card:nth-child(3) { animation-delay: 0.19s; }

@keyframes b40FadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* DATE SELECTOR */
.b40-date-section {
  background: var(--color-canvas);
  padding: var(--space-5xl) var(--space-5xl) 0;
}

.b40-date-widget {
  max-width: 1100px;
  margin: 0 auto var(--space-5xl);
  background: #fff;
  border-radius: var(--radius-2xl);
  border: 1px solid rgba(44,62,45,0.14);
  box-shadow: var(--shadow-sm);
  overflow: visible;
  position: relative;
}

.b40-date-widget-header {
  display: flex;
  align-items: center;
  gap: var(--space-base);
  padding: var(--space-base) var(--space-xl);
  border-bottom: 1px solid rgba(44,62,45,0.10);
}

.b40-date-widget-icon {
  width: 40px;
  height: 40px;
  background: var(--color-deep-timber);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.b40-date-widget-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-dry-grass);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.b40-date-widget-title {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-deep-timber);
  margin-bottom: var(--space-xs);
}

.b40-date-widget-sub {
  font-size: var(--text-sm);
  color: var(--color-trail-green);
}

.b40-date-widget-note {
  margin-left: auto;
  font-size: var(--text-sm);
  color: var(--text-muted);
  font-style: italic;
}

.b40-date-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.b40-date-field {
  padding: var(--space-base) var(--space-xl);
  cursor: pointer;
  position: relative;
  border-right: 1px solid rgba(44,62,45,0.10);
  transition: background var(--transition-fast);
}

.b40-date-field:last-child { border-right: none; }
.b40-date-field:hover { background: #f9f7f2; }
.b40-date-field.active { background: #f0f7f2; }

.b40-date-field-label {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: var(--letter-wide);
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--space-xs);
}

.b40-date-field-value {
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--color-deep-timber);
}

.b40-date-field-value.placeholder {
  color: #aaa9a3;
  font-weight: 400;
}

.b40-date-widget-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-sm) var(--space-xl);
  border-top: 1px solid rgba(44,62,45,0.10);
  font-size: var(--text-xs);
}

.b40-date-widget-footer-info {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  color: var(--text-muted);
}

.b40-date-widget-footer-info svg {
  width: 14px;
  height: 14px;
  stroke: var(--text-muted);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  flex-shrink: 0;
}

.b40-date-widget-footer-link {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: var(--letter-normal);
  text-transform: uppercase;
  color: var(--color-trail-green);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.b40-date-widget-footer-link:hover { color: var(--color-deep-timber); }

/* CALENDAR POPOUT */
.b40-cal-popout {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 100;
  background: #fff;
  border-radius: var(--radius-2xl);
  border: 1px solid rgba(44,62,45,0.14);
  box-shadow: 0 12px 40px rgba(44,62,45,0.15);
  padding: var(--space-xl);
  max-width: 360px;
  width: 100%;
  overflow-x: hidden;
  display: none;
}

.b40-cal-popout.open { display: block; }
.b40-cal-popout.align-right { left: auto; right: 0; }

.b40-cal-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-base);
}

.b40-cal-nav-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-xs) var(--space-sm);
  font-size: 18px;
  color: var(--color-trail-green);
  border-radius: var(--radius-md);
  transition: background var(--transition-fast);
  line-height: 1;
}

.b40-cal-nav-btn:hover { background: #e8f0eb; }

.b40-cal-month-label {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-deep-timber);
}

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

.b40-cal-dow {
  text-align: center;
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--text-muted);
  padding: var(--space-xs) 0 var(--space-xs);
  letter-spacing: var(--letter-tight);
}

.b40-cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: var(--text-sm);
  font-weight: 500;
  cursor: pointer;
  transition: background var(--transition-fast), color var(--transition-fast);
  color: var(--color-deep-timber);
}

.b40-cal-day.empty { cursor: default; }
.b40-cal-day.past { color: #c5c2bb; cursor: default; pointer-events: none; }
.b40-cal-day.loading { color: #bbb; }
.b40-cal-day.avail { background: #d4edda; color: #1a6b30; }
.b40-cal-day.avail:hover { background: #b6dfc2; }
.b40-cal-day.booked { background: #fde8e8; color: #c0392b; cursor: default; pointer-events: none; }
.b40-cal-day.selected { background: var(--color-trail-green) !important; color: #fff !important; font-weight: 700; }
.b40-cal-day.in-range { background: #e6f4eb; color: var(--color-deep-timber); border-radius: 0; }
.b40-cal-day.range-start { border-radius: 50% 0 0 50%; }
.b40-cal-day.range-end { border-radius: 0 50% 50% 0; }

.b40-cal-legend {
  display: flex;
  gap: var(--space-base);
  justify-content: center;
  margin-top: var(--space-base);
  padding-top: var(--space-base);
  border-top: 1px solid rgba(44,62,45,0.08);
  font-size: var(--text-xs);
  color: var(--text-muted);
}

.b40-cal-legend span {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.b40-cal-legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* AVAILABILITY PILL */
.b40-avail-pill {
  font-size: var(--text-xs);
  font-weight: 500;
  border-radius: var(--radius-full);
  padding: var(--space-xs) var(--space-sm);
  margin-bottom: var(--space-base);
}

.b40-avail-pill.avail {
  background: #d4edda;
  color: #1a6b30;
}

.b40-avail-pill.unavail {
  background: #fde8e8;
  color: #c0392b;
}

/* ──────────────────────────────────────────────────────────────────────────
   UPSELL PAGE — UPSELL.HTML
   ────────────────────────────────────────────────────────────────────────── */

.b40-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: var(--space-5xl) var(--space-base) var(--space-8xl);
}

.b40-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--space-2xl);
  margin-top: var(--space-2xl);
}

.b40-hero {
  border-radius: var(--radius-3xl);
  color: #fff;
  padding: var(--space-8xl) var(--space-5xl);
}

.b40-hero::before {
  background-image:
    radial-gradient(circle at 20% 20%, rgba(200,169,110,0.15) 0%, transparent 40%),
    radial-gradient(circle at 85% 70%, rgba(255,255,255,0.12) 0%, transparent 35%);
}

.b40-hero h1 {
  color: #fff;
  font-size: clamp(38px, 6vw, 58px);
  line-height: 1.02;
  margin-bottom: var(--space-lg);
  max-width: 700px;
}

.b40-hero p {
  margin-bottom: 0;
  max-width: 620px;
  font-size: var(--text-xl);
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255,255,255,0.85);
}

.b40-kit-summary {
  display: grid;
  gap: var(--space-base);
}

.b40-kit-pill {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: rgba(74,124,89,0.08);
  color: var(--color-deep-timber);
  padding: var(--space-sm) var(--space-base);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: var(--letter-wider);
  width: fit-content;
}

.b40-kit-title {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  color: var(--color-deep-timber);
}

.b40-kit-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-base);
  color: var(--text-muted);
  font-size: var(--text-sm);
}

.b40-kit-meta span {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
}

.b40-kit-price {
  font-family: var(--font-display);
  font-size: 34px;
  color: var(--color-deep-timber);
}

.b40-kit-note {
  font-size: var(--text-sm);
  color: var(--text-muted);
}

.b40-addons {
  display: grid;
  gap: var(--space-xl);
}

.b40-addon {
  padding: var(--space-base) var(--space-xl);
  border-radius: var(--radius-2xl);
  border: 1px solid rgba(44,62,45,0.12);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-base);
  align-items: center;
  transition: border-color var(--transition-fast), background var(--transition-fast);
}

.b40-addon:hover {
  border-color: var(--color-trail-green);
  background: #f8f5ef;
}

.b40-addon-left { display: grid; gap: var(--space-xs); }

.b40-addon-title {
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-deep-timber);
}

.b40-addon-copy {
  color: var(--text-muted);
  font-size: var(--text-sm);
  line-height: 1.6;
}

.b40-addon-footer {
  display: flex;
  gap: var(--space-base);
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  margin-top: var(--space-sm);
}

.b40-addon-price {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: var(--color-deep-timber);
  min-width: 82px;
  text-align: right;
}

.b40-addon-actions {
  display: flex;
  gap: var(--space-xs);
  align-items: center;
}

.b40-addon-actions input[type="number"] {
  width: 62px;
  padding: var(--space-sm) var(--space-xs);
  border: 1px solid rgba(44,62,45,0.18);
  border-radius: var(--radius-lg);
  font-size: var(--text-sm);
  color: #1a1a18;
  text-align: center;
}

.b40-addon-actions label {
  font-size: var(--text-xs);
  color: var(--text-muted);
}

.b40-sidebar { display: grid; gap: var(--space-lg); }

.b40-summary-card { border-radius: var(--radius-3xl); box-shadow: var(--shadow-md); }

.b40-summary-heading {
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--space-lg);
  color: var(--color-deep-timber);
}

.b40-summary-line {
  display: flex;
  justify-content: space-between;
  gap: var(--space-sm);
  color: var(--text-muted);
  margin-bottom: var(--space-base);
  font-size: var(--text-sm);
}

.b40-summary-line strong {
  color: #1a1a18;
  font-weight: 600;
}

.b40-summary-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: var(--space-base);
  border-top: 1px solid rgba(44,62,45,0.12);
  margin-top: var(--space-base);
}

.b40-summary-total span {
  font-size: var(--text-3xl);
  font-family: var(--font-display);
  color: var(--color-deep-timber);
}

.b40-continue-btn {
  width: 100%;
  padding: var(--space-base) var(--space-xl);
  border-radius: var(--radius-full);
  background: var(--color-trail-green);
  color: #fff;
  border: none;
  font-size: var(--text-base);
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition: background var(--transition-fast), transform var(--transition-fast);
}

.b40-continue-btn:hover { background: var(--color-deep-timber); }

.b40-disclaimer {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.7;
}

/* ──────────────────────────────────────────────────────────────────────────
   CHECKOUT & CONFIRMATION PAGES
   ────────────────────────────────────────────────────────────────────────── */

/* ── CHECKOUT PAGE HEADER STRIP ── */
.b40-checkout-header {
  background: var(--color-deep-timber);
  padding: 40px 48px 36px;
  text-align: center;
}

.b40-checkout-header-inner {
  max-width: 960px;
  margin: 0 auto;
}

.b40-checkout-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-dry-grass);
  margin-bottom: 10px;
}

.b40-checkout-header h1 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.15;
}

.b40-checkout-header-dates {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  font-weight: 300;
}

/* ── CHECKOUT LAYOUT ── */
.b40-checkout-wrap {
  max-width: 960px;
  margin: 0 auto;
  padding: var(--space-5xl) var(--space-base) var(--space-8xl);
}

.b40-checkout-heading {
  font-family: var(--font-display);
  font-size: var(--text-6xl);
  font-weight: 700;
  color: var(--color-deep-timber);
  margin-bottom: var(--space-2xl);
}

.b40-checkout-cols {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--space-2xl);
  align-items: start;
}

.b40-kit-name {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--color-deep-timber);
  margin-bottom: var(--space-xs);
}

.b40-kit-tier {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: var(--letter-normal);
  text-transform: uppercase;
  color: var(--color-dry-grass);
  background: var(--color-deep-timber);
  border-radius: var(--radius-full);
  padding: var(--space-xs) var(--space-sm);
  margin-bottom: var(--space-xl);
}

.b40-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: var(--space-sm) 0;
  border-bottom: 1px solid rgba(44,62,45,0.07);
  font-size: var(--text-sm);
}

.b40-summary-row:last-of-type { border-bottom: none; }

.b40-summary-label { color: var(--text-muted); }
.b40-summary-value { font-weight: 500; color: #1a1a18; }

.b40-summary-total {
  margin-top: var(--space-base);
  padding-top: var(--space-base);
  border-top: 2px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.b40-summary-total-label {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-deep-timber);
}

.b40-summary-total-value {
  font-family: var(--font-display);
  font-size: var(--text-5xl);
  font-weight: 700;
  color: var(--color-deep-timber);
}

.b40-deposit-note {
  margin-top: var(--space-base);
  font-size: var(--text-xs);
  color: var(--text-muted);
  line-height: 1.5;
}

.b40-fulfillment-section {
  background: #f4f9f6;
  border: 1px solid rgba(74,124,89,0.2);
  border-radius: var(--radius-lg);
  padding: var(--space-base);
  margin-bottom: var(--space-lg);
}

.b40-fulfillment-section legend {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: var(--letter-normal);
  text-transform: uppercase;
  color: var(--color-trail-green);
  padding: 0 var(--space-xs);
}

.b40-location-note {
  font-size: var(--text-xs);
  color: var(--text-muted);
  margin-top: var(--space-xs);
  line-height: 1.5;
}

.b40-location-note a { color: var(--color-trail-green); }

.b40-submit-btn {
  width: 100%;
  padding: var(--space-sm) var(--space-xl);
  background: var(--color-trail-green);
  color: #fff;
  border: none;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition-fast), transform var(--transition-fast);
  margin-top: var(--space-xs);
}

.b40-submit-btn:hover { background: var(--color-deep-timber); }
.b40-submit-btn:active { transform: scale(0.98); }
.b40-submit-btn:disabled {
  background: #c5c2bb;
  cursor: not-allowed;
  transform: none;
}

.b40-payment-note {
  margin-top: var(--space-base);
  font-size: var(--text-xs);
  color: var(--text-muted);
  text-align: center;
  line-height: 1.5;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
}

.b40-payment-note svg {
  width: 13px;
  height: 13px;
  stroke: var(--text-muted);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  flex-shrink: 0;
}

/* ── CARD HEADER & BODY (full definition) ── */
.b40-card-header {
  padding: var(--space-xl);
  border-bottom: 1px solid var(--border-color);
  background: #fafaf8;
}

.b40-card-header h2 {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--color-deep-timber);
  margin: 0;
}

.b40-card-body {
  padding: var(--space-xl);
}

/* ── FULFILLMENT TYPE CARDS ── */
.b40-ftype-cards {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
}

.b40-ftype-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: #fff;
  border: 1.5px solid var(--border-color);
  border-radius: 10px;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}

.b40-ftype-card:hover {
  border-color: var(--color-trail-green);
  background: #f4f9f6;
}

.b40-ftype-card.selected {
  border-color: var(--color-trail-green);
  background: #eef6f1;
  box-shadow: 0 0 0 3px rgba(74,124,89,0.1);
}

.b40-ftype-card input[type="radio"] {
  width: 0;
  height: 0;
  opacity: 0;
  position: absolute;
}

.b40-ftype-icon {
  font-size: 22px;
  flex-shrink: 0;
  line-height: 1;
}

.b40-ftype-label {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.b40-ftype-label strong {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-deep-timber);
}

.b40-ftype-label span {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ── DISCOUNT INPUT ── */
.b40-discount-group {
  display: flex;
  gap: 8px;
  align-items: flex-end;
  margin-bottom: var(--space-lg);
}

.b40-discount-group .form-group {
  flex: 1;
  margin-bottom: 0;
}

.b40-discount-msg {
  font-size: 12px;
  margin-top: 6px;
  line-height: 1.4;
}

.b40-discount-msg.success { color: var(--color-trail-green); }
.b40-discount-msg.error   { color: #c0392b; }

/* ── BACK MODAL ── */
.b40-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(20, 30, 20, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
}

.b40-modal-overlay.visible {
  display: flex;
}

.b40-modal-box {
  background: #fff;
  border-radius: 16px;
  padding: 36px 32px;
  max-width: 400px;
  width: calc(100% - 48px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.25);
}

.b40-modal-box h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--color-deep-timber);
  margin-bottom: 10px;
}

.b40-modal-box p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
}

.b40-modal-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

/* CONFIRMATION PAGE */
.b40-page {
  max-width: 600px;
  margin: 0 auto;
  padding: var(--space-8xl) var(--space-base) var(--space-8xl);
  text-align: center;
}

.b40-check-icon {
  width: 72px;
  height: 72px;
  background: #d4edda;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-2xl);
}

.b40-check-icon svg {
  width: 36px;
  height: 36px;
  stroke: #1a6b30;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.b40-conf-heading {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 900;
  color: var(--color-deep-timber);
  margin-bottom: var(--space-base);
}

.b40-conf-sub {
  font-size: var(--text-base);
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: var(--space-5xl);
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
}

.b40-conf-sub strong { color: #1a1a18; }

.b40-conf-card {
  background: #fff;
  border-radius: var(--radius-2xl);
  border: var(--border-light);
  box-shadow: var(--shadow-md);
  padding: var(--space-2xl);
  text-align: left;
  margin-bottom: var(--space-xl);
}

.b40-conf-card-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-deep-timber);
  margin-bottom: var(--space-lg);
}

.b40-res-id-block { margin-bottom: var(--space-xl); }

.b40-res-id-label {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: var(--letter-normal);
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--space-xs);
}

.b40-res-id {
  display: inline-block;
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--color-deep-timber);
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: var(--space-sm) var(--space-xl);
}

.b40-next-steps {
  background: var(--color-deep-timber);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  text-align: left;
  margin-bottom: var(--space-2xl);
}

.b40-next-steps h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-dry-grass);
  margin-bottom: var(--space-base);
}

.b40-next-steps ol {
  margin: 0;
  padding-left: var(--space-lg);
  color: rgba(255,255,255,0.85);
  font-size: var(--text-sm);
  line-height: 1.8;
}

.b40-inbox-note {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-bottom: var(--space-2xl);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
}

/* ──────────────────────────────────────────────────────────────────────────
   MY BOOKINGS PAGE — MY-BOOKINGS.HTML
   ────────────────────────────────────────────────────────────────────────── */

.b40-container {
  max-width: 960px;
  margin: 0 auto;
  padding: var(--space-5xl) var(--space-base) var(--space-8xl);
}

.b40-auth-wrap {
  background: #fff;
  border-radius: var(--radius-2xl);
  border: var(--border-light);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.b40-auth-tabs {
  display: flex;
  border-bottom: var(--border-light);
}

.b40-auth-tab {
  flex: 1;
  padding: var(--space-base) var(--space-xl);
  text-align: center;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-muted);
  background: #fafaf8;
  cursor: pointer;
  border: none;
  transition: background var(--transition-fast), color var(--transition-fast);
}

.b40-auth-tab.active {
  background: #fff;
  color: var(--color-trail-green);
  border-bottom: 2px solid var(--color-trail-green);
  margin-bottom: -1px;
}

.b40-auth-tab:hover:not(.active) { background: #f5f3f0; }

.b40-auth-body {
  padding: var(--space-5xl);
  display: none;
}

.b40-auth-body.active { display: block; }

.b40-auth-heading {
  font-family: var(--font-display);
  font-size: var(--text-6xl);
  font-weight: 700;
  color: var(--color-deep-timber);
  margin-bottom: var(--space-2xl);
  text-align: center;
}

.b40-auth-note {
  text-align: center;
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-top: var(--space-xl);
}

.b40-auth-note a {
  color: var(--color-trail-green);
  cursor: pointer;
  text-decoration: none;
}

.b40-auth-note a:hover { text-decoration: underline; }

.b40-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-5xl);
}

.b40-welcome {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--color-deep-timber);
}

/* ──────────────────────────────────────────────────────────────────────────
   SITE NAV — b40-nav (full component from nav-header.html)
   ────────────────────────────────────────────────────────────────────────── */

/* Base: shared by both full nav and funnel nav */
.b40-nav {
  background: rgba(44, 62, 45, 0.97);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-family: var(--font-body);
}

/* Full nav (public pages): fixed + frosted */
.b40-nav:has(.b40-nav-inner) {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background 0.2s;
}

/* Funnel nav (checkout/upsell/confirmation): static simple bar */
.b40-nav-brand {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  padding: 0 var(--space-2xl);
  height: 56px;
  display: inline-flex;
  align-items: center;
}

.b40-nav-back {
  font-size: var(--text-sm);
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  padding: 0 var(--space-2xl);
  height: 56px;
  display: inline-flex;
  align-items: center;
  transition: color 0.15s;
}

.b40-nav-back:hover { color: #fff; }

/* When used as funnel bar, make it a flex row */
.b40-nav:not(:has(.b40-nav-inner)) {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
}

.b40-nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.b40-nav-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
}

.b40-nav-logo img {
  height: 36px;
  width: auto;
  display: block;
}

.b40-nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.b40-nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.15s;
  white-space: nowrap;
}

.b40-nav-links a:hover,
.b40-nav-links a.active {
  color: #fff;
}

.b40-nav-cta {
  flex-shrink: 0;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  background: var(--color-trail-green);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 10px 22px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.15s;
  white-space: nowrap;
}

.b40-nav-cta:hover {
  background: var(--color-deep-timber);
  color: #fff;
}

.b40-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}

.b40-nav-toggle span {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
  transform-origin: center;
}

.b40-nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.b40-nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.b40-nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.b40-nav-spacer {
  height: 64px;
}

/* ──────────────────────────────────────────────────────────────────────────
   DELIVERY OPTIONS SECTION
   ────────────────────────────────────────────────────────────────────────── */

.b40-delivery {
  background: var(--color-deep-timber);
  padding: 80px 48px;
}

.b40-delivery-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.b40-delivery-header {
  text-align: center;
  margin-bottom: 56px;
}

.b40-delivery-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-trail-green);
  margin-bottom: 12px;
}

.b40-delivery-heading {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: #ffff;
  margin-bottom: 14px;
  line-height: 1.15;
}

.b40-delivery-sub {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  font-weight: 300;
}

.b40-delivery-cards {
  background: var(--color-deep-timber);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 40px;
}

.b40-delivery-card {
  background: var(--color-canvas);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s, box-shadow 0.25s;
}

.b40-delivery-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.b40-delivery-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
  width: fit-content;
}

.b40-delivery-badge.free {
  background: rgba(74,124,89,0.12);
  color: var(--color-trail-green);
}

.b40-delivery-badge.paid {
  background: rgba(181,99,26,0.12);
  color: var(--color-campfire);
}

.b40-delivery-badge.vip {
  background: rgba(44,62,45,0.1);
  color: var(--color-deep-timber);
}

.b40-delivery-card-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--color-deep-timber);
  margin-bottom: 8px;
  text-align: center;
}

.b40-delivery-price {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-trail-green);
  margin-bottom: 16px;
  line-height: 1;
}

.b40-delivery-price span {
  font-size: 15px;
  font-weight: 400;
  color: var(--text-muted);
}

.b40-delivery-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
  flex-grow: 1;
}

.b40-delivery-locations {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--border-color);
  padding-top: 16px;
  display: grid;
  gap: 6px;
}

.b40-delivery-locations li {
  font-size: 13px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.b40-delivery-locations li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-trail-green);
  flex-shrink: 0;
}

.b40-delivery-cta {
  text-align: center;
}

.b40-delivery-cta a {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-trail-green);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}

.b40-delivery-cta a:hover {
  gap: 10px;
}

/* ──────────────────────────────────────────────────────────────────────────
   FOOTER
   ────────────────────────────────────────────────────────────────────────── */

.b40-footer {
  background: var(--color-deep-timber);
  color: rgba(255,255,255,0.75);
  padding: 56px 48px 32px;
  font-family: var(--font-body);
}

.b40-footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.b40-footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 32px;
}

.b40-footer-brand-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
}

.b40-footer-tagline {
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.b40-footer-social {
  display: flex;
  gap: 14px;
}

.b40-footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  transition: background 0.15s, color 0.15s;
  text-decoration: none;
}

.b40-footer-social a:hover {
  background: var(--color-trail-green);
  color: #fff;
}

.b40-footer-social svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.b40-footer-col-heading {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}

.b40-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.b40-footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.15s;
}

.b40-footer-links a:hover {
  color: #fff;
}

.b40-footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 10px;
  text-decoration: none;
  transition: color 0.15s;
}

.b40-footer-contact-item:hover {
  color: #fff;
}

.b40-footer-contact-item svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  opacity: 0.6;
}

.b40-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.b40-footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}

.b40-footer-legal a {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color 0.15s;
}

.b40-footer-legal a:hover {
  color: rgba(255,255,255,0.7);
}

/* ──────────────────────────────────────────────────────────────────────────
   HOW IT WORKS PAGE — hiw-*
   ────────────────────────────────────────────────────────────────────────── */

.hiw-hero {
  background-color: var(--color-canvas);
  padding: 80px 48px;
  text-align: center;
}

.hiw-hero-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-trail-green);
  margin-bottom: 16px;
}

.hiw-hero h1 {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 900;
  margin-bottom: 16px;
  color: var(--color-deep-timber);
}

.hiw-hero p {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  font-weight: 300;
}

.hiw-process {
  background-color: var(--color-deep-timber);
  color: white;
  padding: 80px 48px;
}

.hiw-process-container {
  max-width: 1100px;
  margin: 0 auto;
}

.hiw-process-header {
  text-align: center;
  margin-bottom: 60px;
}

.hiw-process-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-dry-grass);
  margin-bottom: 12px;
}

.hiw-process h2 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  margin-bottom: 16px;
}

.hiw-process-subtitle {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto;
}

.hiw-process-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.hiw-process-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 40px;
  transition: all 0.3s ease;
}

.hiw-process-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.hiw-process-card-number {
  width: 48px;
  height: 48px;
  background-color: var(--color-trail-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}

.hiw-process-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
}

.hiw-process-card p {
  font-size: 15px;
  line-height: 1.7;
  opacity: 0.95;
}

.hiw-locations {
  background-color: white;
  padding: 80px 48px;
}

.hiw-locations-container {
  max-width: 1100px;
  margin: 0 auto;
}

.hiw-locations-header {
  text-align: center;
  margin-bottom: 60px;
}

.hiw-locations-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-trail-green);
  margin-bottom: 12px;
}

.hiw-locations h2 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--color-deep-timber);
}

.hiw-locations-subtitle {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.hiw-locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.hiw-location-card {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.hiw-location-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-trail-green);
}

.hiw-location-badge {
  display: inline-block;
  background-color: rgba(74, 124, 89, 0.1);
  color: var(--color-trail-green);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
  width: fit-content;
}

.hiw-location-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-deep-timber);
  margin-bottom: 8px;
}

.hiw-location-city {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 12px;
  font-weight: 500;
}

.hiw-location-distance {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-color);
}

.hiw-location-highlights {
  font-size: 14px;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.hiw-location-footer {
  border-top: 1px solid var(--border-color);
  padding-top: 16px;
  font-size: 16px;
  font-weight: 700;
  color: var(--color-trail-green);
}

.hiw-locations-filter {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.hiw-locations-filter-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  margin-right: 8px;
}

.hiw-filter-btn {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-primary);
  cursor: pointer;
  transition: all 0.3s ease;
}

.hiw-filter-btn:hover {
  border-color: var(--color-trail-green);
  color: var(--color-trail-green);
}

.hiw-filter-btn.active {
  background-color: var(--color-trail-green);
  color: white;
  border-color: var(--color-trail-green);
}

.hiw-faq {
  background-color: var(--color-canvas);
  padding: 80px 48px;
}

.hiw-faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.hiw-faq-header {
  text-align: center;
  margin-bottom: 60px;
}

.hiw-faq-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-trail-green);
  margin-bottom: 12px;
}

.hiw-faq h2 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  color: var(--color-deep-timber);
  margin-bottom: 16px;
}

.hiw-faq-subtitle {
  font-size: 16px;
  color: var(--text-muted);
}

.hiw-accordion-group {
  margin-bottom: 40px;
}

.hiw-accordion-category {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-trail-green);
  margin-bottom: 16px;
  margin-top: 32px;
}

.hiw-accordion-item {
  border-bottom: 1px solid var(--border-color);
  padding: 20px 0;
}

.hiw-accordion-item:last-child {
  border-bottom: none;
}

.hiw-accordion-button {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  padding: 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--color-deep-timber);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.3s ease;
  font-family: var(--font-body);
}

.hiw-accordion-button:hover {
  color: var(--color-trail-green);
}

.hiw-accordion-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--color-trail-green);
  transition: transform 0.3s ease;
}

.hiw-accordion-button[aria-expanded="true"] .hiw-accordion-icon {
  transform: rotate(180deg);
}

.hiw-accordion-content {
  display: none;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.hiw-accordion-button[aria-expanded="true"] ~ .hiw-accordion-content {
  display: block;
  max-height: 500px;
  padding: 20px 0;
}

.hiw-accordion-answer {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-muted);
}

.hiw-cta {
  background-color: var(--color-deep-timber);
  color: white;
  padding: 80px 48px;
  text-align: center;
}

.hiw-cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.hiw-cta h2 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  margin-bottom: 24px;
}

.hiw-cta p {
  font-size: 18px;
  margin-bottom: 40px;
  opacity: 0.95;
}

.hiw-cta-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.hiw-cta-btn-primary {
  background-color: var(--color-trail-green);
  color: white;
  padding: 14px 40px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  display: inline-block;
  font-family: var(--font-body);
}

.hiw-cta-btn-primary:hover {
  background-color: #3a6347;
  transform: translateY(-2px);
}

.hiw-cta-btn-ghost {
  background: rgba(255,255,255,0.15);
  color: white;
  border: 1px solid rgba(255,255,255,0.35);
  padding: 14px 40px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  display: inline-block;
  font-family: var(--font-body);
}

.hiw-cta-btn-ghost:hover {
  background: rgba(255,255,255,0.25);
  transform: translateY(-2px);
}

/* ──────────────────────────────────────────────────────────────────────────
   RESPONSIVE DESIGN
   ────────────────────────────────────────────────────────────────────────── */

@media (max-width: 960px) {
  .b40-grid { grid-template-columns: 1fr; }
  .b40-page { padding: var(--space-2xl) var(--space-base) var(--space-5xl); }
  .b40-hero { padding: var(--space-5xl) var(--space-2xl); }
  .b40-checkout-cols { grid-template-columns: 1fr; }
  .b40-checkout-wrap { padding: var(--space-2xl) var(--space-base) var(--space-5xl); }
}

@media (max-width: 768px) {
  :root {
    --space-5xl: 24px;
    --space-8xl: 40px;
  }

  .container { padding: 0 var(--space-2xl); }
  .section-pad { padding: var(--space-5xl) var(--space-2xl); }

  .hp-hero-content { padding: var(--space-5xl) var(--space-2xl); }
  .hp-hero { min-height: 80vh; }
  .hp-hiw { padding: var(--space-5xl) var(--space-2xl); }
  .hp-hiw-steps { grid-template-columns: 1fr; gap: var(--space-5xl); }
  .hp-hiw-arrow { display: none; }
  .b40-carousel-section { padding: var(--space-5xl) 0; }
  .b40-carousel-header { padding: 0 var(--space-2xl); }
  .b40-track { padding: 0 var(--space-2xl) var(--space-sm); }
  .b40-card { flex: 0 0 88vw; min-height: 600px; }
  .hp-cta-wrap { padding: var(--space-5xl) var(--space-2xl); }
  .hp-cta-inner { grid-template-columns: 1fr; gap: var(--space-5xl); }
  .hp-cta-image { aspect-ratio: 16/9; }
  .hp-stats { padding: var(--space-2xl) var(--space-2xl); }
  .hp-stats-inner { grid-template-columns: repeat(2, 1fr); }

  .b40-bundles-wrap { padding: var(--space-5xl) var(--space-2xl); }
  .b40-grid { grid-template-columns: 1fr; }
  .b40-trust { padding: var(--space-xl); gap: var(--space-lg); }
  .b40-date-section { padding: var(--space-5xl) var(--space-2xl) 0; }
  .b40-date-widget-note { display: none; }
  .b40-cal-popout { width: calc(100vw - var(--space-2xl)); }

  .nav { padding: 0 var(--space-base); }
  .b40-auth-body { padding: var(--space-2xl); }
  .b40-card-header, .b40-card-body { padding: var(--space-lg); }
  .b40-addon { grid-template-columns: 1fr; }
  .b40-addon-actions { justify-content: space-between; width: 100%; }

  /* Nav */
  .b40-nav-inner { padding: 0 24px; }
  .b40-nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--color-deep-timber);
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 8px 0 16px;
  }
  .b40-nav-links.open { display: flex; }
  .b40-nav-links li { width: 100%; }
  .b40-nav-links a { display: block; padding: 12px 24px; font-size: 15px; color: rgba(255,255,255,0.85); }
  .b40-nav-links a:hover { background: rgba(255,255,255,0.06); color: #fff; }
  .b40-nav-cta { display: none; }
  .b40-nav-toggle { display: flex; }

  /* Delivery */
  .b40-delivery { padding: 60px 24px; }
  .b40-delivery-cards { grid-template-columns: 1fr; gap: 20px; }

  /* Footer */
  .b40-footer { padding: 48px 24px 28px; }
  .b40-footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }

  /* HIW */
  .hiw-hero { padding: 60px 24px; }
  .hiw-process { padding: 60px 24px; }
  .hiw-process-grid { grid-template-columns: 1fr; gap: 24px; }
  .hiw-locations { padding: 60px 24px; }
  .hiw-locations-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .hiw-faq { padding: 60px 24px; }
  .hiw-cta { padding: 60px 24px; }
  .hiw-accordion-button { font-size: 15px; }
}

@media (max-width: 640px) {
  .hp-hero h1 { font-size: 40px; }
  .hp-cta-image { display: none; }
  .hp-stats-inner { grid-template-columns: repeat(2, 1fr); }
  .b40-hero { padding: var(--space-2xl); }
  .b40-grid { gap: var(--space-base); }

  /* Nav */
  .b40-nav-logo img { height: 30px; }

  /* Delivery */
  .b40-delivery { padding: 40px 24px; }
  .b40-delivery-header { margin-bottom: 36px; }

  /* Footer */
  .b40-footer { padding: 40px 24px 24px; }
  .b40-footer-top { grid-template-columns: 1fr; gap: 28px; }
  .b40-footer-bottom { flex-direction: column; align-items: flex-start; }

  /* HIW */
  .hiw-hero { padding: 40px 24px; }
  .hiw-hero h1 { font-size: 32px; }
  .hiw-hero p { font-size: 16px; }
  .hiw-process { padding: 40px 24px; }
  .hiw-process-header { margin-bottom: 40px; }
  .hiw-process h2 { font-size: 28px; }
  .hiw-process-card { padding: 24px; }
  .hiw-locations { padding: 40px 24px; }
  .hiw-locations-filter { justify-content: flex-start; gap: 8px; }
  .hiw-locations-filter-label { width: 100%; margin-bottom: 12px; margin-right: 0; }
  .hiw-filter-btn { padding: 6px 12px; font-size: 12px; }
  .hiw-locations-grid { grid-template-columns: 1fr; }
  .hiw-faq { padding: 40px 24px; }
  .hiw-faq h2 { font-size: 28px; }
  .hiw-accordion-button { font-size: 14px; }
  .hiw-cta { padding: 40px 24px; }
  .hiw-cta h2 { font-size: 28px; }
}

/* ──────────────────────────────────────────────────────────────────────────
   UPSELL PAGE — REBUILT
   ────────────────────────────────────────────────────────────────────────── */

/* Header strip */
.b40-upsell-header {
  background: var(--color-deep-timber);
  padding: 32px 48px 28px;
  text-align: center;
}

.b40-upsell-header-inner {
  max-width: 760px;
  margin: 0 auto;
}

.b40-upsell-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-dry-grass);
  margin-bottom: 8px;
}

.b40-upsell-dates {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  font-weight: 300;
}

/* Main content */
.b40-upsell-main {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 24px 120px;
}

/* Intro block */
.b40-upsell-intro {
  text-align: center;
  margin-bottom: 40px;
}

.b40-upsell-intro-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-trail-green);
  margin-bottom: 10px;
}

.b40-upsell-intro-heading {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 700;
  color: var(--color-deep-timber);
  margin-bottom: 12px;
  line-height: 1.2;
}

.b40-upsell-intro-sub {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto;
  font-weight: 300;
  line-height: 1.6;
}

/* Add-on cards */
.b40-upsell-addons {
  display: grid;
  gap: 12px;
}

.b40-upsell-addon {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.b40-upsell-addon:hover {
  border-color: var(--color-trail-green);
  box-shadow: var(--shadow-sm);
}

.b40-upsell-addon-info {
  flex: 1;
}

.b40-upsell-addon-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-deep-timber);
  margin-bottom: 4px;
}

.b40-upsell-addon-copy {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

.b40-upsell-addon-right {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 20px;
}

.b40-upsell-addon-price {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-trail-green);
  white-space: nowrap;
}

/* +/- stepper */
.b40-upsell-stepper {
  display: flex;
  align-items: stretch;
}

.b40-stepper-btn {
  width: 32px;
  height: 34px;
  border: 1px solid var(--border-color);
  background: #fff;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  color: var(--color-deep-timber);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, border-color 0.15s;
  font-family: var(--font-body);
}

.b40-stepper-btn:first-child {
  border-radius: 8px 0 0 8px;
  border-right: none;
}

.b40-stepper-btn:last-child {
  border-radius: 0 8px 8px 0;
  border-left: none;
}

.b40-stepper-btn:hover {
  background: var(--color-canvas);
  border-color: var(--color-trail-green);
}

.b40-upsell-stepper input[type="number"] {
  width: 44px;
  height: 34px;
  border: 1px solid var(--border-color);
  border-left: none;
  border-right: none;
  border-radius: 0;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-body);
  color: var(--color-deep-timber);
  background: #fff;
  -webkit-appearance: none;
  -moz-appearance: textfield;
  appearance: textfield;
  outline: none;
}

.b40-upsell-stepper input[type="number"]::-webkit-inner-spin-button,
.b40-upsell-stepper input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Sticky bottom bar */
.b40-upsell-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: #fff;
  border-top: 1px solid var(--border-color);
  box-shadow: 0 -4px 24px rgba(44,62,45,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
}

.b40-upsell-bar-totals {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}

.b40-upsell-bar-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.b40-upsell-bar-sep {
  font-size: 14px;
  color: var(--text-muted);
}

.b40-upsell-bar-total {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--color-deep-timber);
}

.b40-upsell-bar-totals strong {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-deep-timber);
}

.b40-upsell-bar-btn {
  background: var(--color-trail-green);
  color: #fff;
  border-radius: 999px;
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.15s, transform 0.15s;
  display: inline-block;
  font-family: var(--font-body);
}

.b40-upsell-bar-btn:hover {
  background: var(--color-deep-timber);
  transform: translateY(-1px);
}

/* ── UPSELL RESPONSIVE ── */
@media (max-width: 768px) {
  .b40-upsell-header { padding: 24px; }
  .b40-upsell-addon { flex-direction: column; align-items: flex-start; }
  .b40-upsell-addon-right { width: 100%; justify-content: space-between; }
  .b40-upsell-bar { flex-direction: column; gap: 10px; padding: 14px 24px; }
  .b40-upsell-bar-totals { justify-content: center; }
}

@media (max-width: 640px) {
  .b40-upsell-bar-btn { width: 100%; text-align: center; }
  .b40-upsell-main { padding: 32px 16px 160px; }
}

/* ──────────────────────────────────────────────────────────────────────────
   PRODUCT PAGE TEMPLATE
   ────────────────────────────────────────────────────────────────────────── */

.pd-hero {
  background: var(--color-deep-timber);
  padding: 64px 48px 40px;
  position: relative;
  overflow: hidden;
  font-family: 'DM Sans', sans-serif;
}
.pd-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 88% 12%, rgba(181,99,26,0.18) 0%, transparent 40%),
    radial-gradient(circle at 8% 80%, rgba(200,170,110,0.08) 0%, transparent 35%);
  pointer-events: none;
}
.pd-hero-inner {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: start;
}

.pd-breadcrumb {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
  margin: 0 0 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.pd-breadcrumb a { color: rgba(255,255,255,0.4); text-decoration: none; }
.pd-breadcrumb a:hover { color: #C8AA6E; }
.pd-breadcrumb span { opacity: 0.35; }
.pd-breadcrumb-cur { color: #C8AA6E !important; opacity: 1 !important; }

.pd-badge-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  flex-wrap: wrap;
}
.pd-kit-badge {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #2C3E2D;
  background: #C8AA6E;
  border-radius: 999px;
  padding: 5px 14px;
}
.pd-live-badge {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #4A7C59;
  background: rgba(74,124,89,0.15);
  border: 1px solid rgba(74,124,89,0.35);
  border-radius: 999px;
  padding: 4px 12px;
}

.pd-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 900;
  color: #fff;
  line-height: 1.05;
  margin: 0 0 16px;
}
.pd-hero h1 em { font-style: italic; color: #C8AA6E; }
.pd-hero-sub {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  max-width: 480px;
  margin: 0 0 28px;
}
.pd-audience {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  font-style: italic;
}
.pd-audience strong {
  color: #C8AA6E;
  font-style: normal;
  font-weight: 500;
}

.pd-booking-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 18px;
  padding: 32px;
  box-shadow: 0 18px 36px rgba(0,0,0,0.14);
}
.pd-price-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.pd-price-from {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}
.pd-price-num {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  font-weight: 700;
  color: #fff;
}
.pd-price-unit {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  margin: 0 0 24px;
}
.pd-card-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin: 0 0 20px;
}
.pd-card-detail {
  background: rgba(0,0,0,0);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 10px;
}
.pd-card-detail svg {
  width: 15px;
  height: 15px;
  stroke: #C8AA6E;
  fill: none;
  stroke-width: 1.5;
}

.pd-book-btn {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  background: #4A7C59;
  border-radius: 999px;
  padding: 16px 0;
  width: 100%;
  text-align: center;
  display: block;
  margin-top: 24px;
  text-decoration: none;
}
.pd-book-btn:hover { background: #3a6047; }
.pd-book-note {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  text-align: center;
  margin: 14px 0 0;
  font-style: italic;
}

.pd-gear {
  background: #F4F0E6;
  padding: 72px 48px;
  font-family: 'DM Sans', sans-serif;
}
.pd-gear-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.pd-gear-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.pd-gear-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #4A7C59;
  margin: 0 0 10px;
}
.pd-gear h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 700;
  color: #2C3E2D;
  line-height: 1.1;
  margin: 0;
}
.pd-gear h2 em { font-style: italic; color: #B5631A; }
.pd-gear-sleeping-note {
  font-size: 13px;
  font-style: italic;
  color: #6b6b60;
  background: rgba(44,62,45,0.05);
  border-left: 3px solid #C8AA6E;
  padding: 10px 16px;
  border-radius: 0 8px 8px 0;
  margin: 0;
  align-self: flex-end;
  max-width: 320px;
}

.pd-gear-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.pd-gear-category {
  background: #fff;
  border: 1px solid rgba(44,62,45,0.1);
  border-radius: 14px;
  padding: 24px 28px;
}
.pd-gear-cat-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(44,62,45,0.08);
}
.pd-gear-cat-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.pd-gear-cat-icon svg {
  width: 16px; height: 16px;
  stroke: #fff; fill: none;
  stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
}
.pd-gear-cat-title {
  font-size: 13px;
  font-weight: 600;
  color: #2C3E2D;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0;
}
.pd-gear-items { list-style: none; padding: 0; margin: 0; }
.pd-gear-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(44,62,45,0.05);
  font-size: 14px;
  color: #1a1a18;
}
.pd-gear-row:last-child { border-bottom: none; padding-bottom: 0; }
.pd-gear-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}
.pd-gear-qty {
  margin-left: auto;
  font-size: 11px;
  color: #6b6b60;
  background: #F4F0E6;
  border-radius: 4px;
  padding: 2px 8px;
  white-space: nowrap;
}

.pd-gear-summary {
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.pd-gear-total {
  font-size: 13px;
  color: #6b6b60;
}
.pd-gear-total strong { color: #2C3E2D; }
.pd-gear-book-link {
  font-size: 13px;
  font-weight: 500;
  color: #4A7C59;
  text-decoration: none;
}
.pd-gear-book-link:hover { color: #2C3E2D; }

@media (max-width: 900px) {
  .pd-hero-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}
@media (max-width: 768px) {
  .pd-gear { padding: 48px 24px; }
  .pd-gear-grid { grid-template-columns: 1fr; }
  .pd-gear-sleeping-note { max-width: 100%; }
}
@media (max-width: 640px) {
  .pd-hero {
    padding: 48px 24px 56px;
  }
}

/* ──────────────────────────────────────────────────────────────────────────
   ABOUT PAGE BOTTOM CTA
   ────────────────────────────────────────────────────────────────────────── */
.ab-cta {
  background: #F4F0E6;
  padding: 0 48px 80px;
  font-family: 'DM Sans', sans-serif;
}
.ab-cta-inner {
  max-width: 1100px;
  margin: 0 auto;
  background: #2C3E2D;
  border-radius: 20px;
  padding: 56px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.ab-cta-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 90% 50%, rgba(74,124,89,0.25) 0%, transparent 60%);
  pointer-events: none;
}
.ab-cta-text { position: relative; }
.ab-cta-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #C8AA6E;
  margin: 0 0 12px;
}
.ab-cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin: 0 0 10px;
}
.ab-cta h2 em { font-style: italic; color: #C8AA6E; }
.ab-cta-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  margin: 0;
  line-height: 1.6;
  max-width: 400px;
}
.ab-cta-btns {
  position: relative;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  flex-shrink: 0;
}
.ab-btn-primary {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  background: #4A7C59;
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 14px 28px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.15s;
  white-space: nowrap;
}
.ab-btn-primary:hover { background: #3a6047; color: #fff; }
.ab-btn-ghost {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 999px;
  padding: 13px 24px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.15s;
  white-space: nowrap;
}
.ab-btn-ghost:hover { background: rgba(255,255,255,0.1); color: #fff; }

@media (max-width: 768px) {
  .ab-cta { padding: 0 24px 56px; }
  .ab-cta-inner { padding: 40px 32px; flex-direction: column; align-items: flex-start; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   PRODUCT PAGE STYLES (pd-* prefix)
   ═════════════════════════════════════════════════════════════════════════ */

/* ── PD HERO ── */
.pd-hero {
  background: var(--color-deep-timber);
  padding: 80px 48px;
}
.pd-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-start;
}

/* Photo Zone */
.pd-photo-zone {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-self: stretch;
}
.pd-photo-main {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: var(--color-canvas);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  border: 1px solid var(--border-color);
}
.pd-photo-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pd-photo-thumb-row {
  display: flex;
  gap: 12px;
}
.pd-photo-thumb {
  width: 72px;
  height: 72px;
  border: 2px solid transparent;
  border-radius: var(--radius-lg);
  padding: 0;
  cursor: pointer;
  background: transparent;
  overflow: hidden;
  transition: border-color 0.2s;
}
.pd-photo-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pd-photo-thumb.active {
  border-color: var(--color-trail-green);
}
.pd-photo-thumb:hover {
  border-color: var(--color-trail-green);
}

/* Hero spec grid — 2×2, fills photo zone below thumbs */
.pd-hero-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 8px;
  margin-top: 12px;
  flex: 1;
}
.pd-hero-spec {
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
}
.pd-hero-spec:last-child {
  border-right: 1px solid rgba(255,255,255,0.1);
}
.pd-hero-spec-value {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
}
.pd-hero-spec-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-dry-grass);
  margin-top: 5px;
}

/* Hero pills */
.pd-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding-top: 4px;
}
.pd-hero-pill {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,0.4);
  background: transparent;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  padding: 4px 10px;
  letter-spacing: 0.02em;
}

/* Content Area */
.pd-hero-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pd-breadcrumb {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}
.pd-breadcrumb a {
  color: var(--color-dry-grass);
  text-decoration: none;
  transition: color 0.2s;
}
.pd-breadcrumb a:hover {
  color: #fff;
}
.pd-breadcrumb-cur {
  color: rgba(255,255,255,0.75);
  font-weight: 500;
}

.pd-badge-row {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.pd-kit-badge,
.pd-live-badge {
  font-size: 12px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: var(--letter-wider);
}
.pd-kit-badge {
  background: rgba(255,255,255,0.1);
  color: var(--color-dry-grass);
  border: 1px solid rgba(255,255,255,0.15);
}
.pd-live-badge {
  background: rgba(74,124,89,0.25);
  color: #7ec89a;
  border: 1px solid rgba(74,124,89,0.4);
  font-size: 12px;
}

.pd-hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  max-width: 380px;
}
.pd-audience {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
}
.pd-audience strong {
  color: rgba(255,255,255,0.8);
  font-weight: 600;
}
.pd-audience-note {
  color: rgba(255,255,255,0.3);
  font-size: 12px;
}

/* ── PD BOOKING CARD ── */
.pd-booking-card {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: none;
}

/* Pricing Table */
.pd-pricing-table {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pd-pricing-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}
.pd-pricing-label {
  color: var(--text-muted);
  font-weight: 500;
}
.pd-pricing-amount {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-deep-timber);
  font-family: var(--font-display);
}
.pd-pricing-unit {
  font-size: 12px;
  color: var(--text-muted);
  margin-left: 4px;
}
.pd-pricing-note {
  font-size: 11px;
  color: var(--color-trail-green);
  margin-left: 8px;
}

.pd-card-divider {
  border: none;
  border-top: 1px solid var(--border-color);
  margin: 0;
}
.pd-card-detail {
  font-size: 14px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  line-height: 1.5;
}
.pd-card-detail::before {
  content: "✓";
  color: var(--color-trail-green);
  font-weight: bold;
  margin-right: 8px;
}

/* Date Widget */
.pd-date-widget {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pd-date-fields {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 12px;
  align-items: center;
}
.pd-date-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.14);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.pd-date-field:hover {
  background: rgba(255,255,255,0.11);
  border-color: rgba(255,255,255,0.25);
}
.pd-date-field-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-dry-grass);
}
.pd-date-field-value {
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  cursor: pointer;
  transition: color 0.2s;
}
.pd-date-field-value.placeholder {
  color: rgba(255,255,255,0.35);
}
.pd-date-separator {
  color: rgba(255,255,255,0.3);
  font-weight: 400;
  font-size: 18px;
}
.pd-date-note {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  text-align: center;
}

.pd-book-btn {
  background: var(--color-trail-green);
  color: #fff;
  border: none;
  border-radius: var(--radius-full);
  padding: 16px 28px;
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font-body);
  text-decoration: none;
  display: inline-block;
  text-align: center;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.pd-book-btn:hover {
  background: var(--color-deep-timber);
  transform: translateY(-2px);
}
.pd-book-note {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  line-height: 1.5;
  text-align: center;
  font-style: italic;
}

/* ── PD CALENDAR PICKER ── */
.pd-cal-popup {
  display: none;
  position: absolute;
  z-index: 300;
  background: var(--color-deep-timber);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.55);
  min-width: 580px;
}
.pd-cal-popup.open { display: block; }
.pd-cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.pd-cal-months {
  display: flex;
  flex: 1;
  justify-content: space-around;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}
.pd-cal-nav {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  color: #fff;
  font-size: 20px;
  width: 32px;
  height: 32px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
  flex-shrink: 0;
}
.pd-cal-nav:hover { background: rgba(255,255,255,0.15); }
.pd-cal-grids {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.pd-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1px;
}
.pd-cal-day-name {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.3);
  text-align: center;
  padding: 3px 0 8px;
}
.pd-cal-day {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  aspect-ratio: 1;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.12s;
}
.pd-cal-day.empty { cursor: default; }
.pd-cal-day.past  { cursor: not-allowed; }
.pd-cal-day-num {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  line-height: 1;
}
.pd-cal-day.past .pd-cal-day-num    { color: rgba(255,255,255,0.2); }
.pd-cal-day.booked .pd-cal-day-num  { color: rgba(255,255,255,0.3); }
.pd-cal-day.booked                  { cursor: not-allowed; }
.pd-cal-day:not(.past):not(.empty):not(.booked):hover { background: rgba(255,255,255,0.1); }
.pd-cal-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  flex-shrink: 0;
}
.pd-cal-dot.avail  { background: #4A7C59; }
.pd-cal-day.booked::after {
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #c0392b;
}
.pd-cal-day.start .pd-cal-day-num,
.pd-cal-day.end   .pd-cal-day-num { color: #fff; font-weight: 700; }
.pd-cal-day.start,
.pd-cal-day.end   { background: var(--color-trail-green); }
.pd-cal-day.in-range { background: rgba(74,124,89,0.2); border-radius: 0; }
.pd-cal-day.start { border-radius: 6px 0 0 6px; }
.pd-cal-day.end   { border-radius: 0 6px 6px 0; }
.pd-cal-legend {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 12px;
  font-size: 11px;
  color: rgba(255,255,255,0.4);
}
.pd-cal-legend-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  margin-right: 3px;
  vertical-align: middle;
}
.pd-cal-legend-dot.avail  { background: #4A7C59; }
.pd-cal-legend-dot.booked { background: #c0392b; }
.pd-cal-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.pd-cal-hint {
  flex: 1;
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  font-style: italic;
}
.pd-cal-clear {
  background: none;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 999px;
  color: rgba(255,255,255,0.45);
  font-size: 12px;
  padding: 7px 14px;
  cursor: pointer;
  font-family: var(--font-body);
  transition: border-color 0.15s, color 0.15s;
}
.pd-cal-clear:hover { border-color: rgba(255,255,255,0.4); color: #fff; }
.pd-cal-confirm {
  background: var(--color-trail-green);
  border: none;
  border-radius: 999px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 9px 22px;
  cursor: pointer;
  font-family: var(--font-body);
  transition: background 0.15s, opacity 0.15s;
}
.pd-cal-confirm:disabled { opacity: 0.3; cursor: not-allowed; }
.pd-cal-confirm:not(:disabled):hover { background: #3a6047; }
.pd-date-field.is-set { border-color: rgba(74,124,89,0.5); background: rgba(74,124,89,0.12); }

/* ── PD SPECS ── */
.pd-specs {
  background: var(--color-canvas);
  padding: 64px 48px;
}
.pd-specs-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.pd-specs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.pd-spec-tile {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-2xl);
  padding: 28px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pd-spec-value {
  font-size: 28px;
  font-weight: 900;
  color: var(--color-trail-green);
  font-family: var(--font-display);
}
.pd-spec-label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: var(--letter-wider);
  color: var(--text-muted);
}

.pd-spec-pills {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.pd-spec-pill {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
  padding: 10px 16px;
  font-size: 13px;
  color: var(--text-muted);
}

/* ── PD TESTIMONIALS ── */
.pd-testimonials {
  background: var(--color-canvas);
  padding: 80px 48px;
}
.pd-testimonials-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.pd-testimonials-header {
  text-align: center;
}
.pd-testimonials-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: var(--letter-widest);
  text-transform: uppercase;
  color: var(--color-trail-green);
  margin-bottom: 12px;
}
.pd-testimonials-header h2 {
  color: var(--color-deep-timber);
  margin-bottom: 0;
}

.pd-testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.pd-testi-card {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-2xl);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
}
.pd-testi-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-trail-green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  font-family: var(--font-display);
  margin: 0 auto;
}
.pd-testi-stars {
  color: #ffd700;
  font-size: 16px;
  letter-spacing: 2px;
}
.pd-testi-quote {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  font-style: italic;
}
.pd-testi-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}
.pd-testi-trip {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: var(--letter-wide);
}

/* ── PD FAQ ── */
.pd-faq {
  background: #fff;
  padding: 80px 48px;
}
.pd-faq-container {
  max-width: 900px;
  margin: 0 auto;
}
.pd-faq-header {
  text-align: center;
  margin-bottom: 60px;
}
.pd-faq-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: var(--letter-widest);
  text-transform: uppercase;
  color: var(--color-trail-green);
  margin-bottom: 12px;
}
.pd-faq-header h2 {
  color: var(--color-deep-timber);
  margin-bottom: 16px;
}
.pd-faq-subtitle {
  font-size: 15px;
  color: var(--text-muted);
}

.pd-accordion-group {
  margin-bottom: 40px;
}
.pd-accordion-category {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: var(--letter-wide);
  text-transform: uppercase;
  color: var(--color-trail-green);
  margin-bottom: 20px;
  margin-top: 32px;
}
.pd-accordion-item {
  border-bottom: 1px solid var(--border-color);
  padding: 20px 0;
}
.pd-accordion-item:first-of-type {
  border-top: 1px solid var(--border-color);
}
.pd-accordion-button {
  background: none;
  border: none;
  width: 100%;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--text-primary);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  transition: color 0.2s;
  padding: 0;
  text-align: left;
}
.pd-accordion-button:hover {
  color: var(--color-trail-green);
}
.pd-accordion-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: var(--color-trail-green);
  font-weight: 700;
  transition: transform 0.3s ease;
}
.pd-accordion-button[aria-expanded="true"] .pd-accordion-icon {
  transform: rotate(180deg);
}
.pd-accordion-content {
  display: none;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  padding: 0;
}
.pd-accordion-button[aria-expanded="true"] + .pd-accordion-content {
  display: block;
  max-height: 500px;
  padding: 20px 0;
}
.pd-accordion-answer {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
}

.pd-gear-book-link {
  color: var(--color-trail-green);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}
.pd-gear-book-link:hover {
  color: var(--color-deep-timber);
}

/* ──────────────────────────────────────────────────────────────────────────
   CHECKOUT — HEADER STRIP & STICKY BAR
   ────────────────────────────────────────────────────────────────────────── */

.b40-checkout-header {
  background: var(--color-deep-timber);
  padding: 32px 48px 28px;
  text-align: center;
}

.b40-checkout-header-inner {
  max-width: 960px;
  margin: 0 auto;
}

.b40-checkout-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-dry-grass);
  margin-bottom: 8px;
}

.b40-checkout-header h1 {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.15;
}

.b40-checkout-header-dates {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  font-weight: 300;
}

.b40-checkout-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: #fff;
  border-top: 1px solid var(--border-color);
  box-shadow: 0 -4px 24px rgba(44,62,45,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 32px;
}

.b40-checkout-bar-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 400;
}

.b40-checkout-bar-btn {
  background: var(--color-trail-green);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 12px 32px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font-body);
  transition: background 0.15s, transform 0.15s;
  white-space: nowrap;
}

.b40-checkout-bar-btn:hover {
  background: var(--color-deep-timber);
  transform: translateY(-1px);
}

.b40-checkout-bar-btn:disabled {
  background: #c5c2bb;
  cursor: not-allowed;
  transform: none;
}

/* Extra bottom padding so form content clears the sticky bar */
.b40-checkout-wrap {
  padding-bottom: 100px;
}

/* ──────────────────────────────────────────────────────────────────────────
   MY BOOKINGS — RESERVATION CARDS
   ────────────────────────────────────────────────────────────────────────── */

.b40-reservations {
  display: grid;
  gap: 16px;
}

.b40-res-card {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 24px;
  transition: box-shadow 0.2s;
}

.b40-res-card:hover {
  box-shadow: var(--shadow-md);
}

.b40-res-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-color);
}

.b40-res-kit-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-deep-timber);
  margin-bottom: 4px;
}

.b40-res-id {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.b40-res-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.b40-res-dates {
  font-size: 14px;
  color: var(--text-secondary);
}

.b40-res-dates strong {
  display: block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.b40-res-status {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
}

.b40-res-status.confirmed {
  background: rgba(74,124,89,0.1);
  color: var(--color-trail-green);
}

.b40-res-status.pending {
  background: rgba(181,99,26,0.1);
  color: var(--color-campfire);
}

.b40-res-status.cancelled {
  background: rgba(44,62,45,0.07);
  color: var(--text-muted);
  text-decoration: line-through;
}

.b40-cancel-btn {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  background: none;
  border: 1px solid var(--border-color);
  border-radius: 999px;
  padding: 6px 16px;
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s;
  font-family: var(--font-body);
}

.b40-cancel-btn:hover {
  border-color: #c0392b;
  color: #c0392b;
}

.b40-cancel-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Auth wrap on my-bookings */
.b40-auth-wrap {
  max-width: 460px;
  margin: 60px auto;
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
}

.b40-auth-tabs {
  display: flex;
  border-bottom: 1px solid var(--border-color);
}

.b40-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 12px;
}

.b40-welcome {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  color: var(--color-deep-timber);
}

.b40-logout-btn {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  background: none;
  border: 1px solid var(--border-color);
  border-radius: 999px;
  padding: 7px 18px;
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s;
  font-family: var(--font-body);
}

.b40-logout-btn:hover {
  border-color: var(--color-deep-timber);
  color: var(--color-deep-timber);
}

.b40-empty-state {
  text-align: center;
  padding: 64px 24px;
}

.b40-empty-state h2 {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--color-deep-timber);
  margin-bottom: 12px;
}

.b40-empty-state p {
  color: var(--text-muted);
  margin-bottom: 24px;
}

.b40-empty-state a {
  color: var(--color-trail-green);
  font-weight: 600;
  text-decoration: none;
}

/* ──────────────────────────────────────────────────────────────────────────
   UPSELL — ADDON SELECTED STATE
   ────────────────────────────────────────────────────────────────────────── */

.b40-upsell-addon.is-selected {
  border-color: var(--color-trail-green);
  background: #f4f9f6;
}

.b40-upsell-addon.is-selected .b40-upsell-addon-name {
  color: var(--color-trail-green);
}

/* ──────────────────────────────────────────────────────────────────────────
   CONFIRMATION — CTA BUTTONS
   ────────────────────────────────────────────────────────────────────────── */

.b40-conf-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 32px;
}

.b40-conf-btn-primary {
  background: var(--color-trail-green);
  color: #fff;
  border-radius: 999px;
  padding: 14px 36px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  font-family: var(--font-body);
  transition: background 0.15s, transform 0.15s;
  display: inline-block;
}

.b40-conf-btn-primary:hover {
  background: var(--color-deep-timber);
  transform: translateY(-1px);
}

.b40-conf-btn-secondary {
  background: none;
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  border-radius: 999px;
  padding: 14px 36px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  font-family: var(--font-body);
  transition: border-color 0.15s, color 0.15s;
  display: inline-block;
}

.b40-conf-btn-secondary:hover {
  border-color: var(--color-trail-green);
  color: var(--color-trail-green);
}

/* ──────────────────────────────────────────────────────────────────────────
   CAMPING KITS — BOOK NOW DOMINANCE
   ────────────────────────────────────────────────────────────────────────── */

.b40-card .b40-btn-primary {
  padding: 11px 22px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.b40-card .b40-btn-ghost {
  padding: 10px 16px;
  font-size: 13px;
  color: var(--text-muted);
  border-color: var(--border-color);
}

/* My bookings container */
.b40-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}

@media (max-width: 768px) {
  .b40-checkout-bar { padding: 12px 20px; }
  .b40-checkout-header { padding: 24px; }
  .b40-res-header { flex-direction: column; gap: 8px; }
  .b40-res-body { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 640px) {
  .b40-checkout-bar { flex-direction: column; gap: 10px; padding: 12px 16px; }
  .b40-checkout-bar-btn { width: 100%; text-align: center; }
  .b40-conf-actions { flex-direction: column; }
  .b40-conf-btn-primary, .b40-conf-btn-secondary { text-align: center; }
}

