/*
Theme Name: Hale Juice
Theme URI: https://halejuice.com
Author: Hale Development Team
Description: Custom high-performance editorial e-commerce theme for HALE Cold-Pressed Juices, Lagos & Abuja.
Version: 1.2.0
Text Domain: hale-juice
*/


  :root {
    --cream: #FAF7F0;
    --warm-white: #FFFFFF;
    --paper: #F4EFE6;
    --paper-card: #FFFFFF;
    --forest: #0D2818;
    --leaf: #1E5132;
    --lime: #D4E95F;
    --citrus: #E8590C;
    --citrus-bright: #FF6B35;
    --amber: #F59F00;
    --berry: #8A1934;
    --ink: #0D2818;
    --body: rgba(13, 40, 24, 0.76);
    --body-light: rgba(13, 40, 24, 0.58);
    --line: rgba(13, 40, 24, 0.1);
    --line-subtle: rgba(13, 40, 24, 0.06);
    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 26px;
    --radius-pill: 9999px;
    --display: "Calistoga", Georgia, serif;
    --cond: "Cabin Condensed", sans-serif;
    --sans: "Plus Jakarta Sans", -apple-system, sans-serif;
    --shadow-soft: 0 14px 40px rgba(13, 40, 24, 0.08);
    --shadow-card: 0 20px 50px rgba(13, 40, 24, 0.1);
    --shadow-pop: 0 25px 65px rgba(13, 40, 24, 0.16);
    --spring: cubic-bezier(.34, 1.35, .44, 1);
    --ease: cubic-bezier(.22, 1, .36, 1);
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html {
    scroll-behavior: smooth;
    background: var(--cream);
    width: 100%;
    overflow-x: clip;
  }
  body {
    font-family: var(--sans);
    background: var(--cream);
    color: var(--ink);
    -webkit-font-smoothing: antialiased;
    overflow-x: clip;
    width: 100%;
    position: relative;
    line-height: 1.5;
  }
  img { display: block; max-width: 100%; height: auto; }
  a { color: inherit; text-decoration: none; }
  button { font-family: inherit; cursor: pointer; border: none; background: none; }

  .wrap { max-width: 1260px; margin: 0 auto; padding: 0 28px; }
  @media (max-width: 768px) { .wrap { padding: 0 18px; } }

  /* ---------- STAMP / BADGE ---------- */
  .stamp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--cond);
    font-weight: 700;
    font-size: 13.5px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--forest);
    background: rgba(212, 233, 95, 0.28);
    border: 1px solid rgba(42, 102, 62, 0.22);
    border-radius: var(--radius-pill);
    padding: 8px 20px;
  }
  .stamp.stamp-orange {
    color: var(--citrus);
    background: rgba(232, 89, 12, 0.08);
    border-color: rgba(232, 89, 12, 0.22);
  }
  .stamp.stamp-lime {
    color: var(--forest);
    background: var(--lime);
    border-color: var(--lime);
    font-weight: 800;
  }

  /* ---------- TOP ALERT BAR ---------- */
  .alert-bar {
    background: var(--lime);
    color: var(--forest);
    padding: 12px 48px;
    font-size: 13.5px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    text-align: center;
    position: relative;
    font-family: var(--cond);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    transition: all .25s ease;
  }
  .alert-bar.hide { display: none; }
  .alert-bar span.pill {
    background: var(--forest);
    color: var(--lime);
    padding: 3px 12px;
    border-radius: var(--radius-pill);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .1em;
  }
  .alert-close {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: var(--forest);
    font-size: 17px;
    font-weight: 800;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    opacity: .75;
    transition: all .2s ease;
  }
  .alert-close:hover {
    opacity: 1;
    background: rgba(13, 40, 24, 0.12);
  }

  /* ---------- NAVIGATION ---------- */
  .nav-wrap {
    position: sticky;
    top: 14px;
    z-index: 1000;
    padding: 0 20px;
    transition: top .2s ease;
  }
  .nav-bar {
    background: var(--forest);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-pill);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 7px 12px 7px 8px;
    max-width: 1240px;
    margin: 0 auto;
    box-shadow: 0 18px 50px rgba(13, 40, 24, 0.28);
  }
  .nav-brand {
    display: inline-flex;
    align-items: center;
    background: var(--lime);
    border-radius: var(--radius-pill);
    padding: 9px 24px;
    transition: transform .25s var(--spring);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
    white-space: nowrap;
    flex-shrink: 0;
  }
  .nav-brand:hover {
    transform: scale(1.03);
  }
  .nav-brand img {
    height: 26px;
    width: auto;
    display: block;
  }

  .nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
  }

  .nav-menu a {
    color: rgba(255, 255, 255, 0.88);
    font-size: 14px;
    font-weight: 600;
    padding: 9px 16px;
    border-radius: var(--radius-pill);
    transition: all .2s ease;
    white-space: nowrap;
  }
  .nav-menu a:hover {
    color: var(--lime);
    background: rgba(212, 233, 95, 0.14);
  }

  .nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
  }
  .btn-nav-book {
    color: var(--warm-white);
    font-size: 13.5px;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: all .2s ease;
    white-space: nowrap;
  }
  .btn-nav-book:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: #fff;
  }

  .btn-nav-order {
    background: var(--citrus-bright);
    color: #fff;
    font-size: 13.5px;
    font-weight: 800;
    padding: 10px 22px;
    border-radius: var(--radius-pill);
    letter-spacing: .02em;
    transition: all .25s var(--spring);
    box-shadow: 0 4px 16px rgba(255, 107, 53, 0.35);
    white-space: nowrap;
  }
  .btn-nav-order:hover {
    background: var(--citrus);
    transform: translateY(-1px) scale(1.02);
  }

  .btn-cart {
    background: var(--lime);
    color: var(--forest);
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 18px;
    border-radius: var(--radius-pill);
    font-size: 13.5px;
    font-weight: 800;
    transition: transform .2s var(--spring);
    white-space: nowrap;
    flex-shrink: 0;
  }
  .btn-cart:hover {
    transform: scale(1.04);
  }
  .cart-badge {
    background: var(--forest);
    color: var(--lime);
    border-radius: var(--radius-pill);
    padding: 2px 7px;
    font-size: 11px;
    font-weight: 800;
  }

  .btn-burger {
    display: none;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    transition: background .2s ease, transform .2s ease;
    flex-shrink: 0;
  }
  .btn-burger:hover {
    background: rgba(255, 255, 255, 0.16);
  }

  /* Responsive Header Breakpoints */
  @media (max-width: 1040px) {
    .nav-menu { display: none; }
    .btn-nav-book { display: none; }
    .btn-burger { display: flex; }
  }

  @media (max-width: 768px) {
    .nav-wrap {
      top: 8px;
      padding: 0 12px;
    }
    .nav-bar {
      padding: 5px 8px 5px 6px;
      height: 52px;
    }
    .nav-brand {
      padding: 6px 14px;
    }
    .nav-brand img {
      height: 20px;
    }
    .btn-nav-order {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 8px 14px;
      font-size: 12.5px;
      font-weight: 800;
      white-space: nowrap;
    }
    .btn-cart {
      padding: 7px 12px;
      font-size: 12.5px;
      gap: 5px;
    }
    .btn-cart svg {
      width: 15px;
      height: 15px;
    }
    .btn-burger {
      width: 36px;
      height: 36px;
    }
    .hero {
      padding: 80px 0 50px;
    }
    .hero-ctas {
      flex-wrap: nowrap;
      gap: 10px;
      width: 100%;
      max-width: 390px;
      margin-left: auto;
      margin-right: auto;
      padding: 0 4px;
    }
    .hero-ctas .btn-primary,
    .hero-ctas .btn-lime {
      flex: 1 1 0;
      min-width: 0;
      justify-content: center;
      padding: 13px 12px;
      font-size: 13.5px;
      white-space: nowrap;
      gap: 6px;
    }
    .hero-ctas .btn-primary svg,
    .hero-ctas .btn-lime svg {
      width: 15px;
      height: 15px;
      flex-shrink: 0;
    }
  }

  @media (max-width: 380px) {
    .nav-brand {
      padding: 5px 10px;
    }
    .btn-nav-order {
      padding: 7px 10px;
      font-size: 11.5px;
    }
    .btn-cart {
      padding: 6px 9px;
      font-size: 11.5px;
    }
    .hero-ctas .btn-primary,
    .hero-ctas .btn-lime {
      font-size: 12px;
      padding: 12px 8px;
      gap: 4px;
    }
  }

  /* ---------- HERO SECTION ---------- */
  .hero {
    padding: 80px 0 60px;
    position: relative;
    overflow-x: clip;
    width: 100%;
  }
  .hero-inner {
    text-align: center;
    max-width: 1020px;
    margin: 0 auto;
  }
  .hero-stamp {
    margin-bottom: 22px;
  }
  .hero h1 {
    font-family: var(--display);
    font-weight: 400;
    font-size: clamp(3.2rem, 8vw, 6.2rem);
    line-height: 1.02;
    letter-spacing: -0.01em;
    color: var(--forest);
    margin-bottom: 20px;
  }
  .hero h1 span.accent {
    color: var(--citrus-bright);
    font-style: normal;
  }
  .hero p.lead {
    font-size: clamp(1.05rem, 2vw, 1.3rem);
    color: var(--body);
    max-width: 720px;
    margin: 0 auto 34px;
    line-height: 1.58;
  }
  .hero-ctas {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
  }
  .btn-primary {
    background: var(--citrus-bright);
    color: #fff;
    font-size: 15.5px;
    font-weight: 700;
    padding: 16px 36px;
    border-radius: var(--radius-pill);
    box-shadow: 0 10px 28px rgba(255, 107, 53, 0.35);
    transition: all .25s var(--spring);
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }
  .btn-primary:hover {
    background: var(--citrus);
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(255, 107, 53, 0.45);
  }
  .btn-secondary {
    background: var(--forest);
    color: var(--warm-white);
    font-size: 15.5px;
    font-weight: 700;
    padding: 16px 32px;
    border-radius: var(--radius-pill);
    transition: all .25s var(--spring);
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }
  .btn-secondary:hover {
    background: var(--leaf);
    transform: translateY(-2px);
  }
  .btn-lime {
    background: var(--lime);
    color: var(--forest);
    font-size: 15.5px;
    font-weight: 800;
    padding: 16px 34px;
    border-radius: var(--radius-pill);
    transition: all .25s var(--spring);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(13, 40, 24, 0.12);
    box-shadow: 0 6px 20px rgba(212, 233, 95, 0.35);
  }
  .btn-lime:hover {
    background: #c3dc48;
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(212, 233, 95, 0.5);
  }

  /* =============================================================
     HERO 3D ROTATING PERSPECTIVE STAGE
     ============================================================= */
  :root {
    --stage-card-w: 330px;
    --stage-card-h: 480px;
    --stage-tilt: 7.5deg;
    --ease-stage: cubic-bezier(0.22, 1, 0.36, 1);
  }

  .stage-container {
    position: relative;
    max-width: 1200px;
    width: 100%;
    height: 550px;
    margin: 36px auto 0;
    perspective: 1200px;
    perspective-origin: 50% 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    user-select: none;
    overflow: visible;
  }

  .stage-track {
    position: relative;
    width: var(--stage-card-w);
    height: var(--stage-card-h);
    transform-style: preserve-3d;
  }

  /* CARDS */
  .rot-card {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: 32px;
    overflow: hidden;
    cursor: pointer;
    background: #fff;
    box-shadow: 0 16px 40px rgba(13, 40, 24, 0.14);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    transform: translateZ(0);
    transition: 
      transform 0.85s var(--ease-stage),
      opacity 0.45s ease,
      visibility 0.85s,
      box-shadow 0.85s var(--ease-stage);
    will-change: transform, opacity;
  }

  .rot-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
  }

  /* CARD OVERLAYS & BADGES */
  .card-pill-top {
    position: absolute;
    top: 18px;
    left: 18px;
    background: var(--forest);
    color: var(--lime);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 8px 16px;
    border-radius: 1000px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    z-index: 2;
    -webkit-font-smoothing: antialiased;
  }
  .card-pill-orange {
    background: var(--citrus);
    color: #fff;
  }
  .card-footer-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 38px 22px 20px;
    background: linear-gradient(to top, rgba(13, 40, 24, 0.95) 0%, rgba(13, 40, 24, 0.6) 60%, transparent 100%);
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 4px;
    z-index: 2;
    -webkit-font-smoothing: antialiased;
  }
  .card-footer-info h4 {
    font-family: var(--display);
    font-size: 21px;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: #fff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
  }
  .card-footer-info p {
    font-size: 13px;
    color: rgba(250, 245, 235, 0.92);
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  }

  /* SLOTS - STRICTLY CONTAINED WITH ZERO RUNAWAY OVERFLOW */
  .rot-card.pos-center {
    transform: translate3d(0, 0, 40px) rotate(0deg) scale(1);
    z-index: 10;
    opacity: 1;
    visibility: visible;
    box-shadow: 
      0 32px 70px -10px rgba(13, 40, 24, 0.32),
      0 10px 24px rgba(0, 0, 0, 0.1);
    cursor: pointer;
  }

  .rot-card.pos-left {
    transform: translate3d(calc(-1 * (var(--stage-card-w) * 0.8)), 30px, 0px) rotate(calc(-1 * var(--stage-tilt))) scale(0.86);
    z-index: 5;
    opacity: 0.95;
    visibility: visible;
    box-shadow: 0 18px 40px rgba(13, 40, 24, 0.16);
  }
  .rot-card.pos-left:hover {
    transform: translate3d(calc(-1 * (var(--stage-card-w) * 0.8)), 18px, 15px) rotate(calc(-1 * (var(--stage-tilt) - 2deg))) scale(0.89);
    opacity: 1;
  }

  .rot-card.pos-right {
    transform: translate3d(calc(var(--stage-card-w) * 0.8), 30px, 0px) rotate(var(--stage-tilt)) scale(0.86);
    z-index: 5;
    opacity: 0.95;
    visibility: visible;
    box-shadow: 0 18px 40px rgba(13, 40, 24, 0.16);
  }
  .rot-card.pos-right:hover {
    transform: translate3d(calc(var(--stage-card-w) * 0.8), 18px, 15px) rotate(calc(var(--stage-tilt) - 2deg)) scale(0.89);
    opacity: 1;
  }

  /* Back slots stay centered in depth behind the stage — NEVER flying outwards into margins */
  .rot-card.pos-back-left {
    transform: translate3d(calc(-1 * (var(--stage-card-w) * 0.2)), 36px, -140px) scale(0.65);
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
  .rot-card.pos-back-right {
    transform: translate3d(calc(var(--stage-card-w) * 0.2), 36px, -140px) scale(0.65);
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  /* ROTATION CONTROLS */
  .stage-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 22px 0 10px;
    z-index: 20;
    position: relative;
  }
  .stage-control-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid rgba(13, 40, 24, 0.15);
    color: var(--forest);
    font-size: 18px;
    display: grid;
    place-items: center;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(13, 40, 24, 0.08);
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
  }
  .stage-control-btn:hover {
    background: var(--lime);
    color: var(--forest);
    transform: scale(1.08);
    border-color: var(--lime);
  }

  .stage-dots {
    display: flex;
    gap: 10px;
  }
  .stage-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(13, 40, 24, 0.2);
    cursor: pointer;
    transition: width 0.3s ease, background 0.3s ease;
  }
  .stage-dot.active {
    width: 32px;
    border-radius: 1000px;
    background: var(--forest);
  }

  /* RESPONSIVE & MOBILE OVERFLOW PREVENTION */
  @media (max-width: 900px) {
    :root {
      --stage-card-w: 240px;
      --stage-card-h: 360px;
      --stage-tilt: 5deg;
    }
    .stage-container {
      height: 410px;
      margin-top: 20px;
    }
    .rot-card.pos-left {
      transform: translate3d(calc(-1 * (var(--stage-card-w) * 0.6)), 22px, 0px) rotate(calc(-1 * var(--stage-tilt))) scale(0.84);
    }
    .rot-card.pos-right {
      transform: translate3d(calc(var(--stage-card-w) * 0.6), 22px, 0px) rotate(var(--stage-tilt)) scale(0.84);
    }
    .rot-card.pos-back-left {
      transform: translate3d(0, 26px, -100px) scale(0.58);
      opacity: 0;
      visibility: hidden;
    }
    .rot-card.pos-back-right {
      transform: translate3d(0, 26px, -100px) scale(0.58);
      opacity: 0;
      visibility: hidden;
    }
  }

  @media (max-width: 600px) {
    :root {
      --stage-card-w: min(65vw, 210px);
      --stage-card-h: min(96vw, 320px);
      --stage-tilt: 4deg;
    }
    .stage-container {
      height: 350px;
      margin-top: 14px;
      max-width: 100vw;
      width: 100%;
      overflow: visible;
    }
    .rot-card.pos-left {
      transform: translate3d(calc(-1 * (var(--stage-card-w) * 0.42)), 14px, 0px) rotate(calc(-1 * var(--stage-tilt))) scale(0.82);
    }
    .rot-card.pos-right {
      transform: translate3d(calc(var(--stage-card-w) * 0.42), 14px, 0px) rotate(var(--stage-tilt)) scale(0.82);
    }
    .rot-card.pos-back-left {
      transform: translate3d(0, 20px, -80px) scale(0.54);
      opacity: 0;
      visibility: hidden;
    }
    .rot-card.pos-back-right {
      transform: translate3d(0, 20px, -80px) scale(0.54);
      opacity: 0;
      visibility: hidden;
    }
  }

  /* ---------- TICKER ---------- */
  .ticker-section {
    background: var(--forest);
    color: var(--lime);
    padding: 18px 0;
    overflow: hidden;
    overflow-x: clip;
    width: 100%;
    contain: paint layout;
    position: relative;
    margin: 40px 0 60px;
    border-top: 1px solid rgba(255,255,255,.08);
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .ticker-track {
    display: flex;
    width: max-content;
    animation: tickerRun 28s linear infinite;
    contain: layout;
    will-change: transform;
  }
  .ticker-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: var(--cond);
    font-weight: 700;
    font-size: 17px;
    letter-spacing: .16em;
    text-transform: uppercase;
    padding: 0 24px;
  }
  .ticker-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--citrus-bright);
  }
  @keyframes tickerRun {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  /* ---------- WELCOME SECTION ---------- */
  .welcome-section {
    padding: 40px 0 70px;
  }
  .welcome-box {
    background: var(--warm-white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 60px 48px;
    box-shadow: var(--shadow-soft);
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .welcome-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--leaf), var(--lime), var(--citrus-bright));
  }
  .welcome-box h2 {
    font-family: var(--display);
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    color: var(--forest);
    margin: 16px 0 20px;
    line-height: 1.1;
  }
  .welcome-box p.body-copy {
    font-size: 1.2rem;
    color: var(--body);
    max-width: 820px;
    margin: 0 auto 34px;
    line-height: 1.68;
  }
  .brand-pills {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
  }
  .brand-pill {
    background: var(--paper);
    color: var(--forest);
    font-family: var(--cond);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    padding: 8px 20px;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(13,40,24,.08);
  }

  /* ---------- SECTION HEADERS ---------- */
  .sec-header {
    text-align: center;
    margin-bottom: 44px;
  }
  .sec-header h2 {
    font-family: var(--display);
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    color: var(--forest);
    margin: 14px 0 12px;
  }
  .sec-header p {
    color: var(--body);
    font-size: 1.12rem;
    max-width: 600px;
    margin: 0 auto;
  }

  /* ---------- CATEGORY CAROUSEL (4 PER VIEW ON DESKTOP) ---------- */
  .cats-section {
    padding: 40px 0 70px;
    position: relative;
  }
  .cat-carousel-wrap {
    position: relative;
    margin-top: 28px;
  }
  .cat-carousel-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    padding: 6px 2px 16px;
  }
  .cat-carousel-track::-webkit-scrollbar { display: none; }
  .cat-carousel-card {
    flex: 0 0 calc((100% - 60px) / 4);
    min-width: 250px;
    scroll-snap-align: start;
    background: var(--warm-white);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .3s var(--spring), box-shadow .3s ease;
    box-shadow: var(--shadow-soft);
  }
  .cat-carousel-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
  }
  @media (max-width: 1100px) {
    .cat-carousel-card { flex: 0 0 calc((100% - 40px) / 3); }
  }
  @media (max-width: 768px) {
    .cat-carousel-card { flex: 0 0 calc((100% - 20px) / 2); }
  }
  @media (max-width: 520px) {
    .cat-carousel-card { flex: 0 0 82vw; min-width: 0; }
  }
  .cat-img {
    height: 180px;
    position: relative;
    overflow: hidden;
    background: var(--paper);
  }
  .cat-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s var(--ease);
  }
  .cat-carousel-card:hover .cat-img img {
    transform: scale(1.05);
  }
  .cat-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  .cat-content h4 {
    font-family: var(--display);
    font-size: 1.32rem;
    color: var(--forest);
    margin-bottom: 6px;
  }
  .cat-content p {
    font-size: .92rem;
    color: var(--body);
    line-height: 1.5;
    margin-bottom: 14px;
    flex: 1;
  }
  .cat-link {
    font-size: 13px;
    font-weight: 700;
    color: var(--citrus-bright);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: auto;
  }
  .cat-carousel-nav {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .btn-cat-nav {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--warm-white);
    border: 1px solid var(--line);
    color: var(--forest);
    display: grid;
    place-items: center;
    cursor: pointer;
    box-shadow: var(--shadow-soft);
    transition: all .2s ease;
  }
  .btn-cat-nav:hover {
    background: var(--forest);
    color: var(--lime);
    border-color: var(--forest);
    transform: scale(1.06);
  }

  /* ---------- LIVE MENU PREVIEW & CATALOGUE ---------- */
  .menu-section {
    background: var(--warm-white);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 70px 0 90px;
  }
  .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 26px;
  }
  .prod-card {
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .3s var(--spring), box-shadow .3s ease;
  }
  .prod-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
  }
  .prod-thumb {
    height: 210px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FAF5EB;
  }
  .prod-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .prod-thumb img.bottle {
    height: 85%;
    width: auto;
    object-fit: contain;
  }
  .prod-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--citrus-bright);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: var(--radius-pill);
    letter-spacing: .04em;
  }
  .prod-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  .prod-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
  }
  .prod-head h3 {
    font-family: var(--display);
    font-size: 1.25rem;
    color: var(--forest);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.2;
    flex: 1;
    min-width: 0;
  }
  .prod-price {
    font-weight: 800;
    color: var(--citrus);
    font-size: 1.2rem;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .prod-desc {
    font-size: .9rem;
    color: var(--body);
    line-height: 1.45;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 38px;
  }
  .prod-ingredients {
    font-size: 11.5px;
    color: var(--leaf);
    font-weight: 600;
    background: rgba(30,81,50,.08);
    padding: 6px 10px;
    border-radius: 6px;
    margin-bottom: 16px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .prod-foot {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding-top: 14px;
    border-top: 1px solid var(--line);
  }
  .prod-counter {
    display: inline-flex;
    align-items: center;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius-pill);
    padding: 3px 6px;
    gap: 6px;
  }
  .prod-counter .btn-qty {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #fff;
    color: var(--forest);
    font-size: 14px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 1px 3px rgba(0,0,0,.08);
    transition: background .2s, transform .15s;
  }
  .prod-counter .btn-qty:hover {
    background: var(--lime);
    transform: scale(1.05);
  }
  .prod-counter .qty-val {
    font-size: 13.5px;
    font-weight: 800;
    color: var(--forest);
    min-width: 18px;
    text-align: center;
  }
  .btn-add {
    background: var(--forest);
    color: var(--warm-white);
    font-size: 13px;
    font-weight: 700;
    padding: 9px 18px;
    border-radius: var(--radius-pill);
    transition: all .2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
  }
  .btn-add:hover {
    background: var(--citrus-bright);
    transform: scale(1.02);
  }

  /* ---------- EXPERIENCES / B2B SPOTLIGHT ---------- */
  .experiences-section {
    padding: 80px 0;
  }
  .exp-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
    margin-top: 40px;
  }
  @media (max-width: 860px) { .exp-grid { grid-template-columns: 1fr; } }

  .exp-card {
    background: var(--warm-white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-soft);
  }
  .exp-img {
    height: 240px;
    position: relative;
    overflow: hidden;
  }
  .exp-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .exp-pill {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--forest);
    color: var(--lime);
    font-family: var(--cond);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: .16em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: var(--radius-pill);
  }
  .exp-body {
    padding: 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  .exp-body h3 {
    font-family: var(--display);
    font-size: 1.85rem;
    color: var(--forest);
    margin-bottom: 12px;
    line-height: 1.15;
  }
  .exp-body p {
    font-size: 1.02rem;
    color: var(--body);
    line-height: 1.6;
    margin-bottom: 22px;
  }
  .exp-services {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
  }
  .exp-tag {
    background: var(--paper);
    color: var(--forest);
    font-size: 12px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    border: 1px solid var(--line-subtle);
  }
  .exp-btn {
    margin-top: auto;
    background: var(--forest);
    color: var(--warm-white);
    font-size: 14.5px;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: var(--radius-pill);
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all .25s var(--spring);
  }
  .exp-btn:hover {
    background: var(--citrus-bright);
    transform: translateY(-2px);
  }

  /* Mini B2B rows for Bulk & Schools */
  .mini-b2b-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
    margin-top: 26px;
  }
  @media (max-width: 860px) { .mini-b2b-row { grid-template-columns: 1fr; } }
  .mini-b2b-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 30px;
    display: flex;
    flex-direction: column;
  }
  .mini-b2b-card h4 {
    font-family: var(--display);
    font-size: 1.5rem;
    color: var(--forest);
    margin-bottom: 10px;
  }
  .mini-b2b-card p {
    font-size: .95rem;
    color: var(--body);
    line-height: 1.55;
    margin-bottom: 18px;
  }
  .mini-b2b-card .btn-link {
    margin-top: auto;
    font-size: 14px;
    font-weight: 700;
    color: var(--citrus);
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }

  /* ---------- ABOUT / BRAND STORY ---------- */
  .about-section {
    background: var(--forest);
    color: var(--warm-white);
    padding: 90px 0;
    position: relative;
    overflow: hidden;
  }
  .about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
  }
  @media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; gap: 40px; } }
  .about-left h2 {
    font-family: var(--display);
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    line-height: 1.08;
    margin: 16px 0 24px;
  }
  .about-left h2 span { color: var(--lime); font-style: normal; }
  .about-left p {
    font-size: 1.15rem;
    line-height: 1.68;
    color: rgba(250, 247, 240, 0.82);
    margin-bottom: 20px;
  }
  .values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  @media (max-width: 600px) {
    .values-grid {
      gap: 10px;
    }
  }
  .value-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: var(--radius-md);
    padding: 18px 16px;
    transition: transform .2s ease, border-color .2s ease;
  }
  .value-box:hover {
    border-color: rgba(212, 233, 95, 0.35);
    background: rgba(255, 255, 255, 0.08);
  }
  .value-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: rgba(212, 233, 95, 0.12);
    border: 1px solid rgba(212, 233, 95, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    color: var(--lime);
    flex-shrink: 0;
  }
  .value-icon svg {
    width: 17px;
    height: 17px;
    stroke: var(--lime);
  }
  .value-box b {
    display: block;
    font-family: var(--cond);
    font-size: 16px;
    letter-spacing: .08em;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 5px;
  }
  .value-box span {
    font-size: .88rem;
    color: rgba(250, 247, 240, 0.76);
    line-height: 1.45;
    display: block;
  }
  .value-box.full-span {
    grid-column: span 2;
    background: linear-gradient(90deg, rgba(212, 233, 95, 0.09) 0%, rgba(255,255,255,0.04) 100%);
    border-color: rgba(212, 233, 95, 0.25);
    display: flex;
    gap: 14px;
    align-items: center;
    padding: 16px 18px;
  }
  .value-box.full-span .value-icon {
    margin-bottom: 0;
  }
  @media (max-width: 600px) {
    .value-box {
      padding: 14px 12px;
      border-radius: 16px;
    }
    .value-icon {
      width: 30px;
      height: 30px;
      border-radius: 8px;
      margin-bottom: 8px;
    }
    .value-icon svg {
      width: 15px;
      height: 15px;
    }
    .value-box b {
      font-size: 13.5px;
      margin-bottom: 4px;
    }
    .value-box span {
      font-size: 11.5px;
      line-height: 1.4;
    }
    .value-box.full-span {
      padding: 13px 14px;
      gap: 11px;
    }
  }

  /* ---------- SOCIAL & COMMUNITY ---------- */
  .social-section {
    padding: 70px 0;
    text-align: center;
  }
  .social-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin: 36px 0;
  }
  @media (max-width: 800px) { .social-strip { grid-template-columns: repeat(2, 1fr); } }
  .social-tile {
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 220px;
    background: #ddd;
    position: relative;
  }
  .social-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* ---------- PRE-FOOTER CTA ---------- */
  .pre-footer {
    background: var(--leaf);
    color: #fff;
    padding: 80px 0;
    text-align: center;
  }
  .pre-footer h2 {
    font-family: var(--display);
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    margin: 14px auto;
    max-width: 760px;
    line-height: 1.08;
  }
  .pre-footer p {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.88);
    max-width: 580px;
    margin: 0 auto 34px;
  }

  /* ---------- FOOTER ---------- */
  footer {
    background: var(--forest);
    color: var(--warm-white);
    padding: 70px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  .foot-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(4, 1fr);
    gap: 36px;
    margin-bottom: 50px;
  }
  @media (max-width: 980px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 540px) { .foot-grid { grid-template-columns: 1fr; } }

  .foot-brand img { height: 32px; width: auto; margin-bottom: 14px; }
  .foot-brand p { color: rgba(255,255,255,.7); font-size: .95rem; line-height: 1.6; max-width: 320px; }
  .foot-col h4 {
    font-family: var(--cond);
    font-size: 14px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--lime);
    margin-bottom: 18px;
  }
  .foot-col ul { list-style: none; }
  .foot-col li { margin-bottom: 10px; font-size: 14px; color: rgba(255,255,255,.75); }
  .foot-col a:hover { color: #fff; text-decoration: underline; }

  .foot-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    font-size: 13px;
    color: rgba(255,255,255,.5);
    flex-wrap: wrap;
    gap: 12px;
  }

  /* ---------- FLOATING WHATSAPP BUTTON (ICON ONLY) ---------- */
  .whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1200;
    background: #25D366;
    color: #fff;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45);
    transition: transform .3s var(--spring), box-shadow .3s ease;
  }
  .whatsapp-float:hover {
    transform: translateY(-3px) scale(1.08);
    box-shadow: 0 14px 38px rgba(37, 211, 102, 0.6);
  }
  .whatsapp-float svg { width: 28px; height: 28px; fill: currentColor; }

  /* ---------- CART DRAWER ---------- */
  .drawer-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(13, 40, 24, 0.55);
    backdrop-filter: blur(4px);
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease;
  }
  .drawer-backdrop.open {
    opacity: 1;
    pointer-events: auto;
  }
  .cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(440px, 92vw);
    background: var(--warm-white);
    z-index: 2001;
    transform: translateX(100%);
    transition: transform .35s var(--spring);
    box-shadow: -10px 0 50px rgba(13, 40, 24, 0.25);
    display: flex;
    flex-direction: column;
  }
  .cart-drawer.open {
    transform: translateX(0);
  }
  .drawer-header {
    padding: 22px 24px;
    border-bottom: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .drawer-header h3 {
    font-family: var(--display);
    font-size: 1.5rem;
    color: var(--forest);
  }
  .drawer-close {
    font-size: 20px;
    color: var(--body);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--paper);
  }
  .drawer-shipping {
    background: #E8F5E9;
    color: var(--leaf);
    padding: 10px 24px;
    font-size: 12.5px;
    font-weight: 700;
  }
  .drawer-items {
    padding: 20px 24px;
    flex: 1;
    overflow-y: auto;
  }
  .drawer-footer {
    padding: 20px 24px 28px;
    border-top: 1px solid var(--line);
    background: var(--cream);
  }
  .drawer-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 14.5px;
    color: var(--body);
  }
  .drawer-row.total {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--forest);
    margin: 12px 0 16px;
    padding-top: 10px;
    border-top: 1px dashed var(--line);
  }
  .btn-checkout {
    display: block;
    width: 100%;
    background: var(--citrus-bright);
    color: #fff;
    text-align: center;
    padding: 15px;
    border-radius: var(--radius-pill);
    font-size: 15px;
    font-weight: 800;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.35);
  }

  /* ---------- BOOKING / QUOTE MODAL ---------- */
  .modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(13, 40, 24, 0.65);
    backdrop-filter: blur(6px);
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
  }
  .modal-overlay.open { display: flex; }
  .modal-box {
    background: var(--warm-white);
    border-radius: var(--radius-lg);
    max-width: 620px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-pop);
    position: relative;
    padding: 36px 32px;
  }
  .modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 22px;
    background: var(--paper);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: grid;
    place-items: center;
  }
  .modal-box h3 {
    font-family: var(--display);
    font-size: 1.85rem;
    color: var(--forest);
    margin: 6px 0 8px;
  }
  .modal-box p.modal-sub {
    font-size: .95rem;
    color: var(--body);
    margin-bottom: 22px;
  }
  .modal-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 22px;
    border-bottom: 1px solid var(--line);
    padding-bottom: 10px;
  }
  .modal-tab-btn {
    font-size: 13px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    color: var(--body);
    background: var(--paper);
  }
  .modal-tab-btn.active {
    background: var(--forest);
    color: #fff;
  }
  .form-group {
    margin-bottom: 14px;
  }
  .form-group label {
    display: block;
    font-size: 12.5px;
    font-weight: 700;
    color: var(--forest);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: .04em;
  }
  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 14px;
    background: var(--cream);
  }
  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  @media (max-width: 500px) { .form-row { grid-template-columns: 1fr; } }
  .btn-submit-booking {
    width: 100%;
    background: var(--forest);
    color: var(--warm-white);
    padding: 14px;
    border-radius: var(--radius-pill);
    font-size: 15px;
    font-weight: 700;
    margin-top: 10px;
  }
  .btn-submit-booking:hover {
    background: var(--citrus-bright);
  }

  /* Mobile menu drawer */
  .mobile-drawer {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: min(320px, 85vw);
    background: var(--forest);
    color: #fff;
    z-index: 2500;
    transform: translateX(-100%);
    transition: transform .3s ease;
    padding: 30px 24px;
    display: flex;
    flex-direction: column;
  }
  .mobile-drawer.open { transform: translateX(0); }
  .mobile-drawer a {
    display: block;
    font-size: 1.15rem;
    font-weight: 700;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,.1);
  }


