/* ═══════════════════════════════════════════════════════════
   K-ARI KOREAN SKINCARE — MAIN STYLESHEET
   ───────────────────────────────────────────────────────────
   To customise your brand colors, edit the variables in :root
   ═══════════════════════════════════════════════════════════ */

/* ── DESIGN TOKENS ────────────────────────────────────────── */
:root {
  /* Brand colors — edit these to match your exact brand */
  --primary:        #6b8090;   /* main blue-gray (nav, buttons) */
  --primary-dark:   #536470;   /* hover state                   */
  --primary-light:  #8fa3b0;   /* tints, borders                */
  --primary-faint:  #f0f4f6;   /* light section backgrounds     */

  --accent:         #c9a96e;   /* gold accent for highlights    */
  --accent-light:   #f5edd9;   /* warm cream background         */

  --text-dark:      #2c3a42;   /* headings                      */
  --text-mid:       #4a5e6a;   /* body copy                     */
  --text-light:     #7a919e;   /* muted text                    */

  --bg-white:       #ffffff;
  --bg-light:       #f8f9fa;
  --bg-alt:         #f0f4f6;   /* alternating section bg        */

  --border:         #dde6eb;

  /* Typography */
  --font-serif:     'Playfair Display', Georgia, serif;
  --font-sans:      'Lato', system-ui, sans-serif;

  /* Spacing & shape */
  --radius:         4px;
  --radius-md:      8px;
  --radius-lg:      16px;
  --max-width:      1200px;
  --nav-height:     80px;

  /* Shadows */
  --shadow-sm:      0 1px 3px rgba(0,0,0,.08);
  --shadow-md:      0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:      0 8px 32px rgba(0,0,0,.14);

  /* Transitions */
  --ease:           cubic-bezier(.4,0,.2,1);
  --duration:       250ms;
}


/* ── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  color: var(--text-mid);
  background: var(--bg-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  color: var(--text-dark);
  line-height: 1.25;
}


/* ── PAGE LOAD ANIMATIONS ─────────────────────────────────── */
@keyframes page-fade-in {
  from { opacity: 0; transform: translateY(0); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes gentle-rise {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

.navbar          { animation: page-fade-in .6s ease both; }
.hero-eyebrow    { animation: gentle-rise .7s ease .15s both; }
.hero-heading    { animation: gentle-rise .7s ease .25s both; }
.hero-actions    { animation: gentle-rise .7s ease .35s both; }
.hero-scroll     { animation: gentle-rise .7s ease .45s both; }

/* ── UTILITY ──────────────────────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 6rem 0;
  background: var(--bg-white);
}

.section-alt {
  background: var(--bg-alt);
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
}

.section-eyebrow {
  font-family: var(--font-sans);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .75rem;
}

.section-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--text-light);
  font-size: 1.05rem;
}


/* ── BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .7rem 1.75rem;
  line-height: 1;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .04em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--duration) var(--ease),
              color      var(--duration) var(--ease),
              border-color var(--duration) var(--ease),
              transform  var(--duration) var(--ease);
}

.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.7);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.12);
  border-color: #fff;
}

.btn-nav {
  background: #fff;
  color: var(--primary);
  border-color: #fff;
  padding: .5rem 1.25rem;
  font-size: .85rem;
}
.btn-nav:hover {
  background: var(--accent-light);
  border-color: var(--accent-light);
}

.btn-sm {
  padding: .45rem 1.1rem;
  font-size: .8rem;
  background: var(--primary-faint);
  color: var(--primary);
  border-color: var(--border);
}
.btn-sm:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.btn-large {
  padding: .9rem 2.25rem;
  font-size: 1rem;
}

.btn-block {
  width: 100%;
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: .7rem 1.25rem;
  font-size: .85rem;
  font-weight: 700;
  transition: background var(--duration) var(--ease);
}
.btn-outline:hover { background: var(--primary-faint); }

.btn-mobile-book {
  display: block;
  text-align: center;
  background: var(--primary);
  color: #fff;
  padding: .75rem;
  border-radius: var(--radius);
  margin-top: .5rem;
}


/* ── NAVIGATION ───────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--primary);
  box-shadow: var(--shadow-sm);
  transition: background var(--duration) var(--ease);
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
}

/* Flex row: hamburger left · logo absolutely centered · buttons right */
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

/* Logo pinned to exact horizontal center of the bar */
.nav-logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1;
  gap: 6px;
  pointer-events: auto;
}

.logo-subtitle {
  font-family: var(--font-sans);
  font-size: .68rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.95);
  letter-spacing: .2em;
  text-transform: uppercase;
}

.logo-img {
  height: 40px;
  width: auto;
}

.logo-text {
  font-family: 'League Spartan', var(--font-sans);
  font-size: 1.85rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.logo-text-footer {
  font-size: 1.4rem;
  color: var(--primary);
  display: block;
  margin-bottom: .5rem;
}

/* Nav right: Book Now + My Appointments */
.nav-actions {
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-shrink: 0;
}

/* My Appointments ghost outline button — matches btn-nav height exactly */
.btn-appt {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.75);
  padding: .7rem 1rem;
  line-height: 1;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .04em;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--duration) var(--ease), border-color var(--duration) var(--ease);
}
.btn-appt:hover {
  background: rgba(255,255,255,.15);
  border-color: #fff;
}
/* Book Now / Book swap */
.nav-book-short { display: none; }

/* On mobile: hide My Appointments from nav (it moves into the drawer) */
/* Also hide logo subtitle so just K-ARI shows, and raise logo slightly */
@media (max-width: 600px) {
  .btn-appt { display: none; }
  .logo-subtitle { display: none; }
  .nav-logo { margin-top: -6px; }
  .nav-book-full  { display: none; }
  .nav-book-short { display: inline; }
}

@media (max-width: 400px) {
  .btn-nav  { font-size: .75rem; padding: .5rem .85rem; }
}

/* Book Now */
.btn-nav {
  background: #fff;
  color: var(--primary);
  border-color: #fff;
  padding: .7rem 1.25rem;
  font-size: .85rem;
}
.btn-nav:hover {
  background: var(--accent-light);
  border-color: var(--accent-light);
}

/* Hamburger — always visible, always left */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
  border-radius: var(--radius);
  transition: background var(--duration) var(--ease);
  flex-shrink: 0;
}

.hamburger:hover {
  background: rgba(255,255,255,.12);
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform var(--duration) var(--ease),
              opacity   var(--duration) var(--ease);
}

/* X animation when open */
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ── SIDE DRAWER ──────────────────────────────────────────── */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 1100;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s var(--ease);
}

.drawer-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 300px;
  height: 100dvh;
  background: #fff;
  z-index: 1200;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform .3s var(--ease);
  box-shadow: var(--shadow-lg);
  overflow-y: auto;
  padding-left: env(safe-area-inset-left, 0px);
  padding-bottom: env(safe-area-inset-bottom, 0px);
}

.drawer.open {
  transform: translateX(0);
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
  background: var(--primary);
}

.drawer-logo {
  font-family: 'League Spartan', var(--font-sans) !important;
  font-weight: 800 !important;
  color: #fff !important;
  font-size: 1.4rem;
  letter-spacing: .1em;
}

.drawer-close {
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255,255,255,.8);
  padding: .3rem;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  transition: color var(--duration) var(--ease),
              background var(--duration) var(--ease);
}

.drawer-close:hover {
  color: #fff;
  background: rgba(255,255,255,.15);
}

.drawer-links {
  flex: 1;
  padding: 1rem 0;
}

/* Staggered slide-in for drawer items */
@keyframes drawerItemIn {
  from { opacity: 0; transform: translateX(-18px); }
  to   { opacity: 1; transform: translateX(0); }
}

.drawer-links li {
  opacity: 0;
}

.drawer.open .drawer-links li {
  animation: drawerItemIn .3s var(--ease) forwards;
}

.drawer.open .drawer-links li:nth-child(1) { animation-delay: .10s; }
.drawer.open .drawer-links li:nth-child(2) { animation-delay: .16s; }
.drawer.open .drawer-links li:nth-child(3) { animation-delay: .22s; }
.drawer.open .drawer-links li:nth-child(4) { animation-delay: .28s; }
.drawer.open .drawer-links li:nth-child(5) { animation-delay: .34s; }
.drawer.open .drawer-links li:nth-child(6) { animation-delay: .40s; }
.drawer.open .drawer-links li:nth-child(7) { animation-delay: .46s; }

.drawer-link {
  display: flex;
  align-items: center;
  padding: .85rem 1.75rem;
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-dark);
  border-left: 3px solid transparent;
  transition: background var(--duration) var(--ease),
              color      var(--duration) var(--ease),
              border-color var(--duration) var(--ease);
}

.drawer-link:hover {
  background: var(--primary-faint);
  color: var(--primary);
  border-left-color: var(--primary-light);
}

.drawer-link-active {
  background: var(--primary-faint);
  color: var(--primary);
  border-left-color: var(--primary);
  font-weight: 700;
}

.drawer-giftcard {
  color: var(--accent);
  font-weight: 700;
}

.drawer-giftcard:hover {
  color: var(--accent);
  border-left-color: var(--accent);
}

