/* =============================================================
   ARTÉVO — Design system + storefront components
   Aesthetic: warm ivory gallery, high-contrast serif display,
   letter-spaced sans labels, muted bronze accents.
   ============================================================= */

/* ---------- Tokens ---------- */
:root {
  /* Clean white base (was warm ivory/beige) */
  --ivory: #FFFFFF;
  --ivory-2: #FAF9F7;
  --paper: #FFFFFF;
  --beige: #F4F1EE;       /* subtle fills / product tiles */
  --beige-2: #ECE8E2;
  --line: #EAE7E2;
  --line-2: #DBD6CF;
  --ink: #1A1A1A;
  --ink-2: #333333;
  --muted: #6E6E6E;
  --muted-2: #9A968F;

  /* Burgundy / wine accent (from the CONSUMER·BUSINESS reference) */
  --wine: #7A2233;
  --wine-2: #94303F;
  --bronze: #7A2233;      /* remap old bronze accents → wine */
  --bronze-2: #94303F;
  --gold: #C98A97;        /* soft rose accent on dark backgrounds */

  --danger: #B23A2E;
  --success: #4F7A57;
  --info: #4E5B6B;

  --wholesale: #5E1A28;   /* B2B accent (deep plum) */
  --retail: #7A2233;      /* B2C accent (wine) */

  --shadow-sm: 0 2px 10px rgba(20,20,20,.05);
  --shadow: 0 14px 44px rgba(20,20,20,.09);
  --shadow-lg: 0 24px 70px rgba(20,20,20,.14);

  /* Clean grotesque throughout; CJK falls back to Noto Sans SC */
  --serif: 'Inter', 'Noto Sans SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  --sans: 'Inter', 'Noto Sans SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;

  --wrap: 1320px;
  --radius: 4px;
  --track: .18em;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--ivory);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-variant-numeric: lining-nums;   /* Cormorant defaults to old-style figures; force legible lining numerals */
  overflow-x: hidden;                  /* safety net against accidental horizontal scroll on small screens */
}
/* tabular alignment for money / numeric UI */
.card__price, .tiers, .summ, .line__info .price, .price-note, .card__sku,
.moqhint, .cart-count, .qty input, .stockline { font-variant-numeric: lining-nums tabular-nums; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 { margin: 0; font-weight: 500; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 32px; }
.eyebrow {
  font-family: var(--sans); font-size: 11px; letter-spacing: var(--track);
  text-transform: uppercase; color: var(--bronze); font-weight: 500;
}
.serif { font-family: var(--serif); }
.center { text-align: center; }
.hidden { display: none !important; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--sans); font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
  font-weight: 500; padding: 15px 30px; border: 1px solid var(--ink); background: var(--ink);
  color: var(--ivory); border-radius: 0; transition: .25s ease; line-height: 1;
}
.btn:hover { background: #000; border-color: #000; transform: translateY(-1px); }
.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--ivory); }
.btn--light { background: var(--paper); color: var(--ink); border-color: var(--line-2); }
.btn--light:hover { background: var(--beige); border-color: var(--ink); color: var(--ink); }
.btn--bronze { background: var(--bronze); border-color: var(--bronze); }
.btn--bronze:hover { background: #74592f; border-color: #74592f; }
.btn--block { width: 100%; }
.btn--sm { padding: 11px 20px; font-size: 11px; }
.btn--link { background: none; border: none; padding: 0; letter-spacing: .12em;
  border-bottom: 1px solid var(--ink); padding-bottom: 3px; color: var(--ink); }
.btn--link:hover { transform: none; color: var(--bronze); border-color: var(--bronze); }
.btn[disabled] { opacity: .45; cursor: not-allowed; }

/* ---------- Announcement bar ---------- */
.announce {
  background: var(--ink); color: var(--ivory);
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
}
.announce .wrap { display: flex; align-items: center; justify-content: space-between; height: 40px; }
.announce__msg { flex: 1; text-align: center; opacity: .92; }
.announce__side { display: flex; gap: 22px; }
.announce__side span, .announce__side a { opacity: .8; cursor: pointer; }
.announce__side a:hover { opacity: 1; }
.announce__left { visibility: hidden; }
@media (max-width: 820px){ .announce__left { display:none; } }

/* language switcher */
.langctl { position: relative; }
.langbtn { background: none; border: none; color: inherit; font: inherit; letter-spacing: .12em;
  text-transform: uppercase; opacity: .8; cursor: pointer; padding: 0; }
.langbtn:hover { opacity: 1; }
.langmenu { position: absolute; top: 26px; right: 0; background: var(--paper); border: 1px solid var(--line);
  box-shadow: var(--shadow); min-width: 130px; z-index: 80; display: none; padding: 6px 0; }
.langmenu.is-open { display: block; }
.langmenu button { display: block; width: 100%; text-align: left; background: none; border: none;
  font-family: var(--sans); font-size: 12px; letter-spacing: .04em; text-transform: none; color: var(--ink);
  padding: 9px 16px; cursor: pointer; }
.langmenu button:hover { background: var(--beige); }
.langmenu button.is-active { color: var(--wine); font-weight: 600; }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(244,240,233,.92); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header__row { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; height: 78px; gap: 16px; }
.logo { font-family: var(--serif); font-size: 30px; font-weight: 600; letter-spacing: .22em; padding-left:.22em; justify-self: start; }
.nav { display: flex; gap: 30px; justify-content: center; }
/* scoped .iconbtn.* so these win the tie against the later `.iconbtn { display:inline-flex }` rule */
.iconbtn.nav-toggle { display: none; }
.mobilemenu { display: none; flex-direction: column; }
.mobilemenu.is-open { display: flex; }
.mobilemenu a { padding: 15px 32px; border-top: 1px solid var(--line); font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-2); }
.mobilemenu a:hover { background: var(--beige); color: var(--ink); }
@media (max-width: 1180px){
  .header__row .nav { display: none; }
  .iconbtn.nav-toggle { display: inline-flex; }
  .mobilemenu { position: sticky; top: 78px; z-index: 55; background: rgba(244,240,233,.98); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
}
@media (max-width: 720px){ .iconbtn.hide-sm { display: none; } .modeswitch__hint { display: none; } .logo { font-size: 24px; } }
@media (max-width: 600px){
  .wrap { padding: 0 16px; }
  .header__tools { gap: 6px; }
  #btnSearch, #acctSlot { display: none; }          /* account moves into the mobile menu */
  .modeswitch { padding: 2px; }
  .modeswitch button { padding: 6px 9px; font-size: 10px; letter-spacing: .06em; }
  .logo { font-size: 21px; letter-spacing: .16em; }
}
.nav a {
  font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-2);
  position: relative; padding: 6px 0; font-weight: 500;
}
.nav a::after { content:''; position:absolute; left:0; bottom:0; height:1px; width:0; background: var(--bronze); transition:.3s; }
.nav a:hover { color: var(--ink); } .nav a:hover::after { width:100%; }
.nav a .caret { font-size: 8px; opacity:.6; margin-left:3px; }

