/* ================================================================
   BioApteka — Premium Luxury E-commerce
   style.css · Complete Design System
   ================================================================

   INDEX
   1  · Variables
   2  · Reset & Base
   3  · Typography
   4  · Layout Utilities
   5  · Keyframe Animations
   6  · Loading Screen
   7  · Custom Cursor
   8  · Buttons & Forms
   9  · Header & Navigation
   10 · Dropdown Menu
   11 · Mobile Menu
   12 · Mobile Bottom Nav
   13 · Cart Drawer
   14 · Newsletter Popup
   15 · Toast
   16 · Footer
   17 · Section Shared
   18 · Hero (homepage)
   19 · Trust Bar
   20 · Language Demo
   21 · Categories Grid
   22 · Products Grid & Cards
   23 · About Preview + Counters
   24 · Testimonials Slider
   25 · Gallery Grid
   26 · Newsletter Section
   27 · Page Banner (sub-pages)
   28 · Shop Page
   29 · Single Product Page
   30 · About Page
   31 · Contact Page
   32 · Responsive
================================================================ */

/* ── 1. VARIABLES ─────────────────────────────────────────── */
:root {
  /* Brand Colours */
  --gold:         #C9A84C;
  --gold-lt:      #E2C97A;
  --gold-dk:      #A8883A;
  --gold-f:       rgba(201,168,76,.07);
  --gold-b:       rgba(201,168,76,.2);
  --dark:         #101010;
  --dark-2:       #1A1A1A;
  --dark-3:       #242424;
  --mid:          #5A5A5A;
  --muted:        #8A8A8A;
  --light:        #F8F7F2;
  --cream:        #FAFAF6;
  --white:        #FFFFFF;
  --red:          #C0392B;
  --green:        #27ae60;

  /* Typography */
  --serif:  'Playfair Display', Georgia, serif;
  --sans:   'Lato', system-ui, -apple-system, sans-serif;

  /* Layout */
  --max-w:      1280px;
  --header-h:   80px;
  --topbar-h:   40px;
  --radius:     4px;
  --radius-md:  10px;
  --radius-lg:  18px;
  --radius-xl:  28px;

  /* Shadows */
  --sh-sm:  0 2px 14px rgba(16,16,16,.07);
  --sh:     0 8px 40px rgba(16,16,16,.11);
  --sh-lg:  0 20px 70px rgba(16,16,16,.16);
  --sh-xl:  0 32px 90px rgba(16,16,16,.22);

  /* Easing */
  --ease:     cubic-bezier(.4,0,.2,1);
  --ease-out: cubic-bezier(.0,0,.2,1);
  --ease-in:  cubic-bezier(.4,0,1,1);
  --t:        .3s var(--ease);
  --t-md:     .5s var(--ease);
  --t-lg:     .7s var(--ease);
}

/* ── 2. RESET & BASE ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
  cursor: none; /* replaced by custom cursor */
}
@media (hover: none) { body { cursor: auto; } }
img, video { display: block; max-width: 100%; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: none; border: none; background: none; font-family: inherit; color: inherit; }
@media (hover: none) { button { cursor: pointer; } }
input, textarea, select { font-family: inherit; }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 10px; }
::selection { background: var(--gold); color: var(--white); }

/* ── 3. TYPOGRAPHY ────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--serif);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: var(--dark);
}
.eyebrow {
  display: block;
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.eyebrow--light { color: var(--gold-lt); }
.section-title {
  font-size: clamp(32px, 4.5vw, 56px);
  margin-bottom: 20px;
}
.section-sub {
  font-size: 16px;
  color: var(--mid);
  line-height: 1.8;
  font-weight: 300;
  max-width: 560px;
}

/* ── 4. LAYOUT UTILITIES ──────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 100px 0; }
@media (max-width: 768px) { .section { padding: 70px 0; } }
.section-header { margin-bottom: 64px; }
.section-header--center { text-align: center; }
.section-header--center .section-sub { margin: 0 auto; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-center  { display: flex; align-items: center; justify-content: center; }
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.fade-up.in { opacity: 1; transform: translateY(0); }
.fade-up[style*="delay"] { /* delay is set inline */ }
.body-lock { overflow: hidden; }

/* ── 5. KEYFRAMES ─────────────────────────────────────────── */
@keyframes fadeIn   { from { opacity:0 } to { opacity:1 } }
@keyframes slideUp  { from { transform:translateY(100%) } to { transform:translateY(0) } }
@keyframes shimmer  { 0%,100%{opacity:.3} 50%{opacity:1} }
@keyframes spinSlow { to { transform: rotate(360deg) } }
@keyframes pulse    { 0%,100%{transform:scale(1)} 50%{transform:scale(1.05)} }
@keyframes loaderBar { to { width: 220px } }
@keyframes loaderFade { from{opacity:0;transform:translateY(12px)} to{opacity:1;transform:none} }
@keyframes popIn {
  0%   { transform: scale(.8); opacity: 0 }
  70%  { transform: scale(1.04) }
  100% { transform: scale(1); opacity: 1 }
}
@keyframes spark {
  0%,100%{ opacity:0; transform:scale(0) rotate(0deg) }
  50%    { opacity:.7; transform:scale(1) rotate(180deg) }
}

/* ── 6. LOADING SCREEN ────────────────────────────────────── */
#loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 32px;
  transition: opacity .6s var(--ease), transform .9s cubic-bezier(.77,0,.18,1);
}
#loader.out { opacity: 0; transform: translateY(-100%); pointer-events: none; }
.loader-logo {
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .06em;
  animation: loaderFade .8s var(--ease) .2s both;
}
.loader-logo em { color: var(--gold); font-style: normal; }
.loader-progress {
  width: 220px;
  height: 1px;
  background: rgba(255,255,255,.12);
  position: relative;
  overflow: hidden;
}
.loader-fill {
  position: absolute;
  inset: 0;
  width: 0;
  background: var(--gold);
  animation: loaderBar 1.4s var(--ease-out) .5s forwards;
}
.loader-text {
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  animation: loaderFade .8s var(--ease) .4s both;
}