.drawer-footer {
  padding: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.drawer-hours {
  text-align: center;
  font-size: .8rem;
  color: var(--text-light);
  margin: 0;
}


/* ── HERO GALLERY ─────────────────────────────────────────── */
/*
   5-column parallax gallery. Cols 1 & 4 scroll down, cols 2 & 5
   scroll up, col 3 (center) is static with the hero text overlay.
   Each card sits inside a glow-tinted wrapper whose --glow color
   is set inline to match the image's dominant palette tone.
*/

.hero {
  position: relative;
  overflow: hidden;
}

/* Gallery layout overrides */
.hero.hg {
  height: calc(100vh - var(--nav-height));
  min-height: 580px;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 18px;
  padding: 18px;
  background: #f0f4f6; /* --bg-alt: soft blue-gray, matches site palette */
}

/* Suppress legacy single-image layers */
.hg .hero-bg,
.hg .hero-overlay { display: none; }

/* ── Columns ─────────────────────────────────── */
.hg-col {
  position: relative;
  overflow: hidden;
  flex: 1;
}

.hg-col--gallery {}

/* ── Scrolling Tracks ────────────────────────── */
.hg-track {
  display: flex;
  flex-direction: column;
  gap: 22px;
  will-change: transform;
}

/*
   Each track contains 6 unique cards + 6 duplicates (total 12).
   Animating by exactly -50% of the track height creates a perfect
   seamless loop — when the second set is fully in view it looks
   identical to the first set, so the reset is invisible.
*/
.hg-track--down {
  /* Start at -50% (showing the duplicate set), glide back to 0 */
  animation: hgScrollDown 420s linear infinite;
  transform: translateY(-50%);
}

.hg-track--up {
  /* Start at 0, glide to -50% (duplicate set = seamless loop) */
  animation: hgScrollUp 420s linear infinite;
}

@keyframes hgScrollDown {
  from { transform: translateY(-50%); }
  to   { transform: translateY(0); }
}

@keyframes hgScrollUp {
  from { transform: translateY(0); }
  to   { transform: translateY(-50%); }
}

/* ── Card Wrapper ────────────────────────────── */
.hg-card-outer {
  flex-shrink: 0;
}

/* ── Card Image ──────────────────────────────── */
.hg-card {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: 12px;
  background-image: var(--img);
  background-size: cover;
  background-position: center;
  opacity: 0.72;
}

/* ── Floating Title Overlay ──────────────────── */
.hg-title-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  pointer-events: none;
}

.hg-title {
  text-align: center;
  padding: 4.5rem 6rem;
  pointer-events: auto;
  background: rgba(107,128,144,0.97);
  border-radius: 16px;
}

/* Typography */
.hero-brand {
  font-family: 'League Spartan', var(--font-sans);
  font-size: clamp(4rem, 8vw, 7.5rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: .07em;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: .6rem;
  text-shadow: none;
  animation: gentle-rise .5s ease both;
}

.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: clamp(0.8rem, 1.5vw, 1.05rem);
  font-weight: 400;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: rgba(255,255,255,.82);
  margin-bottom: 2.5rem;
  text-shadow: none;
}

.hero-heading {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 5.5vw, 6rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.12;
  text-shadow: none;
}

.hero-heading em {
  font-style: italic;
  font-weight: 400;
  color: #f5edd9;
}

.hero-subtext {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 300;
  color: #fff;
  max-width: 420px;
  margin: 1.2rem auto 0;
  line-height: 1.75;
  text-shadow: none;}

.hero-actions {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2.25rem;
}

.hg-title .btn-primary {
  background: #fff;
  color: var(--primary);
  border-color: #fff;
}

.hg-title .btn-primary:hover {
  background: var(--accent-light);
  border-color: var(--accent-light);
}

.hero-scroll {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.65);
  animation: bounce 2.2s ease-in-out infinite;
  z-index: 10;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(9px); }
}

/* ── Accessibility: reduce motion ────────────── */
@media (prefers-reduced-motion: reduce) {
  .hg-track { animation: none !important; }
}

/* ── Mobile video background (hidden on desktop) ─ */
.hg-video-bg {
  display: none;
}

@media (max-width: 768px) {
  /* Show video layer, hide gallery columns */
  .hg-video-bg {
    display: block;
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    background: var(--primary);
  }

  /* The Vimeo player is 16:9 but the video content is portrait (9:16),
     so the actual footage occupies only ~31.6% of the iframe width.
     To push all black bars off-screen we need the iframe to be ~316%
     wide AND tall enough to cover the full hero height on any phone. */
  .hg-video-bg iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 350%;
    height: 350%;
    transform: translate(-50%, -50%);
    border: none;
    opacity: .92;
  }

  /* Push title overlay above the video */
  .hg-title-overlay { z-index: 5; }

  /* No box — text floats directly over the video */
  .hg-title {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-radius: 0;
    box-shadow: none;
    text-shadow: 0 2px 16px rgba(0,0,0,0.55);
  }
  .hg-title .btn { text-shadow: none; }
}

/* ── Mobile: 3 columns, animations paused ─────── */
@media (max-width: 768px) {
  .hero.hg { gap: 0; padding: 0; min-height: 420px; }

  /* Hide ALL gallery columns — video takes over on mobile */
  .hg-col { display: none !important; }

  .hg-track { animation: none !important; }

  .hero-heading { font-size: clamp(2rem, 7vw, 3rem); }

  /* Hero title box: shrink padding for tablets */
  .hg-title { padding: 2.5rem 3rem; }
}

@media (max-width: 420px) {
  /* Show only 2 columns on phone */
  .hg-col:nth-child(1),
  .hg-col:nth-child(3),
  .hg-col:nth-child(4),
  .hg-col:nth-child(5) { display: none; }

  /* Hero title box: compact for small phones */
  .hg-title { padding: 1.75rem 1.75rem; border-radius: 12px; }
  .hero-subtext { font-size: .85rem; margin-top: .85rem; }
  .hero-actions { margin-top: 1.5rem; gap: .75rem; }
}


/* ── SERVICES GRID ────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.75rem;
}

.service-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--duration) var(--ease),
              box-shadow var(--duration) var(--ease);
}

@media (max-width: 600px) {
  .service-card.solo {
    grid-column: 1 / -1;
    justify-self: center;
  }
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.service-card.featured {
  border-color: var(--accent);
}

.service-img {
  height: 220px;
  background-image: var(--img);
  background-size: cover;
  background-position: center;
  /* Fallback gradient when image isn't loaded yet */
  background-color: var(--primary-faint);
}

/* ✏️  Service image placeholder gradient colors */
.service-card:nth-child(1) .service-img { background-color: #dce8ee; }
.service-card:nth-child(2) .service-img { background-color: #e8e0d4; }
.service-card:nth-child(3) .service-img { background-color: #e4d8e8; }
.service-card:nth-child(4) .service-img { background-color: #d4e4e8; }
.service-card:nth-child(5) .service-img { background-color: #e8e8d4; }
.service-card:nth-child(6) .service-img { background-color: #f5edd9; }

.service-body {
  padding: 1.5rem;
}

.service-meta {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: .5rem;
}

.service-price {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
}

.service-duration {
  font-size: .75rem;
  color: var(--text-light);
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: .2rem .6rem;
  font-weight: 700;
}

.service-skin-type {
  font-size: .78rem;
  color: var(--accent);
  font-weight: 700;
  font-style: italic;
  margin-bottom: .35rem !important;
}

.service-skin-type em {
  font-weight: 400;
  color: var(--text-light);
}

.service-body h3 {
  font-size: 1.2rem;
  margin-bottom: .25rem;
}

.service-body p {
  font-size: .9rem;
  color: var(--text-light);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}


/* ── ADD-ONS ──────────────────────────────────────────────── */
.addons-section {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
}

.addons-header {
  text-align: center;
  margin-bottom: 2rem;
}

.addons-title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--text-dark);
  margin-bottom: .6rem;
}

.addons-subtitle {
  font-size: .9rem;
  color: var(--text-light);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.6;
}

.addons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.addon-card {
  position: relative;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--duration) var(--ease),
              box-shadow var(--duration) var(--ease);
}

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

.addon-card.addon-popular {
  border-color: var(--accent);
  background: linear-gradient(160deg, #fffdf8 0%, #fff 60%);
}

.addon-popular-badge {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .25rem .65rem;
  border-radius: 100px;
  margin-bottom: .25rem;
  width: fit-content;
}

.addon-name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: .15rem;
}

.addon-desc {
  font-size: .85rem;
  color: var(--text-light);
  line-height: 1.55;
  flex: 1;
}

.addon-meta {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-top: .25rem;
}

.addon-price {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
}

.addon-duration {
  font-size: .72rem;
  color: var(--text-light);
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: .2rem .55rem;
}

.addon-btn {
  margin-top: .5rem;
  width: 100%;
  text-align: center;
}

@media (max-width: 768px) {
  .addons-grid {
    grid-template-columns: 1fr;
  }
}

/* ── ABOUT ────────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
}

.about-img-wrap {
  position: relative;
  z-index: 0;
  max-width: 370px;
  margin: 14px 0 0 14px;
}

.about-img-wrap::before {
  content: '';
  position: absolute;
  inset: -14px 14px 14px -14px;
  background: var(--accent-light);
  border-radius: var(--radius-md);
  z-index: -1;
}

.about-img {
  position: relative;
  z-index: 1;
  height: 480px;
  border-radius: var(--radius-md);
  background-image: var(--img);
  background-size: cover;
  background-position: center;
  background-color: var(--primary-faint);
  box-shadow: var(--shadow-lg);
}

.about-video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  max-height: 600px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-video-wrap iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  /* Scale 16:9 player so the portrait video content fills the 9:16 container */
  width: 316%;
  aspect-ratio: 16 / 9;
  transform: translate(-50%, -50%);
  border: 0;
}

.about-text .section-title { margin-bottom: 1.25rem; }
.about-text p { margin-bottom: 1rem; }


/* ── BOOKING ──────────────────────────────────────────────── */
.booking-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}

.booking-cta-block {
  text-align: center;
}

.square-embed-placeholder {
  background: var(--primary-faint);
  border: 2px dashed var(--primary-light);
  border-radius: var(--radius-md);
  padding: 3rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  min-height: 320px;
  justify-content: center;
}

.placeholder-icon {
  color: var(--primary-light);
}

.embed-note {
  color: var(--text-mid);
  line-height: 1.6;
}

.embed-note strong {
  color: var(--text-dark);
  font-size: 1.05rem;
}

.booking-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.booking-feature {
  padding: 1.25rem;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.feature-icon {
  font-size: 1.5rem;
  display: block;
  margin-bottom: .5rem;
}

.booking-feature strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: .35rem;
}

.booking-feature p {
  font-size: .85rem;
  color: var(--text-light);
  margin: 0;
  line-height: 1.5;
}


/* ── LOCATIONS GRID ───────────────────────────────────────── */
.locations-subheading {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 1.25rem;
  padding-bottom: .5rem;
  border-bottom: 2px solid var(--border);
}

.locations-subheading-soon {
  margin-top: 3rem;
  color: var(--text-light);
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.75rem;
  margin-bottom: 1rem;
}

.location-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--duration) var(--ease),
              box-shadow var(--duration) var(--ease);
}

.location-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

/* ── Coming soon: compact chips ─────────────────────────── */
.locations-soon-chips {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-bottom: 1.25rem;
}