.header__tools { display: flex; align-items: center; justify-content: flex-end; gap: 18px; }
.iconbtn {
  background: none; border: none; padding: 6px; color: var(--ink); position: relative;
  display: inline-flex; align-items: center; border-radius: 50%;
}
.iconbtn:hover { color: var(--bronze); }
.iconbtn svg { width: 20px; height: 20px; }
.cart-count {
  position: absolute; top: -3px; right: -4px; background: var(--ink); color: var(--ivory);
  font-size: 10px; min-width: 17px; height: 17px; border-radius: 50%; display: grid; place-items: center;
  font-weight: 600; letter-spacing: 0; padding: 0 3px;
}

/* ---------- Mode switch (CONSUMER / BUSINESS) — the hero interaction ---------- */
.modeswitch {
  display: inline-flex; align-items: center; gap: 9px; flex: 0 0 auto; white-space: nowrap;
}
.modeswitch button {
  border: none; background: none; font-family: var(--sans); font-size: 12px; letter-spacing: .12em;
  text-transform: uppercase; font-weight: 600; color: var(--muted-2); padding: 4px 2px;
  transition: color .2s; position: relative; white-space: nowrap;
}
.modeswitch button:hover { color: var(--ink); }
.modeswitch button.is-active { color: var(--wine); }
.modeswitch__sep { color: var(--line-2); font-weight: 400; font-size: 14px; }
.modeswitch__hint { display: none; }