/* ── 7. CUSTOM CURSOR ─────────────────────────────────────── */
#cursor-dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%,-50%);
  transition: opacity .3s, width .3s, height .3s, background .3s;
}
#cursor-ring {
  width: 38px; height: 38px;
  border: 1.5px solid rgba(201,168,76,.55);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9997;
  transform: translate(-50%,-50%);
  transition: border-color .3s, width .3s, height .3s, opacity .3s;
}
#cursor-dot.on-dark   { background: var(--gold-lt); }
#cursor-dot.is-link   { width: 6px; height: 6px; }
#cursor-ring.is-link  { width: 56px; height: 56px; border-color: var(--gold); }
#cursor-ring.is-text  { width: 70px; height: 70px; border-color: rgba(201,168,76,.3); mix-blend-mode: difference; }
#cursor-dot.hidden, #cursor-ring.hidden { opacity: 0; }
@media (hover: none) { #cursor-dot, #cursor-ring { display: none; } }

/* ── 8. BUTTONS & FORMS ───────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 34px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  transition: var(--t);
  cursor: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
@media (hover: none) { .btn { cursor: pointer; } }
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.12);
  transform: translateX(-110%) skewX(-12deg);
  transition: transform .45s var(--ease);
}
.btn:hover::before { transform: translateX(110%) skewX(-12deg); }
.btn:active { transform: scale(.97); }
.btn-gold   { background: var(--gold); border-color: var(--gold); color: var(--white); }
.btn-gold:hover { background: var(--gold-dk); border-color: var(--gold-dk); }
.btn-dark   { background: var(--dark); border-color: var(--dark); color: var(--white); }
.btn-dark:hover { background: var(--dark-2); border-color: var(--dark-2); }
.btn-outline-gold  { background: transparent; border-color: var(--gold); color: var(--gold); }
.btn-outline-gold:hover { background: var(--gold); color: var(--white); }
.btn-outline-white { background: transparent; border-color: rgba(255,255,255,.5); color: var(--white); }
.btn-outline-white:hover { background: rgba(255,255,255,.1); border-color: var(--white); }
.btn-sm   { padding: 11px 24px; font-size: 10px; }
.btn-lg   { padding: 18px 44px; font-size: 12px; }
.btn-full { width: 100%; }
.btn-icon { width: 44px; height: 44px; padding: 0; border-radius: 50%; }

/* Form */
.form-group { margin-bottom: 22px; }
.form-label { display: block; font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--mid); margin-bottom: 8px; }
.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 14px 18px;
  background: var(--white);
  border: 1.5px solid rgba(16,16,16,.12);
  border-radius: var(--radius);
  font-family: var(--sans);
  font-size: 14px;
  color: var(--dark);
  outline: none;
  transition: border-color var(--t), box-shadow var(--t);
  -webkit-appearance: none;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,.14);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--muted); }
.form-textarea { resize: vertical; min-height: 130px; }

/* ── 9. HEADER & NAVIGATION ───────────────────────────────── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--header-h);
  transition: background var(--t), box-shadow var(--t), height var(--t);
}
.page-home .header {
  background: transparent;
  --nav-color: rgba(255,255,255,.85);
  --logo-bio: var(--gold-lt);
  --logo-rest: var(--white);
  --icon-c: var(--white);
}
.header.solid,
.page-shop .header,
.page-product .header,
.page-about .header,
.page-contact .header {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(201,168,76,.18), var(--sh-sm);
  --nav-color: var(--mid);
  --logo-bio: var(--gold);
  --logo-rest: var(--dark);
  --icon-c: var(--dark);
}

.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 32px;
}

/* Logo */
.logo {
  display: flex;
  align-items: baseline;
  gap: 1px;
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 700;
  letter-spacing: .04em;
  flex-shrink: 0;
  line-height: 1;
  text-decoration: none;
  transition: opacity var(--t);
}
.logo:hover { opacity: .8; }
.logo-bio  { color: var(--logo-bio, var(--gold)); transition: color var(--t); }
.logo-rest { color: var(--logo-rest, var(--dark)); transition: color var(--t); }

/* Desktop Nav */
.header-nav {
  display: none;
  align-items: center;
  gap: 8px;
  margin: 0 auto;
}
@media (min-width: 1024px) { .header-nav { display: flex; } }

.nav-item { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px 16px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--nav-color, var(--mid));
  border-radius: var(--radius);
  transition: color var(--t), background var(--t);
}
.nav-link:hover,
.nav-item.open > .nav-link {
  color: var(--gold);
  background: var(--gold-f);
}
.nav-link svg { transition: transform var(--t); }
.nav-item.open > .nav-link svg { transform: rotate(180deg); }

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
@media (min-width: 1024px) { .header-actions { margin-left: 0; } }
.hdr-btn {
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  color: var(--icon-c, var(--dark));
  border-radius: var(--radius-md);
  transition: color var(--t), background var(--t);
  position: relative;
}
.hdr-btn:hover { color: var(--gold); background: var(--gold-f); }
.hdr-btn svg { width: 20px; height: 20px; stroke-width: 1.5; }
.cart-badge {
  position: absolute;
  top: 6px; right: 6px;
  width: 16px; height: 16px;
  background: var(--gold);
  color: var(--white);
  font-size: 9px;
  font-weight: 700;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.cart-badge.show { display: flex; }

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px; height: 42px;
  padding: 10px 9px;
  flex-shrink: 0;
  border-radius: var(--radius-md);
  transition: background var(--t);
}
.hamburger:hover { background: var(--gold-f); }
.hamburger span {
  display: block;
  height: 1.5px;
  background: var(--icon-c, var(--dark));
  border-radius: 2px;
  transition: transform var(--t), opacity var(--t), background var(--t);
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
@media (min-width: 1024px) { .hamburger { display: none; } }

/* ── 10. DROPDOWN MENU ────────────────────────────────────── */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--white);
  border: 1px solid var(--gold-b);
  border-radius: var(--radius-lg);
  box-shadow: var(--sh-lg);
  min-width: 220px;
  padding: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s var(--ease), transform .25s var(--ease);
  z-index: 901;
}
.nav-item:hover .nav-dropdown,
.nav-item.open .nav-dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.dropdown-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 16px;
  border-radius: var(--radius-md);
  font-size: 13.5px;
  color: var(--dark);
  transition: background var(--t), color var(--t);
}
.dropdown-link:hover { background: var(--gold-f); color: var(--gold); }
.dropdown-link-icon { font-size: 20px; }
.dropdown-link-text strong { display: block; font-weight: 700; font-size: 13px; margin-bottom: 1px; }
.dropdown-link-text small { color: var(--muted); font-size: 11.5px; }

/* Mega dropdown for Categories */
.nav-mega {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-60%) translateY(8px);
  background: var(--white);
  border: 1px solid var(--gold-b);
  border-radius: var(--radius-lg);
  box-shadow: var(--sh-xl);
  width: 620px;
  padding: 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s var(--ease), transform .25s var(--ease);
  z-index: 901;
}
.nav-item:hover .nav-mega,
.nav-item.open .nav-mega {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-60%) translateY(0);
}
.mega-cat {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--gold-b);
  transition: all var(--t);
}
.mega-cat:hover { border-color: var(--gold); background: var(--gold-f); }
.mega-cat-emoji { font-size: 28px; flex-shrink: 0; }
.mega-cat h4 { font-family: var(--serif); font-size: 15px; font-weight: 600; margin-bottom: 2px; }
.mega-cat p  { font-size: 12px; color: var(--muted); line-height: 1.4; }

