:root {
    /* The whole site uses only these colors */
    --bg: #faf7f1;          /* page background */
    --surface: #f1ebe1;     /* alternate section background / light cards */
    --stone: #e4e1da;       /* cooler mid tone — breaks beige runs */
    --card: #ffffff;        /* white cards & white sections */
    --ink: #262019;         /* text, dark buttons */
    --muted: #8c8375;       /* secondary text */
    --bronze: #6d5433;      /* serif italic accents, stars */
    --wine: #5d2434;        /* brand accent */
    --cream: #f2e8e4;       /* text on wine */
    --line: rgba(38, 32, 25, 0.12);

    --dark-bg: #14110c;     /* dark cards, footer */
    --dark-text: #f4efe6;
    --dark-muted: #9a917f;
    --dark-line: rgba(244, 239, 230, 0.14);

    --container: 1200px;    /* shared desktop content width */
    --haidi-gutter: 18px;   /* mobile side inset — matches header padding */
    --haidi-gutter-d: 32px; /* desktop side inset — matches header */
    --haidi-shell: min(100% - (var(--haidi-gutter) * 2), var(--container));
    --sans: 'Outfit', system-ui, sans-serif;
  }

  @media (min-width: 900px) {
    :root {
      --haidi-shell: min(100% - (var(--haidi-gutter-d) * 2), var(--container));
    }
  }

  .haidi-home,
  .haidi-home * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  .haidi-home html { scroll-behavior: smooth; }

  .haidi-home {
    background: var(--bg);
    color: var(--ink);
    font-family: var(--sans);
    font-weight: 300;
    -webkit-font-smoothing: antialiased;
    position: relative;
    overflow-x: hidden;
  }
  .haidi-home a { color: inherit; }

  /* ============ HEADER ============ */
  .haidi-home .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    background: rgba(250, 247, 241, 0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
    transition: transform 0.35s ease;
  }
  .haidi-home .header.hidden { transform: translateY(-100%); }

  .haidi-home .header .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 600;
    letter-spacing: 6px;
    color: var(--ink);
    text-decoration: none;
  }
  .haidi-home .header .logo span { color: var(--wine); }

  .haidi-home .header-left {
    display: flex;
    align-items: center;
    gap: 2px;
  }

  .haidi-home .icon-btn {
    background: none;
    border: none;
    color: var(--ink);
    padding: 6px;
    display: flex;
    align-items: center;
    cursor: pointer;
  }
  .haidi-home .icon-btn svg { width: 22px; height: 22px; stroke: currentColor; }
  .haidi-home .header-right { display: flex; gap: 4px; }

  /* Flush outer icons to the shared shell edge (no extra 6px inset) */
  .haidi-home .header-left > .icon-btn:first-child { padding-left: 0; }
  .haidi-home .header-right > .icon-btn:last-child { padding-right: 0; }

  .haidi-home .cart-btn { position: relative; }
  .haidi-home .cart-count {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--wine);
    color: #fff;
    font-size: 9px;
    font-weight: 600;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* ============ MOBILE NAV DRAWER ============ */
  .haidi-home .drawer {
    position: fixed;
    inset: 0;
    z-index: 10030;
    pointer-events: none;
  }
  .haidi-home .drawer-overlay {
    position: absolute;
    inset: 0;
    background: rgba(20, 17, 12, 0.42);
    opacity: 0;
    transition: opacity 0.36s ease;
  }
  .haidi-home .drawer-panel {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: auto;
    width: auto;
    max-width: none;
    display: flex;
    flex-direction: column;
    height: min(92vh, 860px);
    max-height: 92vh;
    background: #fff;
    color: var(--ink);
    border: none;
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -18px 50px rgba(20, 17, 12, 0.16);
    padding: 0;
    padding-bottom: env(safe-area-inset-bottom, 0px);
    transform: translateY(108%);
    transition: transform 0.52s cubic-bezier(0.22, 1, 0.36, 1);
    overflow: hidden;
  }
  .haidi-home .drawer.open { pointer-events: auto; }
  .haidi-home .drawer.open .drawer-overlay { opacity: 1; }
  .haidi-home .drawer.open .drawer-panel { transform: translateY(0); }

  .haidi-home .drawer-handle {
    flex-shrink: 0;
    width: 36px;
    height: 4px;
    margin: 10px auto 0;
    border-radius: 4px;
    background: rgba(38, 32, 25, 0.16);
  }
  .haidi-home .drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 20px 8px;
    margin: 0;
    flex-shrink: 0;
  }
  .haidi-home .drawer-title {
    margin: 0;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }
  .haidi-home .drawer-panel .logo-wrap {
    margin-bottom: 0;
    min-width: 0;
  }
  .haidi-home .drawer-panel .logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    letter-spacing: 5px;
    margin-bottom: 0;
  }
  .haidi-home .drawer-panel .logo span { color: var(--wine); }
  .haidi-home .drawer-close {
    flex: none;
    width: 36px;
    height: 36px;
    margin: -6px -6px -6px 0;
    padding: 0;
    border: none;
    background: none;
    color: var(--ink);
    cursor: pointer;
    display: grid;
    place-items: center;
  }
  .haidi-home .drawer-close svg {
    width: 20px;
    height: 20px;
  }
  .haidi-home .drawer-scroll {
    flex: 1 1 auto;
    min-height: 0;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 4px 24px 24px;
  }
  .haidi-home .drawer-nav {
    display: flex;
    flex-direction: column;
    gap: 0;
    flex: 0 0 auto;
  }
  .haidi-home .drawer-nav .haidi-menu,
  .haidi-home .drawer-nav .haidi-menu--mobile {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .haidi-home .drawer-nav .haidi-menu li {
    display: block;
    width: 100%;
    list-style: none;
  }
  .haidi-home .drawer-nav a {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    color: var(--ink);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
  }
  .haidi-home .drawer-nav a em {
    font-style: normal;
    color: var(--wine);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.12em;
    flex: none;
  }
  .haidi-home .drawer-quiz {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    width: 100%;
    margin-top: auto;
    padding: 22px 20px 20px;
    border: none;
    text-align: left;
    cursor: pointer;
    color: var(--cream);
    background:
      linear-gradient(160deg, rgba(93, 36, 52, 0.94) 0%, rgba(38, 32, 25, 0.92) 100%);
    font-family: inherit;
  }
  .haidi-home .drawer-quiz-kicker {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(242, 232, 228, 0.72);
  }
  .haidi-home .drawer-quiz-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 600;
    letter-spacing: 0.02em;
    line-height: 1.15;
    color: #fff;
  }
  .haidi-home .drawer-quiz-sub {
    font-size: 13px;
    line-height: 1.45;
    color: rgba(242, 232, 228, 0.78);
    font-weight: 300;
  }
  .haidi-home .drawer-quiz-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #fff;
  }
  .haidi-home .drawer-quiz-cta svg {
    width: 14px;
    height: 14px;
  }
  .haidi-home .drawer-footer {
    flex-shrink: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 10px;
    margin: 0;
    padding: 14px 24px 18px;
    border-top: 1px solid var(--line);
    font-size: 11px;
    color: var(--muted);
    letter-spacing: 0.06em;
  }
  .haidi-home .drawer-footer i {
    font-style: normal;
    opacity: 0.5;
  }

  .haidi-home .drawer.open .drawer-handle,
  .haidi-home .drawer.open .drawer-head,
  .haidi-home .drawer.open .drawer-nav a,
  .haidi-home .drawer.open .drawer-quiz,
  .haidi-home .drawer.open .drawer-footer {
    animation: haidi-drawer-rise 0.56s cubic-bezier(0.22, 1, 0.36, 1) both;
  }
  .haidi-home .drawer.open .drawer-handle { animation-delay: 0.08s; }
  .haidi-home .drawer.open .drawer-head { animation-delay: 0.12s; }
  .haidi-home .drawer.open .drawer-nav li:nth-child(1) a,
  .haidi-home .drawer.open .drawer-nav > a:nth-child(1) { animation-delay: 0.16s; }
  .haidi-home .drawer.open .drawer-nav li:nth-child(2) a,
  .haidi-home .drawer.open .drawer-nav > a:nth-child(2) { animation-delay: 0.2s; }
  .haidi-home .drawer.open .drawer-nav li:nth-child(3) a,
  .haidi-home .drawer.open .drawer-nav > a:nth-child(3) { animation-delay: 0.24s; }
  .haidi-home .drawer.open .drawer-nav li:nth-child(4) a,
  .haidi-home .drawer.open .drawer-nav > a:nth-child(4) { animation-delay: 0.28s; }
  .haidi-home .drawer.open .drawer-nav li:nth-child(5) a,
  .haidi-home .drawer.open .drawer-nav > a:nth-child(5) { animation-delay: 0.32s; }
  .haidi-home .drawer.open .drawer-nav li:nth-child(6) a,
  .haidi-home .drawer.open .drawer-nav > a:nth-child(6) { animation-delay: 0.36s; }
  .haidi-home .drawer.open .drawer-nav li:nth-child(7) a,
  .haidi-home .drawer.open .drawer-nav > a:nth-child(7) { animation-delay: 0.4s; }
  .haidi-home .drawer.open .drawer-nav li:nth-child(8) a,
  .haidi-home .drawer.open .drawer-nav > a:nth-child(8) { animation-delay: 0.44s; }
  .haidi-home .drawer.open .drawer-nav li:nth-child(n+9) a,
  .haidi-home .drawer.open .drawer-nav > a:nth-child(n+9) { animation-delay: 0.48s; }
  .haidi-home .drawer.open .drawer-quiz { animation-delay: 0.42s; }
  .haidi-home .drawer.open .drawer-footer { animation-delay: 0.5s; }
  @keyframes haidi-drawer-rise {
    from {
      opacity: 0;
      transform: translateY(22px);
    }
    to {
      opacity: 1;
      transform: none;
    }
  }
  @media (prefers-reduced-motion: reduce) {
    .haidi-home .drawer-overlay,
    .haidi-home .drawer-panel {
      transition-duration: 0.01ms;
    }
    .haidi-home .drawer.open .drawer-handle,
    .haidi-home .drawer.open .drawer-head,
    .haidi-home .drawer.open .drawer-nav a,
    .haidi-home .drawer.open .drawer-quiz,
    .haidi-home .drawer.open .drawer-footer {
      animation: none;
    }
  }

  body.haidi-drawer-open {
    overflow: hidden;
  }

  /* ============ HERO ============ */
  .haidi-home .hero {
    position: relative;
    min-height: 88svh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 84px 24px 32px;
    /* Hero background image is set via inline styles from the shortcode */
    background-color: var(--bg);
  }

  .haidi-home .hero h1 {
    font-family: var(--sans);
    font-weight: 600;
    font-size: clamp(26px, 7.2vw, 34px);
    letter-spacing: 3px;
    line-height: 1.1;
    text-transform: uppercase;
    color: var(--ink);
  }
  .haidi-home .hero h1 .accent {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 600;
    font-size: clamp(30px, 8.5vw, 40px);
    letter-spacing: 1.5px;
    text-transform: none;
    color: var(--bronze);
  }

  .haidi-home .hero p {
    margin-top: 12px;
    max-width: 280px;
    font-size: 14px;
    line-height: 1.55;
    font-weight: 400;
    color: var(--ink);
  }

  .haidi-home .hero-spacer { flex: 1; min-height: 48px; }

  .haidi-home .hero-actions { display: flex; flex-direction: column; gap: 12px; }

  .haidi-home .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 24px;
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: opacity 0.2s ease;
  }
  .haidi-home .btn:active { opacity: 0.75; }
  .haidi-home .btn-solid { background: var(--ink); color: var(--dark-text); border: 1px solid var(--ink); }
  .haidi-home .btn-outline { background: rgba(250,247,241,0.55); color: var(--ink); border: 1px solid rgba(38,32,25,0.45); backdrop-filter: blur(4px); }

  /* ============ FEATURES MARQUEE ============ */
  .haidi-home .marquee {
    overflow: hidden;
    background: var(--card);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 14px 0;
  }
  .haidi-home .marquee-track {
    display: flex;
    width: max-content;
    animation: haidi-marquee 72s linear infinite;
    will-change: transform;
  }
  .haidi-home .marquee-group {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    white-space: nowrap;
  }
  .haidi-home .marquee-group span {
    font-size: 11.5px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--muted);
    padding: 0 22px;
  }
  .haidi-home .marquee-group i {
    font-style: normal;
    color: var(--bronze);
    font-size: 9px;
    flex-shrink: 0;
  }
  @keyframes haidi-marquee {
    from { transform: translate3d(0, 0, 0); }
    to { transform: translate3d(-50%, 0, 0); }
  }
  @media (prefers-reduced-motion: reduce) {
    .haidi-home .marquee-track { animation: none; }
  }

  /* ============ SECTION BASICS ============ */
  .haidi-home section { padding: 64px 24px; }

  .haidi-home .kicker {
    display: block;
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 12px;
  }
  .haidi-home .section-title {
    font-family: var(--sans);
    font-weight: 500;
    font-size: clamp(26px, 7.5vw, 34px);
    letter-spacing: 2.5px;
    text-transform: uppercase;
    line-height: 1.2;
  }
  .haidi-home .section-sub {
    margin-top: 14px;
    font-size: 15px;
    line-height: 1.65;
    color: var(--muted);
  }

  /* ============ BLIND TEST ============ */
  .haidi-home .blind-test { text-align: center; background: var(--card); overflow: hidden; }

  /* On mobile the text wrapper dissolves so the layout stays: text, cards, button */
  .haidi-home .bt-inner { display: flex; flex-direction: column; }
  .haidi-home .bt-text { display: contents; }
  .haidi-home .blind-test .section-title em { font-style: normal; }
  .haidi-home .blind-test .versus { order: 5; }
  .haidi-home .blind-test .btn { order: 6; }

  .haidi-home .versus {
    position: relative;
    margin: 44px auto 0;
    max-width: 380px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding: 10px 4px;
  }
  .haidi-home .vs-card {
    aspect-ratio: 3 / 4.1;
    padding: 18px 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    text-align: left;
    box-shadow: 0 14px 30px rgba(38, 32, 25, 0.14);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
  }
  .haidi-home .vs-card .label {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
  }
  .haidi-home .vs-card .letter {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 500;
    font-size: 64px;
    line-height: 0.9;
  }
  .haidi-home .vs-card.a {
    background: var(--surface);
    color: var(--ink);
    transform: rotate(-2.5deg);
  }
  .haidi-home .vs-card.b {
    background: var(--dark-bg);
    color: var(--dark-text);
    transform: rotate(2.5deg);
  }
  @media (hover: hover) {
    .haidi-home .vs-card.a:hover {
      transform: rotate(-2.5deg) translateY(-12px);
      box-shadow: 0 28px 48px rgba(38, 32, 25, 0.2);
    }
    .haidi-home .vs-card.b:hover {
      transform: rotate(2.5deg) translateY(-12px);
      box-shadow: 0 28px 48px rgba(38, 32, 25, 0.3);
    }
  }

  .haidi-home .vs-symbol {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--wine);
    color: var(--cream);
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(93, 36, 52, 0.35);
    pointer-events: none;
    z-index: 2;
  }

  .haidi-home .blind-test .btn {
    margin: 40px auto 0;
    width: 100%;
    max-width: 380px;
    gap: 10px;
    background: transparent;
  }
  .haidi-home .blind-test .btn svg { width: 18px; height: 18px; fill: currentColor; }

  /* ============ SIGNATURE SCENT QUIZ ============ */
  .haidi-home .signature { text-align: center; background: var(--wine); color: var(--cream); }
  .haidi-home .signature .kicker { color: rgba(242, 232, 228, 0.6); }
  .haidi-home .signature .section-sub { color: rgba(242, 232, 228, 0.75); }
  /* Beat theme h2 / heading color overrides on dark wine bg */
  .haidi-home .signature .section-title,
  .haidi-home .signature .section-title .accent {
    color: var(--cream) !important;
  }
  .haidi-home .signature .section-title .accent {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 500;
    font-size: 1.18em;
    letter-spacing: 1px;
    text-transform: none;
  }

  .haidi-home .signature-points {
    margin: 30px auto 0;
    max-width: 420px;
    display: flex;
    justify-content: center;
  }
  .haidi-home .signature-points div {
    flex: 1;
    padding: 4px 10px;
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(242, 232, 228, 0.8);
    line-height: 1.5;
  }
  .haidi-home .signature-points div + div { border-left: 1px solid rgba(242, 232, 228, 0.28); }

  .haidi-home .signature .btn {
    margin-top: 30px;
    width: 100%;
    background: var(--cream);
    color: var(--wine);
    border: 1px solid var(--cream);
    font-weight: 600;
  }

  /* ============ COLLECTIONS ============ */
  .haidi-home .collections { text-align: center; }
  .haidi-home .collection-list { margin-top: 32px; display: flex; flex-direction: column; gap: 14px; }
  .haidi-home .collection-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 12px;
    min-height: 190px;
    padding: 22px 20px;
    text-decoration: none;
    overflow: hidden;
    text-align: left;
    transition: transform 0.55s ease;
  }
  .haidi-home .collection-card:nth-child(1) { transform: rotate(-0.6deg); }
  .haidi-home .collection-card:nth-child(2) { transform: rotate(0.5deg); }
  .haidi-home .collection-card:nth-child(3) { transform: rotate(-0.4deg); }
  @media (hover: hover) {
    .haidi-home .collection-card:hover {
      transform: rotate(0deg) scale(1.01);
      z-index: 2;
    }
  }
  .haidi-home .collection-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: var(--col-img, none);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.7s ease;
    z-index: 0;
  }
  @media (hover: hover) {
    .haidi-home .collection-card:hover::before {
      transform: scale(1.08);
    }
  }
  .haidi-home .collection-card > * {
    position: relative;
    z-index: 1;
  }
  /* Gradient fallbacks when no photo is set */
  .haidi-home .collection-card.women { --col-img: linear-gradient(160deg, #4a3038 0%, #241318 60%, #150c0e 100%); }
  .haidi-home .collection-card.men { --col-img: linear-gradient(160deg, #33404b 0%, #171d22 60%, #0e1114 100%); }
  .haidi-home .collection-card.unisex { --col-img: linear-gradient(160deg, #4d4022 0%, #241d0f 60%, #14100a 100%); }
  .haidi-home .collection-card h3 {
    font-size: 28px;
    font-weight: 500;
    letter-spacing: 5px;
    text-transform: uppercase;
  }
  .haidi-home .collection-card .arrow {
    font-size: 24px;
    line-height: 1;
  }
  .haidi-home .collection-card.text-light h3,
  .haidi-home .collection-card.text-light .arrow {
    color: var(--dark-text);
  }
  .haidi-home .collection-card.text-dark h3,
  .haidi-home .collection-card.text-dark .arrow {
    color: var(--ink);
  }
  .collection-card .cc-sub,
  .haidi-home .collection-card .cc-explore { display: none; }

  /* ============ BEST SELLERS ============ */
  .haidi-home .bestsellers { background: var(--stone); padding-right: 0; }
  .haidi-home .bestsellers-head { padding-right: 24px; }

  .haidi-home .bestseller-tabs {
    margin-top: 22px;
    padding-right: 24px;
    display: flex;
    gap: 4px;
    border-bottom: 1px solid var(--line);
  }
  .haidi-home .bestseller-tab {
    appearance: none;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    padding: 10px 14px;
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--muted);
    cursor: pointer;
    transition: color 0.25s ease, border-color 0.25s ease;
  }
  .haidi-home .bestseller-tab:hover { color: var(--ink); }
  .haidi-home .bestseller-tab.active {
    color: var(--ink);
    border-bottom-color: var(--ink);
    font-weight: 500;
  }
  .haidi-home .product-card.is-hidden { display: none; }
  .haidi-home .bestseller-empty {
    margin: 28px 24px 0 0;
    font-size: 14px;
    color: var(--muted);
    text-align: center;
  }

  .haidi-home .product-row {
    margin-top: 30px;
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding-bottom: 12px;
    padding-right: 24px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .haidi-home .product-row::-webkit-scrollbar { display: none; }

  .haidi-home .product-card {
    position: relative;
    flex: 0 0 62%;
    max-width: 230px;
    scroll-snap-align: start;
    background: var(--card);
    border: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    transition: transform 0.45s ease, box-shadow 0.45s ease;
  }
  @media (hover: hover) {
    .haidi-home .product-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 18px 36px rgba(38, 32, 25, 0.1);
    }
  }
  .haidi-home .product-img {
    height: 190px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: radial-gradient(90% 80% at 50% 30%, #f1e9d8 0%, #ece3d1 100%);
    overflow: hidden;
  }
  .haidi-home .product-img .bottle {
    width: 52px;
    height: 88px;
    background: linear-gradient(160deg, #2e2618 0%, #171208 100%);
    border-radius: 3px 3px 8px 8px;
    position: relative;
    animation: haidi-float-simple 4.8s ease-in-out infinite;
  }
  .haidi-home .product-card:nth-child(2) .bottle { animation-delay: 0.5s; }
  .haidi-home .product-card:nth-child(3) .bottle { animation-delay: 1s; }
  .haidi-home .product-card:nth-child(4) .bottle { animation-delay: 1.5s; }
  .haidi-home .product-img .bottle::before {
    content: '';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 18px;
    height: 12px;
    background: #14110b;
    border-radius: 2px 2px 0 0;
  }
  .haidi-home .product-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 9px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--dark-text);
    background: var(--ink);
    padding: 4px 8px;
    font-weight: 500;
  }
  .haidi-home .product-info { padding: 16px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
  .haidi-home .product-info .inspired { font-size: 10.5px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); }
  .haidi-home .product-info h3 { font-family: 'Cormorant Garamond', serif; font-size: 21px; font-weight: 600; letter-spacing: 1px; }
  .haidi-home .product-info .stars { color: var(--bronze); font-size: 12px; letter-spacing: 2px; }
  .haidi-home .product-info .stars span { color: var(--muted); font-size: 11px; letter-spacing: 0.5px; margin-left: 4px; }
  .haidi-home .product-price { margin-top: auto; padding-top: 8px; display: flex; align-items: baseline; gap: 8px; }
  .haidi-home .product-price .now { font-size: 17px; color: var(--ink); font-weight: 400; }
  .haidi-home .product-price .was { font-size: 12.5px; color: var(--muted); text-decoration: line-through; }

  .haidi-home .bestsellers .btn { margin-top: 24px; margin-right: 24px; width: calc(100% - 24px); }

  /* ============ REVIEWS (slideshow) ============ */
  .haidi-home .reviews {
    text-align: center;
    padding-right: 0;
    background: var(--dark-bg);
    color: var(--dark-text);
  }
  .haidi-home .reviews-head { padding-right: 24px; }
  .haidi-home .reviews .kicker { color: var(--dark-muted); }
  .haidi-home .reviews .section-title { color: var(--dark-text); }

  .haidi-home .review-row {
    margin-top: 32px;
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding-bottom: 4px;
    padding-right: 24px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    text-align: left;
  }
  .haidi-home .review-row::-webkit-scrollbar { display: none; }

  .haidi-home .review-card {
    flex: 0 0 84%;
    max-width: 330px;
    scroll-snap-align: center;
    background: rgba(244, 239, 230, 0.05);
    border: 1px solid var(--dark-line);
    padding: 24px 22px;
    display: flex;
    flex-direction: column;
    transition: transform 0.45s ease, box-shadow 0.45s ease;
  }
  .haidi-home .review-card:nth-child(3n+1) { transform: rotate(-1.2deg); }
  .haidi-home .review-card:nth-child(3n+2) { transform: rotate(0.9deg); }
  .haidi-home .review-card:nth-child(3n+3) { transform: rotate(-0.5deg); }
  @media (hover: hover) {
    .haidi-home .review-card:hover {
      transform: rotate(0deg) translateY(-5px);
      box-shadow: 0 16px 32px rgba(0, 0, 0, 0.25);
    }
  }
  .haidi-home .review-card .stars { color: var(--bronze); font-size: 13px; letter-spacing: 3px; }
  /* Reset theme blockquote borders (often a blue/left accent bar) */
  .haidi-home .review-card blockquote {
    margin: 12px 0 0;
    padding: 0;
    border: none !important;
    border-left: none !important;
    quotes: none;
    background: transparent;
    box-shadow: none;
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-style: italic;
    line-height: 1.55;
    color: var(--dark-text);
  }
  .haidi-home .review-card blockquote::before,
  .haidi-home .review-card blockquote::after {
    content: none !important;
  }
  .haidi-home .review-card .author {
    margin-top: auto;
    padding-top: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    letter-spacing: 1px;
    color: var(--dark-muted);
    text-transform: uppercase;
  }

  .haidi-home .review-dots {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 8px;
    padding-right: 24px;
  }
  .haidi-home .review-dots i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(244, 239, 230, 0.25);
    transition: background 0.25s ease, transform 0.25s ease;
  }
  .haidi-home .review-dots i.active { background: var(--dark-text); transform: scale(1.25); }

  /* ============ DISCOVERY SET ============ */
  .haidi-home .discovery {
    background: var(--bg);
    text-align: left;
    padding: 24px 16px 48px;
  }
  .haidi-home .discovery-banner {
    position: relative;
    display: flex;
    flex-direction: column-reverse;
    overflow: hidden;
    background: var(--bg);
    min-height: 0;
  }
  .haidi-home .discovery-media {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    min-height: 280px;
    background-color: var(--stone);
    background-size: cover;
    background-position: center;
  }
  .haidi-home .discovery-media::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 42%;
    background: linear-gradient(to top, var(--bg) 0%, rgba(250, 247, 241, 0.72) 45%, transparent 100%);
    pointer-events: none;
  }
  .haidi-home .discovery-copy {
    position: relative;
    z-index: 1;
    padding: 8px 8px 8px;
    margin-top: -36px;
  }
  .haidi-home .discovery-copy .kicker {
    color: var(--muted);
  }
  .haidi-home .discovery-title {
    margin-top: 10px;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: clamp(32px, 9vw, 42px);
    line-height: 1.12;
    letter-spacing: 0.2px;
    color: var(--ink);
  }
  .haidi-home .discovery-sub {
    margin-top: 14px;
    max-width: 340px;
    font-size: 15px;
    line-height: 1.6;
    color: var(--muted);
  }
  .haidi-home .discovery .price-line {
    margin-top: 18px;
    display: flex;
    align-items: baseline;
    gap: 10px;
  }
  .haidi-home .discovery .price-line .now {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    color: var(--ink);
  }
  .haidi-home .discovery .price-line .was {
    font-size: 14px;
    color: var(--muted);
    text-decoration: line-through;
  }
  .haidi-home .discovery .btn {
    margin-top: 22px;
    width: 100%;
    max-width: 280px;
  }
  .haidi-home .discovery .note {
    margin-top: 12px;
    font-size: 12px;
    color: var(--muted);
    letter-spacing: 0.5px;
  }
  .haidi-home .discovery-banner--empty .discovery-media {
    background: linear-gradient(145deg, #2a2420 0%, #14110c 55%, #3a2a22 100%);
  }

  @keyframes haidi-float-simple {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-7px); }
  }
  @media (prefers-reduced-motion: reduce) {
    .haidi-home .product-img .bottle { animation: none; }
  }

  /* ============ FOOTER (dark) ============ */
  .haidi-home .footer {
    padding: 56px var(--haidi-gutter) 32px;
    background: var(--dark-bg);
    color: var(--dark-text);
  }
  .haidi-home .footer .logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    letter-spacing: 6px;
  }
  .haidi-home .footer .logo span { color: var(--wine); }
  .haidi-home .footer .tagline {
    max-width: 330px;
    margin-top: 12px;
    font-size: 13px;
    color: var(--dark-muted);
    line-height: 1.65;
  }

  .haidi-home .footer-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px 24px;
  }
  .haidi-home .footer-brand {
    grid-column: 1 / -1;
  }
  .haidi-home .footer-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 22px;
  }
  .haidi-home .footer-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 1px solid var(--dark-line);
    border-radius: 50%;
    color: var(--dark-text);
    text-decoration: none;
    transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, transform 0.2s ease;
  }
  .haidi-home .footer-social svg {
    width: 18px;
    height: 18px;
  }
  .haidi-home .footer-social:hover {
    border-color: var(--dark-text);
    background: var(--dark-text);
    color: var(--dark-bg);
    transform: translateY(-2px);
  }
  .haidi-home .footer-social:focus-visible {
    outline: 2px solid var(--dark-text);
    outline-offset: 3px;
  }
  .haidi-home .footer-col h4 {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--dark-text);
    margin-bottom: 14px;
  }
  .haidi-home .footer-col a {
    display: block;
    color: var(--dark-muted);
    text-decoration: none;
    font-size: 13.5px;
    padding: 5px 0;
  }

  .haidi-home .newsletter { margin-top: 40px; }
  .haidi-home .newsletter h4 { font-size: 11px; font-weight: 500; letter-spacing: 3px; text-transform: uppercase; color: var(--dark-text); margin-bottom: 12px; }
  .haidi-home .newsletter form { display: flex; border: 1px solid var(--dark-line); }
  .haidi-home .newsletter input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    padding: 14px;
    color: var(--dark-text);
    font-family: var(--sans);
    font-size: 14px;
    min-width: 0;
  }
  .haidi-home .newsletter input::placeholder { color: var(--dark-muted); }
  .haidi-home .newsletter button {
    background: var(--dark-text);
    color: var(--ink);
    border: none;
    padding: 0 18px;
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
  }

  .haidi-home .footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--dark-line);
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 11.5px;
    color: var(--dark-muted);
    letter-spacing: 0.5px;
  }

  /* ============ DESKTOP ============ */
  .haidi-home .dheader { display: none; }

  @media (min-width: 900px) {
    /* --- Desktop header --- */
    .haidi-home .header { display: none; }

    .haidi-home .drawer-panel {
      top: 0;
      left: 0;
      right: auto;
      bottom: 0;
      width: min(400px, 86vw);
      max-width: 400px;
      height: 100%;
      max-height: none;
      background: #fff;
      border-radius: 0;
      border-right: 1px solid var(--line);
      box-shadow: 18px 0 50px rgba(20, 17, 12, 0.12);
      padding: 0;
      transform: translateX(-105%);
    }
    .haidi-home .drawer-handle { display: none; }
    .haidi-home .drawer.open .drawer-panel { transform: translateX(0); }
    .haidi-home .drawer-head {
      padding: 28px 24px 10px;
      margin: 0;
    }
    .haidi-home .drawer-scroll { padding: 4px 24px 28px; }
    .haidi-home .drawer-footer { padding: 16px 24px 24px; }

    .haidi-home .dheader {
      display: block;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      background: rgba(250, 247, 241, 0.92);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border-bottom: 1px solid var(--line);
    }
    .haidi-home .dheader-top {
      position: relative;
      width: var(--haidi-shell);
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 18px 0;
      box-sizing: border-box;
    }
    .haidi-home .dheader-left { display: flex; align-items: center; gap: 0; }
    .haidi-home .dheader.compact .dheader-left { gap: 8px; }

    .haidi-home .dham {
      display: flex;
      align-items: center;
      background: none;
      border: none;
      color: var(--ink);
      cursor: pointer;
      width: 0;
      opacity: 0;
      padding: 0;
      margin: 0;
      overflow: hidden;
      transition: width 0.3s ease, opacity 0.3s ease;
    }
    .haidi-home .dham svg { width: 22px; height: 22px; stroke: currentColor; flex: none; }
    .haidi-home .dheader.compact .dham { width: 30px; opacity: 1; }

    /* Inner pages (product, catalog, …): no nav row — hamburger always visible */
    .haidi-home .dheader.dheader--menu-only .dheader-nav {
      display: none !important;
    }
    .haidi-home .dheader.dheader--menu-only .dham {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 30px;
      min-width: 30px;
      opacity: 1;
      overflow: visible;
      padding: 0;
      margin: 0;
      pointer-events: auto;
    }
    .haidi-home .dheader.dheader--menu-only .dheader-left,
    .haidi-home .dheader.dheader--menu-only.compact .dheader-left {
      gap: 8px;
    }

    .haidi-home .dsearch-wrap {
      display: flex;
      align-items: center;
      gap: 4px;
    }
    .haidi-home .dsearch-toggle {
      flex: none;
    }
    .haidi-home .dsearch {
      display: flex;
      align-items: center;
      width: 0;
      max-width: 0;
      opacity: 0;
      overflow: hidden;
      padding: 0;
      border: 1px solid transparent;
      background: rgba(255, 255, 255, 0.45);
      pointer-events: none;
      transition: width 0.35s ease, max-width 0.35s ease, opacity 0.25s ease, padding 0.35s ease, border-color 0.25s ease, background 0.25s ease;
    }
    .haidi-home .dsearch-wrap.open .dsearch {
      width: 200px;
      max-width: 200px;
      opacity: 1;
      padding: 0 12px;
      border-color: rgba(44, 36, 32, 0.12);
      pointer-events: auto;
    }
    .haidi-home .dsearch-wrap.open .dsearch:focus-within {
      border-color: rgba(44, 36, 32, 0.28);
      background: rgba(255, 255, 255, 0.85);
    }
    .haidi-home .dsearch input {
      border: none;
      outline: none;
      background: transparent;
      font-family: var(--sans);
      font-size: 12px;
      font-weight: 400;
      letter-spacing: 1.5px;
      color: var(--ink);
      width: 100%;
      min-width: 0;
      padding: 0;
      height: 34px;
    }
    .haidi-home .dsearch input::placeholder {
      color: var(--muted);
      opacity: 0.9;
    }

    .haidi-home .dheader .logo {
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      font-family: 'Cormorant Garamond', serif;
      font-size: 30px;
      font-weight: 600;
      letter-spacing: 7px;
      color: var(--ink);
      text-decoration: none;
    }
    .haidi-home .dheader .logo span { color: var(--wine); }
    .haidi-home .dheader .logo img,
    .haidi-home .dheader .haidi-logo-img { max-height: 40px; width: auto; display: block; }
    .haidi-home .dheader-right { display: flex; gap: 6px; }
    .haidi-home .dheader-left > .dham { padding-left: 0; }
    .haidi-home .dheader-right > .icon-btn:last-child { padding-right: 0; }

    .haidi-home .dheader-nav {
      border-top: 1px solid var(--line);
      max-height: 52px;
      opacity: 1;
      overflow: hidden;
      transition: max-height 0.35s ease, opacity 0.3s ease;
    }
    .haidi-home .dheader-nav-inner {
      width: var(--haidi-shell);
      margin: 0 auto;
      padding: 0;
      display: flex;
      justify-content: space-between;
      box-sizing: border-box;
    }
    .haidi-home .dheader-nav a {
      padding: 15px 0;
      font-size: 12px;
      font-weight: 400;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: var(--ink);
      text-decoration: none;
    }
    .haidi-home .dheader-nav a:hover { color: var(--wine); }
    .haidi-home .dheader.compact .dheader-nav { max-height: 0; opacity: 0; border-top-color: transparent; }

    /* --- Hero --- */
    .haidi-home .hero {
      min-height: 92vh;
      padding: 200px 0 88px;
      padding-left: max(32px, calc((100% - var(--container)) / 2));
      padding-right: 32px;
      /* Desktop hero image via inline styles */
      background-color: var(--bg);
    }
    .haidi-home .hero h1 { font-size: clamp(40px, 4.2vw, 52px); letter-spacing: 4px; }
    .haidi-home .hero h1 .accent { font-size: clamp(48px, 5vw, 64px); letter-spacing: 2px; }
    .haidi-home .hero p { max-width: 400px; font-size: 17px; margin-top: 18px; }
    .haidi-home .hero-spacer { min-height: 100px; }
    .haidi-home .hero-actions { flex-direction: row; gap: 16px; }
    .haidi-home .hero-actions .btn { width: 240px; }

    /* --- Sections --- */
    .haidi-home section { padding: 100px 32px; }
    .haidi-home .section-sub { max-width: 520px; margin-left: auto; margin-right: auto; }

    /* Shared content width — same as header (1200px, centered) */
    .bt-inner,
    .collection-list,
    .bestsellers-head,
    .product-row,
    .haidi-home .review-row {
      width: min(100%, var(--container));
      max-width: none;
      margin-left: auto;
      margin-right: auto;
    }

    /* --- Blind test: text left, cards right --- */
    .haidi-home .blind-test { text-align: left; padding: 120px 32px; background: var(--card); }
    .haidi-home .bt-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 72px;
      align-items: center;
    }
    .haidi-home .bt-text { display: block; }
    .haidi-home .blind-test .section-title {
      font-family: 'Cormorant Garamond', serif;
      text-transform: none;
      font-weight: 500;
      font-size: 60px;
      letter-spacing: 0.5px;
      line-height: 1.06;
    }
    .haidi-home .blind-test .section-title em {
      display: block;
      font-style: italic;
      color: var(--wine);
    }
    .haidi-home .blind-test .section-sub {
      font-family: 'Cormorant Garamond', serif;
      font-style: italic;
      font-size: 18.5px;
      max-width: 420px;
      margin: 22px 0 0;
    }
    .haidi-home .blind-test .btn {
      width: auto;
      max-width: none;
      display: inline-flex;
      padding: 16px 44px;
      margin: 38px 0 0;
      background: var(--ink);
      color: var(--dark-text);
      border-color: var(--ink);
    }
    .haidi-home .blind-test .versus {
      margin: 0;
      max-width: 560px;
      width: 100%;
      gap: 28px;
      justify-self: end;
    }
    .haidi-home .vs-card .label { font-size: 11px; }
    .haidi-home .vs-card .letter { font-size: 96px; }
    .haidi-home .vs-symbol { width: 66px; height: 66px; font-size: 23px; }

    .haidi-home .signature .btn { width: auto; display: inline-flex; padding: 16px 56px; }
    .haidi-home .signature-points { max-width: 560px; }

    /* --- Collections: big title + arrow, vertically centered, left-aligned --- */
    .haidi-home .collection-list {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-top: 44px;
    }
    .haidi-home .collection-card {
      justify-content: center;
      align-items: flex-start;
      text-align: left;
      gap: 14px;
      min-height: 340px;
      padding: 30px 28px;
    }
    .haidi-home .collection-card h3 {
      font-size: 36px;
      letter-spacing: 6px;
    }
    .haidi-home .collection-card .arrow {
      display: block;
      font-size: 26px;
    }
    .collection-card .cc-sub,
    .haidi-home .collection-card .cc-explore { display: none; }

    .haidi-home .bestsellers { padding-left: 32px; padding-right: 32px; }
    .haidi-home .bestsellers-head { padding-right: 0; }
    .haidi-home .bestseller-tabs { padding-right: 0; justify-content: center; gap: 8px; }
    .haidi-home .product-row {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      margin-top: 44px;
      overflow: visible;
      padding: 0;
    }
    .haidi-home .product-card { max-width: none; }
    .haidi-home .product-img { height: 230px; }
    .haidi-home .bestsellers .btn { width: 300px; margin: 48px auto 0; }

    .haidi-home .reviews { padding-left: 32px; padding-right: 32px; }
    .haidi-home .reviews-head { padding-right: 0; }
    .haidi-home .review-row {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-top: 44px;
      overflow: visible;
      padding: 0;
    }
    .haidi-home .review-card { max-width: none; }
    .haidi-home .review-dots { display: none; }

    .haidi-home .discovery {
      padding: 80px 32px;
      background: var(--bg);
    }
    .haidi-home .discovery-banner {
      flex-direction: row;
      align-items: stretch;
      min-height: 420px;
      max-width: var(--container);
      margin: 0 auto;
      background: var(--bg);
    }
    .haidi-home .discovery-copy {
      flex: 0 0 36%;
      max-width: 420px;
      margin: 0;
      padding: 48px 28px 48px 0;
      display: flex;
      flex-direction: column;
      justify-content: center;
      z-index: 2;
    }
    .haidi-home .discovery-title {
      font-size: clamp(40px, 3.6vw, 56px);
      margin-top: 14px;
    }
    .haidi-home .discovery-sub {
      font-size: 16px;
      max-width: 320px;
      margin-top: 18px;
    }
    .haidi-home .discovery .btn {
      width: auto;
      max-width: none;
      display: inline-flex;
      padding: 16px 40px;
      margin-top: 28px;
    }
    .haidi-home .discovery-media {
      flex: 1;
      aspect-ratio: auto;
      min-height: 420px;
    }
    .haidi-home .discovery-media::after {
      inset: 0;
      height: auto;
      width: 48%;
      background: linear-gradient(to right, var(--bg) 0%, rgba(250, 247, 241, 0.82) 28%, rgba(250, 247, 241, 0.25) 62%, transparent 100%);
    }

    /* --- Footer --- */
    .haidi-home .footer {
      padding: 72px max(var(--haidi-gutter-d), calc((100% - var(--container)) / 2)) 40px;
    }
    .haidi-home .footer-cols {
      grid-template-columns: minmax(250px, 1.4fr) repeat(3, minmax(0, 1fr));
      align-items: start;
      gap: 32px clamp(32px, 4vw, 68px);
    }
    .haidi-home .footer-brand {
      grid-column: auto;
      padding-right: 12px;
    }
    .haidi-home .newsletter form { max-width: 420px; }
    .haidi-home .footer-bottom { flex-direction: row; justify-content: space-between; }
  }


  /* ===== WordPress / plugin extras ===== */
  .haidi-home .logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
  }
  .haidi-home .logo img,
  .haidi-home .haidi-logo-img {
    display: block;
    max-height: 36px;
    width: auto;
  }
  .dheader .logo img,
  .haidi-home .dheader .haidi-logo-img { max-height: 42px; }

  .haidi-home .icon-btn {
    text-decoration: none;
  }

  .haidi-home .haidi-menu {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .haidi-home .haidi-menu--desktop {
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 12px;
  }
  .haidi-home .haidi-menu--desktop li { margin: 0; }
  .haidi-home .haidi-menu--desktop a {
    display: block;
    padding: 15px 0;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--ink);
    text-decoration: none;
  }
  .haidi-home .haidi-menu--desktop a:hover { color: var(--wine); }

  /* Fallback links when no WP menu is assigned */
  .haidi-home .dheader-nav-inner > a {
    padding: 15px 0;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--ink);
    text-decoration: none;
  }
  .haidi-home .dheader-nav-inner > a:hover { color: var(--wine); }

  .drawer-nav .haidi-menu--mobile,
  .haidi-home .drawer-nav .haidi-menu {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
  }
  .drawer-nav .haidi-menu a,
  .haidi-home .drawer-nav > a {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    color: var(--ink);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
  }
  .haidi-home .drawer-panel .logo-wrap { margin-bottom: 0; }
  .haidi-home .drawer-panel .logo-wrap .logo { font-size: 24px; letter-spacing: 5px; }

  .haidi-home .footer-col .haidi-menu--footer a {
    display: block;
    color: var(--dark-muted);
    text-decoration: none;
    font-size: 13.5px;
    padding: 5px 0;
  }
  .haidi-home .footer-col .haidi-menu-empty {
    font-size: 12px;
    color: var(--dark-muted);
  }
  .haidi-home .footer .logo { display: inline-flex; }
  .haidi-home .footer .logo img,
  .haidi-home .footer .haidi-logo-img--footer {
    display: block;
    max-height: 40px;
    width: auto;
  }

  .haidi-home .product-img {
    text-decoration: none;
    color: inherit;
  }
  .haidi-home .product-img img {
    max-height: 150px;
    width: auto;
    object-fit: contain;
  }
  .haidi-home .product-info h3 a {
    text-decoration: none;
    color: inherit;
  }

  /* Prevent theme from fighting the fixed headers */
  .haidi-home .header,
  .haidi-home .dheader {
    box-sizing: border-box;
  }

  /* ============ MOBILE SEARCH DRAWER ============ */
  .haidi-home .haidi-search-drawer {
    position: fixed;
    inset: 0;
    z-index: 10040;
    pointer-events: none;
    visibility: hidden;
  }
  .haidi-home .haidi-search-drawer.is-open {
    pointer-events: auto;
    visibility: visible;
  }
  .haidi-home .haidi-search-drawer-overlay {
    position: absolute;
    inset: 0;
    background: rgba(20, 17, 12, 0.42);
    opacity: 0;
    transition: opacity 0.32s ease;
  }
  .haidi-home .haidi-search-drawer.is-open .haidi-search-drawer-overlay {
    opacity: 1;
  }
  .haidi-home .haidi-search-drawer-panel {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    height: min(92vh, 860px);
    max-height: 92vh;
    background: #fff;
    color: var(--ink);
    border-radius: 16px 16px 0 0;
    box-shadow: 0 -12px 40px rgba(20, 17, 12, 0.12);
    transform: translateY(105%);
    transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
    overflow: hidden;
    padding-bottom: env(safe-area-inset-bottom);
  }
  .haidi-home .haidi-search-drawer.is-open .haidi-search-drawer-panel {
    transform: translateY(0);
  }
  .haidi-home .haidi-search-drawer-handle {
    flex-shrink: 0;
    width: 36px;
    height: 4px;
    margin: 10px auto 0;
    border-radius: 4px;
    background: rgba(38, 32, 25, 0.16);
  }
  .haidi-home .haidi-search-drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 20px 8px;
    flex-shrink: 0;
  }
  .haidi-home .haidi-search-drawer-title {
    margin: 0;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }
  .haidi-home .haidi-search-drawer-close {
    width: 36px;
    height: 36px;
    margin: -6px -6px -6px 0;
    padding: 0;
    border: none;
    background: none;
    color: var(--ink);
    cursor: pointer;
    display: grid;
    place-items: center;
  }
  .haidi-home .haidi-search-drawer-close svg {
    width: 20px;
    height: 20px;
  }
  .haidi-home .haidi-search-drawer-form {
    flex-shrink: 0;
    padding: 4px 20px 14px;
  }
  .haidi-home .haidi-search-drawer-field {
    display: flex;
    align-items: center;
    gap: 10px;
    height: 48px;
    padding: 0 14px;
    border: 1px solid rgba(44, 36, 32, 0.12);
    background: var(--bg);
  }
  .haidi-home .haidi-search-drawer-field:focus-within {
    border-color: rgba(44, 36, 32, 0.32);
    background: #fff;
  }
  .haidi-home .haidi-search-drawer-icon {
    flex: none;
    width: 20px;
    height: 20px;
    stroke: var(--ink);
  }
  .haidi-home .haidi-search-drawer-field input,
  .haidi-home .haidi-search-drawer-field input[type="search"] {
    flex: 1;
    min-width: 0;
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    background-image: none;
    font-family: var(--sans);
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.3px;
    color: var(--ink);
    height: 46px;
    padding: 0;
    appearance: none;
    -webkit-appearance: none;
    border-radius: 0;
    box-shadow: none;
  }
  .haidi-home .haidi-search-drawer-field input::-webkit-search-decoration,
  .haidi-home .haidi-search-drawer-field input::-webkit-search-cancel-button {
    -webkit-appearance: none;
  }
  .haidi-home .haidi-search-drawer-field input::placeholder {
    color: var(--muted);
  }
  .haidi-home .haidi-search-drawer-scroll {
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 4px 20px 28px;
  }
  .haidi-home .haidi-search-suggest {
    display: flex;
    flex-direction: column;
    opacity: 1;
    transform: translateY(0);
    max-height: 640px;
    overflow: hidden;
    transition: opacity 0.32s ease, transform 0.38s cubic-bezier(0.22, 1, 0.36, 1), max-height 0.38s ease;
  }
  .haidi-home .haidi-search-drawer.is-querying .haidi-search-suggest {
    opacity: 0;
    transform: translateY(-18px);
    max-height: 0;
    pointer-events: none;
  }
  .haidi-home .haidi-search-quiz {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    width: 100%;
    margin: 4px 0 22px;
    padding: 22px 20px 20px;
    border: none;
    text-align: left;
    cursor: pointer;
    color: var(--cream);
    background:
      linear-gradient(160deg, rgba(93, 36, 52, 0.94) 0%, rgba(38, 32, 25, 0.92) 100%);
    font-family: inherit;
  }
  .haidi-home .haidi-search-quiz-kicker {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(242, 232, 228, 0.72);
  }
  .haidi-home .haidi-search-quiz-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 600;
    letter-spacing: 0.02em;
    line-height: 1.15;
    color: #fff;
  }
  .haidi-home .haidi-search-quiz-sub {
    font-size: 13px;
    line-height: 1.45;
    color: rgba(242, 232, 228, 0.78);
    font-weight: 300;
  }
  .haidi-home .haidi-search-quiz-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #fff;
  }
  .haidi-home .haidi-search-quiz-cta svg {
    width: 14px;
    height: 14px;
  }
  .haidi-home .haidi-search-label {
    margin: 0 0 10px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
  }
  .haidi-home .haidi-search-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }
  .haidi-home .haidi-search-chips a {
    display: inline-flex;
    align-items: center;
    padding: 10px 16px;
    border: 1px solid var(--line);
    background: var(--bg);
    color: var(--ink);
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
  .haidi-home .haidi-search-results {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(28px);
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.32s ease, transform 0.42s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.32s ease, max-height 0.42s ease;
  }
  .haidi-home .haidi-search-drawer.is-querying .haidi-search-results {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    max-height: 2000px;
    overflow: visible;
  }
  .haidi-home .haidi-search-hits {
    display: flex;
    flex-direction: column;
  }
  .haidi-home .haidi-search-hit {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
    text-decoration: none;
    color: inherit;
    opacity: 0;
    transform: translateY(16px);
    animation: haidi-search-hit-in 0.45s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  }
  .haidi-home .haidi-search-hit:nth-child(1) { animation-delay: 0.04s; }
  .haidi-home .haidi-search-hit:nth-child(2) { animation-delay: 0.09s; }
  .haidi-home .haidi-search-hit:nth-child(3) { animation-delay: 0.14s; }
  .haidi-home .haidi-search-hit:nth-child(4) { animation-delay: 0.19s; }
  .haidi-home .haidi-search-hit:nth-child(5) { animation-delay: 0.24s; }
  .haidi-home .haidi-search-hit:nth-child(6) { animation-delay: 0.29s; }
  @keyframes haidi-search-hit-in {
    to {
      opacity: 1;
      transform: none;
    }
  }
  .haidi-home .haidi-search-hit-img {
    width: 64px;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: var(--surface);
  }
  .haidi-home .haidi-search-hit-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .haidi-home .haidi-search-hit-body {
    min-width: 0;
  }
  .haidi-home .haidi-search-hit-name {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.3;
  }
  .haidi-home .haidi-search-hit-inspired {
    margin: 4px 0 0;
    font-size: 12px;
    color: var(--muted);
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .haidi-home .haidi-search-hit-price {
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
  }
  .haidi-home .haidi-search-empty {
    margin: 28px 0 8px;
    text-align: center;
    font-size: 14px;
    color: var(--muted);
  }
  .haidi-home .haidi-search-all {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 18px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--ink);
  }
  .haidi-home .haidi-search-all svg {
    width: 14px;
    height: 14px;
  }
  .haidi-home .haidi-search-skel-row {
    height: 88px;
    margin-bottom: 10px;
    background: linear-gradient(90deg, var(--surface) 0%, #fff 45%, var(--surface) 100%);
    background-size: 200% 100%;
    animation: haidi-search-skel 1.1s ease-in-out infinite;
  }
  @keyframes haidi-search-skel {
    0% { background-position: 100% 0; }
    100% { background-position: -100% 0; }
  }

  .haidi-home .haidi-search-drawer.is-open .haidi-search-drawer-handle,
  .haidi-home .haidi-search-drawer.is-open .haidi-search-drawer-head,
  .haidi-home .haidi-search-drawer.is-open .haidi-search-drawer-form,
  .haidi-home .haidi-search-drawer.is-open .haidi-search-quiz,
  .haidi-home .haidi-search-drawer.is-open .haidi-search-label,
  .haidi-home .haidi-search-drawer.is-open .haidi-search-chips {
    animation: haidi-search-rise 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
  }
  .haidi-home .haidi-search-drawer.is-open .haidi-search-drawer-handle { animation-delay: 0.06s; }
  .haidi-home .haidi-search-drawer.is-open .haidi-search-drawer-head { animation-delay: 0.1s; }
  .haidi-home .haidi-search-drawer.is-open .haidi-search-drawer-form { animation-delay: 0.16s; }
  .haidi-home .haidi-search-drawer.is-open .haidi-search-quiz { animation-delay: 0.24s; }
  .haidi-home .haidi-search-drawer.is-open .haidi-search-label { animation-delay: 0.32s; }
  .haidi-home .haidi-search-drawer.is-open .haidi-search-chips { animation-delay: 0.38s; }
  @keyframes haidi-search-rise {
    from {
      opacity: 0;
      transform: translateY(18px);
    }
    to {
      opacity: 1;
      transform: none;
    }
  }

  body.haidi-search-open {
    overflow: hidden;
  }

  @media (min-width: 900px) {
    .haidi-home .haidi-search-drawer {
      display: none;
    }
  }