/* account chip when "signed in" */
.acctchip {
  display: inline-flex; align-items: center; gap: 9px; padding: 5px 6px 5px 14px;
  border: 1px solid var(--line-2); border-radius: 999px; background: var(--paper); font-size: 12px;
}
.acctchip .tier {
  font-size: 9px; letter-spacing: .1em; text-transform: uppercase; font-weight: 600;
  padding: 3px 8px; border-radius: 999px; color: #fff;
}
.acctchip .tier.retail { background: var(--retail); }
.acctchip .tier.wholesale { background: var(--wholesale); }
.acctchip .tier.trade { background: #4E5B6B; }
.acctchip .avatar { width: 26px; height: 26px; border-radius: 50%; background: var(--ink); color: var(--ivory);
  display: grid; place-items: center; font-size: 11px; font-weight: 600; letter-spacing: 0; }

/* wholesale sub-bar under header when in B2B */
.tradebar {
  background: var(--wholesale); color: #F3ECDF; font-size: 11.5px; letter-spacing: .06em;
  text-transform: uppercase;
}
.tradebar .wrap { display: flex; align-items: center; justify-content: center; gap: 10px 26px; min-height: 38px; padding: 7px 16px; flex-wrap: wrap; text-align: center; }
.tradebar b { color: #fff; font-weight: 600; }
.tradebar .dot { opacity: .4; }

/* ---------- Hero ---------- */
.hero { position: relative; background: var(--ivory-2); overflow: hidden; }
.hero__grid { display: grid; grid-template-columns: 1fr; min-height: 600px; }
.hero__art { position: relative; }
.hero__art canvas, .hero__art img { position:absolute; inset:0; width:100%; height:100%; object-fit: cover; }
.hero__scrim { position:absolute; inset:0; background: linear-gradient(90deg, rgba(28,27,25,.42) 0%, rgba(28,27,25,.15) 45%, rgba(28,27,25,0) 70%); }
.hero__copy { position: absolute; top: 50%; left: 8%; transform: translateY(-50%); max-width: 460px; color: #fff; }
.hero__copy { text-shadow: 0 1px 16px rgba(20,16,10,.35); }
.hero__copy h1 { font-family: var(--serif); font-size: clamp(42px, 5vw, 74px); line-height: 1.03; font-weight: 500; letter-spacing: .5px; }
.hero__copy p { font-size: 16px; margin: 22px 0 32px; color: #f4efe6; opacity: .95; max-width: 380px; }
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__cta .btn { background:#fff; color: var(--ink); border-color:#fff; }
.hero__cta .btn:hover { background: var(--beige); }
.hero__cta .btn--ghost { background: transparent; color:#fff; border:none; border-bottom:1px solid rgba(255,255,255,.6); border-radius:0; padding-left:2px; padding-right:2px;}
.hero__cta .btn--ghost:hover { color:#fff; border-color:#fff; }

/* account-type panel (right side of hero) */
.hero__panel { background: rgba(247,244,238,.94); backdrop-filter: blur(6px); display: flex; flex-direction: column; justify-content: center; padding: 44px 46px; }
.hero__panel h3 { font-family: var(--serif); font-size: 26px; letter-spacing: .2em; text-align: center; font-weight: 500; }
.hero__panel .sub { text-align: center; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin: 8px 0 26px; }
.acct-card {
  display: flex; align-items: center; gap: 18px; background: var(--paper);
  border: 1px solid var(--line); padding: 20px 22px; margin-bottom: 14px; transition: .22s; text-align: left; width: 100%;
}
.acct-card:hover { border-color: var(--bronze); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.acct-card .ico { width: 34px; height: 34px; color: var(--ink); flex: 0 0 auto; }
.acct-card .ico svg { width: 34px; height: 34px; stroke: var(--bronze); }
.acct-card .txt strong { display: block; font-size: 13px; letter-spacing: .12em; text-transform: uppercase; font-weight: 600; }
.acct-card .txt span { font-size: 13px; color: var(--muted); }
.acct-card .arrow { margin-left: auto; color: var(--muted-2); font-size: 18px; transition:.22s; }
.acct-card:hover .arrow { color: var(--bronze); transform: translateX(4px); }

@media (max-width: 980px){
  .hero__grid { min-height: 480px; }
  .hero__art { min-height: 480px; }
}
@media (max-width: 600px){
  .hero__grid { min-height: 440px; }
  .hero__copy { left: 6%; right: 6%; max-width: none; }
}

/* ---------- Feature strip ---------- */
.features { background: var(--beige); border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.features .wrap { display: grid; grid-template-columns: repeat(4,1fr); }
.feature { display: flex; align-items: center; gap: 14px; padding: 26px 8px; border-right: 1px solid var(--line); }
.feature:last-child { border-right: none; }
.feature svg { width: 26px; height: 26px; stroke: var(--bronze); flex:0 0 auto; }
.feature strong { display:block; font-size: 11px; letter-spacing:.12em; text-transform: uppercase; font-weight:600; }
.feature span { font-size: 12.5px; color: var(--muted); }
@media (max-width:820px){ .features .wrap { grid-template-columns: repeat(2,1fr);} .feature:nth-child(2){border-right:none;} }

/* ---------- Sections ---------- */
.section { padding: 76px 0; }
.section--tight { padding: 54px 0; }
.section__head { text-align: center; margin-bottom: 46px; }
.section__head h2 { font-family: var(--serif); font-size: 34px; letter-spacing: .12em; text-transform: uppercase; font-weight: 500; }
.section__head p { color: var(--muted); font-size: 14px; margin-top: 10px; }
.section__head--row { display: flex; align-items: flex-end; justify-content: space-between; text-align: left; }
.section__head--row h2 { font-size: 30px; }

/* category grid */
.cats { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.cat { position: relative; overflow: hidden; background: var(--beige); aspect-ratio: 3/4; }
.cat img { width:100%; height:100%; object-fit: cover; transition: .6s; }
.cat:hover img { transform: scale(1.05); }
.cat__label { position: absolute; left: 0; right: 0; bottom: 0; padding: 18px; background: linear-gradient(0deg, rgba(28,27,25,.55), transparent); color:#fff; }
.cat__label strong { display:block; font-family: var(--serif); font-size: 19px; letter-spacing: .1em; text-transform: uppercase; }
.cat__label span { font-size: 10px; letter-spacing:.16em; text-transform: uppercase; opacity:.9; display:inline-flex; gap:6px; align-items:center; margin-top:4px;}
@media (max-width:1000px){ .cats { grid-template-columns: repeat(3,1fr);} }
@media (max-width:600px){ .cats { grid-template-columns: repeat(2,1fr);} }

/* ---------- Product card ---------- */
.grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
@media (max-width:1100px){ .grid { grid-template-columns: repeat(3,1fr);} }
@media (max-width:820px){ .grid { grid-template-columns: repeat(2,1fr);} }

.card { background: var(--paper); border: 1px solid var(--line); display: flex; flex-direction: column; transition: .25s; position: relative; }
.card:hover { box-shadow: var(--shadow); transform: translateY(-3px); border-color: var(--line-2); }
.card__media { position: relative; aspect-ratio: 4/5; overflow: hidden; background: var(--beige); }
.card__media img { width:100%; height:100%; object-fit: cover; }
.card__badges { position: absolute; top: 12px; left: 12px; display: flex; flex-direction: column; gap: 6px; align-items:flex-start; }
.badge {
  font-size: 9px; letter-spacing: .1em; text-transform: uppercase; font-weight: 600;
  padding: 4px 9px; background: var(--paper); color: var(--ink); border:1px solid var(--line-2);
}
.badge--best { background: var(--ink); color: var(--ivory); border-color: var(--ink); }
.badge--pre { background: var(--wholesale); color: #fff; border-color: var(--wholesale); }
.badge--moq { background: var(--gold); color: #2a2113; border-color: var(--gold); }
.badge--low { background: #F3E4DC; color: var(--danger); border-color: #E7C9BC; }
.wish { position: absolute; top: 12px; right: 12px; background: rgba(255,255,255,.85); border:1px solid var(--line); border-radius:50%; width:34px; height:34px; display:grid; place-items:center; }
.wish svg { width:16px; height:16px; stroke: var(--ink); fill: none; }
.wish.is-on svg { fill: var(--bronze); stroke: var(--bronze); }

.card__body { padding: 18px 18px 20px; display: flex; flex-direction: column; gap: 6px; flex:1; }
.card__cat { font-size: 10px; letter-spacing:.14em; text-transform: uppercase; color: var(--muted-2); }
.card__title { font-family: var(--serif); font-size: 21px; font-weight: 500; line-height:1.15; }
.card__sku { font-size: 10.5px; letter-spacing:.08em; color: var(--muted-2); font-variant-numeric: tabular-nums; }
.card__price { display: flex; align-items: baseline; gap: 8px; margin-top: 4px; }
.card__price .now { font-size: 19px; font-weight: 500; font-family: var(--serif); }
.card__price .was { font-size: 13px; color: var(--muted-2); text-decoration: line-through; }
.card__price .unit { font-size: 11px; color: var(--muted); letter-spacing:.04em; }
.price-note { font-size: 11px; color: var(--wholesale); letter-spacing: .04em; }

/* wholesale tier mini-table */
.tiers { border: 1px solid var(--line); margin-top: 4px; }
.tiers__row { display:flex; justify-content: space-between; font-size: 11.5px; padding: 5px 10px; border-bottom:1px solid var(--line); }
.tiers__row:last-child { border-bottom:none; }
.tiers__row.head { background: var(--beige); font-weight:600; letter-spacing:.08em; text-transform:uppercase; font-size:9.5px; color: var(--muted); }
.tiers__row .q { color: var(--ink-2); } .tiers__row .p { font-weight:600; font-variant-numeric: tabular-nums;}

.stockline { display:flex; align-items:center; gap:8px; font-size:11px; color: var(--muted); margin-top: 2px; }
.stock-dot { width:7px; height:7px; border-radius:50%; background: var(--success); }
.stock-dot.low { background: var(--danger); } .stock-dot.pre { background: var(--info); }

.card__foot { margin-top: auto; padding-top: 12px; }
.qtyrow { display:flex; align-items:center; gap: 8px; margin-bottom: 10px; }
.qty { display:inline-flex; align-items:center; border:1px solid var(--line-2); }
.qty button { width:32px; height:36px; background: var(--paper); border:none; font-size:16px; color: var(--ink);}
.qty button:hover { background: var(--beige); }
.qty input { width:44px; height:36px; text-align:center; border:none; border-left:1px solid var(--line); border-right:1px solid var(--line); font-family: var(--sans); font-size:13px; }
.qty input::-webkit-outer-spin-button,.qty input::-webkit-inner-spin-button{ -webkit-appearance:none; margin:0;}
.moqhint { font-size:10.5px; color: var(--muted-2); }

/* ---------- Drawer (cart) ---------- */
.overlay { position: fixed; inset:0; background: rgba(28,27,25,.4); opacity:0; visibility:hidden; transition:.3s; z-index: 90; }
.overlay.is-open { opacity:1; visibility: visible; }
.drawer {
  position: fixed; top:0; right:0; height:100%; width: 420px; max-width: 92vw; background: var(--ivory);
  z-index: 100; transform: translateX(100%); transition: transform .35s cubic-bezier(.4,0,.2,1); display:flex; flex-direction:column;
  box-shadow: var(--shadow-lg);
}
.drawer.is-open { transform: translateX(0); }
.drawer__head { display:flex; align-items:center; justify-content: space-between; padding: 22px 24px; border-bottom:1px solid var(--line); }
.drawer__head h3 { font-family: var(--serif); font-size: 22px; letter-spacing:.1em; text-transform: uppercase; }
.drawer__head .channel { font-size:10px; letter-spacing:.12em; text-transform:uppercase; color:#fff; padding:3px 9px; border-radius:999px; }
.drawer__head .channel.retail{ background: var(--retail);} .drawer__head .channel.wholesale{ background: var(--wholesale);} .drawer__head .channel.trade{ background:#4E5B6B;}
.drawer__body { flex:1; overflow-y:auto; padding: 8px 24px; }
.drawer__foot { border-top:1px solid var(--line); padding: 20px 24px; background: var(--beige); }
.line { display:flex; gap:14px; padding: 18px 0; border-bottom:1px solid var(--line); }
.line img { width: 66px; height: 82px; object-fit: cover; border:1px solid var(--line); }
.line__info { flex:1; }
.line__info h4 { font-family: var(--serif); font-size:16px; font-weight:500;}
.line__info .sku { font-size:10px; color: var(--muted-2); letter-spacing:.06em;}
.line__info .price { font-size:13px; margin-top:4px;}
.line__remove { background:none; border:none; color: var(--muted-2); font-size:11px; text-decoration:underline; padding:0; margin-top:6px;}
.line .qty { transform: scale(.85); transform-origin:left; margin-top:6px;}
.summ { display:flex; justify-content: space-between; font-size:13px; padding: 5px 0; }
.summ.total { font-size:17px; font-weight:600; font-family: var(--serif); border-top:1px solid var(--line-2); margin-top:8px; padding-top:12px; }
.drawer__empty { text-align:center; color: var(--muted); padding: 60px 20px; }

/* ---------- Modal ---------- */
.modal { position: fixed; inset:0; z-index: 110; display:none; align-items:center; justify-content:center; padding: 24px; }
.modal.is-open { display:flex; }
.modal__box { background: var(--ivory); width: 520px; max-width: 100%; max-height: 90vh; overflow-y:auto; box-shadow: var(--shadow-lg); position: relative; }
.modal__box.lg { width: 720px; }
.modal__x { position:absolute; top:16px; right:16px; background:none; border:none; font-size:22px; color: var(--muted); }
.modal__pad { padding: 42px 44px; }
.modal h3 { font-family: var(--serif); font-size: 28px; letter-spacing:.08em; text-align:center; font-weight:500; }
.modal .sub { text-align:center; color: var(--muted); font-size:13px; margin:8px 0 26px; }
.field { margin-bottom: 16px; }
.field label { display:block; font-size:11px; letter-spacing:.1em; text-transform:uppercase; color: var(--muted); margin-bottom:7px; }
.field input, .field select, .field textarea { width:100%; padding: 12px 14px; border:1px solid var(--line-2); background: var(--paper); font-family: var(--sans); font-size:14px; border-radius:0;}
.field input:focus, .field select:focus, .field textarea:focus { outline:none; border-color: var(--bronze); }
.divider-or { text-align:center; font-size:11px; letter-spacing:.12em; text-transform:uppercase; color: var(--muted-2); margin: 20px 0; position:relative; }
.divider-or::before,.divider-or::after{ content:''; position:absolute; top:50%; width:38%; height:1px; background: var(--line);} .divider-or::before{left:0;} .divider-or::after{right:0;}

/* toast */
.toast-wrap { position: fixed; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 200; display:flex; flex-direction:column; gap:10px; align-items:center;}
.toast { background: var(--ink); color: var(--ivory); padding: 13px 22px; font-size: 13px; letter-spacing:.04em; box-shadow: var(--shadow); display:flex; gap:10px; align-items:center; animation: toastIn .3s ease; }
.toast svg { width:16px; height:16px; stroke: var(--gold); }
@keyframes toastIn { from{ opacity:0; transform: translateY(12px);} to{opacity:1; transform:none;} }

/* ---------- Split promo (B2B vs B2C explainer) ---------- */
.duo { display:grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.duo__card { padding: 44px; border:1px solid var(--line); background: var(--paper); position:relative; overflow:hidden;}
.duo__card.b2b { background: var(--ink); color: var(--ivory); border-color: var(--ink);}
.duo__card .tag { font-size:10px; letter-spacing:.16em; text-transform:uppercase; color: var(--bronze); font-weight:600;}
.duo__card.b2b .tag { color: var(--gold);}
.duo__card h3 { font-family: var(--serif); font-size: 30px; margin:12px 0 14px; font-weight:500;}
.duo__card ul { list-style:none; padding:0; margin: 0 0 26px; }
.duo__card li { display:flex; gap:10px; padding: 8px 0; font-size:14px; border-bottom:1px solid var(--line); }
.duo__card.b2b li { border-color: rgba(255,255,255,.12);}
.duo__card li svg { width:16px; height:16px; stroke: var(--bronze); flex:0 0 auto; margin-top:3px;}
.duo__card.b2b li svg { stroke: var(--gold);}
@media (max-width:820px){ .duo { grid-template-columns:1fr;} }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: #C9C3B6; padding: 64px 0 30px; border-top: 1px solid rgba(255,255,255,.14); }
.footer__grid { display:grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.footer h4 { font-family: var(--serif); color: #fff; font-size: 26px; letter-spacing:.2em; margin-bottom: 14px;}
.footer h5 { color:#fff; font-size:11px; letter-spacing:.14em; text-transform:uppercase; margin-bottom:16px; font-weight:600;}
.footer a { display:block; color:#C9C3B6; font-size:13px; padding:5px 0;}
.footer a:hover{ color:#fff;}
.footer__bottom { border-top:1px solid rgba(255,255,255,.12); margin-top: 46px; padding-top: 22px; display:flex; justify-content: space-between; font-size:12px; color: var(--muted-2); flex-wrap:wrap; gap:10px;}
@media (max-width:820px){ .footer__grid{ grid-template-columns:1fr 1fr;} }

/* utility spacing */
.mt-0{margin-top:0;} .stack-sm > * + * { margin-top: 10px; }

/* ============================================================
   Inter typography tuning — retunes the old serif-display sizes
   for a clean grotesque (bold titles, tight tracking).
   ============================================================ */
.logo { font-weight: 700; letter-spacing: .14em; font-size: 24px; padding-left: 0; }
.eyebrow { color: var(--wine); font-weight: 600; }
.hero__copy h1 { font-weight: 600; letter-spacing: -.02em; line-height: 1.05; font-size: clamp(40px, 4.8vw, 66px); }
.section__head h2 { font-weight: 700; letter-spacing: .04em; font-size: 30px; }
.section__head--row h2 { font-size: 26px; letter-spacing: .02em; }
.hero__panel h3 { font-weight: 700; letter-spacing: .14em; font-size: 19px; }
.card__title { font-weight: 600; letter-spacing: -.01em; font-size: 16px; line-height: 1.25; }
.duo__card h3 { font-weight: 600; letter-spacing: -.01em; font-size: 25px; }
.footer h4 { font-weight: 700; letter-spacing: .14em; font-size: 20px; }
.footer h5 { color: #fff; }
.modal h3 { font-weight: 700; letter-spacing: 0; font-size: 22px; }
.drawer__head h3 { font-weight: 700; letter-spacing: .06em; font-size: 16px; }
.line__info h4 { font-weight: 600; font-size: 15px; }
.summ.total { font-weight: 700; }
.about h2, .serif { letter-spacing: normal; }
#about h2 { font-weight: 700; }

/* ---------- Shop (products) page ---------- */
.shopband { background: var(--ivory-2); border-bottom: 1px solid var(--line); padding: 52px 0 40px; text-align: center; }
.shopband__title { font-family: var(--serif); font-weight: 700; letter-spacing: .04em; font-size: clamp(32px, 4vw, 46px); margin-top: 8px; }
.shopband__sub { color: var(--muted); font-size: 14px; margin-top: 12px; max-width: 620px; margin-left: auto; margin-right: auto; }
.shopfilters { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin-bottom: 34px; }

/* Primary buttons stay ink/black (vondels-style); wine reserved for accents */
.btn--bronze { background: var(--wine); border-color: var(--wine); }
.btn--bronze:hover { background: var(--wine-2); border-color: var(--wine-2); }
.wish.is-on svg { fill: var(--wine); stroke: var(--wine); }
.badge--pre { background: var(--wine); border-color: var(--wine); }
.badge--moq { background: var(--beige); color: var(--wine); border-color: var(--line-2); }
.price-note { color: var(--wine); }
.tiers__row .p { color: var(--ink); }