.soon-chip {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--bg-alt);
  border: 1.5px dashed var(--border);
  border-radius: 99px;
  padding: .4rem 1rem;
  font-size: .82rem;
  color: var(--text-light);
  font-weight: 600;
}

.soon-chip::before {
  content: '📍';
  font-size: .75rem;
}

.locations-waitlist-btn {
  margin-top: .25rem;
}

/* Coming soon cards: muted style, no photo (kept for backwards compat) */
.location-card-soon {
  background: var(--bg-alt);
  border-style: dashed;
  box-shadow: none;
}

.location-card-soon:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.location-img {
  height: 200px;
  background-image: var(--img);
  background-size: cover;
  background-position: center;
  background-color: var(--primary-faint);
  position: relative;
}

.location-opening-banner {
  position: absolute;
  top: 14px;
  left: 0;
  background: #6b8090;
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 14px 5px 12px;
  border-radius: 0 4px 4px 0;
  box-shadow: 0 2px 8px rgba(0,0,0,.18);
}
.location-now-open {
  background: var(--accent);
  color: #3a2e1a;
}

/* Open location placeholder colors */
.location-card:nth-child(1) .location-img { background-color: #d8e4ec; }
.location-card:nth-child(2) .location-img { background-color: #e4d8e8; }
.location-card:nth-child(3) .location-img { background-color: #d4e8e0; }
.location-card:nth-child(4) .location-img { background-color: #e8e0d4; }

.location-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.location-desc {
  font-size: .9rem;
  color: var(--primary);
  font-weight: 500;
  margin: 0;
}

.location-badge {
  display: inline-block;
  background: var(--accent-light);
  color: var(--accent);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .25rem .7rem;
  border-radius: 100px;
  width: fit-content;
}

.location-badge-soon {
  background: var(--bg-white);
  color: var(--text-light);
  border: 1px solid var(--border);
}

.location-body h3 {
  font-size: 1.2rem;
  line-height: 1.3;
}

.location-body h3 span {
  font-size: .9rem;
  font-weight: 400;
  color: var(--text-light);
  font-family: var(--font-sans);
}

.location-body p {
  font-size: .875rem;
  color: var(--text-mid);
  line-height: 1.6;
}

.location-body a {
  color: var(--primary);
  text-decoration: underline;
}

.location-body a:hover { color: var(--primary-dark); }


/* ── WAITLIST ─────────────────────────────────────────────── */
.waitlist-wrap {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: start;
}

.waitlist-text .section-title { margin-bottom: 1rem; }
.waitlist-text p { margin-bottom: 1.25rem; }

.waitlist-perks {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.waitlist-perks li {
  font-size: .95rem;
  color: var(--text-mid);
  padding-left: 1rem;
}

/* Form */
.waitlist-form-wrap {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
}

.waitlist-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}

.form-group label {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: .65rem .9rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: .9rem;
  color: var(--text-dark);
  background: var(--bg-white);
  outline: none;
  transition: border-color var(--duration) var(--ease),
              box-shadow   var(--duration) var(--ease);
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(107,128,144,.15);
}

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

/* Success state */
.form-success {
  text-align: center;
  padding: 3rem 2rem;
}

.success-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: var(--primary-faint);
  color: var(--primary);
  font-size: 1.75rem;
  border-radius: 50%;
  margin: 0 auto 1.25rem;
}

.form-success h3 {
  font-size: 1.4rem;
  margin-bottom: .5rem;
}

.form-success p {
  color: var(--text-light);
}


/* ── FOOTER ───────────────────────────────────────────────── */
.footer {
  background: var(--primary-faint);
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-top: 4rem;
  padding-bottom: 3rem;
}

.footer-brand p {
  font-size: .875rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.instagram-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--primary);
  font-size: .875rem;
  font-weight: 700;
  transition: color var(--duration) var(--ease);
}

.instagram-link:hover { color: var(--primary-dark); }

.footer-col h4 {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: .75rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: .45rem;
}

.footer-col ul li,
.footer-col ul a {
  font-size: .875rem;
  color: var(--text-light);
  transition: color var(--duration) var(--ease);
}

.footer-col ul a:hover { color: var(--primary); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.25rem 1.5rem;
  text-align: center;
}

.footer-bottom p {
  font-size: .8rem;
  color: var(--text-light);
}


/* ── NAV: gift card highlight + active link ───────────────── */
.nav-giftcard {
  color: var(--accent) !important;
  font-weight: 700;
}
.nav-giftcard:hover {
  background: rgba(201,169,110,.15) !important;
}
.nav-link-active {
  color: #fff !important;
  background: rgba(255,255,255,.18) !important;
}


/* ── SANTA CLARA ANNOUNCEMENT BANNER ─────────────────────── */
@keyframes sc-slide-in {
  from { transform: translateY(-100%); opacity: 0; }
  to   { transform: translateY(0);     opacity: 1; }
}
@keyframes sc-shimmer {
  0%   { background-position: -250% center; }
  100% { background-position: 250% center; }
}
@keyframes sc-btn-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201,169,110,.6); }
  60%       { box-shadow: 0 0 0 7px rgba(201,169,110,0); }
}
.sc-announcement {
  background: linear-gradient(100deg, var(--accent-light) 0%, #fdf6ec 40%, #f5edd9 70%, var(--accent-light) 100%);
  padding: .3rem 0;
  overflow: hidden;
  animation: sc-slide-in .6s cubic-bezier(.22,.68,0,1.2) both;
  position: relative;
}
.sc-announcement::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 35%, rgba(255,255,255,.45) 50%, transparent 65%);
  background-size: 250% auto;
  animation: sc-shimmer 3.5s linear infinite;
  pointer-events: none;
}
.sc-announcement-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  text-align: center;
  position: relative;
  z-index: 1;
}
.sc-announcement-emoji {
  font-size: 1.1rem;
  filter: drop-shadow(0 0 6px rgba(201,169,110,.7));
}
.sc-announcement-text {
  color: #3a2e1a;
  font-size: .88rem;
  letter-spacing: .02em;
  text-shadow: none;
}
.sc-announcement-text strong {
  color: #7a5a1e;
  letter-spacing: .03em;
}
.sc-announcement-btn {
  background: var(--primary);
  color: #fff;
  font-size: .76rem;
  font-weight: 800;
  padding: .35rem 1rem;
  border-radius: 20px;
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: transform .2s, box-shadow .2s;
  animation: sc-btn-pulse 2s ease-in-out infinite;
}
.sc-announcement-btn:hover {
  transform: scale(1.06);
  box-shadow: 0 4px 16px rgba(201,169,110,.5);
}

@media (max-width: 600px) {
  .sc-announcement          { padding: .25rem 0; }
  .sc-announcement-emoji    { display: none; }
  .sc-announcement-text     { font-size: .8rem; }
  .sc-announcement-btn      { font-size: .72rem; padding: .35rem .85rem; }
  .sc-announcement-text .sc-mobile-hide { display: none; }
}

.alert-banner {
  background: #fef3c7;
  border-bottom: 1px solid #e9c86a;
  padding: .5rem 1rem;
  text-align: center;
  font-family: var(--font-body, 'Lato', sans-serif);
  font-size: .88rem;
  font-weight: 600;
  color: #78350f;
  letter-spacing: .01em;
  line-height: 1.4;
}
.alert-banner a {
  color: #92400e;
  text-decoration: underline;
}
@media (max-width: 600px) {
  .alert-banner { font-size: .8rem; padding: .45rem .75rem; }
}

.giftcard-banner {
  background: linear-gradient(90deg, var(--accent-light) 0%, #fdf6ec 100%);
  border-top: 1px solid #e8d9be;
  border-bottom: 1px solid #e8d9be;
  padding: .45rem 0;
}

.giftcard-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.giftcard-text {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.giftcard-text strong {
  display: block;
  font-family: var(--font-serif);
  font-size: .93rem;
  color: var(--text-dark);
}

.giftcard-text span {
  font-size: .85rem;
  color: var(--text-dark);
}

.btn-giftcard {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  white-space: nowrap;
  flex-shrink: 0;
}
.btn-giftcard:hover {
  background: #b8925a;
  border-color: #b8925a;
}


/* ── PAGE HERO (products page mini-hero) ──────────────────── */
.page-hero {
  position: relative;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* ✏️ Replace the gradient with url('assets/products-hero.jpg') */
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(135deg, #6b8090 0%, #c9a96e 60%, #8fa3b0 100%);
  background-size: cover;
  background-position: center;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(43,58,66,.55);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 1.5rem;
}

.page-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff;
  margin: .5rem 0 .75rem;
}

.page-hero-sub {
  font-size: 1rem;
  opacity: .85;
  max-width: 520px;
  margin: 0 auto;
}


/* ── PRODUCT FILTERS ──────────────────────────────────────── */
/* ── Products Coming Soon ──────────────────────────────────── */
.products-coming-soon {
  text-align: center;
  padding: 3rem 0 2rem;
}

.coming-soon-eyebrow {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--primary);
  margin: 0 0 .75rem;
}

.coming-soon-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--text-dark);
  margin: 0 0 1rem;
}

.coming-soon-sub {
  font-size: 1rem;
  color: var(--text-mid);
  max-width: 480px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

.coming-soon-products {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 3rem;
}

.cs-product-img {
  width: 130px;
  height: 130px;
  border-radius: var(--radius-md);
  background-image: var(--img);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--bg-alt);
  border: 1px solid var(--border);
}

@media (max-width: 480px) {
  .cs-product-img { width: 100px; height: 100px; }
}

.product-filters {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 2.5rem;
  justify-content: center;
}

.filter-btn {
  padding: .5rem 1.25rem;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  background: var(--bg-white);
  color: var(--text-mid);
  font-family: var(--font-sans);
  font-size: .85rem;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--duration) var(--ease),
              color      var(--duration) var(--ease),
              border-color var(--duration) var(--ease);
}

.filter-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.filter-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}