/* ── 11. MOBILE MENU ──────────────────────────────────────── */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 950;
  background: var(--dark);
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform .5s cubic-bezier(.77,0,.18,1);
  overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  border-bottom: 1px solid rgba(201,168,76,.15);
}
.mobile-menu-logo .logo-bio  { color: var(--gold); }
.mobile-menu-logo .logo-rest { color: var(--white); }
.mobile-menu-close {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,.1);
  font-size: 20px;
  transition: var(--t);
}
.mobile-menu-close:hover { color: var(--white); border-color: var(--gold); }
.mobile-menu-nav { padding: 24px 28px; flex: 1; }
.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  font-family: var(--serif);
  font-size: 24px;
  color: rgba(255,255,255,.85);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: color var(--t), padding-left var(--t);
}
.mobile-nav-link:hover { color: var(--gold); padding-left: 8px; }
.mobile-menu-footer {
  padding: 24px 28px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.mobile-lang { display: flex; gap: 8px; margin-bottom: 24px; }
.mobile-lang-btn {
  padding: 7px 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  color: rgba(255,255,255,.5);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 4px;
  transition: var(--t);
}
.mobile-lang-btn.active { color: var(--gold); border-color: var(--gold); background: rgba(201,168,76,.08); }
.mobile-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(16,16,16,.6);
  backdrop-filter: blur(4px);
  z-index: 940;
}
.mobile-menu-overlay.show { display: block; }

/* ── 12. MOBILE BOTTOM NAV ────────────────────────────────── */
.bot-nav {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: 64px;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--gold-b);
  display: flex;
  z-index: 800;
  box-shadow: 0 -4px 24px rgba(16,16,16,.08);
}
@media (min-width: 1024px) { .bot-nav { display: none; } }
.bot-nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 8px 4px;
  color: var(--muted);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: color var(--t);
  text-decoration: none;
}
.bot-nav-item svg { width: 22px; height: 22px; stroke-width: 1.5; }
.bot-nav-item.active, .bot-nav-item:hover { color: var(--gold); }
body { padding-bottom: 64px; }
@media (min-width: 1024px) { body { padding-bottom: 0; } }

/* ── 13. CART DRAWER ──────────────────────────────────────── */
.cart-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(16,16,16,.55);
  backdrop-filter: blur(4px);
  z-index: 960;
}
.cart-overlay.show { display: block; }
.cart-drawer {
  position: fixed;
  top: 0; right: 0;
  width: min(420px, 100vw);
  height: 100vh;
  background: var(--white);
  z-index: 970;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .45s cubic-bezier(.77,0,.18,1);
  box-shadow: -12px 0 60px rgba(16,16,16,.2);
}
.cart-drawer.open { transform: none; }
.cart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  border-bottom: 1px solid var(--gold-b);
  flex-shrink: 0;
}
.cart-head h3 { font-family: var(--serif); font-size: 22px; }
.cart-head-close {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-md);
  color: var(--mid);
  transition: var(--t);
}
.cart-head-close:hover { background: var(--light); color: var(--dark); }
.cart-body { flex: 1; overflow-y: auto; padding: 16px; }
.cart-empty {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 14px; height: 240px;
  color: var(--muted); font-size: 14px;
}
.cart-empty-icon { font-size: 52px; }
.cart-item {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--gold-b);
}
.cart-item-img {
  width: 72px; height: 72px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 32px;
  flex-shrink: 0;
}
.cart-item-body { flex: 1; min-width: 0; }
.cart-item-cat {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.cart-item-name {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 10px;
}
.cart-item-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.qty-row { display: flex; align-items: center; gap: 8px; }
.qty-btn {
  width: 28px; height: 28px;
  border: 1.5px solid var(--gold-b);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  transition: var(--t);
  color: var(--dark);
}
.qty-btn:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-f); }
.qty-num { font-size: 14px; font-weight: 700; min-width: 22px; text-align: center; }
.qty-price { font-family: var(--serif); font-size: 16px; font-weight: 700; color: var(--dark); }
.cart-remove { font-size: 12px; color: var(--muted); transition: color var(--t); cursor: none; background: none; border: none; }
.cart-remove:hover { color: var(--red); }
.cart-foot {
  padding: 18px 22px;
  border-top: 1px solid var(--gold-b);
  background: var(--cream);
  flex-shrink: 0;
}
.cart-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--mid);
  margin-bottom: 6px;
}
.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 18px;
}
.cart-total-row strong { font-family: var(--serif); font-size: 22px; }

/* ── 14. NEWSLETTER POPUP ─────────────────────────────────── */
.nl-popup-wrap {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(16,16,16,.6);
  backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s;
}
.nl-popup-wrap.show { opacity: 1; pointer-events: all; }
.nl-popup {
  background: var(--dark);
  border-radius: var(--radius-xl);
  padding: 56px 48px;
  max-width: 520px;
  width: calc(100% - 40px);
  position: relative;
  text-align: center;
  transform: scale(.9);
  transition: transform .4s var(--ease);
  overflow: hidden;
}
.nl-popup-wrap.show .nl-popup { transform: scale(1); }
.nl-popup-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 30%, rgba(201,168,76,.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 80% 70%, rgba(60,120,40,.08) 0%, transparent 60%);
  pointer-events: none;
}
.nl-popup-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.4);
  font-size: 20px;
  border-radius: var(--radius);
  transition: var(--t);
}
.nl-popup-close:hover { color: var(--white); background: rgba(255,255,255,.08); }
.nl-popup .eyebrow { justify-content: center; display: flex; }
.nl-popup-title {
  font-family: var(--serif);
  font-size: clamp(26px, 4vw, 36px);
  color: var(--white);
  margin-bottom: 12px;
  position: relative;
}
.nl-popup-sub { font-size: 14px; color: rgba(255,255,255,.55); line-height: 1.7; margin-bottom: 28px; position: relative; }
.nl-popup-form { display: flex; flex-direction: column; gap: 12px; position: relative; }
.nl-popup-input {
  padding: 14px 18px;
  background: rgba(255,255,255,.08);
  border: 1.5px solid rgba(201,168,76,.3);
  border-radius: var(--radius);
  color: var(--white);
  font-family: var(--sans);
  font-size: 14px;
  outline: none;
  transition: border-color var(--t);
}
.nl-popup-input::placeholder { color: rgba(255,255,255,.35); }
.nl-popup-input:focus { border-color: var(--gold); }
.nl-popup-dismiss { font-size: 12px; color: rgba(255,255,255,.3); margin-top: 12px; cursor: none; background: none; border: none; transition: color var(--t); }
.nl-popup-dismiss:hover { color: rgba(255,255,255,.7); }
.nl-popup-offer {
  position: absolute;
  top: -12px; right: 24px;
  background: var(--gold);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
}

