/* ============================================================
   RAZ, shared design system
   Dark / streetwear-tech. Violet + cyan accents.
   ============================================================ */

:root {
  /* surfaces, light theme */
  --bg:        #ffffff;
  --bg-1:      #f7f7fb;
  --bg-2:      #f0f0f5;
  --bg-3:      #e7e7ee;
  --line:      rgba(17,17,26,0.10);
  --line-2:    rgba(17,17,26,0.16);

  /* text */
  --ink:       #14141a;
  --ink-2:     #4c4c57;
  --ink-3:     #8a8a96;

  /* accents */
  --violet:    #7c3aed;
  --violet-2:  #6d28d9;
  --cyan:      #06b6d4;
  --cyan-2:    #0a8fab;
  --grad:      linear-gradient(100deg, var(--violet) 0%, var(--cyan) 100%);

  /* glow */
  --glow-violet: 0 0 0 1px rgba(124,58,237,.5), 0 12px 40px -12px rgba(124,58,237,.55);
  --glow-cyan:   0 0 0 1px rgba(6,182,212,.5),  0 12px 40px -12px rgba(6,182,212,.5);

  --radius:    14px;
  --radius-sm: 10px;
  --maxw:      1280px;
  --header-h:  68px;

  --display: "Bebas Neue", "Arial Narrow", sans-serif;
  --body: "DM Sans", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  letter-spacing: .005em;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

::selection { background: var(--violet); color: #fff; }

/* scrollbar */
::-webkit-scrollbar { width: 11px; height: 11px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #2a2a30; border-radius: 20px; border: 3px solid var(--bg); }
::-webkit-scrollbar-thumb:hover { background: #3a3a42; }

/* ---------- layout ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.section { padding: 84px 0; }
.section-sm { padding: 56px 0; }

.eyebrow {
  font-family: var(--body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--cyan-2);
  margin: 0 0 14px;
  display: flex; align-items: center; gap: 10px;
}
.eyebrow::before { content:""; width: 26px; height: 2px; background: var(--grad); display:inline-block; }

h1,h2,h3 { font-family: var(--display); font-weight: 400; letter-spacing: .01em; line-height: .94; margin: 0; }
.display-xl { font-size: clamp(64px, 13vw, 200px); }
.display-lg { font-size: clamp(48px, 8vw, 110px); }
.display-md { font-size: clamp(36px, 5vw, 64px); }
.display-sm { font-size: clamp(28px, 4vw, 40px); }

.gradient-text {
  background: var(--grad);
  background-size: 100% 100%;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  padding-right: .3em; margin-right: -.26em;
}

.muted { color: var(--ink-2); }
.lead { font-size: 18px; line-height: 1.6; color: var(--ink-2); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-weight: 700; font-size: 14px; letter-spacing: .02em;
  padding: 13px 24px; border-radius: 100px; border: 1px solid transparent;
  transition: transform .18s ease, box-shadow .25s ease, background .2s ease, border-color .2s ease, color .2s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn-primary { background: var(--grad); color: #fff; box-shadow: 0 8px 30px -10px rgba(124,58,237,.7); }
.btn-primary:hover { box-shadow: 0 12px 36px -8px rgba(124,58,237,.9); transform: translateY(-2px); }
.btn-ghost { background: rgba(255,255,255,.04); color: var(--ink); border-color: var(--line-2); }
.btn-ghost:hover { border-color: var(--cyan); color: #fff; box-shadow: var(--glow-cyan); transform: translateY(-2px); }
.btn-dark { background: var(--bg-3); color: var(--ink); border-color: var(--line); }
.btn-dark:hover { border-color: var(--violet-2); color: #fff; }
.btn-block { width: 100%; }
.btn-lg { padding: 17px 34px; font-size: 15px; }
.btn-sm { padding: 9px 16px; font-size: 13px; }

/* ---------- header ---------- */
.announce {
  background: var(--grad); color: #fff;
  font-weight: 700; font-size: 12.5px; letter-spacing: .14em; text-transform: uppercase;
  overflow: hidden; white-space: nowrap; position: relative; height: 36px;
  display: flex; align-items: center;
}
.announce__track { display: inline-flex; gap: 0; will-change: transform; animation: marquee 26s linear infinite; }
.announce__track span { padding: 0 30px; display: inline-flex; align-items: center; gap: 30px; }
.announce__track span::after { content: "✦"; opacity: .55; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.site-header {
  position: sticky; top: 0; z-index: 90;
  background: rgba(10,10,10,.72);
  backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid var(--line);
}
.nav {
  height: var(--header-h);
  display: flex; align-items: center; gap: 28px;
  max-width: var(--maxw); margin: 0 auto; padding: 0 28px;
}
.brand { font-family: var(--display); font-size: 34px; line-height: 1; letter-spacing: .04em; }
.brand .gradient-text { display: inline-block; padding-right: .32em; margin-right: -.26em; background-size: 100% 100%; }
.nav__links { display: flex; gap: 4px; margin-left: 14px; }
.nav__links a {
  font-size: 14px; font-weight: 600; color: var(--ink-2);
  padding: 9px 14px; border-radius: 8px; position: relative; transition: color .18s, background .18s;
}
.nav__links a:hover { color: var(--ink); background: rgba(255,255,255,.04); }
.nav__links a.active { color: var(--ink); }
.nav__links a.active::after {
  content:""; position:absolute; left:14px; right:14px; bottom:3px; height:2px; background: var(--grad); border-radius: 2px;
}
.nav__right { margin-left: auto; display: flex; align-items: center; gap: 6px; }
.icon-btn {
  width: 42px; height: 42px; display: grid; place-items: center; border-radius: 10px;
  background: transparent; border: 1px solid transparent; color: var(--ink-2); position: relative;
  transition: color .18s, border-color .18s, background .18s;
}
.icon-btn:hover { color: var(--ink); background: rgba(255,255,255,.05); border-color: var(--line); }
.icon-btn svg { width: 20px; height: 20px; }
.cart-badge {
  position: absolute; top: 4px; right: 3px; min-width: 18px; height: 18px; padding: 0 5px;
  background: var(--cyan); color: #04181c; font-size: 11px; font-weight: 800;
  border-radius: 20px; display: grid; place-items: center; border: 2px solid var(--bg);
}
.age-pill {
  display: inline-flex; align-items: center; gap: 7px; font-size: 12px; font-weight: 700;
  padding: 7px 12px; border-radius: 100px; border: 1px solid var(--line-2); color: var(--ink-2);
  letter-spacing: .04em;
}
.age-pill .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 8px var(--cyan); }
.hamburger { display: none; }

.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 100;
  background: rgba(8,8,8,.96); backdrop-filter: blur(10px);
  flex-direction: column; padding: 24px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-family: var(--display); font-size: 40px; padding: 10px 0; border-bottom: 1px solid var(--line); }
.mobile-menu__close { align-self: flex-end; }

/* ---------- product card ---------- */
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.product-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }

.card {
  background: var(--bg-1); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; transition: transform .25s ease, border-color .25s ease, box-shadow .3s ease;
  position: relative; display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-5px); border-color: rgba(124,58,237,.55); box-shadow: 0 18px 50px -22px rgba(124,58,237,.6); }

.tile {
  position: relative; aspect-ratio: 1/1; overflow: hidden;
  display: grid; place-items: center;
  background: var(--bg-2);
}
.tile__brand {
  font-family: var(--display); font-size: 64px; letter-spacing: .06em; line-height: .8;
  color: rgba(255,255,255,.92); text-align: center; position: relative; z-index: 2;
  text-shadow: 0 8px 30px rgba(0,0,0,.5);
}
.tile__brand small { display:block; font-size: 14px; letter-spacing: .28em; opacity: .8; margin-top: 8px; font-family: var(--body); font-weight:700; }
.tile__glow { position: absolute; inset: -30% ; opacity: .85; filter: blur(8px); z-index: 1; }
.tile__grain { position:absolute; inset:0; z-index:3; opacity:.5;
  background-image: radial-gradient(circle at 30% 20%, rgba(255,255,255,.06) 0, transparent 45%); }

.badge {
  position: absolute; top: 12px; left: 12px; z-index: 4;
  font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  padding: 6px 10px; border-radius: 100px; background: rgba(10,10,10,.7); backdrop-filter: blur(6px);
  border: 1px solid var(--line-2); color: var(--ink);
}
.badge--hot { background: rgba(124,58,237,.85); border-color: transparent; color:#fff; }

.quick-view {
  position: absolute; inset: 0; z-index: 5; display: grid; place-items: center;
  background: rgba(8,8,8,.55); opacity: 0; transition: opacity .22s ease; backdrop-filter: blur(2px);
}
.tile:hover .quick-view { opacity: 1; }

.card__body { padding: 16px 16px 18px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.card__flavor { font-size: 11.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--cyan-2); }
.card__name { font-family: var(--display); font-size: 26px; letter-spacing: .02em; line-height: .95; }
.card__meta { font-size: 13px; color: var(--ink-3); display:flex; gap:10px; }
.card__foot { margin-top: auto; padding-top: 12px; display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.price { font-family: var(--display); font-size: 26px; letter-spacing: .03em; }
.price small { font-family: var(--body); font-size: 13px; color: var(--ink-3); font-weight: 600; }
.add-btn {
  display: inline-flex; align-items: center; gap: 7px; font-weight: 700; font-size: 13px;
  padding: 10px 15px; border-radius: 100px; background: var(--bg-3); color: var(--ink); border: 1px solid var(--line-2);
  transition: all .18s ease;
}
.add-btn:hover { background: var(--grad); border-color: transparent; color: #fff; box-shadow: 0 8px 22px -8px rgba(124,58,237,.8); }
.add-btn.added { background: var(--cyan); color: #04181c; border-color: transparent; }

/* list view variant */
.product-grid.list-view { grid-template-columns: 1fr; gap: 14px; }
.product-grid.list-view .card { flex-direction: row; }
.product-grid.list-view .tile { width: 200px; aspect-ratio: 1/1; flex: none; }
.product-grid.list-view .card__body { padding: 22px 24px; }
.product-grid.list-view .card__name { font-size: 32px; }

/* ---------- category cards (home) ---------- */
.cat-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.cat-card {
  border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line);
  display: flex; flex-direction: column; background: var(--bg-1);
  transition: transform .25s, box-shadow .3s, border-color .25s;
}
.cat-card:hover { transform: translateY(-5px); border-color: var(--cyan); box-shadow: var(--glow-cyan); }
.cat-card__media { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--bg-2); }
.cat-card__bg { position: absolute; inset: 0; z-index: 0; transition: transform .4s ease; }
.cat-card:hover .cat-card__bg { transform: scale(1.06); }
.cat-card__body { padding: 16px 18px 20px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.cat-card h3 { font-size: 30px; color: var(--ink); line-height: 1; }
.cat-card .cat-card__meta { font-size: 13px; color: var(--ink-3); font-weight: 600; display:flex; align-items:center; gap:7px; }
.cat-card .arrow { transition: transform .2s; color: var(--cyan-2); }
.cat-card:hover .arrow { transform: translateX(4px); }

/* ---------- stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.stat {
  border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; background: var(--bg-1);
  transition: border-color .25s, transform .25s;
}
.stat:hover { border-color: var(--violet-2); transform: translateY(-4px); }
.stat__icon { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; background: rgba(124,58,237,.14); color: var(--violet-2); margin-bottom: 16px; }
.stat__icon svg { width: 24px; height: 24px; }
.stat__num { font-family: var(--display); font-size: 44px; line-height: .9; }
.stat__label { font-size: 14px; color: var(--ink-2); margin-top: 4px; }

/* ---------- newsletter ---------- */
.news {
  border-radius: 20px; border: 1px solid var(--line); padding: 56px;
  background:
    radial-gradient(120% 140% at 0% 0%, rgba(124,58,237,.22), transparent 55%),
    radial-gradient(120% 140% at 100% 100%, rgba(6,182,212,.18), transparent 55%),
    var(--bg-1);
  text-align: center;
}
.news form { display: flex; gap: 10px; max-width: 460px; margin: 22px auto 0; }
.input {
  background: var(--bg); border: 1px solid var(--line-2); color: var(--ink);
  padding: 13px 16px; border-radius: 100px; font-size: 14px; font-family: inherit; width: 100%;
  transition: border-color .18s, box-shadow .18s;
}
.input:focus { outline: none; border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(6,182,212,.15); }

/* ---------- footer ---------- */
.site-footer { border-top: 1px solid var(--line); background: var(--bg-1); padding: 64px 0 28px; margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.footer-grid h4 { font-family: var(--body); font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-3); margin: 0 0 16px; font-weight: 700; }
.footer-grid a { display: block; color: var(--ink-2); font-size: 14px; padding: 5px 0; transition: color .15s; }
.footer-grid a:hover { color: var(--ink); }
.socials { display: flex; gap: 10px; margin-top: 18px; }
.socials a { width: 40px; height: 40px; border-radius: 10px; border: 1px solid var(--line); display: grid; place-items: center; color: var(--ink-2); transition: all .18s; }
.socials a:hover { border-color: var(--violet-2); color: #fff; transform: translateY(-2px); }
.footer-bottom { margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; align-items: center; font-size: 13px; color: var(--ink-3); }
.age-disclaimer { display: inline-flex; align-items: center; gap: 9px; font-weight: 600; color: var(--ink-2); }
.age-disclaimer .badge21 { font-family: var(--display); font-size: 22px; line-height: 1; padding: 3px 9px; border-radius: 7px; border: 1px solid var(--violet-2); color: var(--violet-2); }

/* ---------- breadcrumb / pills ---------- */
.breadcrumb { display: flex; gap: 9px; align-items: center; font-size: 13px; color: var(--ink-3); }
.breadcrumb a:hover { color: var(--ink); }
.breadcrumb .sep { opacity: .5; }

.pills { display: flex; gap: 10px; flex-wrap: wrap; }
.pill {
  font-size: 13px; font-weight: 700; padding: 9px 18px; border-radius: 100px;
  background: var(--bg-2); border: 1px solid var(--line-2); color: var(--ink-2); transition: all .16s;
}
.pill:hover { color: var(--ink); border-color: var(--line-2); }
.pill.active { background: var(--grad); color: #fff; border-color: transparent; }

/* ---------- forms / filters ---------- */
.check { display: flex; align-items: center; gap: 11px; padding: 7px 0; cursor: pointer; font-size: 14px; color: var(--ink-2); }
.check input { appearance: none; width: 19px; height: 19px; border-radius: 6px; border: 1.5px solid var(--line-2); background: var(--bg); display: grid; place-items: center; transition: all .15s; flex: none; }
.check input:checked { background: var(--grad); border-color: transparent; }
.check input:checked::after { content: "✓"; color: #fff; font-size: 12px; font-weight: 900; }
.check:hover { color: var(--ink); }

.toggle { position: relative; width: 44px; height: 25px; border-radius: 100px; background: var(--bg-3); border: 1px solid var(--line-2); transition: background .2s; flex: none; }
.toggle::after { content:""; position: absolute; top: 2px; left: 2px; width: 19px; height: 19px; border-radius: 50%; background: var(--ink-2); transition: transform .2s, background .2s; }
.toggle.on { background: var(--grad); border-color: transparent; }
.toggle.on::after { transform: translateX(19px); background: #fff; }

.field label { display: block; font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 7px; }
.field input, .field select { width: 100%; background: var(--bg); border: 1px solid var(--line-2); color: var(--ink); padding: 13px 15px; border-radius: var(--radius-sm); font-size: 14px; font-family: inherit; transition: border-color .15s, box-shadow .15s; }
.field input:focus, .field select:focus { outline: none; border-color: var(--violet-2); box-shadow: 0 0 0 3px rgba(124,58,237,.16); }
.field input::placeholder { color: var(--ink-3); }

/* range slider */
input[type=range] { -webkit-appearance: none; appearance: none; width: 100%; height: 5px; border-radius: 10px; background: var(--bg-3); outline: none; }
input[type=range]::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 18px; height: 18px; border-radius: 50%; background: #fff; border: 3px solid var(--violet); cursor: pointer; box-shadow: 0 0 10px rgba(124,58,237,.6); }
input[type=range]::-moz-range-thumb { width: 18px; height: 18px; border-radius: 50%; background: #fff; border: 3px solid var(--violet); cursor: pointer; }

/* qty stepper */
.qty { display: inline-flex; align-items: center; border: 1px solid var(--line-2); border-radius: 100px; overflow: hidden; }
.qty button { width: 38px; height: 38px; background: var(--bg-2); color: var(--ink); border: none; font-size: 18px; display: grid; place-items: center; transition: background .15s; }
.qty button:hover { background: var(--bg-3); color: var(--cyan-2); }
.qty span { min-width: 40px; text-align: center; font-weight: 700; font-size: 15px; }

/* ---------- toast ---------- */
.toast-wrap { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%); z-index: 200; display: flex; flex-direction: column; gap: 10px; align-items: center; }
.toast {
  background: var(--bg-2); border: 1px solid var(--line-2); border-radius: 100px; padding: 12px 20px;
  display: flex; align-items: center; gap: 12px; font-size: 14px; font-weight: 600;
  box-shadow: 0 18px 50px -16px rgba(0,0,0,.8); animation: toastIn .3s cubic-bezier(.2,.9,.3,1.3);
}
.toast .tdot { width: 8px; height: 8px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 10px var(--cyan); }
@keyframes toastIn { from { opacity: 0; transform: translateY(16px) scale(.95); } to { opacity: 1; transform: none; } }

/* ---------- reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s cubic-bezier(.2,.7,.3,1); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- responsive ---------- */
@media (max-width: 1024px) {
  .product-grid, .cat-grid, .stats { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 860px) {
  .nav__links { display: none; }
  .hamburger { display: grid; }
  .age-pill { display: none; }
  .section { padding: 60px 0; }
  .news { padding: 36px 22px; }
  .news form { flex-direction: column; }
}
@media (max-width: 560px) {
  .wrap { padding: 0 18px; }
  .product-grid, .cat-grid, .stats { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .product-grid.list-view .card { flex-direction: column; }
  .product-grid.list-view .tile { width: 100%; }
}

/* ============================================================
   ADDED, real product imagery, sale prices, FAQ, SEO prose
   ============================================================ */

/* product render image inside tiles */
.tile__img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: contain; padding: 13%; z-index: 2;
  background: radial-gradient(62% 62% at 50% 38%, rgba(124,58,237,.20), transparent 70%), var(--bg-2);
  transition: transform .4s ease;
}
.tile:hover .tile__img { transform: scale(1.05); }
/* faint brand watermark only shows when there is no image behind it */
.tile__brand--mini { font-size: 56px; z-index: 1; opacity: .12; }
.tile__brand--mini small { font-size: 11px; letter-spacing: .22em; }

/* strikethrough original price when on sale */
/* discounted card: stack current price on top, original (strikethrough) below,
   so the price stays in one narrow column and the Add button never overflows */
.price-wrap { display: inline-flex; flex-direction: column; line-height: 1.02; }
.price-was { display: block; font-family: var(--body); font-size: 12px; color: var(--ink-3); text-decoration: line-through; margin-top: 2px; font-weight: 600; }
.card__foot { align-items: flex-end; }

/* ---------- FAQ accordion ---------- */
.faq { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { border: 1px solid var(--line); border-radius: var(--radius); background: var(--bg-1); overflow: hidden; }
.faq-item[open] { border-color: var(--line-2); }
.faq-item summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 22px; font-weight: 700; font-size: 16px; color: var(--ink); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: #fff; }
.faq-ic { font-family: var(--display); font-size: 26px; color: var(--cyan-2); transition: transform .2s; flex: none; }
.faq-item[open] .faq-ic { transform: rotate(45deg); }
.faq-a { padding: 0 22px 20px; color: var(--ink-2); line-height: 1.7; font-size: 15px; }
.faq-a a { color: var(--cyan-2); }

/* ---------- generic SEO content block ---------- */
.seo-content { max-width: 860px; margin: 0 auto; }
.seo-content h2 { font-size: clamp(28px,4vw,42px); margin: 36px 0 16px; }
.seo-content h2:first-child { margin-top: 0; }
.seo-content h3 { font-size: 22px; margin: 26px 0 12px; }
.seo-content p { color: var(--ink-2); line-height: 1.8; margin: 0 0 16px; font-size: 16px; }
.seo-content a { color: var(--cyan-2); }
.seo-content ul { color: var(--ink-2); line-height: 1.8; margin: 0 0 16px 18px; }

/* ---------- product description (rendered from WooCommerce HTML) ---------- */
.prose { color: var(--ink-2); line-height: 1.8; font-size: 16px; }
.prose h1, .prose h2 { font-family: var(--display); color: var(--ink); letter-spacing: .01em; }
.prose h2 { font-size: clamp(26px,3.4vw,34px); margin: 34px 0 14px; }
.prose h1 { font-size: clamp(34px,4.4vw,46px); margin: 0 0 14px; }
.prose p { margin: 0 0 16px; }
.prose strong { color: var(--ink); }
.prose a { color: var(--cyan-2); }
.prose hr { border: none; border-top: 1px solid var(--line); margin: 30px 0; }
.prose table { width: 100%; border-collapse: collapse; margin: 8px 0 24px; font-size: 15px; }
.prose th { text-align: left; color: var(--ink); font-weight: 700; padding: 12px 14px; border-bottom: 1px solid var(--line-2); }
.prose td { padding: 12px 14px; border-bottom: 1px solid var(--line); }
.prose td:first-child { color: var(--ink-3); font-weight: 600; width: 42%; }
.prose td:last-child { color: var(--ink); font-weight: 600; }
.prose ul { margin: 0 0 16px 18px; }

/* ============================================================
   LIGHT THEME, overrides for components that hardcoded dark
   ============================================================ */
::-webkit-scrollbar-track { background: var(--bg-1); }
::-webkit-scrollbar-thumb { background: #cfcfda; border: 3px solid var(--bg); }
::-webkit-scrollbar-thumb:hover { background: #b9b9c8; }

/* header / nav */
.site-header { background: rgba(255,255,255,.82); }
.nav__links a:hover { background: rgba(17,17,26,.05); }
.icon-btn:hover { background: rgba(17,17,26,.05); }
.mobile-menu { background: rgba(255,255,255,.97); }

/* buttons readable on light */
.btn-ghost { background: rgba(17,17,26,.04); }
.btn-ghost:hover { color: var(--violet); }
.btn-dark:hover { color: var(--violet); }

/* product tiles */
.tile__brand--mini { color: rgba(17,17,26,.07); text-shadow: none; }
.badge { background: rgba(17,17,26,.82); color: #fff; border-color: transparent; }
.badge--hot { background: rgba(124,58,237,.92); color: #fff; border-color: transparent; }
.quick-view { background: rgba(17,17,26,.45); }
.quick-view .btn { color: #fff; background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.55); }
.quick-view .btn:hover { background: rgba(255,255,255,.26); color: #fff; }

/* footer socials hover stays visible on white */
.socials a:hover { color: var(--violet); }

/* category card: real image on top, text in the body below it */
.cat-card__img { position:absolute; inset:0; z-index:1; width:100%; height:100%; object-fit:contain; padding:11%; }
.cat-card__meta { margin-top: 2px; }
.cat-card__desc { margin: 6px 0 0; font-size: 12.5px; line-height: 1.55; font-weight: 500; color: var(--ink-2); }

/* ============================================================
   HEADER CART BUTTON · CART DRAWER · SEARCH OVERLAY
   ============================================================ */
body.no-scroll { overflow: hidden; }

.cart-btn { display:inline-flex; align-items:center; gap:9px; height:42px; padding:0 16px 0 12px; border-radius:100px;
  background:var(--bg-2); border:1px solid var(--line-2); color:var(--ink); font-weight:700; transition:border-color .18s, box-shadow .18s; }
.cart-btn:hover { border-color:var(--violet-2); box-shadow:0 6px 18px -10px rgba(124,58,237,.6); }
.cart-btn__ic { position:relative; display:grid; place-items:center; }
.cart-btn__ic svg { width:20px; height:20px; }
.cart-btn .cart-badge { top:-7px; right:-9px; border-color:var(--bg-2); }
.cart-btn__amt { font-family:var(--body); font-size:14px; letter-spacing:.01em; }

/* slide-out drawer */
.drawer-overlay { position:fixed; inset:0; z-index:140; background:rgba(20,20,26,.5); opacity:0; visibility:hidden; transition:opacity .3s, visibility .3s; }
.drawer-overlay.open { opacity:1; visibility:visible; }
.cart-drawer { position:fixed; top:0; right:0; z-index:150; width:min(420px,92vw); height:100%; background:var(--bg);
  border-left:1px solid var(--line); box-shadow:-20px 0 60px -30px rgba(0,0,0,.4);
  display:flex; flex-direction:column; transform:translateX(100%); transition:transform .32s cubic-bezier(.4,.8,.3,1); }
.cart-drawer.open { transform:none; }
.cart-drawer__head { display:flex; align-items:center; justify-content:space-between; padding:22px 22px 18px; border-bottom:1px solid var(--line); }
.cart-drawer__head h3 { font-size:26px; }
.cart-drawer__body { flex:1; overflow-y:auto; padding:8px 22px; }
.cart-drawer__foot { border-top:1px solid var(--line); padding:18px 22px 24px; background:var(--bg-1); }
.cart-drawer__empty { text-align:center; padding:60px 10px; color:var(--ink-3); display:flex; flex-direction:column; gap:18px; align-items:center; }

.cd-item { display:grid; grid-template-columns:64px 1fr auto; gap:14px; align-items:center; padding:16px 0; border-bottom:1px solid var(--line); }
.cd-thumb { width:64px; height:64px; border-radius:10px; overflow:hidden; background:var(--bg-2); position:relative; }
.cd-thumb img { width:100%; height:100%; object-fit:contain; padding:7px; }
.cd-thumb .tb { position:absolute; inset:0; }
.cd-info b { font-family:var(--display); font-size:20px; letter-spacing:.02em; display:block; }
.cd-info > span { font-size:12px; color:var(--ink-3); }
.cd-qty { display:flex; align-items:center; gap:12px; margin-top:8px; }
.qty--sm button { width:30px; height:30px; font-size:16px; }
.qty--sm span { min-width:30px; font-size:14px; }
.cd-remove { background:none; border:none; color:var(--ink-3); font-size:14px; }
.cd-remove:hover { color:#e0245e; }
.cd-line { font-family:var(--display); font-size:22px; letter-spacing:.02em; align-self:start; }

.cd-min { font-size:13px; color:var(--ink-2); margin-bottom:14px; }
.cd-min.ok { color:#0f9d58; font-weight:700; }
.cd-min b { color:var(--ink); }
.cd-min.ok b { color:#0f9d58; }
.cd-bar { height:6px; border-radius:10px; background:var(--bg-3); margin-top:9px; overflow:hidden; }
.cd-bar span { display:block; height:100%; background:var(--grad); transition:width .4s; }
.cd-subtotal { display:flex; justify-content:space-between; align-items:baseline; margin-bottom:14px; font-size:15px; color:var(--ink-2); }
.cd-subtotal b { font-family:var(--display); font-size:30px; color:var(--ink); }
.btn.is-disabled { opacity:.45; pointer-events:none; filter:grayscale(.3); }

/* search overlay */
.search-overlay { position:fixed; inset:0; z-index:160; background:rgba(20,20,26,.55); backdrop-filter:blur(4px);
  opacity:0; visibility:hidden; transition:opacity .25s, visibility .25s; display:flex; justify-content:center; align-items:flex-start; padding:14vh 20px 20px; }
.search-overlay.open { opacity:1; visibility:visible; }
.search-box { width:min(640px,100%); background:var(--bg); border:1px solid var(--line-2); border-radius:18px; overflow:hidden; box-shadow:0 30px 80px -30px rgba(0,0,0,.45); }
.search-input-row { display:flex; align-items:center; gap:12px; padding:16px 18px; border-bottom:1px solid var(--line); }
.search-ic svg { width:22px; height:22px; color:var(--ink-3); }
.search-input-row input { flex:1; border:none; background:none; outline:none; font-family:inherit; font-size:18px; color:var(--ink); }
.search-results { max-height:54vh; overflow-y:auto; padding:8px; }
.search-label { font-size:11px; font-weight:700; letter-spacing:.12em; text-transform:uppercase; color:var(--ink-3); padding:10px 12px 6px; margin:0; }
.search-row { display:flex; align-items:center; gap:14px; padding:10px 12px; border-radius:12px; transition:background .15s; }
.search-row:hover { background:var(--bg-1); }
.search-row__img { width:48px; height:48px; border-radius:9px; background:var(--bg-2); overflow:hidden; flex:none; }
.search-row__img img { width:100%; height:100%; object-fit:contain; padding:5px; }
.search-row__txt { flex:1; min-width:0; }
.search-row__txt b { font-family:var(--display); font-size:19px; letter-spacing:.02em; display:block; }
.search-row__txt span { font-size:12px; color:var(--ink-3); }
.search-row__price { font-family:var(--display); font-size:20px; }
.search-empty { padding:30px 16px; color:var(--ink-3); text-align:center; }

.footer-contact { margin:16px 0 0; }
.footer-contact a { color:var(--cyan-2); font-weight:700; font-size:15px; }

/* ============================================================
   MOBILE OPTIMISATION
   ============================================================ */
@media (max-width: 560px) {
  /* 2 products per line on mobile */
  .product-grid, .cat-grid { grid-template-columns: repeat(2,1fr) !important; gap: 12px; }
  .stats { grid-template-columns: repeat(2,1fr); }
  .card__name { font-size: 20px; }
  .card__body { padding: 12px 12px 14px; }
  /* keep price + Add button on one row like desktop, just smaller */
  .card__foot { flex-direction: row; align-items: center; justify-content: space-between; gap: 8px; padding-top: 10px; }
  .add-btn { padding: 7px 11px; font-size: 12px; gap: 5px; flex: none; }
  .add-btn svg { width: 15px; height: 15px; }
  .card__flavor { font-size: 10.5px; }
  .price { font-size: 20px; }
  .product-grid.list-view { grid-template-columns: 1fr !important; }
  .product-grid.list-view .card { flex-direction: row; }
  .cat-card h3 { font-size: 24px; }
  .cat-card__body { padding: 13px 14px 16px; }
  .cat-card__desc { font-size: 11.5px; }
  .cart-btn { padding: 0 12px 0 10px; gap: 7px; }
  .cart-btn__amt { font-size: 13px; }
}

/* ============================================================
   CATEGORY PAGE BANNER (used by category.html + cat-*.html)
   ============================================================ */
.cat-banner { position: relative; overflow: hidden; padding: 64px 0 56px; border-bottom: 1px solid var(--line); }
.cat-banner__bg { position:absolute; inset:0; z-index:0;
  background: radial-gradient(45% 90% at 12% 30%, rgba(124,58,237,.5), transparent 60%), radial-gradient(45% 90% at 88% 80%, rgba(6,182,212,.4), transparent 60%), var(--bg);
  animation: catDrift 18s ease-in-out infinite alternate; }
@keyframes catDrift { 0%{transform:scale(1);} 100%{transform:scale(1.1) translateX(-2%);} }
.cat-banner__grid { position:absolute; inset:0; z-index:1; opacity:.5;
  background-image: linear-gradient(rgba(17,17,26,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(17,17,26,.05) 1px, transparent 1px);
  background-size: 56px 56px; mask-image: radial-gradient(80% 100% at 50% 50%, #000, transparent); }
/* MOBILE-FIRST default (applies to every device): stacked, centered,
   full-width title, NO device image. */
.cat-banner { text-align: center; padding: 38px 0 32px; }
.cat-banner__inner { position:relative; z-index:2; }
.cat-banner__copy { width:100%; }
.cat-banner .breadcrumb { justify-content:center; }
.cat-banner h1 { font-size: clamp(30px, 7vw, 60px); line-height: 1.05; text-align:center; }
.cat-banner .lead { margin: 14px auto 0; }
.cat-banner .badge-series { display:inline-flex; align-items:center; gap:9px; font-size:12px; font-weight:800; letter-spacing:.16em; text-transform:uppercase; color:var(--cyan-2); border:1px solid var(--line-2); padding:7px 14px; border-radius:100px; margin-bottom:18px; }
.cat-stats { display:flex; gap:24px; margin-top:22px; flex-wrap:wrap; justify-content:center; }
.cat-stats div { font-size:13px; color:var(--ink-3); }
.cat-stats b { display:block; font-family:var(--display); font-size:30px; color:var(--ink); letter-spacing:.02em; line-height:1; margin-bottom:2px; }
.cat-hero-img { display:none; }
@keyframes floaty { from{transform:translateY(-8px);} to{transform:translateY(8px);} }
.subnav { position: sticky; top: var(--header-h); z-index:40; background:rgba(255,255,255,.85); backdrop-filter:blur(14px); border-bottom:1px solid var(--line); padding:16px 0; }
.subnav .wrap { display:flex; align-items:center; justify-content:space-between; gap:16px; flex-wrap:wrap; }
.seo-block { border-top:1px solid var(--line); background:var(--bg-1); }

/* LARGE SCREENS only (>=861px): side-by-side text + device image, left-aligned */
@media (min-width:861px){
  .cat-banner { text-align:left; padding: 64px 0 56px; }
  .cat-banner__inner { display:flex; align-items:center; justify-content:space-between; gap:36px; }
  .cat-banner__copy { width:auto; flex:1; min-width:0; }
  .cat-banner .breadcrumb { justify-content:flex-start; }
  .cat-banner h1 { font-size: clamp(48px, 5vw, 84px); max-width:16ch; text-align:left; }
  .cat-banner .lead { max-width:600px; margin:14px 0 0; }
  .cat-stats { justify-content:flex-start; gap:32px; margin-top:26px; }
  .cat-stats b { font-size:34px; }
  .cat-hero-img { display:block; width:min(320px,40%); aspect-ratio:1/1; object-fit:contain; flex:none; filter:drop-shadow(0 26px 55px rgba(124,58,237,.28)); animation:floaty 5s ease-in-out infinite alternate; }
}