/* ── PRODUCT GRID ─────────────────────────────────────────── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.75rem;
}

.product-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--duration) var(--ease),
              box-shadow var(--duration) var(--ease);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.product-card.hidden {
  display: none;
}

.product-img {
  height: 240px;
  background-image: var(--img);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--primary-faint);
  position: relative;
}

/* Placeholder bg colors when no product photo yet */
.product-card:nth-child(8n+1) .product-img { background-color: #dce8ee; }
.product-card:nth-child(8n+2) .product-img { background-color: #f5edd9; }
.product-card:nth-child(8n+3) .product-img { background-color: #e4d8e8; }
.product-card:nth-child(8n+4) .product-img { background-color: #d4e4e8; }
.product-card:nth-child(8n+5) .product-img { background-color: #e8e0d4; }
.product-card:nth-child(8n+6) .product-img { background-color: #d8e8d4; }
.product-card:nth-child(8n+7) .product-img { background-color: #e8e8d4; }
.product-card:nth-child(8n+8) .product-img { background-color: #e8d4d4; }

.product-badge {
  position: absolute;
  top: .75rem;
  left: .75rem;
  background: var(--primary);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .25rem .65rem;
  border-radius: 100px;
}

.product-badge.new  { background: #4caf7d; }
.product-badge.gift { background: var(--accent); }

.product-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .4rem;
}

.product-category {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--primary-light);
  margin: 0;
}

.product-name {
  font-size: 1.05rem;
  margin: 0;
  line-height: 1.3;
}

.product-desc {
  font-size: .85rem;
  color: var(--text-light);
  line-height: 1.55;
  margin: .15rem 0 .5rem;
  flex: 1;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: .25rem;
}

.product-price {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
}

.products-empty {
  text-align: center;
  padding: 4rem 0;
  color: var(--text-light);
  font-size: 1.05rem;
}


/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .booking-features { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .section { padding: 4rem 0; }

  /* Hero */
  .hero-heading { font-size: 2.5rem; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .about-img-wrap { display: none; }  /* video now lives in the hero on mobile */
  .discover-btn { display: block; text-align: center; }

  /* Booking features — 2×2 grid on mobile */
  .booking-features { grid-template-columns: repeat(2, 1fr); gap: 0.85rem; }
  .booking-feature  { padding: 0.9rem; }
  .feature-icon     { font-size: 1.25rem; }
  .booking-feature strong { font-size: 0.875rem; }
  .booking-feature p      { font-size: 0.78rem; }

  /* Waitlist */
  .waitlist-wrap { grid-template-columns: 1fr; gap: 2rem; }
  .form-row      { grid-template-columns: 1fr; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: 1.75rem; }
}

@media (max-width: 480px) {
  /* Tighter container gutters on small phones */
  .container { padding: 0 1rem; }

  /* Hero: smaller brand on phones */
  .hero-brand    { font-size: clamp(4rem, 18vw, 6rem); }
  .hero-subtext  { font-size: .95rem; }

  /* Tighter section spacing */
  .section { padding: 2.75rem 0; }
  .section-header { margin-bottom: 1.25rem; }
  .section-title  { font-size: clamp(1.4rem, 5vw, 1.9rem); }
  .section-sub    { font-size: .9rem; }

  /* Full-width stacked hero buttons */
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; max-width: 280px; }

  /* All grids → single column */
  .services-grid   { grid-template-columns: 1fr; }
  .locations-grid  { grid-template-columns: 1fr; }
  .product-grid    { grid-template-columns: 1fr; }
  .giftcard-inner  { flex-direction: column; align-items: center; text-align: center; gap: .4rem; }
  .giftcard-text   { flex-direction: column; align-items: center; text-align: center; gap: .15rem; }
  .giftcard-banner { padding: .45rem 0; }

  /* Service cards: shorter image on small phones */
  .service-img { height: 180px; }
  .service-body { padding: 1.1rem; }

  /* Services: grid shown on desktop */
}

/* ── SERVICE CARDS: MOBILE OVERLAY STYLE ─────────────────────
   Photo fills the card, gradient rises from bottom,
   only name + price shown. 2-column grid cuts scroll length. */
@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
    gap: .65rem;
  }

  .service-card {
    position: relative;
    height: 155px;
    overflow: hidden;
    border-radius: var(--radius-md);
    cursor: pointer;
  }

  .service-card .service-img {
    position: absolute;
    inset: 0;
    height: 100%;
    background-image:
      linear-gradient(to top,
        rgba(28, 40, 47, 0.93) 0%,
        rgba(28, 40, 47, 0.45) 50%,
        transparent 100%),
      var(--img);
    background-size: cover;
    background-position: center;
  }

  .service-card .service-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: .7rem .8rem;
    display: flex;
    flex-direction: column;
    gap: .15rem;
    background: transparent;
  }

  .service-card .service-body h3 {
    order: 1;
    font-size: .85rem;
    font-family: var(--font-serif);
    color: #fff;
    margin: 0;
    line-height: 1.25;
    text-shadow: 0 1px 4px rgba(0,0,0,.5);
  }

  .service-card .service-meta {
    order: 2;
    margin: 0;
    gap: .3rem;
  }

  .service-card .service-price {
    font-size: .82rem;
    color: var(--accent);
  }

  /* Hide everything except name + price on mobile */
  .service-card .service-duration,
  .service-card .service-skin-type,
  .service-card .service-body > p,
  .service-card .btn-sm {
    display: none;
  }

  /* Tap hint below the toggle button */
  .services-tap-hint {
    display: block;
    text-align: center;
    font-size: .75rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: .6rem;
    margin-bottom: 1rem;
  }
}

/* ── LOCATION CARDS: MOBILE COMPACT TILES ───────────────────── */
@media (max-width: 600px) {
  .locations-grid { grid-template-columns: 1fr 1fr; gap: .75rem; }

  .location-card  { height: 155px; overflow: hidden; cursor: pointer; }
  .location-img   { height: 100%; }
  .location-img::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.7) 0%, rgba(0,0,0,.05) 55%);
    z-index: 0;
  }
  .location-card-name-overlay {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
    padding: .35rem .6rem .5rem;
    font-size: .78rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.25;
    text-shadow: 0 1px 3px rgba(0,0,0,.5);
  }
  .location-body { display: none; }
}

/* ── LOCATION DETAIL MODAL (mobile only) ────────────────────── */
.loc-modal-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.6);
  z-index: 1200;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}
.loc-modal-backdrop.open { display: flex; }

.loc-modal {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 420px;
  max-height: 88vh;
  overflow-y: auto;
  position: relative;
  transform: scale(.92);
  opacity: 0;
  transition: transform .25s cubic-bezier(.4,0,.2,1),
              opacity .25s cubic-bezier(.4,0,.2,1);
}
.loc-modal-backdrop.open .loc-modal {
  transform: scale(1);
  opacity: 1;
}

.loc-modal-close {
  position: absolute;
  top: .75rem;
  right: .75rem;
  z-index: 2;
  background: rgba(0,0,0,.45);
  border: none;
  border-radius: 50%;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
}

.loc-modal-img {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.loc-modal-body {
  padding: 1.25rem 1.25rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.loc-modal-badge {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--primary);
  background: rgba(var(--primary-rgb, 10,35,55),.08);
  border-radius: 100px;
  padding: .2rem .65rem;
  align-self: flex-start;
}

.loc-modal-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--text-dark);
  margin: 0;
}

.loc-modal-desc {
  font-size: .9rem;
  color: var(--text-mid);
  line-height: 1.55;
  margin: 0;
}

.loc-modal-addr {
  font-size: .85rem;
  color: var(--text-light);
  margin: 0;
}

.loc-modal-phone {
  font-size: .9rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
}

.loc-modal-select { margin-top: .75rem; }

.loc-modal-details { font-size: .85rem; color: var(--text-mid); line-height: 1.6; }
.loc-modal-details p { margin: 0 0 .4rem; }

/* ── SERVICE DETAIL MODAL (mobile bottom sheet) ─────────────── */
.svc-modal-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.6);
  z-index: 1200;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}

.svc-modal-backdrop.open {
  display: flex;
}

.svc-modal {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 420px;
  max-height: 88vh;
  overflow-y: auto;
  transform: scale(.92);
  opacity: 0;
  transition: transform .25s cubic-bezier(.4,0,.2,1),
              opacity .25s cubic-bezier(.4,0,.2,1);
}

.svc-modal-backdrop.open .svc-modal {
  transform: scale(1);
  opacity: 1;
}

.svc-modal-img {
  width: 100%;
  height: 220px;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  flex-shrink: 0;
}

.svc-modal-body {
  padding: 1.25rem 1.25rem 2rem;
}

.svc-modal-meta {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: .5rem;
}

.svc-modal-price {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
}

.svc-modal-duration {
  font-size: .75rem;
  color: var(--text-light);
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: .2rem .6rem;
}

.svc-modal-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--text-dark);
  margin-bottom: .3rem;
}

.svc-modal-skin {
  font-size: .8rem;
  color: var(--accent);
  font-style: italic;
  font-weight: 700;
  margin-bottom: .75rem;
}

.svc-modal-desc {
  font-size: .9rem;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.svc-modal-close {
  position: absolute;
  top: .75rem;
  right: .75rem;
  background: rgba(0,0,0,.45);
  border: none;
  color: #fff;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.svc-modal-inner {
  position: relative;
}

.services-tap-hint { display: none; }

/* Hide waitlist link everywhere */
.drawer-links li:has(a[href="waitlist.html"]),
.footer-col li:has(a[href="waitlist.html"]) { display: none; }

/* Services toggle button — hidden on desktop, shown on mobile */
.services-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  margin: 0 auto 1.75rem;
  background: var(--primary);
  color: #fff;
  border: 2px solid var(--primary);
  padding: .9rem 1.75rem;
  border-radius: 99px;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .03em;
  cursor: pointer;
  width: 100%;
  max-width: 320px;
  box-shadow: var(--shadow-sm);
  transition: background var(--duration) var(--ease),
              transform  var(--duration) var(--ease);
}
.services-toggle:active { transform: scale(.97); }
.services-toggle svg {
  transition: transform .35s var(--ease);
  flex-shrink: 0;
}
.services-toggle.open { background: var(--primary-dark); }
.services-toggle.open svg { transform: rotate(180deg); }

/* Services grid always visible on mobile */
@media (max-width: 600px) {
  .services-toggle { display: none; }
}