/* ── 15. TOAST ────────────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 84px;
  left: 50%;
  transform: translateX(-50%) translateY(16px);
  background: var(--dark);
  color: var(--white);
  padding: 13px 28px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  z-index: 1100;
  opacity: 0;
  transition: var(--t);
  pointer-events: none;
  border: 1px solid rgba(201,168,76,.3);
  max-width: calc(100vw - 40px);
  text-align: center;
  white-space: nowrap;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
@media (min-width: 1024px) { .toast { bottom: 32px; } }

/* ── 16. FOOTER ───────────────────────────────────────────── */
.footer {
  background: var(--dark-2);
  color: rgba(255,255,255,.6);
  padding-top: 80px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
@media (min-width: 640px)  { .footer-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.4fr; } }

.footer-brand .logo { margin-bottom: 16px; }
.footer-brand .logo-bio  { color: var(--gold); }
.footer-brand .logo-rest { color: var(--white); }
.footer-tagline { font-size: 13.5px; color: rgba(255,255,255,.38); font-style: italic; margin-bottom: 24px; line-height: 1.6; }
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.4);
  transition: var(--t);
}
.social-btn:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,168,76,.08); }
.social-btn svg { width: 16px; height: 16px; stroke-width: 1.5; }

.footer-col h5 {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 22px;
}
.footer-col a, .footer-col span {
  display: block;
  font-size: 13.5px;
  color: rgba(255,255,255,.5);
  margin-bottom: 10px;
  transition: color var(--t);
  font-weight: 300;
}
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  padding: 18px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p  { font-size: 11.5px; color: rgba(255,255,255,.25); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { font-size: 11.5px; color: rgba(255,255,255,.25); transition: color var(--t); }
.footer-bottom-links a:hover { color: var(--gold); }

/* ── 17. SECTION SHARED ───────────────────────────────────── */
.bg-light  { background: var(--light); }
.bg-cream  { background: var(--cream); }
.bg-dark   { background: var(--dark); }
.bg-dark-2 { background: var(--dark-2); }

/* ── 18. HERO ─────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: calc(-1 * var(--header-h));
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 100% 80% at 75% 20%, rgba(50,75,35,.35) 0%, transparent 55%),
    radial-gradient(ellipse 80% 100% at 15% 80%, rgba(30,50,20,.22) 0%, transparent 55%),
    linear-gradient(155deg, #0a0a06 0%, #0c1009 30%, #100d08 60%, #0a0a06 100%);
  transform-origin: center bottom;
}
.hero-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  z-index: 1;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: calc(var(--header-h) + 40px);
  padding-bottom: 100px;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  animation: fadeIn .8s var(--ease) .3s both;
}
.hero-eyebrow-line { width: 40px; height: 1px; background: var(--gold); }
.hero-eyebrow-text {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold-lt);
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(60px, 10vw, 130px);
  font-weight: 700;
  line-height: .92;
  letter-spacing: -.04em;
  color: var(--white);
  margin-bottom: 32px;
  overflow: hidden;
}
.hero-word {
  display: block;
  overflow: hidden;
  line-height: 1.05;
}
.hero-word-inner {
  display: block;
  animation: slideUp 1s var(--ease-out) var(--delay, 0s) both;
}
.hero-word--outline {
  -webkit-text-stroke: 1.5px rgba(255,255,255,.5);
  color: transparent;
}
.hero-subtitle {
  font-size: clamp(15px, 1.8vw, 18px);
  color: rgba(255,255,255,.65);
  max-width: 460px;
  line-height: 1.8;
  margin-bottom: 48px;
  font-weight: 300;
  animation: fadeIn .8s var(--ease) 1.1s both;
}
.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeIn .8s var(--ease) 1.3s both;
}
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fadeIn .8s var(--ease) 1.8s both;
}
.hero-scroll-label {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
}
.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(201,168,76,.5), transparent);
  animation: pulse 2.5s ease-in-out infinite;
}
/* Gold sparks on hero */
.hero-spark {
  position: absolute;
  width: 4px; height: 4px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  animation: spark var(--dur, 4s) ease-in-out var(--delay, 0s) infinite;
  z-index: 1;
}

/* ── 19. TRUST BAR ────────────────────────────────────────── */
.trust-bar {
  background: var(--dark);
  border-bottom: 1px solid rgba(201,168,76,.12);
  padding: 0;
}
.trust-bar-inner {
  display: flex;
  align-items: stretch;
  overflow-x: auto;
  scrollbar-width: none;
}
.trust-bar-inner::-webkit-scrollbar { display: none; }
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 32px;
  flex: 1;
  min-width: max-content;
  border-right: 1px solid rgba(201,168,76,.1);
}
.trust-item:last-child { border-right: none; }
.trust-icon { font-size: 20px; flex-shrink: 0; }
.trust-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  white-space: nowrap;
}

/* ── 20. LANGUAGE DEMO ────────────────────────────────────── */
.lang-demo { background: var(--dark-3); padding: 16px 0; }
.lang-demo-track {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px;
}
.lang-demo-item { display: flex; align-items: center; gap: 10px; padding: 8px 20px; color: rgba(255,255,255,.7); font-size: 13px; }
.lang-chip {
  font-size: 9.5px; font-weight: 700; letter-spacing: .18em;
  color: var(--gold); background: rgba(201,168,76,.1);
  border: 1px solid rgba(201,168,76,.28);
  padding: 2px 8px; border-radius: 3px; flex-shrink: 0;
}
.lang-demo-dot { color: rgba(201,168,76,.3); font-size: 8px; }

