/* =====================================================================
   ESDE-OPTIK — Design System
   Outdoor · Optik · Angeln · Survival
   Eigenständiges Stylesheet, keine externen Abhängigkeiten (außer Fonts)
   ===================================================================== */

/* ---------- Design Tokens ---------- */
:root {
  /* Markenfarben */
  --pine-900: #11251a;
  --pine-800: #163021;
  --pine-700: #1f3d2b;
  --pine-600: #2c5239;
  --pine-500: #3c6b4c;
  --pine-300: #8fb39c;

  --ink-900: #0e1213;
  --ink-700: #1b2123;
  --ink-500: #3a4244;

  --brass-600: #a96f1e;
  --brass-500: #c8862a;
  --brass-400: #e0a23f;
  --brass-100: #f6e6cb;

  --sand-50: #faf8f3;
  --sand-100: #f4f1e9;
  --sand-200: #e9e4d8;
  --sand-300: #d8d1c0;

  --line: #e4e0d5;
  --line-dark: rgba(255, 255, 255, .12);

  --text: #1c2422;
  --text-soft: #586460;
  --text-muted: #8a938f;
  --white: #ffffff;

  --ok: #2f7d52;
  --sale: #c0392b;

  /* Form */
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(16, 24, 20, .06), 0 2px 6px rgba(16, 24, 20, .05);
  --shadow: 0 6px 18px rgba(16, 24, 20, .08), 0 2px 6px rgba(16, 24, 20, .05);
  --shadow-lg: 0 24px 60px rgba(16, 24, 20, .18);
  --ring: 0 0 0 3px rgba(200, 134, 42, .35);

  --container: 1240px;
  --header-h: 76px;

  --ff-sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --ff-display: "Sora", var(--ff-sans);

  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--ff-sans);
  color: var(--text);
  background: var(--sand-50);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: none; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
h1, h2, h3, h4 { font-family: var(--ff-display); line-height: 1.12; font-weight: 700; letter-spacing: -.02em; color: var(--ink-900); }
:focus-visible { outline: none; box-shadow: var(--ring); border-radius: 6px; }