/* Floating hide-services button (mobile only) */
#hideServicesFab {
  display: none;
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  z-index: 10000;
  background: #fff;
  color: var(--primary-dark);
  border: 2px solid var(--primary);
  border-radius: 99px;
  padding: .6rem 1.6rem;
  font-family: var(--font-sans);
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .02em;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(0,0,0,.18);
  opacity: 0;
  pointer-events: none;
  transition: transform .35s cubic-bezier(.34,1.3,.64,1), opacity .3s ease;
  white-space: nowrap;
}
#hideServicesFab.visible,
#hideLocationsFab.visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: all;
}
#hideLocationsFab {
  display: none;
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  z-index: 10000;
  background: #fff;
  color: var(--primary-dark);
  border: 2px solid var(--primary);
  border-radius: 99px;
  padding: .6rem 1.6rem;
  font-family: var(--font-sans);
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .02em;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(0,0,0,.18);
  opacity: 0;
  pointer-events: none;
  transition: transform .35s cubic-bezier(.34,1.3,.64,1), opacity .3s ease;
  white-space: nowrap;
}
@media (max-width: 600px) {
  #hideServicesFab  { display: block; }
  #hideLocationsFab { display: block; }
}

/* ── Locations toggle (mirrors services toggle) ─────────── */
.locations-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  margin: 0 auto 1.75rem;
  background: var(--primary);
  color: #fff;
  border: 2px solid var(--primary);
  padding: .9rem 1.75rem;
  border-radius: 99px;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .03em;
  cursor: pointer;
  width: 100%;
  max-width: 320px;
  box-shadow: var(--shadow-sm);
  transition: background var(--duration) var(--ease),
              transform  var(--duration) var(--ease);
}
.locations-toggle:active { transform: scale(.97); }
.locations-toggle svg {
  transition: transform .35s var(--ease);
  flex-shrink: 0;
}
.locations-toggle.open { background: var(--primary-dark); }
.locations-toggle.open svg { transform: rotate(180deg); }

.locations-toggle { display: none; }
@media (min-width: 601px) { .location-card-name-overlay { display: none; } }


/* ═══════════════════════════════════════════════════════════
   BOOKING WIZARD — booking.html
   ═══════════════════════════════════════════════════════════ */

/* ── Page layout ─────────────────────────────────────────── */
.booking-main {
  min-height: 100vh;
  padding: calc(var(--nav-height) + 2.5rem) 1.25rem 4rem;
  background: var(--bg-light);
}

/* ── Wizard container ────────────────────────────────────── */
.booking-wizard {
  max-width: 680px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 2rem 2rem 1.5rem;
  transition: max-width .3s ease;
}

@media (min-width: 769px) {
  .booking-main.bw-wide-step .booking-wizard { max-width: 960px; }
  .booking-main.bw-wide-step .bw-header      { max-width: 960px; }
}

/* ── Header & progress ───────────────────────────────────── */
.bw-header {
  max-width: 680px;
  margin: 0 auto 1.75rem;
  text-align: center;
}

.bw-page-title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  color: var(--text-dark);
  margin: 0 0 1.25rem;
}

.bw-progress-track {
  height: 6px;
  background: var(--border);
  border-radius: 99px;
  overflow: hidden;
  margin-bottom: .6rem;
}

.bw-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 99px;
  transition: width .4s var(--ease);
}

.bw-step-label {
  font-size: .8rem;
  color: var(--text-light);
  letter-spacing: .04em;
  text-transform: uppercase;
  margin: 0;
}

/* ── Step show/hide ──────────────────────────────────────── */
.bw-step { display: none; }
.bw-step.active {
  display: block;
  animation: step-fade-in .65s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

@keyframes step-fade-in {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Step header ─────────────────────────────────────────── */
.bw-step-header { margin-bottom: 1.5rem; }

.bw-step-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--text-dark);
  margin: 0 0 .35rem;
}

.bw-step-sub {
  font-size: .9rem;
  color: var(--text-light);
  margin: 0;
}

/* ── STEP 1: Guest stepper ───────────────────────────────── */
.bw-guest-grid { padding: .5rem 0 1rem; }

.bw-stepper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.75rem;
  padding: .75rem 0;
}

.bw-stepper-btn {
  width: 54px;
  height: 54px;
  border: 2px solid var(--primary);
  border-radius: 50%;
  background: #fff;
  color: var(--primary);
  font-size: 1.8rem;
  line-height: 1;
  font-weight: 300;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--duration) var(--ease),
              color     var(--duration) var(--ease);
  touch-action: manipulation;
}

.bw-stepper-btn:hover:not(:disabled) {
  background: var(--primary);
  color: #fff;
}

.bw-stepper-btn:disabled {
  border-color: var(--border);
  color: var(--border);
  cursor: default;
}

.bw-stepper-display {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 80px;
}

.bw-stepper-num {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
  color: var(--text-dark);
}

.bw-stepper-lbl {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-light);
  margin-top: .25rem;
}

.bw-large-group-note {
  margin: 1rem 0 0;
  padding: .9rem 1.1rem;
  background: #fdf9f2;
  border: 1px solid var(--accent-light);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius-md);
  font-size: .875rem;
  color: var(--text-mid);
  text-align: center;
  line-height: 1.6;
}

.bw-large-group-note a { color: var(--accent); font-weight: 700; }

/* ── STEP 2: Region Selection ────────────────────────────── */
[data-step="2"] .bw-step-header {
  border-bottom: 1px solid var(--border);
  padding-bottom: .75rem;
  margin-bottom: .75rem;
}

.bw-region-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: .5rem;
}

.bw-region-card {
  background: linear-gradient(155deg, #fdf8f0 0%, #f9f1e2 100%);
  border: 1.5px solid rgba(201,169,110,.3);
  border-radius: 16px;
  padding: 2rem 1.25rem 1.5rem;
  text-align: center;
  cursor: pointer;
  transition: border-color .2s, box-shadow .2s, transform .2s, background .2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  position: relative;
  user-select: none;
}

.bw-region-card:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 28px rgba(201,169,110,.22);
  transform: translateY(-3px);
}

.bw-region-card.selected {
  background: linear-gradient(155deg, #f5edd9 0%, #eddfc5 100%);
  border-color: var(--accent);
  border-width: 2px;
  box-shadow: 0 4px 16px rgba(201,169,110,.18);
}

/* Gold circle icon badge */
.bw-region-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(145deg, #c9a96e, #b8903e);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(184,144,62,.35);
  transition: box-shadow .2s, transform .2s;
  flex-shrink: 0;
}

.bw-region-card:hover .bw-region-icon-wrap {
  box-shadow: 0 6px 20px rgba(184,144,62,.45);
  transform: scale(1.06);
}

.bw-region-card.selected .bw-region-icon-wrap {
  background: linear-gradient(145deg, #b8903e, #9e7a30);
  box-shadow: 0 4px 16px rgba(158,122,48,.4);
}

.bw-region-pin-svg {
  width: 26px;
  height: 32px;
  fill: white;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,.18));
}

/* Region label block */
.bw-region-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .15rem;
}

.bw-region-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
}

/* Selected checkmark badge */
.bw-region-check {
  position: absolute;
  top: .6rem;
  right: .7rem;
  font-size: .8rem;
  font-weight: 800;
  color: white;
  background: var(--accent);
  border-radius: 50%;
  width: 1.35rem;
  height: 1.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 4px rgba(0,0,0,.15);
}

/* ── STEP 3: Locations ───────────────────────────────────── */
[data-step="3"] .bw-step-header {
  border-bottom: 1px solid var(--border);
  padding-bottom: .75rem;
  margin-bottom: .75rem;
}

.bw-location-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.bw-location-card {
  padding: 1.25rem;
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: border-color var(--duration) var(--ease),
              box-shadow   var(--duration) var(--ease);
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}
/* Dark overlay so text stays readable over the photo */
.bw-location-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.48);
  transition: background .3s ease;
  pointer-events: none;
  border-radius: inherit;
}
/* All content sits above the overlay */
.bw-location-card > * { position: relative; z-index: 1; }

.bw-location-card:hover::before {
  background: rgba(0,0,0,.32);
}
.bw-location-card:hover {
  border-color: rgba(255,255,255,.5);
}

.bw-location-card.selected::before {
  background: rgba(10,35,55,.55);
}
.bw-location-card.selected {
  border-color: rgba(255,255,255,.8);
  box-shadow: 0 0 0 3px rgba(107,128,144,.25);
}

.bw-loc-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: .6rem;
}

.bw-loc-badge {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #fff;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 99px;
  padding: .2rem .6rem;
}

.bw-loc-check {
  width: 22px;
  height: 22px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  flex-shrink: 0;
}

.bw-loc-name {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 .35rem;
}

.bw-loc-addr {
  font-size: .8rem;
  color: rgba(255,255,255,.85);
  margin: 0 0 .2rem;
  line-height: 1.4;
}

.bw-loc-phone {
  font-size: .8rem;
  color: rgba(255,255,255,.7);
  margin: 0;
}

.bw-loc-desc {
  font-size: .78rem;
  color: rgba(255,255,255,.85);
  margin: 0 0 .5rem;
  line-height: 1.45;
}

/* ── Tab burst animation ─────────────────────────────────── */
@keyframes bw-burst-line {
  0%   { transform: rotate(var(--angle)) translateY(0);     opacity: 1; }
  70%  { opacity: 1; }
  100% { transform: rotate(var(--angle)) translateY(-18px); opacity: 0; }
}
.bw-burst {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  width: 0;
  height: 0;
}
.bw-burst-line {
  position: absolute;
  width: 2.5px;
  border-radius: 2px;
  left: -1.25px;
  animation: bw-burst-line 0.45s cubic-bezier(.2, .8, .3, 1) forwards;
}

