 :root {
  --nav: #f8f8f6;        /* navbar + footer */
  --bg: #f2f2ef;         /* page background */
  --text: #1c1c1a;       /* primary text */
  --muted: #6f6f67;      /* secondary text */
  --border: #dcdcd6;     /* subtle borders */
  --accent: #2c6bed;     /* modern blue accent */
  --sidebar-w: 380px;
}

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

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--bg);
    color: var(--text);
    font-size: 14px;
    line-height: 1.6;
    transition: margin-right 0.4s cubic-bezier(0.4,0,0.2,1);
  }

  body.cart-open {
    margin-right: var(--sidebar-w);
  }

/* ── NAV ── */
nav {
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0;
  background: var(--nav);
  z-index: 100;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 32px;
  max-width: 960px; margin: 0 auto;
  height: 64px;
}
.logo {
  font-family: 'DM Mono', monospace;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-decoration: none;
  color: var(--text);
}
.nav-right {
  display: flex; align-items: center; gap: 32px;
}
.nav-tag {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--muted);
  text-transform: uppercase;
}
.nav-cart {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--text);
  text-decoration: none;
  border: 1px solid var(--border);
  padding: 8px 16px;
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
  background: none;
}
.nav-cart:hover { background: var(--text); color: var(--white); border-color: var(--text); }

  /* ── CART SIDEBAR ── */
  .cart-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: var(--sidebar-w);
    height: 100vh;
    background: var(--bg);
    border-left: 1px solid var(--border);
    z-index: 200;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
    overflow: hidden;
  }
  .cart-sidebar.open { transform: translateX(0); }

  .cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 28px;
    border-bottom: 1px solid var(--border);
    flex-shrink: 0;
    height: 75pt;
    background: var(--nav);
  }
  .cart-header-title {
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
  }
  .cart-close {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--muted);
    font-size: 20px;
    line-height: 1;
    padding: 4px;
    transition: color 0.2s;
    font-family: 'DM Mono', monospace;
  }
  .cart-close:hover { color: var(--text); }

  .cart-body {
    flex: 1;
    overflow-y: auto;
    padding: 0;
  }

  /* empty state */
  .cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 40px;
    text-align: center;
    gap: 12px;
  }
  .cart-empty-icon {
    width: 48px;
    height: 48px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
  }
  .cart-empty p {
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    color: var(--muted);
    letter-spacing: 0.1em;
  }

  /* cart items */
  .cart-item {
    display: grid;
    grid-template-columns: 52px 1fr auto;
    gap: 16px;
    align-items: start;
    padding: 20px 28px;
    border-bottom: 1px solid var(--border);
    animation: slideIn 0.28s ease;
  }
  @keyframes slideIn {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .cart-item-visual {
    width: 52px;
    height: 68px;
    background: #e8e7e1;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    flex-shrink: 0;
  }
  .cart-item-visual .mini-cap {
    width: 14px;
    height: 6px;
    background: var(--text);
    border-radius: 1px 1px 0 0;
  }
  .cart-item-visual .mini-bottle {
    width: 22px;
    height: 36px;
    background: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .cart-item-visual .mini-label {
    font-family: 'DM Mono', monospace;
    font-size: 4px;
    color: var(--bg);
    letter-spacing: 0.05em;
  }

  .cart-item-info { display: flex; flex-direction: column; gap: 4px; }
  .cart-item-name {
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.08em;
  }
  .cart-item-sub {
    font-size: 11px;
    color: var(--muted);
  }
  .cart-item-qty {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
  }
  .qty-btn {
    width: 22px;
    height: 22px;
    border: 1px solid var(--border);
    background: none;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    font-family: 'DM Mono', monospace;
    transition: background 0.15s, color 0.15s;
    line-height: 1;
  }
  .qty-btn:hover { background: var(--text); color: var(--bg); }
  .qty-val {
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    min-width: 16px;
    text-align: center;
  }

  .cart-item-price {
    font-family: 'DM Mono', monospace;
    font-size: 12px;
    text-align: right;
    flex-shrink: 0;
  }
  .cart-item-remove {
    display: block;
    margin-top: 4px;
    font-size: 9px;
    color: var(--muted);
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'DM Mono', monospace;
    letter-spacing: 0.06em;
    text-align: right;
    width: 100%;
    padding: 0;
    transition: color 0.2s;
  }
  .cart-item-remove:hover { color: var(--text); }

  /* footer */
  .cart-footer {
    padding: 24px 28px;
    border-top: 1px solid var(--border);
    flex-shrink: 0;
    background: var(--nav);
    height: 140pt;
  }
  .cart-subtotal-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 6px;
  }
  .cart-subtotal-label {
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    color: var(--muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }
  .cart-subtotal-val {
    font-family: 'DM Mono', monospace;
    font-size: 16px;
  }
  .cart-shipping-note {
    font-family: 'DM Mono', monospace;
    font-size: 9px;
    color: var(--muted);
    margin-bottom: 20px;
    letter-spacing: 0.06em;
  }
  .cart-checkout-btn {
    width: 100%;
    background: var(--text);
    color: var(--bg);
    border: none;
    padding: 14px 0;
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.18em;
    cursor: pointer;
    transition: opacity 0.2s;
  }
  .cart-checkout-btn:hover { opacity: 0.8; }
  .cart-continue-btn {
    width: 100%;
    background: none;
    color: var(--muted);
    border: none;
    padding: 10px 0 0;
    font-family: 'DM Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.12em;
    cursor: pointer;
    transition: color 0.2s;
  }
  .cart-continue-btn:hover { color: var(--text); }

  /* overlay (mobile) */
  .cart-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(26,26,24,0.35);
    z-index: 150;
    opacity: 0;
    transition: opacity 0.4s;
  }
  .cart-overlay.visible { opacity: 1; }

  /* ── HERO ── */
  .hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: calc(80vh - 56px);
    border-bottom: 1px solid var(--border);
    max-width: 1100px; margin: 0 auto; padding: 0 40px; 
  }

  .hero-text {
    padding: 80px 60px 80px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 1px solid var(--border);
  }
  .hero-label { font-family: 'DM Mono', monospace; font-size: 10px; color: var(--muted); letter-spacing: 0.15em; margin-bottom: 24px; }
  h1 { font-size: clamp(42px, 5vw, 64px); font-weight: 300; line-height: 1.05; letter-spacing: -0.02em; margin-bottom: 28px; }
  .hero-desc { font-size: 13px; line-height: 1.9; color: var(--muted); max-width: 440px; margin-bottom: 36px; }
  .hero-price-row { display: flex; align-items: baseline; gap: 12px; margin-bottom: 28px; }
  .price { font-family: 'DM Mono', monospace; font-size: 28px; }
  .price-note { font-size: 11px; color: var(--muted); }
  .btn-add {
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.18em;
    background: var(--text);
    color: var(--bg);
    border: none;
    padding: 14px 28px;
    cursor: pointer;
    width: fit-content;
    margin-bottom: 10px;
    transition: opacity 0.2s;
  }
  .btn-add:hover { opacity: 0.8; }
  .btn-notify {
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.12em;
    background: none;
    color: var(--muted);
    border: none;
    padding: 4px 0;
    cursor: pointer;
    width: fit-content;
    transition: color 0.2s;
  }
  .btn-notify:hover { color: var(--text); }
  .product-visual {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .bottle-wrap { display: flex; flex-direction: column; align-items: center; }
  .bottle-cap { width: 32px; height: 18px; background: var(--text); border-radius: 3px 3px 0 0; }
  .bottle {
    width: 80px;
    height: 220px;
    background: var(--text);
    display: flex;
    align-items: flex-end;
    position: relative;
    overflow: hidden;
  }
  .bottle-fill { position: absolute; bottom: 0; width: 100%; height: 92%; background: #2d2d2a; }
  .bottle-label {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 0 12px 24px;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  .bottle-name { font-family: 'DM Mono', monospace; font-size: 11px; color: #f5f4f0; letter-spacing: 0.2em; }
  .bottle-line { height: 1px; background: rgba(245,244,240,0.25); }
  .bottle-vol { font-family: 'DM Mono', monospace; font-size: 9px; color: rgba(245,244,240,0.6); }
  .bottle-type { font-family: 'DM Mono', monospace; font-size: 8px; color: rgba(245,244,240,0.4); letter-spacing: 0.1em; }
  .product-shadow { width: 60px; height: 10px; background: rgba(26,26,24,0.15); border-radius: 50%; margin-top: 2px; filter: blur(3px); }

  /* ── CONTENT ── */
  .container { max-width: 1100px; margin: 0 auto; padding: 0 40px; }
  .section { padding: 80px 0; border-bottom: 1px solid var(--border); }
  .section-header { display: flex; align-items: baseline; gap: 20px; margin-bottom: 48px; }
  .section-num { font-family: 'DM Mono', monospace; font-size: 10px; color: var(--muted); letter-spacing: 0.15em; }
  .section-title { font-size: 13px; letter-spacing: 0.05em; }
  .ingredients-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 60px; }
  .ingredient-row {
    display: grid;
    grid-template-columns: 1fr 1fr 60px;
    gap: 8px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    align-items: baseline;
  }
  .ingredient-name { font-size: 12px; }
  .ingredient-purpose { font-size: 11px; color: var(--muted); }
  .ingredient-pct { font-family: 'DM Mono', monospace; font-size: 10px; text-align: right; }
  .why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; }
  .why-item { padding: 0 40px 0 0; border-right: 1px solid var(--border); margin-right: 0; }
  .why-item:last-child { padding-right: 0; border-right: none; padding-left: 40px; }
  .why-item:nth-child(2) { padding-left: 40px; }
  .why-num { font-family: 'DM Mono', monospace; font-size: 10px; color: var(--muted); margin-bottom: 16px; letter-spacing: 0.1em; }
  .why-title { font-size: 13px; margin-bottom: 12px; }
  .why-desc { font-size: 12px; color: var(--muted); line-height: 1.8; }
  .coming-soon { padding: 80px 0; border-bottom: 1px solid var(--border); }
  .coming-card {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    padding: 48px;
    border: 1px solid var(--border);
    align-items: center;
  }
  .coming-tag { font-family: 'DM Mono', monospace; font-size: 9px; color: var(--muted); letter-spacing: 0.15em; display: inline-block; margin-bottom: 16px; }
  .coming-title { font-size: 24px; font-weight: 300; margin-bottom: 16px; letter-spacing: -0.01em; }
  .coming-desc { font-size: 13px; color: var(--muted); line-height: 1.9; max-width: 480px; }
  .coming-visual { display: flex; gap: 28px; align-items: center; }
  .glass-cap { width: 20px; height: 12px; background: transparent; border: 1px solid var(--muted); border-radius: 2px 2px 0 0; }
  .glass-bottle {
    width: 50px;
    height: 140px;
    background: transparent;
    border: 1px solid var(--muted);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .glass-label { font-family: 'DM Mono', monospace; font-size: 7px; color: var(--muted); text-align: center; letter-spacing: 0.1em; line-height: 1.6; }
  .about-row {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 60px;
    padding: 80px 0;
    align-items: start;
    border-bottom: 1px solid var(--border);
  }
  .about-label { font-family: 'DM Mono', monospace; font-size: 10px; color: var(--muted); letter-spacing: 0.15em; }
  .about-text { font-size: 14px; line-height: 2; color: var(--muted); }
  .about-text strong { color: var(--text); font-weight: 400; }
  footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px 40px;
    border-top: 1px solid var(--border);
    background: var(--nav);
  }
  .footer-logo { font-family: 'DM Mono', monospace; font-size: 13px; letter-spacing: 0.2em; margin-bottom: 4px; }
  .footer-acronym { font-family: 'DM Mono', monospace; font-size: 9px; color: var(--muted); letter-spacing: 0.1em; }
  .footer-right { font-family: 'DM Mono', monospace; font-size: 9px; color: var(--muted); letter-spacing: 0.08em; }

  .toast {
    position: fixed;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: var(--text);
    color: var(--bg);
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.15em;
    padding: 10px 20px;
    opacity: 0;
    transition: opacity 0.3s, transform 0.3s;
    pointer-events: none;
    z-index: 300;
  }
  .toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

  .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
  .reveal.visible { opacity: 1; transform: translateY(0); }

  /* ── HOW TO USE steps ── */
  .steps-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 0;
  }
  .step-item { padding: 0 32px 0 0; border-right: 1px solid var(--border); }
  .step-item:last-child { padding: 0 0 0 32px; border-right: none; }
  .step-item:not(:first-child):not(:last-child) { padding: 0 32px; }
  .step-num { font-family: 'DM Mono', monospace; font-size: 10px; color: var(--muted); margin-bottom: 12px; }
  .step-text { font-size: 13px; line-height: 1.8; color: var(--muted); }

  /* cost section */
  .cost-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
  .cost-col-label { font-family: 'DM Mono', monospace; font-size: 10px; color: var(--muted); letter-spacing: 0.15em; margin-bottom: 20px; text-transform: uppercase; }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    :root { --sidebar-w: 100vw; }
    body.cart-open { margin-right: 0; }
    .cart-overlay { display: block; }

    nav { padding: 0 20px; }
    .nav-tag { display: none; }

    .hero { grid-template-columns: 1fr; min-height: auto; }
    .hero-text { padding: 48px 20px; border-right: none; border-bottom: 1px solid var(--border); }
    .product-visual { min-height: 320px; }

    .container { padding: 0 20px; }
    .ingredients-grid { grid-template-columns: 1fr; gap: 0; }
    .why-grid { grid-template-columns: 1fr; gap: 0; }
    .why-item, .why-item:nth-child(2), .why-item:last-child {
      padding: 24px 0;
      border-right: none;
      border-bottom: 1px solid var(--border);
    }
    .why-item:last-child { border-bottom: none; }

    .steps-grid { grid-template-columns: 1fr 1fr; gap: 0; }
    .step-item:nth-child(1), .step-item:nth-child(2) { padding-bottom: 24px; border-bottom: 1px solid var(--border); }
    .step-item:nth-child(1) { padding: 0 20px 24px 0; }
    .step-item:nth-child(2) { padding: 0 0 24px 20px; border-right: none; }
    .step-item:nth-child(3) { padding: 24px 20px 0 0; border-right: 1px solid var(--border); }
    .step-item:nth-child(4) { padding: 24px 0 0 20px; border-right: none; }

    .cost-grid { grid-template-columns: 1fr; gap: 40px; }

    .coming-card { grid-template-columns: 1fr; gap: 32px; }
    .coming-visual { flex-direction: row; align-items: flex-start; }

    .about-row { grid-template-columns: 1fr; gap: 20px; }

    footer { flex-direction: column; gap: 16px; align-items: flex-start; padding: 24px 20px; }

    .cart-sidebar { width: 100vw; }
  }

  @media (max-width: 500px) {
    .steps-grid { grid-template-columns: 1fr; }
    .step-item, .step-item:nth-child(1), .step-item:nth-child(2),
    .step-item:nth-child(3), .step-item:nth-child(4) {
      padding: 20px 0;
      border-right: none;
      border-bottom: 1px solid var(--border);
    }
    .step-item:last-child { border-bottom: none; }
  }


 /* ── CONSENT BANNER ── */
  .consent-banner {
    position: fixed;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    width: min(560px, calc(100vw - 40px));
    background: var(--bg, #f5f4f0);
    border: 1px solid var(--border, #e0dfd8);
    padding: 24px 28px;
    z-index: 500;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 32px rgba(26,26,24,0.08);
  }
  .consent-banner.visible {
    opacity: 1;
    pointer-events: all;
    transform: translateX(-50%) translateY(0);
  }
  .consent-top {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 10px;
  }
  .consent-title {
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text, #1a1a18);
  }
  .consent-tag {
    font-family: 'DM Mono', monospace;
    font-size: 9px;
    color: var(--muted, #888880);
    letter-spacing: 0.1em;
    white-space: nowrap;
  }
  .consent-body {
    font-size: 12px;
    color: var(--muted, #888880);
    line-height: 1.8;
    margin-bottom: 20px;
  }
  .consent-actions {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
  }
  .consent-accept {
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.16em;
    background: var(--text, #1a1a18);
    color: var(--bg, #f5f4f0);
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    transition: opacity 0.2s;
  }
  .consent-accept:hover { opacity: 0.8; }
  .consent-decline {
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.12em;
    background: none;
    color: var(--muted, #888880);
    border: 1px solid var(--border, #e0dfd8);
    padding: 10px 20px;
    cursor: pointer;
    transition: color 0.2s, border-color 0.2s;
  }
  .consent-decline:hover { color: var(--text, #1a1a18); border-color: var(--text, #1a1a18); }
  .consent-note {
    font-family: 'DM Mono', monospace;
    font-size: 9px;
    color: var(--muted, #888880);
    letter-spacing: 0.06em;
    margin-left: auto;
  }

/* Make the Stripe iframe background match your page */
#checkout {
  min-height: 90vh;
  background: var(--bg)
}

/* Stripe iframe sits inside this — give it breathing room */
#checkout iframe {
  border: none;
  width: 100%;
}