/* --- MENU SPECIFIC STYLES --- */

  :root {
    --forest: #0D2818;
    --leaf: #1E5132;
    --citrus: #E85D04;
    --citrus-bright: #FF6B35;
    --amber: #F4A261;
    --lime: #D4E95F;
    --berry: #9B2226;
    --cream: #FAF7F0;
    --warm-white: #FFFFFF;
    --paper: #F2EDE4;
    --ink: #111B15;
    --body: #3D4A41;
    --body-light: #6B7870;
    --line: rgba(13, 40, 24, 0.1);
    --line-subtle: rgba(13, 40, 24, 0.06);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-pill: 9999px;
    --display: "Calistoga", Georgia, serif;
    --cond: "Barlow Condensed", -apple-system, sans-serif;
    --sans: "Plus Jakarta Sans", -apple-system, sans-serif;
    --shadow-soft: 0 14px 40px rgba(13, 40, 24, 0.08);
    --shadow-card: 0 20px 50px rgba(13, 40, 24, 0.1);
    --spring: cubic-bezier(.34, 1.35, .44, 1);
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html {
    scroll-behavior: smooth;
    background: var(--cream);
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }
  body {
    font-family: var(--sans);
    background: var(--cream);
    color: var(--ink);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    position: relative;
    line-height: 1.5;
  }
  img { display: block; max-width: 100%; height: auto; }
  a { color: inherit; text-decoration: none; }
  button { font-family: inherit; cursor: pointer; border: none; background: none; }

  .wrap { max-width: 1260px; margin: 0 auto; padding: 0 28px; }
  @media (max-width: 768px) { .wrap { padding: 0 18px; } }

  .stamp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--cond);
    font-weight: 700;
    font-size: 13.5px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--forest);
    background: rgba(13, 40, 24, 0.06);
    border: 1px solid rgba(13, 40, 24, 0.12);
    padding: 6px 16px;
    border-radius: var(--radius-pill);
  }
  .stamp-lime { background: var(--lime); color: var(--forest); border-color: rgba(13, 40, 24, 0.15); }
  .stamp-orange { background: rgba(255, 107, 53, 0.12); color: var(--citrus); border-color: rgba(255, 107, 53, 0.25); }

  /* ---------- TOP ALERT BAR ---------- */
  .alert-bar {
    background: var(--lime);
    color: var(--forest);
    font-family: var(--cond);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    text-align: center;
    padding: 10px 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
  }
  .alert-bar .pill {
    background: var(--forest);
    color: var(--lime);
    padding: 3px 10px;
    border-radius: var(--radius-pill);
    font-size: 11px;
    font-weight: 800;
  }
  .alert-close {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    cursor: pointer;
    color: var(--forest);
  }
  @media (max-width: 768px) {
    .alert-bar {
      font-size: 11px;
      padding: 8px 36px 8px 12px;
      gap: 6px;
      letter-spacing: .06em;
      line-height: 1.25;
      flex-wrap: wrap;
      max-width: 100%;
    }
  }

  /* ---------- NAVIGATION ---------- */
  .nav-wrap {
    position: sticky;
    top: 14px;
    z-index: 1000;
    padding: 0 20px;
    width: 100%;
    max-width: 100%;
  }
  .nav-bar {
    background: var(--forest);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-pill);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 7px 12px 7px 8px;
    max-width: 1240px;
    margin: 0 auto;
    box-shadow: 0 18px 50px rgba(13, 40, 24, 0.28);
  }
  .nav-brand {
    display: inline-flex;
    align-items: center;
    background: var(--lime);
    border-radius: var(--radius-pill);
    padding: 9px 24px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
    flex-shrink: 0;
  }
  .nav-brand img { height: 26px; width: auto; }

  .nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
  }
  .nav-menu a {
    color: rgba(255, 255, 255, 0.88);
    font-size: 14px;
    font-weight: 600;
    padding: 9px 16px;
    border-radius: var(--radius-pill);
    transition: all .2s ease;
    white-space: nowrap;
  }
  .nav-menu a:hover, .nav-menu a.active {
    color: var(--lime);
    background: rgba(212, 233, 95, 0.14);
  }

  .nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
  }
  .btn-nav-book {
    color: var(--warm-white);
    font-size: 13.5px;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: all .2s ease;
  }
  .btn-nav-book:hover { background: rgba(255, 255, 255, 0.14); border-color: #fff; }

  .btn-nav-order {
    background: var(--citrus-bright);
    color: #fff;
    font-size: 13.5px;
    font-weight: 800;
    padding: 10px 22px;
    border-radius: var(--radius-pill);
    letter-spacing: .02em;
    transition: all .25s var(--spring);
    box-shadow: 0 4px 16px rgba(255, 107, 53, 0.35);
    white-space: nowrap;
  }
  .btn-nav-order:hover {
    background: var(--citrus);
    transform: translateY(-1px) scale(1.02);
  }

  .btn-cart {
    background: var(--lime);
    color: var(--forest);
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 18px;
    border-radius: var(--radius-pill);
    font-size: 13.5px;
    font-weight: 800;
  }
  .cart-badge {
    background: var(--citrus-bright);
    color: #fff;
    border-radius: var(--radius-pill);
    padding: 2px 7px;
    font-size: 11px;
    font-weight: 800;
  }
  .btn-burger {
    display: none;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
  }
  @media (max-width: 1040px) {
    .nav-menu { display: none; }
    .btn-nav-book { display: none; }
    .btn-burger { display: flex; }
  }
  @media (max-width: 768px) {
    .nav-wrap {
      top: 8px;
      padding: 0 12px;
    }
    .nav-bar {
      padding: 5px 8px 5px 6px;
      height: 52px;
    }
    .nav-brand { padding: 6px 14px; }
    .nav-brand img { height: 20px; }
    .btn-nav-order {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 8px 14px;
      font-size: 12.5px;
      font-weight: 800;
      white-space: nowrap;
    }
    .btn-cart {
      padding: 7px 12px;
      font-size: 12.5px;
      gap: 5px;
    }
    .btn-cart svg {
      width: 15px;
      height: 15px;
    }
    .btn-burger {
      width: 36px;
      height: 36px;
    }
  }

  @media (max-width: 380px) {
    .nav-brand { padding: 5px 10px; }
    .btn-nav-order { padding: 7px 10px; font-size: 11.5px; }
    .btn-cart { padding: 6px 9px; font-size: 11.5px; }
  }

  /* ---------- MOBILE DRAWER ---------- */
  .mobile-drawer {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: min(320px, 85vw);
    background: var(--forest);
    color: #fff;
    z-index: 2500;
    transform: translateX(-100%);
    transition: transform .3s ease;
    padding: 30px 24px;
    display: flex;
    flex-direction: column;
  }
  .mobile-drawer.open { transform: translateX(0); }
  .mobile-drawer a {
    display: block;
    font-size: 1.15rem;
    font-weight: 700;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,.1);
  }

  /* ---------- MENU PAGE HEADER ---------- */
  .menu-hero {
    padding: 60px 0 40px;
    text-align: center;
  }
  .menu-hero h1 {
    font-family: var(--display);
    font-size: clamp(2.8rem, 6vw, 4.8rem);
    color: var(--forest);
    margin: 16px 0 12px;
    line-height: 1.05;
  }
  .menu-hero p.lead {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    color: var(--body);
    max-width: 740px;
    margin: 0 auto 24px;
    line-height: 1.6;
  }
  .menu-meta-banner {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--warm-white);
    border: 1px solid var(--line);
    padding: 10px 24px;
    border-radius: var(--radius-pill);
    font-size: 13.5px;
    font-weight: 600;
    color: var(--forest);
    box-shadow: var(--shadow-soft);
    max-width: 100%;
  }
  .menu-meta-banner span.dot { width: 8px; height: 8px; border-radius: 50%; background: #25D366; flex-shrink: 0; }
  @media (max-width: 600px) {
    .menu-meta-banner {
      font-size: 12px;
      padding: 8px 16px;
      line-height: 1.35;
      text-align: left;
      border-radius: 20px;
    }
  }

  /* ---------- STICKY CATEGORY NAV TABS ---------- */
  .category-sticky-bar {
    position: sticky;
    top: 86px;
    z-index: 900;
    background: rgba(250, 247, 240, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 14px 0;
  }
  .cat-tabs-scroll {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding: 2px 4px;
  }
  .cat-tabs-scroll::-webkit-scrollbar { display: none; }
  .tab-pill {
    font-family: var(--cond);
    font-size: 13.5px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 9px 18px;
    border-radius: var(--radius-pill);
    background: var(--warm-white);
    color: var(--forest);
    border: 1px solid var(--line);
    white-space: nowrap;
    transition: all .2s ease;
    cursor: pointer;
  }
  .tab-pill:hover { background: rgba(13, 40, 24, 0.08); }
  .tab-pill.active {
    background: var(--forest);
    color: var(--lime);
    border-color: var(--forest);
  }

  /* ---------- CATEGORY SECTIONS & PRODUCTS GRID ---------- */
  .cat-group-section {
    padding: 50px 0 30px;
    scroll-margin-top: 150px;
  }
  .cat-group-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 24px;
    border-bottom: 2px solid var(--line);
    padding-bottom: 12px;
    flex-wrap: wrap;
    gap: 12px;
  }
  .cat-group-header h2 {
    font-family: var(--display);
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    color: var(--forest);
  }
  .cat-group-header p.sub {
    font-size: .95rem;
    color: var(--body-light);
    font-weight: 600;
  }

  .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
  }
  .prod-card {
    background: var(--warm-white);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-soft);
    transition: transform .3s var(--spring), box-shadow .3s ease;
  }
  .prod-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
  }
  .prod-thumb {
    height: 200px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FAF5EB;
  }
  .prod-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .prod-thumb img.bottle {
    height: 85%;
    width: auto;
    object-fit: contain;
  }
  .prod-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--citrus-bright);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: var(--radius-pill);
    letter-spacing: .04em;
  }
  .prod-badge.lime { background: var(--lime); color: var(--forest); }
  .prod-badge.leaf { background: var(--leaf); color: #fff; }
  .prod-badge.berry { background: var(--berry); color: #fff; }

  .prod-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  .prod-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
  }
  .prod-head h3 {
    font-family: var(--display);
    font-size: 1.25rem;
    color: var(--forest);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.2;
    flex: 1;
    min-width: 0;
  }
  .prod-price {
    font-weight: 800;
    color: var(--citrus);
    font-size: 1.2rem;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .prod-desc {
    font-size: .9rem;
    color: var(--body);
    line-height: 1.45;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 38px;
  }
  .prod-ingredients {
    font-size: 11.5px;
    color: var(--leaf);
    font-weight: 600;
    background: rgba(30,81,50,.08);
    padding: 6px 10px;
    border-radius: 6px;
    margin-bottom: 16px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .prod-foot {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding-top: 14px;
    border-top: 1px solid var(--line);
  }
  .prod-counter {
    display: inline-flex;
    align-items: center;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius-pill);
    padding: 3px 6px;
    gap: 6px;
  }
  .prod-counter .btn-qty {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #fff;
    color: var(--forest);
    font-size: 14px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 1px 3px rgba(0,0,0,.08);
    transition: background .2s, transform .15s;
  }
  .prod-counter .btn-qty:hover {
    background: var(--lime);
    transform: scale(1.05);
  }
  .prod-counter .qty-val {
    font-size: 13.5px;
    font-weight: 800;
    color: var(--forest);
    min-width: 18px;
    text-align: center;
  }
  .btn-add {
    background: var(--forest);
    color: var(--warm-white);
    font-size: 13px;
    font-weight: 700;
    padding: 9px 18px;
    border-radius: var(--radius-pill);
    transition: all .2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
  }
  .btn-add:hover {
    background: var(--citrus-bright);
    transform: scale(1.02);
  }

  /* ---------- CART DRAWER ---------- */
  .drawer-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(13, 40, 24, 0.55);
    backdrop-filter: blur(4px);
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease;
  }
  .drawer-backdrop.open { opacity: 1; pointer-events: auto; }
  .cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(440px, 92vw);
    background: var(--warm-white);
    z-index: 2001;
    transform: translateX(100%);
    transition: transform .35s var(--spring);
    box-shadow: -10px 0 50px rgba(13, 40, 24, 0.25);
    display: flex;
    flex-direction: column;
  }
  .cart-drawer.open { transform: translateX(0); }
  .drawer-header {
    padding: 22px 24px;
    border-bottom: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .drawer-header h3 { font-family: var(--display); font-size: 1.5rem; color: var(--forest); }
  .drawer-close {
    font-size: 20px;
    color: var(--body);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--paper);
  }
  .drawer-shipping {
    background: #E8F5E9;
    color: var(--leaf);
    padding: 10px 24px;
    font-size: 12.5px;
    font-weight: 700;
  }
  .drawer-items { padding: 20px 24px; flex: 1; overflow-y: auto; }
  .drawer-footer { padding: 20px 24px 28px; border-top: 1px solid var(--line); background: var(--cream); }
  .drawer-row { display: flex; justify-content: space-between; margin-bottom: 8px; font-size: 14.5px; color: var(--body); }
  .drawer-row.total {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--forest);
    margin: 12px 0 16px;
    padding-top: 10px;
    border-top: 1px dashed var(--line);
  }
  .btn-checkout {
    display: block;
    width: 100%;
    background: var(--citrus-bright);
    color: #fff;
    text-align: center;
    padding: 15px;
    border-radius: var(--radius-pill);
    font-size: 15px;
    font-weight: 800;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.35);
  }

  /* ---------- BOOKING / QUOTE MODAL ---------- */
  .modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(13, 40, 24, 0.65);
    backdrop-filter: blur(6px);
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
  }
  .modal-overlay.open { display: flex; }
  .modal-box {
    background: var(--warm-white);
    border-radius: var(--radius-lg);
    max-width: 620px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    padding: 36px 32px;
  }
  .modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 22px;
    background: var(--paper);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: grid;
    place-items: center;
  }
  .modal-box h3 { font-family: var(--display); font-size: 1.85rem; color: var(--forest); margin: 6px 0 8px; }
  .form-group { margin-bottom: 16px; }
  .form-group label { display: block; font-size: 13px; font-weight: 700; color: var(--forest); margin-bottom: 6px; }
  .form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 14px;
  }
  .btn-submit-booking {
    width: 100%;
    background: var(--forest);
    color: var(--lime);
    padding: 14px;
    border-radius: var(--radius-pill);
    font-weight: 800;
    font-size: 15px;
    margin-top: 8px;
  }

  /* ---------- FLOATING WHATSAPP BUTTON (ICON ONLY) ---------- */
  .whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1200;
    background: #25D366;
    color: #fff;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45);
    transition: transform .3s var(--spring), box-shadow .3s ease;
  }
  .whatsapp-float:hover {
    transform: translateY(-3px) scale(1.08);
    box-shadow: 0 14px 38px rgba(37, 211, 102, 0.6);
  }
  .whatsapp-float svg { width: 28px; height: 28px; fill: currentColor; }

  /* ---------- FOOTER ---------- */
  footer {
    background: var(--forest);
    color: var(--warm-white);
    padding: 70px 0 30px;
    margin-top: 0;
    border-top: none;
  }
  .foot-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(4, 1fr);
    gap: 36px;
    margin-bottom: 50px;
  }
  @media (max-width: 980px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 540px) { .foot-grid { grid-template-columns: 1fr; } }
  .foot-brand img { height: 32px; width: auto; margin-bottom: 14px; }
  .foot-brand p { color: rgba(255,255,255,.7); font-size: .95rem; line-height: 1.6; max-width: 320px; }
  .foot-col h4 {
    font-family: var(--cond);
    font-size: 14px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--lime);
    margin-bottom: 18px;
  }
  .foot-col ul { list-style: none; }
  .foot-col li { margin-bottom: 10px; font-size: 14px; color: rgba(255,255,255,.75); }
  .foot-col a:hover { color: #fff; text-decoration: underline; }
  .foot-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    font-size: 13px;
    color: rgba(255,255,255,.5);
    flex-wrap: wrap;
    gap: 12px;
  }

  /* ---------- MENU FILTER TOOLBAR & CONTROLS ---------- */
  .filter-toolbar-wrap {
    margin: 28px auto 20px;
    max-width: 960px;
    width: 100%;
  }
  .filter-main-bar {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    width: 100%;
  }
  .search-input-box {
    position: relative;
    flex: 1 1 auto;
    min-width: 240px;
  }
  .search-input-box svg.search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 17px;
    height: 17px;
    stroke: var(--body-light);
    pointer-events: none;
  }
  .search-input-box input {
    width: 100%;
    background: var(--warm-white);
    border: 1.5px solid var(--line);
    border-radius: var(--radius-pill);
    padding: 11px 40px 11px 44px;
    font-size: 14px;
    font-family: var(--sans);
    color: var(--forest);
    transition: all .2s ease;
    outline: none;
    box-shadow: 0 2px 10px rgba(13, 40, 24, 0.03);
  }
  .search-input-box input:focus {
    border-color: var(--forest);
    box-shadow: 0 4px 18px rgba(13, 40, 24, 0.08);
  }
  .search-clear-btn {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(13, 40, 24, 0.1);
    color: var(--forest);
    font-size: 11px;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
  .btn-filter-trigger {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--forest);
    color: #fff;
    padding: 10px 18px;
    border-radius: var(--radius-pill);
    font-size: 13.5px;
    font-weight: 700;
    cursor: pointer;
    transition: all .2s ease;
    white-space: nowrap;
    border: 1px solid var(--forest);
  }
  .btn-filter-trigger:hover {
    background: var(--leaf);
    border-color: var(--leaf);
  }
  .btn-filter-trigger svg {
    width: 16px;
    height: 16px;
    stroke: var(--lime);
  }
  .filter-count-badge {
    background: var(--lime);
    color: var(--forest);
    border-radius: var(--radius-pill);
    padding: 2px 7px;
    font-size: 11px;
    font-weight: 800;
    margin-left: 2px;
  }

  @media (max-width: 600px) {
    .filter-main-bar {
      flex-wrap: nowrap;
      gap: 8px;
    }
    .search-input-box {
      min-width: 0;
      flex: 1 1 auto;
    }
    .search-input-box input {
      font-size: 13px;
      padding: 10px 32px 10px 36px;
    }
    .search-input-box svg.search-icon {
      left: 12px;
      width: 15px;
      height: 15px;
    }
    .btn-filter-trigger {
      padding: 10px 14px;
      font-size: 12.5px;
      gap: 5px;
      flex-shrink: 0;
    }
  }

  /* Quick Filter Pills Row */
  .quick-filter-scroll {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding: 2px 4px 6px;
    justify-content: center;
    flex-wrap: wrap;
  }
  .quick-filter-scroll::-webkit-scrollbar { display: none; }
  @media (max-width: 860px) {
    .quick-filter-scroll {
      flex-wrap: nowrap;
      justify-content: flex-start;
    }
  }
  .quick-chip {
    font-family: var(--sans);
    font-size: 12.5px;
    font-weight: 600;
    padding: 7px 15px;
    border-radius: var(--radius-pill);
    background: var(--warm-white);
    color: var(--body);
    border: 1px solid var(--line);
    white-space: nowrap;
    cursor: pointer;
    transition: all .18s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }
  .quick-chip:hover {
    background: rgba(13, 40, 24, 0.04);
    border-color: rgba(13, 40, 24, 0.2);
  }
  .quick-chip.active {
    background: var(--forest);
    color: var(--lime);
    border-color: var(--forest);
    font-weight: 700;
  }

  /* Active Filters Bar */
  .active-filters-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    padding: 10px 16px;
    background: rgba(212, 233, 95, 0.12);
    border: 1px solid rgba(212, 233, 95, 0.35);
    border-radius: var(--radius-pill);
    margin: 14px auto 20px;
    font-size: 13px;
    max-width: 960px;
    width: 100%;
  }
  .active-filter-chips {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    align-items: center;
  }
  .dismiss-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--warm-white);
    border: 1px solid var(--line);
    padding: 4px 10px;
    border-radius: var(--radius-pill);
    font-size: 12px;
    font-weight: 700;
    color: var(--forest);
    cursor: pointer;
    transition: background .2s ease;
  }
  .dismiss-chip:hover { background: #fee; border-color: #fbb; color: #b00; }
  .btn-clear-all {
    color: var(--citrus);
    font-size: 12.5px;
    font-weight: 700;
    text-decoration: underline;
    cursor: pointer;
    background: none;
    border: none;
  }

  /* Empty State */
  .no-results-state {
    text-align: center;
    padding: 60px 20px;
    background: var(--warm-white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    margin: 30px 0;
  }
  .no-results-state svg {
    width: 48px;
    height: 48px;
    stroke: var(--body-light);
    margin-bottom: 16px;
  }
  .no-results-state h3 {
    font-family: var(--display);
    font-size: 1.8rem;
    color: var(--forest);
    margin-bottom: 8px;
  }
  .no-results-state p {
    color: var(--body);
    font-size: 14px;
    max-width: 440px;
    margin: 0 auto 20px;
  }

  /* Filter Modal / Bottom Sheet */
  .filter-modal-backdrop {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(13, 40, 24, 0.6);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 3000;
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease;
  }
  .filter-modal-backdrop.open {
    opacity: 1;
    pointer-events: auto;
  }
  .filter-modal {
    position: fixed;
    z-index: 3100;
    background: var(--cream);
    border-radius: 28px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.35);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .3s cubic-bezier(.22, 1, .36, 1), opacity .25s ease;
  }
  @media (min-width: 601px) {
    .filter-modal {
      top: 50%;
      left: 50%;
      transform: translate(-50%, -46%) scale(0.96);
      width: min(520px, 92vw);
      max-height: 85vh;
      opacity: 0;
      pointer-events: none;
    }
    .filter-modal.open {
      opacity: 1;
      pointer-events: auto;
      transform: translate(-50%, -50%) scale(1);
    }
  }
  @media (max-width: 600px) {
    .filter-modal {
      left: 0; right: 0; bottom: 0;
      width: 100%;
      max-height: 88vh;
      border-radius: 24px 24px 0 0;
      transform: translateY(100%);
      opacity: 1;
    }
    .filter-modal.open {
      transform: translateY(0);
    }
  }
  .filter-modal-header {
    padding: 20px 24px 16px;
    border-bottom: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--warm-white);
  }
  .filter-modal-header h3 {
    font-family: var(--display);
    font-size: 1.4rem;
    color: var(--forest);
  }
  .filter-modal-close {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(13, 40, 24, 0.08);
    color: var(--forest);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
  }
  .filter-modal-body {
    padding: 20px 24px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 22px;
  }
  .filter-group-title {
    font-family: var(--cond);
    font-size: 13.5px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--forest);
    margin-bottom: 10px;
    display: block;
  }
  .filter-options-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }
  .filter-pill-opt {
    font-size: 13px;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: var(--radius-pill);
    background: var(--warm-white);
    border: 1px solid var(--line);
    color: var(--forest);
    cursor: pointer;
    transition: all .15s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }
  .filter-pill-opt:hover {
    background: rgba(13, 40, 24, 0.05);
  }
  .filter-pill-opt.selected {
    background: var(--forest);
    color: var(--lime);
    border-color: var(--forest);
    font-weight: 700;
  }
  .filter-modal-footer {
    padding: 16px 24px;
    border-top: 1px solid var(--line);
    display: flex;
    gap: 12px;
    background: var(--warm-white);
  }
  .btn-modal-reset {
    flex: 1;
    padding: 12px;
    border-radius: var(--radius-pill);
    border: 1px solid var(--line);
    background: var(--paper);
    color: var(--forest);
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
  }
  .btn-modal-apply {
    flex: 2;
    padding: 12px;
    border-radius: var(--radius-pill);
    background: var(--citrus-bright);
    color: #fff;
    font-weight: 800;
    font-size: 14px;
    box-shadow: 0 4px 14px rgba(255, 107, 53, 0.35);
    cursor: pointer;
  }