.bw-loc-recommend[hidden] { display: none; }
.bw-loc-recommend {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  background: var(--primary-faint);
  border: 1px solid var(--primary-light);
  border-radius: var(--radius);
  padding: .65rem 1rem;
  font-size: .85rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.bw-loc-recommend-icon { font-size: 1rem; flex-shrink: 0; line-height: 1; }
.bw-loc-recommend-text { flex: 1; line-height: 1.5; }

.bw-loc-best-badge {
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  background: var(--primary);
  color: #fff;
  padding: .2rem .5rem;
  border-radius: 999px;
  margin-left: auto;
}

.bw-location-card.bw-loc-recommended {
  border-color: var(--primary);
}

/* ── Opening Soon ribbon ───────────────────────────── */
.bw-loc-opening-soon {
  position: absolute;
  top: 12px;
  right: -1px;
  background: var(--primary);
  color: #fff;
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: .25rem .55rem;
  border-radius: 3px 0 0 3px;
  line-height: 1;
  box-shadow: -1px 1px 4px rgba(0,0,0,.12);
}
.bw-loc-now-open {
  background: var(--accent);
  color: #3a2e1a;
}

.bw-loc-call-only {
  background: #6b8090;
  color: #fff;
}

/* ── No Preference card ────────────────────────────── */
.bw-loc-no-pref {
  cursor: default;
  border-style: dashed;
  grid-column: span 2;
  text-align: center;
}
.bw-loc-no-pref .bw-loc-top {
  justify-content: center;
}
.bw-loc-no-pref:hover {
  border-color: var(--primary-light);
  background: transparent;
}
.bw-loc-no-pref.selected {
  border-style: solid;
}
.bw-loc-np-desc {
  font-size: .8rem;
  color: var(--text-mid);
  margin: 0 0 .75rem;
  line-height: 1.4;
}
.bw-loc-group-bubbles {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  justify-content: center;
}
.bw-loc-group-bubble {
  background: var(--primary-faint);
  border: 2px solid var(--border);
  border-radius: 99px;
  padding: .4rem 1rem;
  font-size: .85rem;
  font-weight: 700;
  color: var(--text-dark);
  cursor: pointer;
  transition: border-color var(--duration) var(--ease),
              background   var(--duration) var(--ease),
              color        var(--duration) var(--ease);
}
.bw-loc-group-bubble:hover {
  border-color: var(--primary-light);
  background: var(--primary-faint);
}
.bw-loc-group-bubble.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

/* ── Slot badge for group mode ─────────────────────── */
.bw-slot-btn.bw-slot-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: .5rem .9rem .45rem;
  line-height: 1.2;
}
.bw-slot-loc-badge {
  font-size: .62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-top: .2rem;
  color: var(--primary);
  opacity: .8;
}
.bw-slot-btn.bw-slot-group.selected .bw-slot-loc-badge {
  color: rgba(255,255,255,.8);
  opacity: 1;
}

.bw-location-card.bw-loc-unavailable {
  opacity: .45;
  cursor: not-allowed;
  pointer-events: none;
}

.bw-loc-full-badge {
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  background: #aaa;
  color: #fff;
  padding: .2rem .5rem;
  border-radius: 999px;
  margin-left: auto;
}

.bw-loc-sat-badge {
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  background: #b07d2e;
  color: #fff;
  padding: .2rem .5rem;
  border-radius: 999px;
  margin-left: auto;
}

.bw-loc-call-note {
  font-size: .8rem;
  color: #7a5c2e;
  background: #fdf3e3;
  border: 1px solid #e8d5b0;
  border-radius: 8px;
  padding: .5rem .75rem;
  margin: .5rem 0 .25rem;
  line-height: 1.5;
}
.bw-loc-call-note a {
  color: #7a5c2e;
  font-weight: 700;
  text-decoration: none;
}
.bw-loc-call-note a:hover { text-decoration: underline; }

/* ── STEP 3: Services ────────────────────────────────────── */
.bw-guest-tabs {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.bw-tab {
  padding: .5rem 1rem;
  font-size: .875rem;
  font-family: var(--font-sans);
  border: 2px solid var(--border);
  border-radius: 99px;
  background: #fff;
  cursor: pointer;
  color: var(--text-mid);
  transition: border-color var(--duration) var(--ease),
              background   var(--duration) var(--ease),
              color        var(--duration) var(--ease);
}

.bw-tab:hover { border-color: var(--primary-light); color: var(--primary); }
.bw-tab.active {
  border-color: var(--primary);
  background: var(--primary);
  color: #fff;
}

.bw-tab-check { opacity: .8; }

.bw-section-label {
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--text-light);
  margin: 0 0 .9rem;
  display: flex;
  align-items: center;
  gap: .75rem;
}

.bw-addons-subtitle {
  font-size: .75rem;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--text-light);
  font-style: italic;
}

.bw-addons-note {
  font-size: .78rem;
  color: var(--accent);
  font-style: italic;
  margin-top: .35rem;
  margin-bottom: .5rem;
}

.bw-service-section { margin-bottom: 1.75rem; }

.bw-service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: .75rem;
}

.bw-service-card {
  position: relative;
  padding: 1rem;
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: border-color var(--duration) var(--ease),
              background   var(--duration) var(--ease);
  overflow: hidden;
}

.bw-service-card:hover { border-color: var(--primary-light); background: var(--primary-faint); }

.bw-service-card.selected {
  border-color: var(--primary);
  background: var(--primary-faint);
  box-shadow: 0 0 0 3px rgba(107,128,144,.12);
}

.bw-service-card.featured { border-color: var(--accent-light); }
.bw-service-card.featured:hover,
.bw-service-card.featured.selected { border-color: var(--accent); }

.bw-svc-featured {
  display: block;
  font-size: .7rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: .4rem;
}

.bw-svc-name {
  font-weight: 700;
  font-size: .95rem;
  color: var(--text-dark);
  margin-bottom: .3rem;
}

.bw-svc-desc {
  font-size: .78rem;
  color: var(--text-light);
  line-height: 1.4;
  margin-bottom: .6rem;
}

.bw-svc-meta {
  display: flex;
  align-items: center;
  gap: .5rem;
}

.bw-svc-price {
  font-weight: 700;
  font-size: .95rem;
  color: var(--primary);
}

.bw-svc-dur {
  font-size: .75rem;
  color: var(--text-light);
}

.bw-svc-selected-badge {
  margin-top: .5rem;
  font-size: .75rem;
  font-weight: 700;
  color: var(--primary);
}

/* ── Add-ons ─────────────────────────────────────────────── */
.bw-addons-section { padding-top: 1.25rem; }

.bw-addon {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  padding: .9rem 1rem;
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: .6rem;
  cursor: pointer;
  transition: border-color var(--duration) var(--ease),
              background   var(--duration) var(--ease);
}

.bw-addon:hover { border-color: var(--accent-light); background: #fdf9f2; }

.bw-addon.checked {
  border-color: var(--accent);
  background: #fdf9f2;
  box-shadow: 0 0 0 3px rgba(201,169,110,.12);
}

.bw-addon input[type="checkbox"] {
  margin-top: .25rem;
  width: 17px;
  height: 17px;
  accent-color: var(--accent);
  flex-shrink: 0;
  cursor: pointer;
}

.bw-addon-body { flex: 1; min-width: 0; }

.bw-addon-top {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .4rem;
  margin-bottom: .3rem;
}

.bw-addon-name {
  font-weight: 700;
  font-size: .9rem;
  color: var(--text-dark);
}

.bw-addon-badge {
  font-size: .7rem;
  font-weight: 700;
  background: #fff3e0;
  color: #b7600a;
  border: 1px solid #f5c27a;
  border-radius: 99px;
  padding: .15rem .5rem;
}

.bw-addon-badge-top {
  background: #fff0e0;
  color: #a0480a;
  border-color: #f0a060;
  box-shadow: 0 0 0 1px #f0a060 inset;
}

.bw-addon-price {
  font-weight: 700;
  font-size: .85rem;
  color: var(--accent);
  margin-left: auto;
}

.bw-addon-dur {
  font-size: .78rem;
  color: var(--text-light);
}

.bw-addon-desc {
  font-size: .8rem;
  color: var(--text-light);
  line-height: 1.45;
  margin: 0;
}

/* ── STEP 4: Date & Time ─────────────────────────────────── */
.bw-datetime-wrap { display: flex; flex-direction: column; gap: 1rem; }

/* Soonest availability banner */
.bw-soonest {
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-wrap: wrap;
  background: #f0f7f4;
  border: 1px solid #b2d8c9;
  border-left: 4px solid #4a7a6b;
  border-radius: var(--radius-md);
  padding: .7rem 1rem;
  font-size: .875rem;
  color: var(--text-mid);
  margin-bottom: .25rem;
}

.bw-soonest strong { color: #2c5a4a; }

.bw-soonest-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #4a7a6b;
  flex-shrink: 0;
}

.bw-soonest-loading { color: var(--text-light); font-style: italic; font-size: .875rem; margin: 0; }
.bw-soonest-none    { font-size: .875rem; color: #c0392b; margin: 0; }
.bw-soonest-none a  { color: #c0392b; }

/* Calendar container */
.bw-calendar {
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  user-select: none;
}

.bw-cal-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--primary);
  color: #fff;
  padding: .75rem 1rem;
}

.bw-cal-arrow {
  background: none;
  border: none;
  color: rgba(255,255,255,.85);
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
  padding: .1rem .4rem;
  border-radius: var(--radius);
  transition: background var(--duration) var(--ease), color var(--duration) var(--ease);
}

.bw-cal-arrow:hover { background: rgba(255,255,255,.18); color: #fff; }

.bw-cal-month-label {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
}

.bw-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  background: #fff;
}

.bw-cal-day-hdr {
  text-align: center;
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--text-light);
  padding: .55rem 0 .4rem;
  border-bottom: 1px solid var(--border);
}

.bw-cal-cell {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  min-height: 44px;
  border-right: 1px solid var(--bg-alt);
  border-bottom: 1px solid var(--bg-alt);
  cursor: pointer;
  transition: background var(--duration) var(--ease);
}

.bw-cal-cell:nth-child(7n) { border-right: none; }
.bw-cal-cell:hover:not(.bw-cal-disabled) { background: var(--primary-faint); }

.bw-cal-empty    { cursor: default; }
.bw-cal-disabled { cursor: default; opacity: .3; pointer-events: none; }
.bw-cal-beyond   { opacity: .45; color: var(--text-light); }

.bw-cal-today .bw-cal-num {
  background: var(--primary-faint);
  border: 2px solid var(--primary-light);
  border-radius: 50%;
}