/* ── 21. CATEGORIES GRID ──────────────────────────────────── */
.cats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 600px) { .cats-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px){ .cats-grid { grid-template-columns: repeat(4,1fr); gap: 22px; } }
.cat-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: block;
  text-decoration: none;
  transition: transform var(--t), box-shadow var(--t);
}
.cat-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); }
.cat-card-visual {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
@media (min-width: 1024px) { .cat-card-visual { height: 260px; } }
.cat-card-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(16,16,16,.75) 100%);
}
.cat-card-emoji {
  font-size: 68px;
  position: relative; z-index: 1;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,.25));
  transition: transform var(--t-md);
}
.cat-card:hover .cat-card-emoji { transform: scale(1.1) translateY(-6px); }
.cat-cosmetics   { background: linear-gradient(145deg, #fce8e0 0%, #e8c0a8 50%, #c89070 100%); }
.cat-supplements { background: linear-gradient(145deg, #e8f5e0 0%, #c0dda0 50%, #7aaa50 100%); }
.cat-folk        { background: linear-gradient(145deg, #fdf0d0 0%, #f0d080 50%, #c89030 100%); }
.cat-all         { background: var(--dark); border: 2px solid rgba(201,168,76,.2); }
.cat-card:hover.cat-all { border-color: var(--gold); }
.cat-card-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 24px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cat-card-label h3 {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
}
.cat-card-arrow {
  color: var(--gold);
  font-size: 20px;
  transition: transform var(--t);
}
.cat-card:hover .cat-card-arrow { transform: translateX(6px); }

/* ── 22. PRODUCTS GRID & CARDS ────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 26px;
}
@media (min-width: 1024px) { .products-grid.cols-4 { grid-template-columns: repeat(4,1fr); } }

.product-card {
  background: var(--white);
  border: 1px solid var(--gold-b);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
  position: relative;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-lg);
  border-color: rgba(201,168,76,.45);
}
.product-card-media {
  position: relative;
  height: 240px;
  overflow: hidden;
}
.product-card-img {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 72px;
  transition: transform .6s var(--ease);
}
.product-card:hover .product-card-img { transform: scale(1.06); }
.product-badge {
  position: absolute;
  top: 12px; left: 12px;
  padding: 4px 11px;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-radius: 3px;
  z-index: 2;
}
.badge-bio  { background: var(--gold); color: var(--white); }
.badge-new  { background: var(--dark); color: var(--white); }
.badge-sale { background: var(--red);  color: var(--white); }

.product-wish {
  position: absolute;
  top: 12px; right: 12px;
  width: 36px; height: 36px;
  background: rgba(255,255,255,.92);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  border: 1px solid var(--gold-b);
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity var(--t), transform var(--t), color var(--t), background var(--t);
  z-index: 2;
}
.product-card:hover .product-wish { opacity: 1; transform: none; }
.product-wish.active { opacity: 1; color: var(--red); }
.product-wish:hover { background: var(--white); }

.product-quick-add {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(16,16,16,.92);
  backdrop-filter: blur(8px);
  color: var(--white);
  padding: 14px 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  text-align: center;
  transform: translateY(100%);
  transition: transform .35s var(--ease);
  cursor: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  z-index: 3;
}
.product-card:hover .product-quick-add { transform: none; }
.product-quick-add:hover { background: var(--gold); }
.product-quick-add.added { background: var(--green); }

.product-card-body { padding: 20px; }
.product-cat {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.product-name {
  font-family: var(--serif);
  font-size: 16.5px;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: 6px;
}
.product-stars { display: flex; align-items: center; gap: 6px; margin-bottom: 14px; }
.stars { display: flex; gap: 2px; }
.star { font-size: 12px; color: var(--gold); }
.star.empty { color: #DDD; }
.rating-count { font-size: 11.5px; color: var(--muted); }
.product-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-price { display: flex; align-items: baseline; gap: 8px; }
.price-now {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
}
.price-was {
  font-size: 13px;
  color: var(--muted);
  text-decoration: line-through;
}
.price-cur { font-size: 12px; color: var(--muted); }
.add-btn {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  font-size: 22px;
  display: flex; align-items: center; justify-content: center;
  border: none;
  transition: background var(--t), transform var(--t);
  flex-shrink: 0;
}
.add-btn:hover { background: var(--gold-dk); transform: scale(1.1); }
.add-btn.added { background: var(--green); animation: popIn .4s var(--ease); }

/* ── 23. ABOUT PREVIEW + COUNTERS ────────────────────────── */
.about-preview-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  align-items: center;
}
@media (min-width: 1024px) { .about-preview-grid { grid-template-columns: 1fr 1fr; gap: 96px; } }
.about-preview-visual { position: relative; }
.about-preview-img {
  height: 480px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
}
@media (min-width: 1024px) { .about-preview-img { height: 560px; } }
.about-preview-img-inner {
  width: 100%; height: 100%;
  background:
    linear-gradient(145deg, rgba(16,16,16,.08) 0%, rgba(16,16,16,.02) 100%),
    linear-gradient(135deg, #d4e8c8 0%, #a8cc88 30%, #7aaa50 55%, #c9a050 80%, #e8d0a0 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 120px;
  filter: saturate(0.9);
}
.about-preview-badge {
  position: absolute;
  bottom: -20px; right: -10px;
  background: var(--gold);
  color: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--sh-xl);
}
.about-badge-num { display: block; font-family: var(--serif); font-size: 32px; font-weight: 700; line-height: 1; margin-bottom: 2px; }
.about-badge-lbl { font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.about-preview-deco { position: absolute; top: -18px; left: -18px; color: var(--gold); font-size: 44px; opacity: .28; line-height: 1; }
.about-text { font-size: 15px; color: var(--mid); line-height: 1.9; margin-bottom: 18px; font-weight: 300; }
.about-stat-row { display: flex; gap: 40px; padding: 28px 0; border-top: 1px solid var(--gold-b); border-bottom: 1px solid var(--gold-b); margin: 28px 0; }
.counter-num {
  display: block;
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.counter-lbl { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }

/* Full counters section */
.counters-section { background: var(--dark); padding: 80px 0; }
.counters-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 1px;
  background: rgba(201,168,76,.15);
  border: 1px solid rgba(201,168,76,.15);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
@media (min-width: 768px) { .counters-grid { grid-template-columns: repeat(4,1fr); } }
.counter-cell {
  background: var(--dark-2);
  padding: 48px 32px;
  text-align: center;
  transition: background var(--t);
}
.counter-cell:hover { background: var(--dark-3); }
.counter-cell .counter-num { font-size: 48px; margin-bottom: 8px; }
.counter-cell .counter-lbl { font-size: 12px; color: rgba(255,255,255,.45); }

/* ── 24. TESTIMONIALS SLIDER ──────────────────────────────── */
.testimonials-wrap {
  overflow: hidden;
  border-radius: var(--radius-xl);
}
.testimonials-track {
  display: flex;
  transition: transform .6s var(--ease);
}
.testimonial-card {
  min-width: 100%;
  padding: 56px 64px;
  background: var(--dark-2);
  border-radius: var(--radius-xl);
  text-align: center;
}
@media (max-width: 640px) { .testimonial-card { padding: 40px 28px; } }
.testimonial-quote {
  font-family: var(--serif);
  font-size: 60px;
  color: var(--gold);
  line-height: .6;
  margin-bottom: 24px;
  opacity: .7;
}
.testimonial-text {
  font-family: var(--serif);
  font-size: clamp(18px, 2.5vw, 26px);
  color: rgba(255,255,255,.9);
  line-height: 1.55;
  font-style: italic;
  max-width: 700px;
  margin: 0 auto 36px;
}
.testimonial-stars { display: flex; gap: 4px; justify-content: center; margin-bottom: 24px; }
.testimonial-stars .star { font-size: 16px; }
.testimonial-author { display: flex; align-items: center; gap: 16px; justify-content: center; }
.testimonial-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid rgba(201,168,76,.4);
}
.testimonial-name { font-weight: 700; color: var(--white); font-size: 15px; }
.testimonial-loc  { font-size: 12px; color: rgba(255,255,255,.45); }

.testimonials-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}
.testimonials-btn {
  width: 44px; height: 44px;
  border: 1.5px solid rgba(201,168,76,.35);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 18px;
  transition: var(--t);
}
.testimonials-btn:hover { background: var(--gold); color: var(--white); border-color: var(--gold); }
.testimonial-dots { display: flex; gap: 8px; }
.testimonial-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(201,168,76,.3);
  border: none;
  transition: var(--t);
  cursor: none;
}
.testimonial-dot.active { background: var(--gold); transform: scale(1.25); }

/* ── 25. GALLERY GRID ─────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 220px);
  gap: 12px;
}
@media (max-width: 640px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(3, 160px); }
}
.gallery-cell {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: none;
}
.gallery-cell-inner {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 52px;
  transition: transform .6s var(--ease);
}
.gallery-cell:hover .gallery-cell-inner { transform: scale(1.08); }
.gallery-cell-overlay {
  position: absolute; inset: 0;
  background: rgba(16,16,16,.45);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity var(--t);
}
.gallery-cell:hover .gallery-cell-overlay { opacity: 1; }
.gallery-cell-overlay span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--white);
  border: 1px solid rgba(255,255,255,.6);
  padding: 8px 20px;
  border-radius: 100px;
}
.gallery-cell--wide  { grid-column: span 2; }
.gallery-cell--tall  { grid-row: span 2; }
.gc-1 { background: linear-gradient(135deg, #fce8e0, #e0a090); }
.gc-2 { background: linear-gradient(135deg, #e8f5e0, #7aaa50); }
.gc-3 { background: linear-gradient(135deg, #fdf0d0, #c89030); }
.gc-4 { background: linear-gradient(135deg, #e8f0fc, #90a0e0); }
.gc-5 { background: linear-gradient(135deg, #fce8f5, #e070c0); }
.gc-6 { background: linear-gradient(135deg, #f0f8e0, #90b840); }

/* ── 26. NEWSLETTER SECTION ───────────────────────────────── */
.newsletter-section { background: var(--dark); padding: 90px 0; position: relative; overflow: hidden; }
.newsletter-section-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 90% 50%, rgba(201,168,76,.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 10% 50%, rgba(60,120,40,.06) 0%, transparent 60%);
  pointer-events: none;
}
.newsletter-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 44px;
}
@media (min-width: 900px) {
  .newsletter-inner { flex-direction: row; align-items: center; justify-content: space-between; gap: 80px; }
  .newsletter-copy { flex: 1; }
}
.newsletter-title { font-family: var(--serif); font-size: clamp(28px,4vw,42px); color: var(--white); margin-bottom: 10px; }
.newsletter-sub   { font-size: 14px; color: rgba(255,255,255,.55); line-height: 1.7; font-weight: 300; }
.newsletter-form  { display: flex; gap: 10px; max-width: 440px; flex-wrap: wrap; width: 100%; }
.newsletter-input {
  flex: 1; min-width: 200px;
  padding: 14px 18px;
  background: rgba(255,255,255,.07);
  border: 1.5px solid rgba(201,168,76,.28);
  border-radius: var(--radius);
  color: var(--white);
  font-family: var(--sans); font-size: 14px;
  outline: none;
  transition: border-color var(--t), background var(--t);
}
.newsletter-input::placeholder { color: rgba(255,255,255,.35); }
.newsletter-input:focus { border-color: var(--gold); background: rgba(255,255,255,.1); }

/* ── 27. PAGE BANNER ──────────────────────────────────────── */
.page-banner {
  background:
    linear-gradient(135deg, rgba(10,10,6,.94) 0%, rgba(12,16,9,.9) 100%),
    radial-gradient(ellipse 60% 100% at 70% 30%, rgba(201,168,76,.15) 0%, transparent 60%),
    linear-gradient(135deg, #0b0b07 0%, #0e110b 100%);
  padding: 140px 0 80px;
  text-align: center;
}
.page-banner-eyebrow { margin-bottom: 16px; }
.page-banner-title {
  font-family: var(--serif);
  font-size: clamp(36px, 6vw, 72px);
  color: var(--white);
  line-height: 1;
  letter-spacing: -.03em;
  margin-bottom: 20px;
}
.page-banner-sub { font-size: 16px; color: rgba(255,255,255,.55); max-width: 500px; margin: 0 auto; line-height: 1.7; font-weight: 300; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 28px; }
.breadcrumb a { font-size: 12px; color: rgba(255,255,255,.4); transition: color var(--t); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb-sep { color: rgba(201,168,76,.4); font-size: 10px; }
.breadcrumb-cur { font-size: 12px; color: var(--gold); font-weight: 700; }

/* ── 28. SHOP PAGE ────────────────────────────────────────── */
.shop-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}
@media (min-width: 1024px) {
  .shop-layout { grid-template-columns: 280px 1fr; gap: 48px; }
}

/* Filter Sidebar */
.filter-sidebar {
  position: sticky;
  top: calc(var(--header-h) + 24px);
}
.filter-panel {
  background: var(--white);
  border: 1px solid var(--gold-b);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  margin-bottom: 16px;
}
.filter-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.filter-panel-title {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--dark);
}
.filter-panel-clear {
  font-size: 11px;
  color: var(--gold);
  background: none;
  border: none;
  cursor: none;
  font-weight: 700;
  transition: color var(--t);
}
.filter-panel-clear:hover { color: var(--gold-dk); }

/* Category Filter */
.filter-check-list { display: flex; flex-direction: column; gap: 12px; }
.filter-check-item { display: flex; align-items: center; gap: 10px; cursor: none; }
.filter-check-input {
  width: 18px; height: 18px;
  border: 1.5px solid var(--gold-b);
  border-radius: 4px;
  background: var(--white);
  -webkit-appearance: none;
  display: flex; align-items: center; justify-content: center;
  transition: border-color var(--t), background var(--t);
  flex-shrink: 0;
  cursor: none;
}
.filter-check-input:checked { border-color: var(--gold); background: var(--gold); }
.filter-check-input:checked::after { content: '✓'; font-size: 11px; color: white; font-weight: 700; }
.filter-check-label { font-size: 13.5px; color: var(--dark); }
.filter-check-count { margin-left: auto; font-size: 11px; color: var(--muted); }

/* Price Range */
.price-inputs { display: flex; gap: 10px; align-items: center; }
.price-input {
  flex: 1;
  padding: 10px 12px;
  border: 1.5px solid var(--gold-b);
  border-radius: var(--radius);
  font-family: var(--sans);
  font-size: 13px;
  outline: none;
  text-align: center;
  transition: border-color var(--t);
}
.price-input:focus { border-color: var(--gold); }
.price-sep { color: var(--muted); flex-shrink: 0; }
.price-slider-wrap { margin-top: 16px; position: relative; height: 4px; background: var(--gold-b); border-radius: 2px; }
.price-slider-fill { position: absolute; height: 4px; background: var(--gold); border-radius: 2px; }
input[type=range].price-range {
  -webkit-appearance: none;
  width: 100%;
  height: 4px;
  background: transparent;
  position: absolute;
  inset: 0;
  pointer-events: none;
}
input[type=range].price-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px; height: 18px;
  background: var(--white);
  border: 2px solid var(--gold);
  border-radius: 50%;
  pointer-events: all;
  cursor: none;
  box-shadow: var(--sh-sm);
  transition: transform var(--t);
}
input[type=range].price-range::-webkit-slider-thumb:hover { transform: scale(1.2); }

/* Sort bar */
.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 12px;
}
.shop-result-count { font-size: 13.5px; color: var(--mid); }
.shop-sort-wrap { display: flex; align-items: center; gap: 10px; }
.shop-sort-label { font-size: 12px; font-weight: 700; letter-spacing: .08em; color: var(--mid); }
.shop-sort {
  padding: 9px 14px;
  background: var(--white);
  border: 1.5px solid var(--gold-b);
  border-radius: var(--radius);
  font-family: var(--sans);
  font-size: 13px;
  color: var(--dark);
  outline: none;
  cursor: none;
  transition: border-color var(--t);
}
.shop-sort:focus { border-color: var(--gold); }
.shop-view-btns { display: flex; gap: 4px; }
.view-btn {
  width: 36px; height: 36px;
  border: 1.5px solid var(--gold-b);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  transition: var(--t);
}
.view-btn.active, .view-btn:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-f); }