/* ==========================================================================
   ENFORCED DESIGN REQUIREMENTS & MOBILE REFINEMENTS
   ========================================================================== */

/* Unified Display Heading Font - Calistoga Editorial Serif across all headings */
:root {
  --display: "Calistoga", Georgia, serif !important;
}

h1, h2, h3,
.sec-header h2,
.welcome-box h2,
.about-left h2,
.pre-footer h2,
.menu-hero h1,
.cat-sec-header h2,
.category-sec-header h2,
.cat-header h2,
.modal-box h3,
.drawer-header h3,
.exp-body h3,
.section-title,
.sec-title,
.heading-display {
  font-family: "Calistoga", Georgia, serif !important;
  font-weight: 400 !important;
}

/* Accents inside Calistoga headings */
h1 span.accent,
h2 span.accent,
h3 span.accent,
.hero-headline span.accent,
.hero-headline span.pop,
.about-left h2 span {
  font-family: "Calistoga", Georgia, serif !important;
  font-weight: 400 !important;
  font-style: normal !important;
}

/* 1. Hero top breathing room */
.hero {
  padding-top: 100px !important;
}
@media (max-width: 768px) {
  .hero {
    padding-top: 92px !important;
  }
}

/* 1b. Hero Headline - Editorial Calistoga Serif */
.hero h1,
.hero-inner h1,
.hero-headline {
  font-family: "Calistoga", Georgia, serif !important;
  font-weight: 400 !important;
  font-size: clamp(5.2rem, 7.8vw, 6rem) !important;
  line-height: 1.04 !important;
  letter-spacing: -0.01em !important;
  color: var(--forest) !important;
  margin-bottom: 20px !important;
  text-transform: none !important;
}
.hero h1 span.accent,
.hero-inner h1 span.accent,
.hero-headline span.accent,
.hero-headline span.pop {
  color: var(--citrus-bright) !important;
  font-family: "Calistoga", Georgia, serif !important;
  font-weight: 400 !important;
  font-style: normal !important;
}
@media (max-width: 600px) {
  .hero h1,
  .hero-inner h1,
  .hero-headline {
    font-size: clamp(2.8rem, 11vw, 4.4rem) !important;
    line-height: 1.06 !important;
  }
}