.bw-cal-selected { background: var(--primary) !important; }
.bw-cal-selected .bw-cal-num { color: #fff; font-weight: 700; }
.bw-cal-selected .bw-cal-dot { background: rgba(255,255,255,.75); }

.bw-cal-num {
  font-size: .85rem;
  font-weight: 500;
  color: var(--text-dark);
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.bw-cal-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #4a7a6b;
}

.bw-cal-closed {
  font-size: .52rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: .02em;
}

/* Time slot area below calendar */
.bw-slots { margin-top: 1.1rem; }

.bw-slots-hint,
.bw-slots-loading,
.bw-slots-empty,
.bw-slots-error {
  font-size: .9rem;
  color: var(--text-light);
  font-style: italic;
  margin: 0;
}

.bw-slots-error { color: #c0392b; font-style: normal; }
.bw-slots-error a { color: #c0392b; }
.bw-slots-call { font-size: .9rem; color: var(--text-dark); font-style: italic; margin: 0; }
.bw-slots-call a { color: var(--primary); }

.bw-slots-title {
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--text-light);
  margin: 0 0 .75rem;
}

.bw-slots-grid {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}

.bw-slot-btn {
  padding: .55rem 1rem;
  border: 2px solid var(--border);
  border-radius: 99px;
  background: #fff;
  font-family: var(--font-sans);
  font-size: .875rem;
  color: var(--text-dark);
  cursor: pointer;
  transition: border-color var(--duration) var(--ease),
              background   var(--duration) var(--ease),
              color        var(--duration) var(--ease);
}

.bw-slot-btn:hover { border-color: var(--primary-light); background: var(--primary-faint); }

.bw-slot-btn.selected {
  border-color: var(--primary);
  background: var(--primary);
  color: #fff;
}

/* ── STEP 5: Contact form ────────────────────────────────── */
.bw-form { display: flex; flex-direction: column; gap: 1rem; }

.bw-form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.bw-form-group { display: flex; flex-direction: column; gap: .4rem; }

.bw-form-group label {
  font-size: .85rem;
  font-weight: 700;
  color: var(--text-dark);
}

.bw-form-group input,
.bw-form-group textarea {
  padding: .7rem .9rem;
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  font-family: var(--font-sans);
  font-size: .95rem;
  color: var(--text-dark);
  background: #fff;
  transition: border-color var(--duration) var(--ease);
  resize: vertical;
}

.bw-form-group input:focus,
.bw-form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(107,128,144,.12);
}

/* ── STEP 6: Summary ─────────────────────────────────────── */
.bw-summary-card {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.bw-sum-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  font-size: .875rem;
}

.bw-sum-row span:first-child { color: var(--text-light); flex-shrink: 0; }
.bw-sum-row span:last-child  { color: var(--text-dark); font-weight: 600; text-align: right; }

.bw-sum-guests {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: .75rem 0;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.bw-sum-guest { font-size: .875rem; }
.bw-sum-guest-label { font-weight: 700; color: var(--text-dark); margin-bottom: .2rem; }
.bw-sum-guest-svc   { color: var(--text-mid); }
.bw-sum-addon       { color: var(--text-light); font-size: .825rem; padding-left: .75rem; }

.bw-sum-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  border-top: 2px solid var(--border);
  padding-top: .75rem;
  margin-top: .25rem;
}

.bw-sum-total span:last-child { color: var(--primary); font-size: 1.2rem; }

.bw-confirm-wrap { display: flex; flex-direction: column; gap: .75rem; align-items: center; }

.bw-confirm-note {
  font-size: .78rem;
  color: var(--text-light);
  text-align: center;
  margin: 0;
}

/* ── Error message ───────────────────────────────────────── */
.bw-error {
  max-width: 680px;
  margin: .75rem auto 0;
  color: #c0392b;
  font-size: .875rem;
  background: #fdf0ee;
  border: 1px solid #f5c6c2;
  border-radius: var(--radius-md);
  padding: .65rem 1rem;
  text-align: center;
}

/* ── Navigation buttons ──────────────────────────────────── */
.bw-nav {
  max-width: 680px;
  margin: 1.25rem auto 0;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.bw-nav .btn { min-width: 120px; }

/* ── Success screen ──────────────────────────────────────── */
.bw-success-step.active { display: flex; align-items: center; justify-content: center; }

.bw-success {
  text-align: center;
  padding: 2rem 1rem;
}

.bw-success-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary), #4a7a6b);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin: 0 auto 1.25rem;
}

.bw-success h2 {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  color: var(--text-dark);
  margin: 0 0 .75rem;
}

.bw-success-summary {
  display: inline-flex;
  flex-direction: column;
  gap: .6rem;
  margin-top: 1.25rem;
  text-align: left;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem 1.5rem;
  min-width: 260px;
}

.bw-success-row {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  font-size: .95rem;
  color: var(--text-dark);
  line-height: 1.4;
}

.bw-success p {
  color: var(--text-mid);
  font-size: 1rem;
  margin: 0;
  line-height: 1.6;
}

.bw-success-call-note {
  margin-top: .85rem !important;
  font-size: .82rem !important;
  color: var(--text-light) !important;
  font-style: italic;
}

.bw-success-call-note a {
  color: var(--primary);
  text-decoration: underline;
}

.bw-booking-ref {
  margin-top: .35rem !important;
  font-size: .75rem !important;
  color: var(--text-light) !important;
  letter-spacing: .02em;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 600px) {
  .booking-main            { padding-top: calc(var(--nav-height) + 1.5rem); padding-left: .75rem; padding-right: .75rem; padding-bottom: 3rem; }
  .booking-wizard          { padding: 1.5rem 1.1rem 1.25rem; border-radius: var(--radius-md); }
  .bw-header               { margin-bottom: 1.25rem; }
  .bw-nav                  { flex-direction: column-reverse; }
  .bw-nav .btn             { width: 100%; }
  .bw-guest-grid           { gap: .5rem; }
  .bw-guest-btn            { width: 62px; padding: .75rem .4rem; }
  .bw-slot-btn             { flex: 1; min-width: calc(50% - .25rem); text-align: center; }

  /* Region grid: single column on mobile, horizontal card layout */
  .bw-region-grid          { grid-template-columns: 1fr; gap: .65rem; }
  .bw-region-card          { flex-direction: row; padding: 1rem 1.25rem; text-align: left; gap: 1rem; }
  .bw-region-icon-wrap     { width: 50px; height: 50px; flex-shrink: 0; }
  .bw-region-text          { align-items: flex-start; }
  .bw-region-name          { font-size: .95rem; }
  .bw-region-check         { top: .5rem; right: .6rem; }
  /* Location grid: single column, no squishing */
  .bw-location-grid        { grid-template-columns: 1fr; gap: .6rem; }
  .bw-loc-no-pref          { grid-column: 1 / -1; }
  .bw-location-card        { padding: .85rem .9rem; }
  .bw-loc-name             { font-size: .92rem; }
  .bw-loc-addr,
  .bw-loc-phone            { font-size: .76rem; }
  .bw-loc-desc             { font-size: .76rem; }
  .bw-loc-recommend        { font-size: .76rem; padding: .4rem .65rem; }
}

@media (max-width: 480px) {
  .booking-wizard          { padding: 1.25rem .9rem 1rem; }
  .bw-step-title           { font-size: 1.2rem; }
  .bw-stepper              { gap: 1.25rem; }
  .bw-stepper-btn          { width: 48px; height: 48px; font-size: 1.5rem; }
  .bw-stepper-num          { font-size: 2.8rem; }
  .bw-service-card         { padding: .85rem; }
  .bw-svc-name             { font-size: .9rem; }
  .bw-addon                { padding: .75rem .85rem; }
  .bw-summary-card         { padding: 1rem; }
  .sq-policy-section       { margin-top: 1.25rem; }
  .sq-payment-section      { padding: .9rem; margin-top: 1.25rem; }
  .bw-cal-num              { width: 26px; height: 26px; font-size: .8rem; }
  .bw-cal-cell             { min-height: 40px; }
}


/* ── Calendar assistance line ────────────────────────────── */
.bw-cal-assist {
  max-width: 680px;
  margin: 1.25rem auto 0;
  text-align: center;
  font-size: .87rem;
  color: var(--text-light);
}
.bw-cal-assist a { color: var(--primary); font-weight: 600; }

/* ── Waitlist hint (step 5 bottom) ───────────────────────── */
.bw-waitlist-hint {
  max-width: 680px;
  margin: 1.5rem auto 0;
  text-align: center;
  font-size: .87rem;
  color: var(--text-light);
}

.bw-waitlist-hint a {
  color: var(--primary);
  text-decoration: underline;
  font-weight: 600;
}

/* ═══════════════════════════════════════════════════════════
   STEP 7 — CANCELLATION POLICY + SQUARE PAYMENT
   ═══════════════════════════════════════════════════════════ */

/* Shared section label */
.sq-section-label {
  font-family: var(--font-sans);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-light);
  margin: 0 0 .75rem;
}

/* ── Cancellation Policy ───────────────────────────────── */
.sq-policy-section {
  max-width: 680px;
  margin: 1.75rem auto 0;
}

.sq-policy-box {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--bg-light);
  padding: 1.1rem 1.25rem;
  margin-bottom: 1rem;
}

.sq-policy-box p {
  font-size: .88rem;
  line-height: 1.65;
  color: var(--text-mid);
  margin: 0;
}

.sq-policy-box a {
  color: #2563eb;
  text-decoration: underline;
}

.sq-policy-check {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  cursor: pointer;
  font-size: .93rem;
  color: var(--text-dark);
  font-weight: 500;
  padding: .25rem 0;
  user-select: none;
}

.sq-policy-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: .1rem;
  accent-color: var(--primary);
  cursor: pointer;
}

/* ── Payment Section ──────────────────────────────────── */
.sq-payment-section {
  max-width: 680px;
  margin: 1.75rem auto 0;
  padding: 1.25rem 1.5rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--bg-white);
}

.sq-payment-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: .35rem;
}

.sq-secure-badge {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .78rem;
  font-weight: 600;
  color: var(--text-light);
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 99px;
  padding: .25rem .65rem;
}

.sq-card-hint {
  font-size: .82rem;
  color: var(--text-light);
  margin: 0 0 1rem;
}

/* Square SDK injects its iframe into this container */
#sq-card-container {
  min-height: 48px;
  border-radius: var(--radius-md);
  overflow: hidden;
}

/* Inline card errors */
.sq-card-errors {
  margin-top: .65rem;
  padding: .6rem .85rem;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: var(--radius);
  font-size: .85rem;
  color: #b91c1c;
}

/* ── Pay in Advance toggle ────────────────────────────── */
.sq-toggle-wrap {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  margin-top: 1.25rem;
  cursor: pointer;
  user-select: none;
}

.sq-toggle-track {
  position: relative;
  flex-shrink: 0;
  width: 44px;
  height: 24px;
  margin-top: .15rem;
}