/* Mobile filter toggle */
.filter-toggle-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1.5px solid var(--gold-b);
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--dark);
  transition: var(--t);
  background: var(--white);
}
.filter-toggle-btn:hover { border-color: var(--gold); color: var(--gold); }
@media (min-width: 1024px) { .filter-toggle-btn { display: none; } }

/* Mobile filter drawer */
.filter-drawer {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--white);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  z-index: 980;
  padding: 24px;
  transform: translateY(100%);
  transition: transform .4s var(--ease);
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: var(--sh-xl);
}
.filter-drawer.open { transform: none; }

/* ── 29. SINGLE PRODUCT PAGE ──────────────────────────────── */
.product-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}
@media (min-width: 900px) {
  .product-layout { grid-template-columns: 1fr 1fr; gap: 64px; }
}
@media (min-width: 1200px) {
  .product-layout { grid-template-columns: 1.1fr .9fr; }
}

/* Gallery */
.gallery-main {
  aspect-ratio: 1;
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  cursor: zoom-in;
  border: 1px solid var(--gold-b);
}
.gallery-main-img {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 120px;
  transition: transform .6s var(--ease);
}
.gallery-main:hover .gallery-main-img { transform: scale(1.04); }
.gallery-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 2px;
}
.gallery-thumbs::-webkit-scrollbar { display: none; }
.gallery-thumb {
  width: 80px; height: 80px;
  flex-shrink: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 2px solid transparent;
  cursor: none;
  transition: border-color var(--t);
}
.gallery-thumb.active { border-color: var(--gold); }
.gallery-thumb-inner {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 32px;
}