/* 1c. Sticky Floating Navbar on Scroll */
.nav-wrap {
  position: relative;
  z-index: 1000;
  padding: 10px 20px 0;
  transition: transform 0.25s ease, top 0.25s ease;
  width: 100%;
  box-sizing: border-box;
}

.nav-wrap.is-sticky {
  position: fixed !important;
  top: 10px !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  padding: 0 20px !important;
  z-index: 1100 !important;
  pointer-events: none !important;
}

body.admin-bar .nav-wrap.is-sticky {
  top: 42px !important;
}

.nav-wrap.is-sticky .nav-bar {
  pointer-events: auto !important;
  box-shadow: 0 16px 45px rgba(13, 40, 24, 0.35) !important;
}

@media (max-width: 768px) {
  .nav-wrap {
    padding: 8px 12px 0 !important;
  }
  .nav-wrap.is-sticky {
    top: 8px !important;
    padding: 0 12px !important;
  }
  body.admin-bar .nav-wrap.is-sticky {
    top: 54px !important;
  }
  .nav-bar {
    padding: 5px 8px 5px 6px !important;
    height: 52px !important;
  }
  .nav-brand img {
    height: 26px !important;
  }
  .nav-actions {
    gap: 6px !important;
  }
  .btn-nav-order {
    padding: 6px 12px !important;
    font-size: 12px !important;
    height: 38px !important;
  }
  .btn-cart {
    width: 38px !important;
    height: 38px !important;
  }
  .btn-burger {
    width: 38px !important;
    height: 38px !important;
  }
}