/* ---------- Layout Helpers ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(18px, 4vw, 40px); }
.section { padding-block: clamp(56px, 8vw, 104px); }
.section--tight { padding-block: clamp(40px, 5vw, 64px); }
.center { text-align: center; }
.muted { color: var(--text-soft); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--ff-display);
  font-size: 13px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  color: var(--brass-600);
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--brass-500); border-radius: 2px; }
.eyebrow--center::before { display: none; }

.section-head { max-width: 640px; margin-bottom: clamp(28px, 4vw, 48px); }
.section-head.center { margin-inline: auto; }
.section-head h2 { font-size: clamp(28px, 4vw, 44px); margin-top: 14px; }
.section-head p { margin-top: 14px; color: var(--text-soft); font-size: 17px; }

.grid { display: grid; gap: 24px; }

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--pine-700); --fg: #fff; --bd: var(--pine-700);
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 13px 24px; border-radius: 999px;
  background: var(--bg); color: var(--fg); border: 1.5px solid var(--bd);
  font-family: var(--ff-display); font-weight: 600; font-size: 15px; letter-spacing: .01em;
  transition: transform .18s var(--ease), box-shadow .2s var(--ease), background .2s, color .2s, border-color .2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn:active { transform: translateY(0); }
.btn svg { width: 18px; height: 18px; }
.btn--accent { --bg: var(--brass-500); --bd: var(--brass-500); --fg: #251603; }
.btn--accent:hover { --bg: var(--brass-400); --bd: var(--brass-400); }
.btn--dark { --bg: var(--ink-900); --bd: var(--ink-900); }
.btn--ghost { --bg: transparent; --fg: var(--text); --bd: var(--line); }
.btn--ghost:hover { --bd: var(--pine-500); --fg: var(--pine-700); }
.btn--on-dark { --bg: transparent; --fg: #fff; --bd: rgba(255,255,255,.4); }
.btn--on-dark:hover { --bg: rgba(255,255,255,.08); --bd: #fff; }
.btn--block { width: 100%; }
.btn--lg { padding: 16px 30px; font-size: 16px; }
.btn--sm { padding: 9px 16px; font-size: 13.5px; }
.btn[disabled] { opacity: .5; cursor: not-allowed; transform: none; box-shadow: none; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(250, 248, 243, .82);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s var(--ease);
}
.site-header.is-scrolled { box-shadow: var(--shadow-sm); }
.topbar {
  background: var(--pine-800); color: var(--sand-100);
  font-size: 13px; letter-spacing: .02em;
}
.topbar .container { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 38px; padding-block: 6px; }
.topbar__msg { display: inline-flex; align-items: center; gap: 9px; }
.topbar__msg svg { width: 15px; height: 15px; color: var(--brass-400); }
.topbar__links { display: flex; gap: 20px; }
.topbar__links a { opacity: .82; transition: opacity .2s; }
.topbar__links a:hover { opacity: 1; }

.nav { display: flex; align-items: center; gap: 22px; min-height: var(--header-h); }
.brand { display: inline-flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand__mark { width: 42px; height: 42px; flex-shrink: 0; }
.brand__name { font-family: var(--ff-display); font-weight: 700; font-size: 21px; letter-spacing: .04em; color: var(--ink-900); line-height: 1; }
.brand__name span { color: var(--brass-600); }
.brand__tag { display: block; font-family: var(--ff-sans); font-size: 10.5px; letter-spacing: .28em; text-transform: uppercase; color: var(--text-muted); font-weight: 600; margin-top: 3px; }

.nav__links { display: flex; align-items: center; gap: 4px; margin-left: 10px; }
.nav__links a {
  position: relative; padding: 10px 14px; border-radius: 999px;
  font-weight: 500; font-size: 15px; color: var(--ink-700);
  transition: background .2s, color .2s;
}
.nav__links a:hover { background: var(--sand-200); color: var(--pine-700); }
.nav__links a.is-active { color: var(--pine-700); }
.nav__links a.is-active::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 4px; height: 2px;
  background: var(--brass-500); border-radius: 2px;
}
.nav__spacer { flex: 1; }
.nav__actions { display: flex; align-items: center; gap: 6px; }
.icon-btn {
  position: relative; width: 44px; height: 44px; border-radius: 12px;
  display: grid; place-items: center; color: var(--ink-700);
  transition: background .2s, color .2s;
}
.icon-btn:hover { background: var(--sand-200); color: var(--pine-700); }
.icon-btn svg { width: 22px; height: 22px; }
.cart-count {
  position: absolute; top: 4px; right: 4px; min-width: 19px; height: 19px; padding: 0 5px;
  background: var(--brass-500); color: #251603; border-radius: 999px;
  font-size: 11px; font-weight: 700; display: grid; place-items: center;
  font-family: var(--ff-display); transform: scale(0); transition: transform .25s var(--ease);
}
.cart-count.is-visible { transform: scale(1); }
.nav__toggle { display: none; }
.mobile-nav { display: none; } /* nur im Mobile-Breakpoint sichtbar (s. u.) */

/* Mobile nav */
@media (max-width: 980px) {
  .nav__links { display: none; }
  .nav__toggle { display: grid; }
  .mobile-nav {
    position: fixed; inset: var(--header-h) 0 0 auto; width: min(86vw, 360px); z-index: 70;
    background: var(--sand-50); border-left: 1px solid var(--line);
    transform: translateX(100%); transition: transform .3s var(--ease);
    padding: 22px; overflow-y: auto; box-shadow: var(--shadow-lg);
    display: flex; flex-direction: column; gap: 6px;
  }
  .mobile-nav.is-open { transform: translateX(0); }
  .mobile-nav a { padding: 14px 16px; border-radius: 12px; font-weight: 600; font-size: 17px; }
  .mobile-nav a:hover, .mobile-nav a.is-active { background: var(--sand-200); color: var(--pine-700); }
  .mobile-nav__sep { height: 1px; background: var(--line); margin: 12px 4px; }
}
.scrim {
  position: fixed; inset: 0; background: rgba(14, 18, 19, .5); z-index: 65;
  opacity: 0; visibility: hidden; transition: opacity .3s, visibility .3s; backdrop-filter: blur(2px);
}
.scrim.is-open { opacity: 1; visibility: visible; }