.sq-toggle-track input[type="checkbox"] {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}

.sq-toggle-slider {
  position: absolute;
  inset: 0;
  background: var(--border);
  border-radius: 99px;
  transition: background var(--duration) var(--ease);
}

.sq-toggle-slider::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  left: 3px;
  top: 3px;
  background: #fff;
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
  transition: transform var(--duration) var(--ease);
}

.sq-toggle-track input:checked + .sq-toggle-slider {
  background: var(--primary);
}

.sq-toggle-track input:checked + .sq-toggle-slider::before {
  transform: translateX(20px);
}

.sq-toggle-text {
  display: flex;
  flex-direction: column;
  gap: .2rem;
}

.sq-toggle-label {
  font-size: .93rem;
  font-weight: 600;
  color: var(--text-dark);
}

.sq-toggle-sub {
  font-size: .82rem;
  color: var(--text-light);
  line-height: 1.4;
}

/* Disabled confirm button state */
#bwConfirmBtn:disabled {
  opacity: .45;
  cursor: not-allowed;
}

@media (max-width: 600px) {
  .sq-payment-section { padding: 1rem; }
  .sq-payment-header  { flex-direction: column; align-items: flex-start; }
}


/* ── REVIEWS CAROUSEL ─────────────────────────────────── */
.reviews-carousel {
  overflow: hidden;
  margin-top: 2.5rem;
  /* Fade edges to transparent for a polished look */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.reviews-track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  animation: reviews-scroll 45s linear infinite;
}


@keyframes reviews-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.review-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.35rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: .65rem;
  width: 290px;
  flex-shrink: 0;
}

.review-stars {
  color: #f5a623;
  font-size: 1.05rem;
  letter-spacing: .06em;
}

.review-text {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--text-mid);
  line-height: 1.65;
  font-size: .93rem;
  flex: 1;
  margin: 0;
}

.review-author {
  font-size: .82rem;
  font-weight: 700;
  color: var(--text-light);
  margin: 0;
  letter-spacing: .03em;
}


/* ── WAITLIST TEASER ──────────────────────────────────── */
.waitlist-teaser {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.waitlist-teaser-text {
  flex: 1;
  min-width: 260px;
}

.waitlist-teaser-cta {
  flex-shrink: 0;
}

@media (max-width: 680px) {
  .waitlist-teaser { flex-direction: column; align-items: flex-start; }
  .waitlist-teaser-cta { width: 100%; }
  .waitlist-teaser-cta .btn { width: 100%; text-align: center; }
}


/* ══════════════════════════════════════════════════════════
   MY APPOINTMENTS MODAL
══════════════════════════════════════════════════════════ */

/* Drawer button reset — only clear native button styles; let .drawer-link handle layout */
button.drawer-link {
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
  width: 100%;
}

/* My Appointments — subtle accent so it stands out as a feature link */
.appt-trigger {
  color: var(--primary);
  font-weight: 600;
}
.appt-trigger:hover {
  color: var(--primary) !important;
}
.appt-trigger-icon { margin-right: 0.1em; }

/* Overlay */
.appt-overlay {
  position: fixed;
  inset: 0;
  background: rgba(44, 58, 66, 0.72);
  z-index: 1200;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.appt-overlay.open {
  opacity: 1;
  pointer-events: all;
}

/* Modal panel — slides up from bottom on mobile */
.appt-modal {
  background: #fff;
  border-radius: 20px 20px 0 0;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transform: translateY(100%);
  transition: transform 0.32s cubic-bezier(0.34, 1.1, 0.64, 1);
}
.appt-overlay.open .appt-modal { transform: translateY(0); }

/* Centered dialog on wider screens */
@media (min-width: 600px) {
  .appt-overlay { align-items: center; padding: 1.5rem; }
  .appt-modal {
    border-radius: 20px;
    max-width: 480px;
    transform: translateY(16px) scale(0.97);
  }
  .appt-overlay.open .appt-modal { transform: translateY(0) scale(1); }
}

/* Drag handle (mobile visual cue) */
.appt-drag-handle {
  width: 36px;
  height: 4px;
  background: #dde3e6;
  border-radius: 2px;
  margin: 12px auto 0;
}
@media (min-width: 600px) { .appt-drag-handle { display: none; } }

/* Header */
.appt-modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1.25rem 1.25rem 1rem;
  border-bottom: 1px solid #eef1f2;
}
.appt-modal-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.25rem;
}
.appt-modal-title {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  color: var(--text-dark);
  margin: 0;
  font-weight: 700;
  line-height: 1.2;
}
.appt-modal-close {
  background: #f4f7f8;
  border: none;
  font-size: 0.95rem;
  color: var(--text-mid);
  cursor: pointer;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-left: 0.75rem;
  transition: background 0.2s, color 0.2s;
}
.appt-modal-close:hover { background: #e8ecef; color: var(--text-dark); }

/* Lookup form */
.appt-lookup { padding: 1.25rem; }
.appt-lookup-text {
  font-size: 0.875rem;
  color: var(--text-mid);
  margin: 0 0 1rem;
  line-height: 1.6;
}
.appt-lookup-form { display: flex; gap: 0.5rem; }
.appt-input {
  flex: 1;
  padding: 0.7rem 0.9rem;
  border: 1.5px solid #d0d8dc;
  border-radius: 10px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--text-dark);
  background: #fafbfc;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.appt-input:focus { border-color: var(--primary); background: #fff; }
.appt-lookup-btn { white-space: nowrap; padding: 0.7rem 1.1rem; font-size: 0.875rem; }
.appt-lookup-error {
  margin: 0.625rem 0 0;
  font-size: 0.8rem;
  color: #c0392b;
}

/* Loading */
.appt-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 2.5rem 1.25rem;
  color: var(--text-light);
  font-size: 0.875rem;
}
.appt-spinner {
  width: 20px;
  height: 20px;
  border: 2.5px solid #dde3e6;
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: appt-spin 0.65s linear infinite;
  flex-shrink: 0;
}
@keyframes appt-spin { to { transform: rotate(360deg); } }

/* Results */
.appt-results { padding: 0 1.25rem 1.5rem; }
.appt-results-meta {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.appt-results-count {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--text-dark);
  margin: 0;
}
.appt-results-name {
  font-size: 0.8rem;
  color: var(--text-light);
  margin: 0;
}

/* Appointment card */
.appt-card {
  border: 1.5px solid #e8ecef;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 0.875rem;
  background: #fff;
  transition: opacity 0.4s ease;
}

/* Card header — gradient bar */
.appt-card-header {
  background: linear-gradient(120deg, #4e6472 0%, var(--primary) 100%);
  color: #fff;
  padding: 0.875rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.875rem;
}
.appt-date-block {
  background: rgba(255,255,255,0.18);
  border-radius: 10px;
  padding: 0.4rem 0.625rem;
  text-align: center;
  min-width: 46px;
  flex-shrink: 0;
}
.appt-date-month {
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
  opacity: 0.85;
}
.appt-date-day {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  display: block;
}
.appt-date-info { flex: 1; min-width: 0; }
.appt-weekday {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  display: block;
  margin-bottom: 0.2rem;
}
.appt-time-loc {
  font-size: 0.78rem;
  opacity: 0.88;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.3rem;
}

/* Card body */
.appt-card-body { padding: 0.875rem 1rem; }
.appt-group-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: #f0f5f7;
  border-radius: 20px;
  padding: 0.2rem 0.65rem;
  font-size: 0.73rem;
  color: var(--text-mid);
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 0.75rem;
}

/* Guest row */
.appt-guest-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.6rem 0;
  border-top: 1px solid #f0f4f6;
}
.appt-guest-row:first-child { border-top: none; padding-top: 0; }
.appt-guest-info { flex: 1; min-width: 0; }
.appt-guest-num {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-light);
  display: block;
  margin-bottom: 0.15rem;
}
.appt-guest-service {
  font-size: 0.875rem;
  color: var(--text-dark);
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}

/* Cancel button */
.appt-cancel-btn {
  background: none;
  border: 1.5px solid #dde3e6;
  border-radius: 8px;
  color: var(--text-mid);
  font-size: 0.75rem;
  font-family: var(--font-sans);
  font-weight: 600;
  padding: 0.35rem 0.7rem;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: border-color 0.18s, color 0.18s, background 0.18s;
}
.appt-cancel-btn:hover { border-color: #c0392b; color: #c0392b; background: #fdf5f5; }

/* Confirm cancel panel */
.appt-confirm {
  margin-top: 0.5rem;
  margin-bottom: 0.25rem;
  background: #fff9f9;
  border: 1.5px solid #f0d4d4;
  border-radius: 10px;
  padding: 0.875rem 1rem;
}
.appt-confirm-msg {
  font-size: 0.875rem;
  color: var(--text-dark);
  margin: 0 0 0.625rem;
  font-weight: 500;
  line-height: 1.4;
}
.appt-confirm-btns { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.appt-confirm-yes {
  background: #c0392b;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.45rem 0.9rem;
  cursor: pointer;
  transition: background 0.18s;
}
.appt-confirm-yes:hover { background: #a93226; }
.appt-confirm-yes:disabled { opacity: 0.6; cursor: default; }
.appt-confirm-no {
  background: none;
  border: 1.5px solid #d5dde0;
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-mid);
  padding: 0.45rem 0.9rem;
  cursor: pointer;
  transition: border-color 0.18s, color 0.18s;
}
.appt-confirm-no:hover { border-color: var(--primary); color: var(--primary); }
.appt-confirm-no:disabled { opacity: 0.6; cursor: default; }
.appt-confirm-err {
  font-size: 0.78rem;
  color: #c0392b;
  margin: 0.5rem 0 0;
}

/* Cancelled row state */
.appt-guest-row.appt-cancelled .appt-guest-service { text-decoration: line-through; opacity: 0.45; }
.appt-cancelled-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #c0392b;
  flex-shrink: 0;
}

/* Empty state */
.appt-empty {
  text-align: center;
  padding: 2rem 1.25rem 1.25rem;
}
.appt-empty-icon { font-size: 2.75rem; margin-bottom: 0.875rem; }
.appt-empty-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--text-dark);
  margin: 0 0 0.375rem;
}
.appt-empty-sub {
  font-size: 0.875rem;
  color: var(--text-mid);
  margin: 0 0 1.25rem;
  line-height: 1.5;
}