.nav-bar {
  pointer-events: auto !important;
  background: var(--forest) !important;
  backdrop-filter: blur(14px) !important;
  -webkit-backdrop-filter: blur(14px) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: var(--radius-pill) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 7px 12px 7px 8px !important;
  max-width: 1240px !important;
  margin: 0 auto !important;
  box-shadow: 0 18px 50px rgba(13, 40, 24, 0.28) !important;
}

.nav-actions {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
}

.nav-menu, .nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-menu li, .nav-links li {
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-menu a, .nav-links a {
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  padding: 9px 16px !important;
  border-radius: var(--radius-pill) !important;
  transition: all .2s ease !important;
  white-space: nowrap !important;
  text-decoration: none !important;
  display: inline-block !important;
}
.nav-menu a:hover, .nav-links a:hover {
  color: var(--lime) !important;
  background: rgba(212, 233, 95, 0.16) !important;
}

/* Responsive Nav Breakpoint */
@media (max-width: 1040px) {
  .nav-menu, .nav-links {
    display: none !important;
  }
  .btn-nav-book {
    display: none !important;
  }
  .btn-burger {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  .btn-nav-order {
    display: inline-flex !important;
  }
}
@media (min-width: 1041px) {
  .btn-burger {
    display: none !important;
  }
  .nav-menu, .nav-links {
    display: flex !important;
  }
}

/* 1d. HERO 3D ROTATING PERSPECTIVE STAGE SIZE BOOST */
:root {
  --stage-card-w: 360px !important;
  --stage-card-h: 510px !important;
  --stage-tilt: 7.5deg !important;
}
.stage-container {
  height: 570px !important;
  margin: 36px auto 0 !important;
}

@media (max-width: 900px) {
  :root {
    --stage-card-w: 290px !important;
    --stage-card-h: 430px !important;
    --stage-tilt: 5deg !important;
  }
  .stage-container {
    height: 480px !important;
    margin-top: 24px !important;
  }
}

@media (max-width: 600px) {
  :root {
    --stage-card-w: min(84vw, 290px) !important;
    --stage-card-h: min(118vw, 410px) !important;
    --stage-tilt: 4.5deg !important;
  }
  .stage-container {
    height: 440px !important;
    margin-top: 18px !important;
  }
  .rot-card.pos-left {
    transform: translate3d(calc(-1 * (var(--stage-card-w) * 0.44)), 16px, 0px) rotate(calc(-1 * var(--stage-tilt))) scale(0.84) !important;
  }
  .rot-card.pos-right {
    transform: translate3d(calc(var(--stage-card-w) * 0.44), 16px, 0px) rotate(var(--stage-tilt)) scale(0.84) !important;
  }
}

/* 2. Single-line ellipsis titles on all product cards */
.prod-card h3,
.prod-title,
.name,
.menu-item-title,
.card-title,
.p-card h3 {
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  display: block !important;
  max-width: 100% !important;
}

/* 3. Symmetrical Mobile Hero CTAs on the exact same line */
@media (max-width: 768px) {
  .hero {
    padding-top: 80px !important;
  }
  .hero-actions {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 12px !important;
    width: 100% !important;
    max-width: 380px !important;
    margin: 0 auto !important;
    align-items: stretch !important;
  }
  .hero-actions .btn-hero-order,
  .hero-actions .btn-hero-book {
    width: 100% !important;
    min-height: 48px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 16px !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.06em !important;
    border-radius: var(--radius-pill) !important;
    box-sizing: border-box !important;
    line-height: 1 !important;
    margin: 0 !important;
    text-align: center !important;
  }
  .hero-actions .btn-hero-order {
    background: var(--forest) !important;
    color: var(--lime) !important;
    border: 1.5px solid var(--forest) !important;
  }
  .hero-actions .btn-hero-book {
    background: transparent !important;
    color: var(--forest) !important;
    border: 1.5px solid var(--forest) !important;
  }
}

/* 4. Sticky Mobile Nav Order Now Button */
.btn-nav-order {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  background: var(--forest);
  color: var(--lime);
  font-family: var(--cond);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  transition: all 0.2s ease;
  white-space: nowrap;
  text-decoration: none;
}
.btn-nav-order:hover {
  background: var(--leaf);
  color: #FFFFFF;
}

/* 5. WhatsApp Floating Concierge - strictly icon-only circular 56px */
.whatsapp-float {
  position: fixed !important;
  bottom: 24px !important;
  right: 24px !important;
  width: 56px !important;
  height: 56px !important;
  border-radius: 50% !important;
  background: #25D366 !important;
  color: #FFFFFF !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45) !important;
  z-index: 1200 !important;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease !important;
  text-decoration: none !important;
  padding: 0 !important;
}
.whatsapp-float:hover {
  transform: scale(1.08) translateY(-2px) !important;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.55) !important;
}
.whatsapp-float svg {
  width: 30px !important;
  height: 30px !important;
  fill: #FFFFFF !important;
}

/* 6. Product Card Quantity Steppers */
.prod-counter {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: #FFFFFF;
  padding: 2px 6px;
  gap: 6px;
}
.prod-counter button {
  background: none;
  border: none;
  font-size: 16px;
  font-weight: 700;
  color: var(--forest);
  cursor: pointer;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s ease;
}
.prod-counter button:hover {
  background: rgba(13, 40, 24, 0.08);
}
.prod-counter .qty-val {
  font-size: 13px;
  font-weight: 700;
  color: var(--forest);
  min-width: 16px;
  text-align: center;
}

/* 7. Close space between CTA section and footer completely */
.pre-footer {
  margin-bottom: 0 !important;
}
footer {
  margin-top: 0 !important;
  border-top: none !important;
}