/* ---------- Hero ---------- */
.hero { position: relative; color: #fff; overflow: hidden; isolation: isolate; }
.hero__bg {
  position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(120% 120% at 78% 18%, rgba(60,107,76,.55) 0%, rgba(17,37,26,0) 55%),
    linear-gradient(155deg, var(--pine-900) 0%, var(--pine-800) 42%, var(--ink-900) 100%);
}
.hero__topo { position: absolute; inset: 0; z-index: -1; opacity: .5; background-size: cover; background-position: center; }
.hero .container { position: relative; padding-block: clamp(64px, 11vw, 132px); }
.hero__grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: center; }
.hero__eyebrow { color: var(--brass-400); }
.hero__eyebrow::before { background: var(--brass-400); }
.hero h1 { color: #fff; font-size: clamp(38px, 6vw, 70px); line-height: 1.02; margin-top: 18px; }
.hero h1 em { font-style: normal; color: var(--brass-400); }
.hero__sub { margin-top: 22px; font-size: clamp(17px, 2vw, 20px); color: rgba(255,255,255,.82); max-width: 30em; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero__stats { display: flex; gap: 38px; margin-top: 46px; flex-wrap: wrap; }
.hero__stat .num { font-family: var(--ff-display); font-weight: 700; font-size: 30px; color: #fff; }
.hero__stat .lbl { font-size: 13.5px; color: rgba(255,255,255,.62); letter-spacing: .02em; }
.hero__visual { position: relative; aspect-ratio: 1 / 1; }
.hero__card {
  position: absolute; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(8px); border-radius: var(--radius); padding: 16px 18px; color: #fff;
  box-shadow: var(--shadow-lg);
}
.hero__card .k { font-size: 12.5px; color: rgba(255,255,255,.6); }
.hero__card .v { font-family: var(--ff-display); font-weight: 700; font-size: 17px; margin-top: 2px; }
.hero__disc { position: absolute; inset: 6% 6% 6% 6%; border-radius: 50%;
  background: radial-gradient(circle at 38% 32%, rgba(224,162,63,.32), rgba(28,52,38,.1) 60%);
  border: 1px solid rgba(255,255,255,.14); display: grid; place-items: center; }
.hero__disc svg { width: 56%; height: 56%; color: rgba(255,255,255,.9); }

@media (max-width: 880px) {
  .hero__grid { grid-template-columns: 1fr; gap: 30px; }
  .hero__visual { max-width: 360px; margin: 0 auto; }
}

/* ---------- USP Bar ---------- */
.usp { background: var(--white); border-bottom: 1px solid var(--line); }
.usp__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.usp__item { display: flex; align-items: center; gap: 14px; padding: 22px clamp(14px, 2vw, 28px); }
.usp__item + .usp__item { border-left: 1px solid var(--line); }
.usp__item svg { width: 30px; height: 30px; color: var(--pine-600); flex-shrink: 0; }
.usp__item b { font-family: var(--ff-display); font-size: 14.5px; display: block; }
.usp__item span { font-size: 13px; color: var(--text-soft); }
@media (max-width: 760px) {
  .usp__grid { grid-template-columns: 1fr 1fr; }
  .usp__item:nth-child(odd) { border-left: none; }
  .usp__item:nth-child(n+3) { border-top: 1px solid var(--line); }
}

/* ---------- Category Cards ---------- */
.cats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.cat-card {
  position: relative; overflow: hidden; border-radius: var(--radius-lg); min-height: 320px;
  display: flex; flex-direction: column; justify-content: flex-end; padding: 28px; color: #fff;
  box-shadow: var(--shadow); transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.cat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.cat-card__bg { position: absolute; inset: 0; z-index: -1; transition: transform .5s var(--ease); }
.cat-card:hover .cat-card__bg { transform: scale(1.06); }
.cat-card__icon { width: 46px; height: 46px; margin-bottom: auto; color: #fff; opacity: .92; }
.cat-card h3 { color: #fff; font-size: 26px; }
.cat-card p { color: rgba(255,255,255,.82); font-size: 14.5px; margin-top: 6px; max-width: 28ch; }
.cat-card__link { display: inline-flex; align-items: center; gap: 8px; margin-top: 16px; font-family: var(--ff-display); font-weight: 600; font-size: 14.5px; }
.cat-card__link svg { width: 18px; height: 18px; transition: transform .25s var(--ease); }
.cat-card:hover .cat-card__link svg { transform: translateX(5px); }
.cat-card__count { position: absolute; top: 22px; right: 22px; font-size: 12.5px; font-weight: 600; background: rgba(0,0,0,.28); padding: 5px 12px; border-radius: 999px; backdrop-filter: blur(4px); }
@media (max-width: 900px) { .cats { grid-template-columns: 1fr; } }

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

.pcard {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .2s;
}
.pcard:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--sand-300); }
.pcard__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.pcard__media .product-figure { width: 100%; height: 100%; }
.pcard__badges { position: absolute; top: 12px; left: 12px; display: flex; flex-direction: column; gap: 6px; z-index: 2; }
.badge { font-family: var(--ff-display); font-size: 11.5px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; padding: 5px 10px; border-radius: 999px; color: #fff; }
.badge--new { background: var(--pine-600); }
.badge--sale { background: var(--sale); }
.badge--best { background: var(--brass-500); color: #251603; }
.pcard__fav { position: absolute; top: 10px; right: 10px; z-index: 2; width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.9); display: grid; place-items: center; color: var(--ink-700); opacity: 0; transform: translateY(-6px); transition: opacity .2s, transform .2s, color .2s; }
.pcard:hover .pcard__fav { opacity: 1; transform: translateY(0); }
.pcard__fav:hover { color: var(--sale); }
.pcard__fav svg { width: 19px; height: 19px; }
.pcard__body { padding: 16px 17px 18px; display: flex; flex-direction: column; flex: 1; }
.pcard__brand { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--text-muted); font-weight: 600; }
.pcard__name { font-family: var(--ff-display); font-weight: 600; font-size: 16px; line-height: 1.3; margin-top: 5px; color: var(--ink-900); }
.pcard__name a:hover { color: var(--pine-700); }
.pcard__specs { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 11px; }
.chip { font-size: 11.5px; color: var(--pine-700); background: var(--sand-100); border: 1px solid var(--line); padding: 3px 9px; border-radius: 7px; font-weight: 500; }
.pcard__rating { display: flex; align-items: center; gap: 6px; margin-top: 11px; font-size: 12.5px; color: var(--text-soft); }
.stars { display: inline-flex; color: var(--brass-500); }
.stars svg { width: 14px; height: 14px; }
.pcard__foot { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: auto; padding-top: 15px; }
.price { display: flex; align-items: baseline; gap: 8px; }
.price__now { font-family: var(--ff-display); font-weight: 700; font-size: 21px; color: var(--ink-900); }
.price__old { font-size: 14px; color: var(--text-muted); text-decoration: line-through; }
.price__unit { font-size: 11px; color: var(--text-muted); display: block; font-weight: 500; }
.add-btn {
  width: 44px; height: 44px; border-radius: 12px; background: var(--pine-700); color: #fff;
  display: grid; place-items: center; flex-shrink: 0;
  transition: background .2s, transform .15s var(--ease);
}
.add-btn:hover { background: var(--brass-500); color: #251603; transform: scale(1.06); }
.add-btn svg { width: 21px; height: 21px; }
.pcard__stock { display: inline-flex; align-items: center; gap: 6px; font-size: 12.5px; margin-top: 11px; color: var(--ok); font-weight: 500; }
.pcard__stock::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--ok); }
.pcard__stock.low { color: var(--brass-600); } .pcard__stock.low::before { background: var(--brass-500); }
.pcard__stock.out { color: var(--text-muted); } .pcard__stock.out::before { background: var(--text-muted); }

/* Produkt-Figur (SVG-Platzhalter) */
.product-figure { display: grid; place-items: center; position: relative; }
.product-figure svg.product-icon { width: 46%; height: 46%; color: rgba(255,255,255,.92); position: relative; z-index: 1; }
.product-figure::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 50% 120%, rgba(255,255,255,.18), transparent 60%); }
.fig--optik { background: linear-gradient(140deg, var(--pine-600), var(--pine-800)); }
.fig--angeln { background: linear-gradient(140deg, #1c5f6e, #103744); }
.fig--survival { background: linear-gradient(140deg, #7a4420, #3a2410); }

/* ---------- Shop Layout ---------- */
.shop-layout { display: grid; grid-template-columns: 264px 1fr; gap: 38px; align-items: start; }
.filters { position: sticky; top: calc(var(--header-h) + 18px); }
.filter-group { border-bottom: 1px solid var(--line); padding: 18px 0; }
.filter-group:first-child { padding-top: 0; }
.filter-group h4 { font-family: var(--ff-display); font-size: 13px; letter-spacing: .08em; text-transform: uppercase; color: var(--text-soft); margin-bottom: 14px; }
.filter-list li { margin-bottom: 3px; }
.filter-list button, .filter-list a { display: flex; align-items: center; justify-content: space-between; width: 100%; padding: 8px 12px; border-radius: 9px; font-size: 14.5px; color: var(--ink-700); transition: background .18s, color .18s; }
.filter-list button:hover, .filter-list a:hover { background: var(--sand-100); }
.filter-list .is-active { background: var(--pine-700); color: #fff; font-weight: 600; }
.filter-list .is-active .filter-list__count { background: rgba(255,255,255,.22); color: #fff; }
.filter-list__count { font-size: 12px; background: var(--sand-200); color: var(--text-soft); padding: 1px 8px; border-radius: 999px; }
.check { display: flex; align-items: center; gap: 10px; padding: 6px 0; font-size: 14.5px; cursor: pointer; }
.check input { width: 17px; height: 17px; accent-color: var(--pine-700); }

.shop-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 24px; flex-wrap: wrap; }
.shop-toolbar__count { color: var(--text-soft); font-size: 14.5px; }
.shop-toolbar__count b { color: var(--ink-900); }
.select {
  appearance: none; border: 1.5px solid var(--line); background: var(--white); border-radius: 999px;
  padding: 10px 40px 10px 16px; font-size: 14.5px; font-weight: 500; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23586460' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
}
.filter-toggle { display: none; }
@media (max-width: 900px) {
  .shop-layout { grid-template-columns: 1fr; }
  .filters { position: static; display: none; }
  .filters.is-open { display: block; }
  .filter-toggle { display: inline-flex; }
}

/* Search */
.searchbar { display: flex; align-items: center; gap: 10px; background: var(--white); border: 1.5px solid var(--line); border-radius: 999px; padding: 4px 6px 4px 16px; }
.searchbar svg { width: 19px; height: 19px; color: var(--text-muted); }
.searchbar input { border: none; outline: none; background: none; flex: 1; padding: 9px 0; font-size: 15px; }

/* ---------- Product Detail ---------- */
.pdp { display: grid; grid-template-columns: 1.05fr 1fr; gap: 52px; align-items: start; }
.pdp__gallery .product-figure { aspect-ratio: 1/1; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.pdp__thumbs { display: flex; gap: 12px; margin-top: 14px; }
.pdp__thumb { width: 78px; aspect-ratio: 1; border-radius: 12px; overflow: hidden; border: 2px solid transparent; cursor: pointer; }
.pdp__thumb.is-active { border-color: var(--pine-700); }
.pdp__thumb .product-figure { width: 100%; height: 100%; border-radius: 0; box-shadow: none; }
.pdp__info h1 { font-size: clamp(26px, 3.4vw, 38px); margin-top: 8px; }
.pdp__price { display: flex; align-items: baseline; gap: 12px; margin: 18px 0; }
.pdp__price .price__now { font-size: 32px; }
.pdp__price .price__old { font-size: 19px; }
.pdp__lead { color: var(--text-soft); font-size: 16.5px; }
.pdp__buy { display: flex; gap: 12px; margin: 26px 0 18px; flex-wrap: wrap; }
.qty { display: inline-flex; align-items: center; border: 1.5px solid var(--line); border-radius: 999px; overflow: hidden; }
.qty button { width: 46px; height: 50px; font-size: 20px; color: var(--ink-700); display: grid; place-items: center; transition: background .2s; }
.qty button:hover { background: var(--sand-100); }
.qty input { width: 46px; height: 50px; text-align: center; border: none; font-weight: 600; font-family: var(--ff-display); }
.pdp__meta { border-top: 1px solid var(--line); margin-top: 22px; padding-top: 20px; display: grid; gap: 12px; }
.pdp__meta-row { display: flex; gap: 12px; font-size: 14.5px; color: var(--text-soft); }
.pdp__meta-row svg { width: 19px; height: 19px; color: var(--pine-600); flex-shrink: 0; }
.spec-table { width: 100%; border-collapse: collapse; }
.spec-table td { padding: 13px 4px; border-bottom: 1px solid var(--line); font-size: 14.5px; vertical-align: top; }
.spec-table td:first-child { color: var(--text-soft); width: 42%; }
.spec-table td:last-child { font-weight: 500; }
@media (max-width: 860px) { .pdp { grid-template-columns: 1fr; gap: 30px; } }

/* Tabs */
.tabs { display: flex; gap: 4px; border-bottom: 1px solid var(--line); margin-bottom: 24px; flex-wrap: wrap; }
.tab { padding: 13px 18px; font-family: var(--ff-display); font-weight: 600; font-size: 15px; color: var(--text-soft); border-bottom: 2px solid transparent; margin-bottom: -1px; transition: color .2s, border-color .2s; }
.tab.is-active { color: var(--pine-700); border-color: var(--brass-500); }
.tab-panel { display: none; } .tab-panel.is-active { display: block; }

/* ---------- Cart Drawer ---------- */
.cart-drawer {
  position: fixed; top: 0; right: 0; height: 100%; width: min(92vw, 420px); z-index: 80;
  background: var(--sand-50); box-shadow: var(--shadow-lg); transform: translateX(100%);
  transition: transform .32s var(--ease); display: flex; flex-direction: column;
}
.cart-drawer.is-open { transform: translateX(0); }
.cart-drawer__head { display: flex; align-items: center; justify-content: space-between; padding: 20px 22px; border-bottom: 1px solid var(--line); }
.cart-drawer__head h3 { font-size: 19px; }
.cart-drawer__items { flex: 1; overflow-y: auto; padding: 12px 18px; }
.cart-line { display: grid; grid-template-columns: 70px 1fr auto; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.cart-line__media { width: 70px; height: 70px; border-radius: 10px; overflow: hidden; }
.cart-line__media .product-figure { width: 100%; height: 100%; }
.cart-line__title { font-family: var(--ff-display); font-weight: 600; font-size: 14.5px; line-height: 1.3; }
.cart-line__brand { font-size: 11.5px; color: var(--text-muted); text-transform: uppercase; letter-spacing: .08em; }
.cart-line__ctrls { display: flex; align-items: center; gap: 10px; margin-top: 8px; }
.qty-mini { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: 999px; }
.qty-mini button { width: 28px; height: 28px; display: grid; place-items: center; font-size: 15px; color: var(--ink-700); }
.qty-mini span { min-width: 26px; text-align: center; font-size: 13.5px; font-weight: 600; }
.cart-line__remove { font-size: 12.5px; color: var(--text-muted); transition: color .2s; }
.cart-line__remove:hover { color: var(--sale); }
.cart-line__price { font-family: var(--ff-display); font-weight: 700; font-size: 15px; text-align: right; }
.cart-drawer__foot { border-top: 1px solid var(--line); padding: 18px 22px 22px; background: var(--white); }
.cart-sum-row { display: flex; justify-content: space-between; font-size: 14px; color: var(--text-soft); margin-bottom: 8px; }
.cart-sum-row--total { font-size: 18px; color: var(--ink-900); font-weight: 700; font-family: var(--ff-display); margin: 12px 0 16px; }
.cart-empty { text-align: center; padding: 60px 24px; color: var(--text-soft); }
.cart-empty svg { width: 56px; height: 56px; color: var(--sand-300); margin: 0 auto 16px; }

/* ---------- Toast ---------- */
.toast-wrap { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%); z-index: 90; display: flex; flex-direction: column; gap: 10px; align-items: center; }
.toast {
  display: flex; align-items: center; gap: 12px; background: var(--ink-900); color: #fff;
  padding: 13px 20px; border-radius: 999px; box-shadow: var(--shadow-lg); font-weight: 500; font-size: 14.5px;
  animation: toast-in .35s var(--ease);
}
.toast svg { width: 20px; height: 20px; color: var(--brass-400); }
@keyframes toast-in { from { opacity: 0; transform: translateY(16px); } }

/* ---------- Cart / Checkout Pages ---------- */
.cart-page { display: grid; grid-template-columns: 1fr 360px; gap: 40px; align-items: start; }
.cart-table { width: 100%; }
.cart-row { display: grid; grid-template-columns: 92px 1fr auto auto; gap: 18px; align-items: center; padding: 20px 0; border-bottom: 1px solid var(--line); }
.cart-row__media { width: 92px; height: 92px; border-radius: 12px; overflow: hidden; }
.cart-row__media .product-figure { width: 100%; height: 100%; }
.summary { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; position: sticky; top: calc(var(--header-h) + 18px); }
.summary h3 { font-size: 19px; margin-bottom: 18px; }
.summary__row { display: flex; justify-content: space-between; padding: 9px 0; font-size: 14.5px; color: var(--text-soft); }
.summary__row--total { border-top: 1px solid var(--line); margin-top: 8px; padding-top: 16px; font-size: 20px; font-weight: 700; color: var(--ink-900); font-family: var(--ff-display); }
.coupon { display: flex; gap: 8px; margin: 16px 0; }
@media (max-width: 860px) { .cart-page { grid-template-columns: 1fr; } .summary { position: static; } }

/* Forms */
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 13.5px; font-weight: 600; margin-bottom: 7px; color: var(--ink-700); }
.field label .req { color: var(--sale); }
.input, .textarea, .field select {
  width: 100%; border: 1.5px solid var(--line); border-radius: 11px; padding: 12px 14px;
  font-size: 15px; background: var(--white); transition: border-color .2s, box-shadow .2s;
}
.input:focus, .textarea:focus, .field select:focus { border-color: var(--pine-500); box-shadow: var(--ring); outline: none; }
.textarea { min-height: 130px; resize: vertical; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 18px; }
.form-grid .field--full { grid-column: 1 / -1; }
@media (max-width: 560px) { .form-grid { grid-template-columns: 1fr; } }
.steps { display: flex; gap: 10px; margin-bottom: 30px; flex-wrap: wrap; }
.step { display: flex; align-items: center; gap: 10px; color: var(--text-muted); font-size: 14px; }
.step__num { width: 28px; height: 28px; border-radius: 50%; display: grid; place-items: center; background: var(--sand-200); font-family: var(--ff-display); font-weight: 700; font-size: 13px; }
.step.is-active { color: var(--ink-900); font-weight: 600; }
.step.is-active .step__num { background: var(--pine-700); color: #fff; }

/* ---------- Brand / Story ---------- */
.story { background: var(--pine-800); color: #fff; position: relative; overflow: hidden; }
.story .container { position: relative; }
.story__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.story h2 { color: #fff; font-size: clamp(28px, 4vw, 42px); }
.story p { color: rgba(255,255,255,.78); margin-top: 16px; font-size: 16.5px; }
.story__features { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 30px; }
.story__feature { display: flex; gap: 13px; }
.story__feature svg { width: 26px; height: 26px; color: var(--brass-400); flex-shrink: 0; }
.story__feature b { font-family: var(--ff-display); display: block; font-size: 15.5px; }
.story__feature span { font-size: 13.5px; color: rgba(255,255,255,.68); }
.story__visual { aspect-ratio: 5/4; border-radius: var(--radius-lg); background: linear-gradient(140deg, var(--pine-600), var(--pine-900)); position: relative; overflow: hidden; display: grid; place-items: center; box-shadow: var(--shadow-lg); }
.story__visual svg { width: 40%; color: rgba(255,255,255,.85); }
@media (max-width: 860px) { .story__grid { grid-template-columns: 1fr; gap: 32px; } }

/* ---------- Reviews ---------- */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; }
.review .stars { margin-bottom: 12px; }
.review p { font-size: 15.5px; color: var(--ink-700); }
.review__author { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.review__avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--pine-600); color: #fff; display: grid; place-items: center; font-family: var(--ff-display); font-weight: 700; }
.review__name { font-weight: 600; font-size: 14.5px; }
.review__role { font-size: 12.5px; color: var(--text-muted); }
@media (max-width: 860px) { .reviews-grid { grid-template-columns: 1fr; } }

/* ---------- Newsletter ---------- */
.newsletter { background: var(--ink-900); color: #fff; border-radius: var(--radius-lg); padding: clamp(34px, 5vw, 60px); display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: center; }
.newsletter h2 { color: #fff; font-size: clamp(26px, 3.4vw, 36px); }
.newsletter p { color: rgba(255,255,255,.7); margin-top: 12px; }
.newsletter__form { display: flex; gap: 10px; }
.newsletter__form input { flex: 1; border: 1.5px solid rgba(255,255,255,.2); background: rgba(255,255,255,.06); color: #fff; border-radius: 999px; padding: 14px 20px; font-size: 15px; }
.newsletter__form input::placeholder { color: rgba(255,255,255,.5); }
.newsletter__note { font-size: 12.5px; color: rgba(255,255,255,.5); margin-top: 12px; }
@media (max-width: 760px) { .newsletter { grid-template-columns: 1fr; gap: 22px; } }

/* ---------- Page Hero (inner pages) ---------- */
.page-hero { background: var(--pine-800); color: #fff; padding-block: clamp(40px, 6vw, 72px); position: relative; overflow: hidden; }
.page-hero .container { position: relative; }
.page-hero h1 { color: #fff; font-size: clamp(30px, 4.5vw, 48px); }
.page-hero p { color: rgba(255,255,255,.74); margin-top: 12px; max-width: 56ch; font-size: 16.5px; }
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: 13.5px; color: rgba(255,255,255,.6); margin-bottom: 14px; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb svg { width: 14px; height: 14px; opacity: .6; }

/* ---------- Prose (legal / about text) ---------- */
.prose { max-width: 760px; }
.prose h2 { font-size: 26px; margin: 38px 0 14px; }
.prose h3 { font-size: 19px; margin: 26px 0 10px; }
.prose p { margin-bottom: 14px; color: var(--ink-700); }
.prose ul { list-style: disc; padding-left: 22px; margin-bottom: 14px; }
.prose ul li { margin-bottom: 7px; color: var(--ink-700); }
.prose a { color: var(--pine-700); text-decoration: underline; text-underline-offset: 3px; }
.prose strong { color: var(--ink-900); }
.legal-meta { background: var(--sand-100); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 24px; margin-bottom: 30px; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-card { display: flex; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.contact-card svg { width: 24px; height: 24px; color: var(--pine-600); flex-shrink: 0; margin-top: 2px; }
.contact-card b { font-family: var(--ff-display); display: block; margin-bottom: 3px; }
.contact-card span, .contact-card a { color: var(--text-soft); font-size: 15px; }
.map-embed { aspect-ratio: 16/10; border-radius: var(--radius); overflow: hidden; background: linear-gradient(140deg, var(--pine-600), var(--pine-900)); display: grid; place-items: center; color: rgba(255,255,255,.7); margin-top: 24px; }
@media (max-width: 800px) { .contact-grid { grid-template-columns: 1fr; gap: 32px; } }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink-900); color: rgba(255,255,255,.7); padding-top: 64px; margin-top: 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; }
.footer-brand .brand__name { color: #fff; }
.footer-about { margin-top: 16px; font-size: 14.5px; line-height: 1.7; max-width: 34ch; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a { width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,.07); display: grid; place-items: center; color: rgba(255,255,255,.8); transition: background .2s, color .2s; }
.footer-social a:hover { background: var(--brass-500); color: #251603; }
.footer-social svg { width: 19px; height: 19px; }
.footer-col h4 { color: #fff; font-family: var(--ff-display); font-size: 14px; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col li { margin-bottom: 9px; }
.footer-col a { font-size: 14.5px; transition: color .2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid var(--line-dark); padding: 22px 0; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13px; }
.footer-pay { display: flex; gap: 8px; align-items: center; }
.footer-pay span { height: 26px; padding: 0 10px; border-radius: 5px; background: rgba(255,255,255,.92); color: #1b2123; font-size: 11px; font-weight: 700; display: grid; place-items: center; letter-spacing: .02em; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } .footer-brand { grid-column: 1 / -1; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- Utility ---------- */
.is-hidden { display: none !important; }
.skip-link { position: absolute; left: -999px; top: 8px; background: #fff; padding: 10px 16px; border-radius: 8px; z-index: 200; }
.skip-link:focus { left: 8px; }
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { * { animation: none !important; transition: none !important; } .reveal { opacity: 1; transform: none; } html { scroll-behavior: auto; } }
.tag-line { display:inline-flex; gap:8px; flex-wrap:wrap; }
.divider { height:1px; background:var(--line); border:0; margin: 0; }