/* Lightbox */
.lightbox {
  position: fixed; inset: 0;
  z-index: 1200;
  background: rgba(10,10,6,.95);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t);
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox-img {
  max-width: 80vw;
  max-height: 80vh;
  border-radius: var(--radius-xl);
  display: flex; align-items: center; justify-content: center;
  font-size: 200px;
  background: var(--dark-2);
  aspect-ratio: 1;
  width: 60vh;
}
.lightbox-close {
  position: absolute;
  top: 24px; right: 24px;
  width: 48px; height: 48px;
  border: 1.5px solid rgba(255,255,255,.2);
  border-radius: 50%;
  color: rgba(255,255,255,.7);
  font-size: 20px;
  display: flex; align-items: center; justify-content: center;
  transition: var(--t);
}
.lightbox-close:hover { border-color: var(--gold); color: var(--gold); }
.lightbox-nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px;
  border: 1.5px solid rgba(255,255,255,.2);
  border-radius: 50%;
  color: rgba(255,255,255,.7);
  font-size: 20px;
  display: flex; align-items: center; justify-content: center;
  transition: var(--t);
}
.lightbox-nav:hover { border-color: var(--gold); color: var(--gold); }
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

/* Product Info */
.product-info-head { margin-bottom: 16px; }
.product-info-title {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 12px;
  line-height: 1.1;
}
.product-info-rating { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.product-info-price-row {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--gold-b);
}
.product-info-price { font-family: var(--serif); font-size: 36px; font-weight: 700; color: var(--dark); }
.product-info-orig  { font-size: 18px; color: var(--muted); text-decoration: line-through; }
.product-info-desc  { font-size: 15px; color: var(--mid); line-height: 1.85; margin-bottom: 28px; font-weight: 300; }
.product-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.product-tag {
  padding: 5px 14px;
  background: var(--gold-f);
  border: 1px solid var(--gold-b);
  border-radius: 100px;
  font-size: 11.5px;
  color: var(--gold-dk);
  font-weight: 700;
}
.qty-selector {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1.5px solid var(--gold-b);
  border-radius: var(--radius);
  overflow: hidden;
  width: fit-content;
  margin-bottom: 20px;
}
.qty-minus, .qty-plus {
  width: 44px; height: 50px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  color: var(--dark);
  background: var(--light);
  transition: var(--t);
  border: none;
}
.qty-minus:hover, .qty-plus:hover { background: var(--gold); color: var(--white); }
.qty-val {
  width: 60px;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  border: none;
  outline: none;
  font-family: var(--sans);
}
.product-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.product-actions .btn { flex: 1; min-width: 160px; }
.product-info-perks {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 12px;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--gold-b);
}
.product-perk {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--mid);
}
.perk-icon { font-size: 20px; flex-shrink: 0; }

/* Product Tabs */
.product-tabs { margin-top: 64px; }
.tab-nav {
  display: flex;
  gap: 0;
  border-bottom: 1.5px solid var(--gold-b);
  margin-bottom: 40px;
  overflow-x: auto;
  scrollbar-width: none;
}
.tab-nav::-webkit-scrollbar { display: none; }
.tab-btn {
  padding: 14px 28px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 2px solid transparent;
  margin-bottom: -1.5px;
  transition: color var(--t), border-color var(--t);
  white-space: nowrap;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
}
.tab-btn.active { color: var(--gold); border-bottom-color: var(--gold); }
.tab-panel { display: none; }
.tab-panel.active { display: block; animation: fadeIn .4s var(--ease); }

/* Reviews */
.reviews-summary { display: flex; align-items: center; gap: 40px; margin-bottom: 40px; flex-wrap: wrap; }
.reviews-avg { text-align: center; }
.reviews-avg-num { font-family: var(--serif); font-size: 64px; font-weight: 700; color: var(--gold); line-height: 1; }
.reviews-avg-stars { display: flex; gap: 4px; justify-content: center; margin: 8px 0; }
.reviews-avg-stars .star { font-size: 20px; }
.reviews-avg-lbl { font-size: 12px; color: var(--muted); }
.reviews-breakdown { flex: 1; min-width: 200px; }
.reviews-bar-row { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.reviews-bar-label { font-size: 12px; font-weight: 700; color: var(--mid); min-width: 20px; text-align: right; }
.reviews-bar-track { flex: 1; height: 6px; background: var(--gold-b); border-radius: 3px; overflow: hidden; }
.reviews-bar-fill  { height: 100%; background: var(--gold); border-radius: 3px; }
.reviews-bar-count { font-size: 11px; color: var(--muted); min-width: 24px; }

.review-card {
  padding: 28px 0;
  border-bottom: 1px solid var(--gold-b);
}
.review-card:last-child { border-bottom: none; }
.review-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; flex-wrap: wrap; gap: 8px; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--gold-f);
  border: 2px solid var(--gold-b);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--gold);
}
.review-name { font-weight: 700; font-size: 14px; }
.review-date { font-size: 12px; color: var(--muted); }
.review-stars { display: flex; gap: 3px; }
.review-stars .star { font-size: 13px; }
.review-text { font-size: 14.5px; color: var(--mid); line-height: 1.75; }

/* ── 30. ABOUT PAGE ───────────────────────────────────────── */
.about-story { display: grid; grid-template-columns: 1fr; gap: 64px; align-items: center; }
@media (min-width: 900px) { .about-story { grid-template-columns: 1fr 1fr; } }
.about-story-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  display: flex; align-items: center; justify-content: center;
  font-size: 100px;
}
.about-values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 600px) { .about-values-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .about-values-grid { grid-template-columns: repeat(3,1fr); } }
.value-card {
  padding: 36px 28px;
  border: 1px solid var(--gold-b);
  border-radius: var(--radius-lg);
  transition: var(--t);
  background: var(--white);
}
.value-card:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: var(--sh); }
.value-icon { font-size: 36px; margin-bottom: 18px; }
.value-title { font-family: var(--serif); font-size: 20px; font-weight: 600; margin-bottom: 10px; }
.value-text  { font-size: 14px; color: var(--mid); line-height: 1.75; font-weight: 300; }
.cert-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}
.cert-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border: 1.5px solid var(--gold-b);
  border-radius: var(--radius-lg);
  background: var(--white);
}
.cert-badge-icon { font-size: 24px; }
.cert-badge-text { font-size: 12.5px; font-weight: 700; letter-spacing: .06em; }

/* ── 31. CONTACT PAGE ─────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}
@media (min-width: 900px) { .contact-layout { grid-template-columns: 1.2fr .8fr; gap: 64px; } }
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--gold-b);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
}
@media (max-width: 640px) { .contact-form-wrap { padding: 32px 24px; } }
.contact-form-title { font-family: var(--serif); font-size: 28px; margin-bottom: 6px; }
.contact-form-sub   { font-size: 14px; color: var(--mid); margin-bottom: 32px; }
.contact-info-card {
  background: var(--dark);
  border-radius: var(--radius-xl);
  padding: 40px;
  color: rgba(255,255,255,.75);
}
.contact-info-title { font-family: var(--serif); font-size: 24px; color: var(--white); margin-bottom: 28px; }
.contact-info-item { display: flex; gap: 16px; margin-bottom: 24px; }
.contact-info-icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.contact-info-label { font-size: 10px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.contact-info-val   { font-size: 14px; color: rgba(255,255,255,.65); line-height: 1.6; }
.faq-item {
  border-bottom: 1px solid var(--gold-b);
  overflow: hidden;
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-weight: 700;
  font-size: 15px;
  cursor: none;
  transition: color var(--t);
  background: none; border: none; width: 100%; text-align: left; color: var(--dark);
}
.faq-q:hover { color: var(--gold); }
.faq-q .faq-icon { transition: transform var(--t); flex-shrink: 0; color: var(--gold); font-size: 20px; }
.faq-item.open .faq-q .faq-icon { transform: rotate(45deg); }
.faq-a {
  font-size: 14.5px;
  color: var(--mid);
  line-height: 1.8;
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s var(--ease), padding .4s var(--ease);
  font-weight: 300;
}
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 20px; }

/* ── 32. RESPONSIVE ───────────────────────────────────────── */
@media (max-width: 1023px) {
  .header-nav { display: none; }
  .filter-sidebar { display: none; }
  .filter-sidebar.mobile-open { display: block; }
}
@media (max-width: 767px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .testimonial-card { padding: 36px 24px; }
  .about-stat-row { gap: 24px; }
  .product-tags { gap: 6px; }
  .product-actions { gap: 8px; }
  .product-actions .btn { min-width: 0; }
  .reviews-summary { gap: 24px; }
  .contact-form-wrap { padding: 28px 20px; }
  .nl-popup { padding: 40px 28px; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
  .hero-title { font-size: clamp(48px, 12vw, 80px); }
}
@media (max-width: 479px) {
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; }
  .cats-grid { grid-template-columns: 1fr; }
  .counters-grid { grid-template-columns: 1fr; }
  .trust-item { padding: 16px 20px; }
}

/* ── Reduced motion ───────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .fade-up { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
