/* ============================================================
   KOTIVA™ — Design System v3.0
   RTL-first logical-property architecture
   Three-theme × two-mode system

   [data-theme="ritual"]   — Bright warm cream (default)
   [data-theme="editorial"]— Dark campaign moments (max 1 per page)
   [data-theme="clinical"] — Pure white / science

   [data-mode="dark"]      — User dark-mode toggle
   [dir="rtl"]             — Arabic direction (fully logical)
   ============================================================ */

/* ── ARABIC FONTS loaded via <link> in HTML (Google Fonts) ── */
/* @font-face declarations for Latin fonts */
@font-face {
  font-family: 'FuturaNow';
  src: url('../fonts/FuturaNowVar-Roman.ttf') format('truetype');
  font-weight: 100 900;
  font-display: swap;
}
@font-face {
  font-family: 'Manus';
  src: url('../fonts/Manus.otf') format('opentype');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'MyriadPro';
  src: url('../fonts/MyriadPro-Regular.otf') format('opentype');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-VariableFont_wght_25.ttf') format('truetype');
  font-weight: 100 900;
  font-display: swap;
}

/* ── GLOBAL TOKENS ── */
:root {
  /* Typefaces — Latin */
  --font-display: 'FuturaNow', 'Futura', 'Century Gothic', sans-serif;
  --font-script:  'Manus', cursive;
  --font-body:    'MyriadPro', 'Myriad Pro', Georgia, serif;
  --font-ui:      'Montserrat', sans-serif;

  /* Typefaces — Arabic */
  --font-display-ar: 'Tajawal', 'IBM Plex Sans Arabic', sans-serif;
  --font-ui-ar:      'Cairo', 'Tajawal', sans-serif;

  /* Fluid type scale — V3 */
  --t-mega:    clamp(64px, 12vw, 200px);    /* hero wordmark/headline */
  --t-display: clamp(40px, 7vw, 96px);      /* section headers */
  --t-h3:      clamp(22px, 3vw, 36px);      /* sub-sections */
  --t-body:    clamp(16px, 1.2vw, 19px);    /* body */
  --t-label:   13px;                         /* eyebrows (fixed) */

  /* Spacing */
  --section-pad:     clamp(80px, 10vw, 160px);
  --container-max:   1380px;
  --container-pad:   clamp(24px, 4vw, 80px);
  --gap-sm:          clamp(16px, 2vw, 24px);

  /* Shape */
  --radius-pill: 100px;
  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   16px;

  /* Motion */
  --nav-h:            72px;
  --ease-brand:       cubic-bezier(0.22, 1, 0.36, 1); /* KOTIVA signature */
  --transition:       0.3s var(--ease-brand);
  --transition-slow:  0.6s var(--ease-brand);

  /* Legacy aliases for older pages */
  --font-logo:      'Montserrat', sans-serif;
  --gap-section:    clamp(80px, 10vw, 160px);
  --font-sans:      'Montserrat', sans-serif;
  --font-serif:     'MyriadPro', Georgia, serif;
}

/* Arabic: switch to geometric Arabic display + UI fonts */
[dir="rtl"] {
  --font-display: 'Tajawal', 'FuturaNow', 'Century Gothic', sans-serif;
  --font-body:    'Cairo', 'Tajawal', sans-serif;
  --font-ui:      'Cairo', sans-serif;
}

/* ── THEMES ── */
/* RITUAL — bright warm cream (default + dominant) */
[data-theme="ritual"], html {
  --bg:           #F7F2EB;
  --bg-alt:       #EDE7DC;
  --bg-card:      #F3EDE4;
  --fg:           #1A1714;
  --fg-mid:       #5A5550;
  --fg-dim:       #9A9590;
  --accent:       #C4956A;
  --accent-light: #D4A87A;
  --accent-deep:  #8B6442;
  --accent-red:   #C0392B;   /* NEW — MISFITS red handwritten accent */
  --border:       rgba(196,149,106,0.20);
  --border-strong:rgba(196,149,106,0.50);
  --script:       #8B3A2A;   /* warm terracotta */
  --shadow:       0 8px 32px rgba(26,23,20,0.08);
  --shadow-hover: 0 16px 48px rgba(26,23,20,0.14);
  /* Aliases */
  --off-white: #F7F2EB;
  --black:     #1A1714;
  --bronze:    #C4956A;
  --cream:     #F7F2EB;
  --muted:     rgba(26,23,20,0.55);
  --border-color: rgba(196,149,106,0.20);
}

/* EDITORIAL — dark campaign (max 1 per page) */
[data-theme="editorial"] {
  --bg:           #1C1815;
  --bg-alt:       #231F1B;
  --bg-card:      #2A2520;
  --fg:           #F7F2EB;
  --fg-mid:       rgba(247,242,235,0.70);
  --fg-dim:       rgba(247,242,235,0.40);
  --accent:       #D4A87A;
  --accent-light: #E8C090;
  --accent-deep:  #C4956A;
  --accent-red:   #E74C3C;
  --border:       rgba(212,168,122,0.20);
  --border-strong:rgba(212,168,122,0.50);
  --script:       #C4956A;
  --shadow:       0 8px 32px rgba(0,0,0,0.30);
  --shadow-hover: 0 16px 48px rgba(0,0,0,0.45);
}

/* CLINICAL — white / science */
[data-theme="clinical"] {
  --bg:           #FFFFFF;
  --bg-alt:       #F5F7F8;
  --bg-card:      #F0F2F4;
  --fg:           #0D1117;
  --fg-mid:       #4A5260;
  --fg-dim:       #8A9099;
  --accent:       #2A4A8A;
  --accent-light: #3D6DB5;
  --accent-deep:  #1E3A6A;
  --accent-red:   #C0392B;
  --border:       rgba(42,74,138,0.15);
  --border-strong:rgba(42,74,138,0.40);
  --script:       #2A4A8A;
  --shadow:       0 8px 32px rgba(13,17,23,0.06);
  --shadow-hover: 0 16px 48px rgba(13,17,23,0.12);
}

/* DARK MODE — user toggle (layered on top; section theming always wins) */
html[data-mode="dark"][data-theme="ritual"],
html[data-mode="dark"] [data-theme="ritual"] {
  --bg:      #1E1A16;
  --bg-alt:  #252018;
  --bg-card: #2A2318;
  --fg:      #F0EBE3;
  --fg-mid:  rgba(240,235,227,0.70);
  --fg-dim:  rgba(240,235,227,0.40);
}
html[data-mode="dark"][data-theme="editorial"],
html[data-mode="dark"] [data-theme="editorial"] {
  /* editorial is already dark — no change needed */
}
html[data-mode="dark"][data-theme="clinical"],
html[data-mode="dark"] [data-theme="clinical"] {
  --bg:     #0E1014;
  --bg-alt: #151920;
  --fg:     #E8EDF5;
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  /* dir set dynamically — anti-FOUC via inline script */
}
body {
  font-family: var(--font-body);
  font-size: var(--t-body);
  line-height: 1.7;
  color: var(--fg);
  background: var(--bg);
  overflow-x: hidden;
  transition: background var(--transition), color var(--transition);
}

/* Film grain — luxury texture */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: 0.030;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px;
}

img  { display: block; max-width: 100%; }
a    { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul, ol { list-style: none; }
input, textarea, select { font: inherit; }

/* ── LAYOUT ── */
.container {
  max-width: var(--container-max);
  padding-inline: var(--container-pad); /* LOGICAL */
  margin-inline: auto;                   /* LOGICAL */
}
.section-pad    { padding-block: var(--section-pad); }     /* LOGICAL */
.section-pad-sm { padding-block: clamp(48px, 6vw, 96px); } /* LOGICAL */

/* ── SKIP LINK ── */
.skip-link {
  position: absolute;
  inset-block-start: -100%;             /* LOGICAL */
  inset-inline-start: 16px;             /* LOGICAL */
  padding: 12px 20px;
  background: var(--accent);
  color: #F7F2EB;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 9999;
  border-radius: var(--radius-sm);
  transition: inset-block-start 0.2s;
}
.skip-link:focus { inset-block-start: 16px; } /* LOGICAL */

/* ── TYPOGRAPHY UTILITIES ── */
.t-eyebrow {
  font-family: var(--font-ui);
  font-size: var(--t-label);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}
.t-mega {
  font-family: var(--font-display);
  font-size: var(--t-mega);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 0.92;
}
.t-display {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--t-display);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.0;
}
.t-h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--t-h3);
  line-height: 1.2;
}
.t-body { font-size: var(--t-body); line-height: 1.75; }
.t-label {
  font-family: var(--font-ui);
  font-size: var(--t-label);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
/* Legacy display aliases */
.t-display-xl { font-family: var(--font-display); font-weight: 800; text-transform: uppercase; letter-spacing: 0.02em; line-height: 1.0; font-size: clamp(52px, 8vw, 112px); }
.t-display-lg { font-family: var(--font-display); font-weight: 800; text-transform: uppercase; letter-spacing: 0.02em; line-height: 1.0; font-size: clamp(40px, 5.5vw, 80px); }
.t-display-md { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: 0.02em; line-height: 1.0; font-size: clamp(28px, 3.5vw, 52px); }
.t-display-sm { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: 0.02em; line-height: 1.0; font-size: clamp(20px, 2.5vw, 36px); }
.t-script {
  font-family: var(--font-script);
  font-size: clamp(32px, 4vw, 60px);
  color: var(--script);
  line-height: 1.2;
}
.t-script-red {
  font-family: var(--font-script);
  font-size: clamp(32px, 4vw, 60px);
  color: var(--accent-red);
  line-height: 1.2;
}
[dir="rtl"] .t-script, [dir="rtl"] .t-script-red {
  /* Arabic calligraphic override if needed per language */
  font-style: normal;
}

/* Spacing helpers */
.mb-8  { margin-block-end: 8px; }   /* LOGICAL */
.mb-16 { margin-block-end: 16px; }  /* LOGICAL */
.mb-24 { margin-block-end: 24px; }  /* LOGICAL */
.mb-32 { margin-block-end: 32px; }  /* LOGICAL */
.mb-48 { margin-block-end: 48px; }  /* LOGICAL */
.mt-16 { margin-block-start: 16px; } /* LOGICAL */
.mt-24 { margin-block-start: 24px; } /* LOGICAL */
.mt-40 { margin-block-start: 40px; } /* LOGICAL */

/* ── NAVIGATION ── */
.nav {
  position: fixed;
  inset-block-start: 0;  /* LOGICAL */
  inset-inline: 0;        /* LOGICAL */
  height: var(--nav-h);
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: background var(--transition), box-shadow var(--transition);
}
.nav.transparent  { background: transparent; }
.nav.scrolled     { background: var(--bg); box-shadow: 0 1px 0 var(--border); }
.nav-inner {
  display: flex;
  align-items: center;
  width: 100%;
  padding-inline: clamp(20px, 4vw, 60px); /* LOGICAL */
  gap: 24px;
}
.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 28px; }
.logo-dark  { display: block; }
.logo-light { display: none; }
[data-theme="editorial"] .logo-dark  { display: none; }
[data-theme="editorial"] .logo-light { display: block; }
.nav.transparent .logo-dark  { display: none; }
.nav.transparent .logo-light { display: block; }
.nav.scrolled   .logo-dark  { display: block; }
.nav.scrolled   .logo-light { display: none; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-inline-start: auto; /* LOGICAL */
}
.nav-link {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #F7F2EB;
  opacity: 0.9;
  transition: opacity var(--transition);
}
.nav.scrolled .nav-link { color: var(--fg); }
.nav-link:hover { opacity: 1; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-inline-start: 24px; /* LOGICAL */
}

/* Language switcher */
.lang-btn {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(247,242,235,0.80);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(247,242,235,0.25);
  transition: all var(--transition);
  white-space: nowrap;
}
.nav.scrolled .lang-btn { color: var(--fg-mid); border-color: var(--border); }
.lang-btn:hover { background: var(--accent); color: #fff; border-color: var(--accent); }

/* Theme toggle */
.nav-theme-btn {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(247,242,235,0.25);
  color: rgba(247,242,235,0.80);
  transition: all var(--transition);
}
.nav.scrolled .nav-theme-btn { border-color: var(--border); color: var(--fg-mid); }
.nav-theme-btn:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
.icon-sun { display: none; }
html[data-mode="dark"] .icon-sun  { display: block; }
html[data-mode="dark"] .icon-moon { display: none; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column; justify-content: center; align-items: center;
  width: 36px; height: 36px; gap: 5px;
}
.nav-hamburger span {
  display: block; width: 22px; height: 1.5px;
  background: #F7F2EB;
  transition: all var(--transition);
}
.nav.scrolled .nav-hamburger span { background: var(--fg); }

/* Mobile overlay */
.nav-overlay {
  position: fixed;
  inset: 0;                               /* LOGICAL */
  background: var(--bg);
  z-index: 999;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 32px;
  opacity: 0; pointer-events: none;
  transition: opacity var(--transition);
}
.nav-overlay.open { opacity: 1; pointer-events: all; }
.nav-overlay .nav-link { font-size: 14px; color: var(--fg); }
.nav-overlay .lang-btn { color: var(--fg-mid); border-color: var(--border); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-sm { padding: 10px 22px; font-size: 10px; }
.btn-gold {
  background: var(--accent);
  color: #F7F2EB;
}
.btn-gold:hover { background: var(--accent-deep); transform: translateY(-1px); }
.btn-outline {
  border: 1.5px solid var(--fg);
  color: var(--fg);
}
.btn-outline:hover { background: var(--fg); color: var(--bg); }
.btn-outline-light {
  border: 1.5px solid rgba(247,242,235,0.60);
  color: #F7F2EB;
}
.btn-outline-light:hover { background: rgba(247,242,235,0.12); }
.btn-ghost {
  border: 1.5px solid var(--border-strong);
  color: var(--fg-mid);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

/* ── HERO — V3 (bright ritual) ── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: flex-end;
  overflow: hidden;
  background: var(--bg-alt);         /* cream fallback when photo loads */
}
/* Bright base: warm cream light from above */
.hero-bg {
  position: absolute; inset: 0;      /* LOGICAL */
  overflow: hidden;
}
.hero-bg img {
  position: absolute; inset: 0;      /* LOGICAL */
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 20%;
  opacity: 0.55;                     /* bright — not moody */
  mix-blend-mode: luminosity;
}
.hero-bright-overlay {
  position: absolute; inset: 0;      /* LOGICAL */
  background:
    radial-gradient(ellipse at 30% 0%, rgba(247,242,235,0.85) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 60%, rgba(196,149,106,0.18) 0%, transparent 50%),
    linear-gradient(to bottom, rgba(247,242,235,0.60) 0%, rgba(247,242,235,0.20) 40%, rgba(247,242,235,0.70) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  padding-block: clamp(160px, 22vw, 260px) clamp(80px, 10vw, 120px); /* LOGICAL */
  padding-inline: var(--container-pad); /* LOGICAL */
  max-width: var(--container-max);
  margin-inline: auto;               /* LOGICAL */
  width: 100%;
}
.hero-tagline {
  font-family: var(--font-ui);
  font-size: var(--t-label);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-block-end: clamp(12px, 2vw, 24px); /* LOGICAL */
}
.hero-script-accent {
  font-family: var(--font-script);
  font-size: clamp(28px, 4vw, 64px);
  color: var(--accent-red);          /* V3: red accent per MISFITS direction */
  line-height: 1.1;
  margin-block-end: clamp(4px, 1vw, 12px); /* LOGICAL */
  display: block;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: var(--t-mega);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 0.90;
  color: var(--fg);
  margin-block-end: clamp(16px, 3vw, 32px); /* LOGICAL */
  /* Partial overlap with photo — MISFITS composition */
  position: relative;
}
.hero-sub {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.5vw, 20px);
  color: var(--fg-mid);
  margin-block-end: clamp(24px, 4vw, 48px); /* LOGICAL */
  max-width: 480px;
}
[dir="rtl"] .hero-sub { max-width: 520px; }
.hero-ctas {
  display: flex; flex-wrap: wrap; gap: 12px;
  align-items: center;
}
.hero-scroll {
  position: absolute;
  inset-block-end: 32px;             /* LOGICAL */
  inset-inline-start: 50%;           /* LOGICAL */
  transform: translateX(-50%);
  z-index: 2;
  width: 36px; height: 36px;
  border: 1.5px solid rgba(26,23,20,0.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--fg);
  animation: scrollBounce 2.4s var(--ease-brand) infinite;
}
@keyframes scrollBounce {
  0%,100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  50%      { transform: translateX(-50%) translateY(8px); opacity: 0.5; }
}
[dir="rtl"] .hero-scroll { transform: translateX(50%); }

/* ── MARQUEE STRIP ── */
.marquee-strip {
  overflow: hidden;
  border-block: 1px solid var(--border); /* LOGICAL */
  background: var(--bg-alt);
  padding-block: 14px;                   /* LOGICAL */
}
.marquee-track {
  display: flex; gap: 0;
  animation: marqueeScroll 28s linear infinite;
  width: max-content;
}
[dir="rtl"] .marquee-track { animation-direction: reverse; }
@keyframes marqueeScroll { to { transform: translateX(-50%); } }
.marquee-item {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-mid);
  white-space: nowrap;
  padding-inline: 24px; /* LOGICAL */
  display: flex; align-items: center; gap: 24px;
}
.marquee-dot {
  display: inline-block;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--accent);
}

/* ── TRUST BAR ── */
.trust-bar { padding-block: clamp(40px, 6vw, 80px); } /* LOGICAL */
.trust-bar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
}
.trust-item {
  display: flex; align-items: flex-start; gap: 16px;
}
.trust-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
}
.trust-icon svg { width: 18px; height: 18px; stroke: #fff; fill: none; stroke-width: 1.5; }
.trust-label {
  font-family: var(--font-display);
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--fg);
}
.trust-sub {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--fg-dim);
  margin-block-start: 2px; /* LOGICAL */
}

/* ── BRAND PHILOSOPHY ── */
.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}
.philosophy-left {}
.philosophy-value {
  padding-block: 24px; /* LOGICAL */
  border-block-end: 1px solid var(--border); /* LOGICAL */
}
.philosophy-value:first-child { border-block-start: 1px solid var(--border); } /* LOGICAL */
.philosophy-value h4 {
  font-family: var(--font-display);
  font-size: clamp(14px, 1.5vw, 18px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--fg);
  margin-block-end: 8px; /* LOGICAL */
}
.philosophy-value p { font-size: 15px; color: var(--fg-mid); line-height: 1.7; }

/* ── CATEGORY GRID ── */
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 320px);
  gap: 2px;
}
.category-card {
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; justify-content: flex-end;
  background: var(--bg-alt);
  cursor: pointer;
}
.category-card:first-child { grid-row: 1 / 3; }  /* tall left */
.category-card-bg {
  position: absolute; inset: 0; /* LOGICAL */
  transition: transform 0.8s var(--ease-brand);
}
.category-card-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.category-card:hover .category-card-bg { transform: scale(1.04); }
.category-card-overlay {
  position: absolute; inset: 0; /* LOGICAL */
  background: linear-gradient(to top, rgba(26,23,20,0.60) 0%, transparent 50%);
}
.category-card-info {
  position: relative; z-index: 2;
  padding: 24px;
}
.category-card-name {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 900;
  text-transform: uppercase;
  color: #F7F2EB;
  letter-spacing: -0.01em;
  line-height: 1.0;
}
.category-card-count {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(247,242,235,0.70);
  margin-block-start: 6px; /* LOGICAL */
}
.category-card-arrow {
  position: absolute;
  inset-block-end: 24px;            /* LOGICAL */
  inset-inline-end: 24px;           /* LOGICAL */
  width: 40px; height: 40px;
  background: rgba(0,0,0,0.40);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #F7F2EB;
  font-size: 18px;
  z-index: 2;
  transition: background var(--transition);
}
[dir="rtl"] .category-card-arrow { transform: scaleX(-1); }
.category-card:hover .category-card-arrow { background: var(--accent); }

/* ── COLLECTION SECTION ── */
.collection-header {
  display: flex; align-items: flex-end;
  justify-content: space-between;
  margin-block-end: clamp(32px, 5vw, 64px); /* LOGICAL */
  flex-wrap: wrap; gap: 16px;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: clamp(16px, 2.5vw, 32px);
}
.product-card {
  position: relative;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: box-shadow var(--transition), transform var(--transition);
}
.product-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}
.product-card-img {
  aspect-ratio: 1;
  background: var(--bg-card);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  position: relative;
}
.product-card-img img {
  width: 100%; height: 100%; object-fit: contain;
  padding: 16px;
  transition: transform 0.6s var(--ease-brand);
}
.product-card:hover .product-card-img img { transform: scale(1.06); }
.product-card-ingredient-overlay {
  position: absolute; inset: 0; /* LOGICAL */
  background: rgba(26,23,20,0.88);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 6px; padding: 16px;
  opacity: 0;
  transition: opacity 0.35s var(--ease-brand);
}
.product-card:hover .product-card-ingredient-overlay { opacity: 1; }
.product-card-ingredient-overlay span {
  font-family: var(--font-ui);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent-light);
}
.product-card-body {
  padding: 16px 20px 20px; /* all sides OK — no directional */
}
.product-card-cat {
  font-family: var(--font-ui);
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent);
  margin-block-end: 6px; /* LOGICAL */
}
.product-card-name {
  font-family: var(--font-display);
  font-size: clamp(13px, 1.2vw, 16px);
  font-weight: 700; text-transform: uppercase;
  color: var(--fg); line-height: 1.3;
}
.product-card-concern {
  font-size: 12px; color: var(--fg-dim);
  margin-block-start: 4px; /* LOGICAL */
}
.product-badge {
  position: absolute;
  inset-block-start: 12px;  /* LOGICAL */
  inset-inline-start: 12px; /* LOGICAL */
  font-family: var(--font-ui);
  font-size: 8px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  background: var(--accent);
  color: #F7F2EB;
  padding: 4px 8px; border-radius: var(--radius-pill);
}
.product-badge.bestseller { background: var(--fg); }

/* ── ROUTINE FINDER PROMO ── */
.routine-promo {
  border-radius: var(--radius-lg);
  padding: clamp(48px, 7vw, 96px) clamp(32px, 5vw, 80px); /* OK — symmetric */
  background: var(--bg-alt);
  border: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
}
.routine-promo-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-ui);
  font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent);
  margin-block-end: 16px; /* LOGICAL */
}
.routine-promo-badge::before {
  content: '●';
  color: var(--accent);
  font-size: 6px;
}

/* ── INGREDIENTS EDITORIAL ── */
.ingredients-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.ingredient-block {
  padding: clamp(32px, 5vw, 64px);
  background: var(--bg-alt);
  border-block-end: 1px solid var(--border); /* LOGICAL */
}
.ingredient-block:nth-child(odd) { border-inline-end: 1px solid var(--border); } /* LOGICAL */
.ingredient-name {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.5vw, 48px);
  font-weight: 900; text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--fg);
  border-block-start: 3px solid var(--accent); /* LOGICAL */
  padding-block-start: 16px; /* LOGICAL */
  margin-block-end: 12px; /* LOGICAL */
}
.ingredient-desc { font-size: 14px; color: var(--fg-mid); line-height: 1.7; }
.ingredient-tag {
  display: inline-block;
  margin-block-start: 12px; /* LOGICAL */
  font-family: var(--font-ui);
  font-size: 9px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  background: var(--accent);
  color: #F7F2EB; padding: 4px 10px; border-radius: var(--radius-pill);
}

/* ── TESTIMONIALS ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(16px, 3vw, 32px);
}
.testimonial-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 32px;
  border: 1px solid var(--border);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  inset-block-start: 16px; /* LOGICAL */
  inset-inline-start: 28px; /* LOGICAL */
  font-size: 72px;
  font-family: Georgia, serif;
  color: var(--accent);
  opacity: 0.18;
  line-height: 1;
}
.testimonial-stars { display: flex; gap: 4px; margin-block-end: 16px; } /* LOGICAL */
.testimonial-stars svg { width: 14px; height: 14px; fill: var(--accent); }
.testimonial-text { font-size: 15px; line-height: 1.75; color: var(--fg-mid); font-style: italic; }
.testimonial-author {
  margin-block-start: 20px; /* LOGICAL */
  font-family: var(--font-ui);
  font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--fg);
}

/* ── EDITORIAL CAMPAIGN BLOCK (dark — max 1 per page) ── */
.editorial-block {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  min-height: 480px;
}
.editorial-cell {
  padding: clamp(32px, 5vw, 64px) clamp(24px, 4vw, 48px);
  display: flex; flex-direction: column; justify-content: flex-end;
  position: relative; overflow: hidden;
  border-inline-end: 1px solid var(--border); /* LOGICAL */
}
.editorial-cell:last-child { border-inline-end: none; } /* LOGICAL */
.editorial-cell-label {
  font-family: var(--font-ui);
  font-size: 10px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--fg-dim);
  margin-block-end: 12px; /* LOGICAL */
}
.editorial-cell-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 72px);
  font-weight: 900; text-transform: uppercase; line-height: 0.95;
  color: var(--fg);
}
.editorial-cell-cta {
  margin-block-start: 24px; /* LOGICAL */
  font-family: var(--font-ui);
  font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent);
  display: flex; align-items: center; gap: 8px;
}
[dir="rtl"] .editorial-cell-cta { flex-direction: row-reverse; }

/* ── SHOP FILTERS ── */
/* Desktop sidebar */
.shop-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
  align-items: start;
}
.filter-sidebar {
  position: sticky;
  inset-block-start: calc(var(--nav-h) + 24px); /* LOGICAL */
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.filter-header {
  padding: 20px 24px;
  display: flex; align-items: center; justify-content: space-between;
  border-block-end: 1px solid var(--border); /* LOGICAL */
}
.filter-title {
  font-family: var(--font-ui);
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--fg);
}
.filter-clear {
  font-family: var(--font-ui);
  font-size: 10px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--accent);
  opacity: 0;
  transition: opacity var(--transition);
}
.filter-clear.visible { opacity: 1; }
.filter-group {
  padding: 20px 24px;
  border-block-end: 1px solid var(--border); /* LOGICAL */
}
.filter-group:last-child { border-block-end: none; } /* LOGICAL */
.filter-group-title {
  font-family: var(--font-ui);
  font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--fg-mid);
  margin-block-end: 12px; /* LOGICAL */
}
.filter-options { display: flex; flex-direction: column; gap: 8px; }
.filter-option {
  display: flex; align-items: center; gap: 10px;
  cursor: pointer;
  font-family: var(--font-ui);
  font-size: 12px; font-weight: 500;
  color: var(--fg-mid);
  transition: color var(--transition);
  user-select: none;
}
.filter-option:hover { color: var(--fg); }
.filter-option input[type="checkbox"] { display: none; }
.filter-checkbox {
  width: 16px; height: 16px;
  border: 1.5px solid var(--border-strong);
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.filter-option.checked .filter-checkbox {
  background: var(--accent); border-color: var(--accent);
}
.filter-option.checked .filter-checkbox::after {
  content: '';
  width: 8px; height: 5px;
  border-inline-start: 2px solid #fff;   /* LOGICAL */
  border-block-end: 2px solid #fff;      /* LOGICAL */
  transform: rotate(-45deg) translateY(-1px);
}
.filter-option.checked { color: var(--fg); }

/* Shop top bar */
.shop-topbar {
  display: flex; align-items: center;
  justify-content: space-between;
  margin-block-end: 24px; /* LOGICAL */
  flex-wrap: wrap; gap: 12px;
}
.shop-count {
  font-family: var(--font-ui);
  font-size: 11px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--fg-mid);
}
.shop-sort select {
  font-family: var(--font-ui);
  font-size: 11px; font-weight: 600; letter-spacing: 0.06em;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  background: var(--bg-card);
  color: var(--fg);
  appearance: none;
  cursor: pointer;
}

/* Mobile filter button */
.filter-mobile-btn {
  display: none;
  width: 100%;
  padding: 14px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-family: var(--font-ui);
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--fg);
  align-items: center; justify-content: center; gap: 8px;
  margin-block-end: 16px; /* LOGICAL */
}
/* Bottom sheet */
.filter-bottomsheet {
  position: fixed;
  inset-block-end: 0;              /* LOGICAL */
  inset-inline: 0;                 /* LOGICAL */
  background: var(--bg);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  z-index: 998;
  padding: 24px 24px 40px;
  max-height: 85svh;
  overflow-y: auto;
  transform: translateY(100%);
  transition: transform 0.4s var(--ease-brand);
  box-shadow: 0 -8px 40px rgba(0,0,0,0.15);
}
.filter-bottomsheet.open { transform: translateY(0); }
.filter-bottomsheet-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-block-end: 24px; /* LOGICAL */
}
.filter-bottomsheet-scrim {
  position: fixed; inset: 0; /* LOGICAL */
  background: rgba(0,0,0,0.5);
  z-index: 997;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.filter-bottomsheet-scrim.open { opacity: 1; pointer-events: all; }

/* Empty state */
.shop-empty {
  text-align: center;
  padding-block: clamp(48px, 8vw, 96px); /* LOGICAL */
  color: var(--fg-dim);
}
.shop-empty svg { width: 48px; height: 48px; margin-inline: auto; margin-block-end: 16px; } /* LOGICAL */

/* ── FOOTER ── */
.footer {
  background: var(--bg-alt);
  border-block-start: 1px solid var(--border); /* LOGICAL */
  padding-block: clamp(60px, 8vw, 100px) clamp(24px, 4vw, 40px); /* LOGICAL */
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: clamp(24px, 4vw, 60px);
  margin-block-end: clamp(48px, 6vw, 80px); /* LOGICAL */
}
.footer-brand-desc {
  font-size: 14px; color: var(--fg-dim); line-height: 1.75;
  margin-block: 16px; /* LOGICAL */
}
.footer-col-title {
  font-family: var(--font-ui);
  font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--fg);
  margin-block-end: 20px; /* LOGICAL */
}
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  font-size: 14px; color: var(--fg-mid);
  transition: color var(--transition);
  min-height: 44px;
  display: flex; align-items: center;
}
.footer-links a:hover { color: var(--accent); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-block-start: 24px; /* LOGICAL */
  border-block-start: 1px solid var(--border); /* LOGICAL */
  flex-wrap: wrap; gap: 12px;
}
.footer-copy {
  font-family: var(--font-ui);
  font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--fg-dim);
}

/* ── REVEAL ANIMATIONS (JS-driven) ── */
.reveal, .reveal-left, .reveal-right, .reveal-up, .reveal-scale {
  opacity: 0;
  transition: opacity 0.7s var(--ease-brand), transform 0.7s var(--ease-brand);
}
.reveal      { transform: translateY(28px); }
.reveal-left { transform: translateX(-28px); }
.reveal-right{ transform: translateX(28px); }
.reveal-up   { transform: translateY(16px); }
.reveal-scale{ transform: scale(0.96); }
.reveal.revealed, .reveal-left.revealed, .reveal-right.revealed,
.reveal-up.revealed, .reveal-scale.revealed {
  opacity: 1; transform: none;
}
.reveal-delay-1 { transition-delay: 0.10s; }
.reveal-delay-2 { transition-delay: 0.20s; }
.reveal-delay-3 { transition-delay: 0.30s; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left, .reveal-right, .reveal-up, .reveal-scale,
  .marquee-track, .hero-scroll, * {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .shop-layout { grid-template-columns: 1fr; }
  .filter-sidebar { display: none; }
  .filter-mobile-btn { display: flex; }
  .category-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .category-card:first-child { grid-row: auto; }
  .editorial-block { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .lang-btn { display: none; } /* show in mobile overlay instead */
  .philosophy-grid { grid-template-columns: 1fr; }
  .ingredients-grid { grid-template-columns: 1fr; }
  .ingredient-block:nth-child(odd) { border-inline-end: none; } /* LOGICAL */
  .routine-promo { grid-template-columns: 1fr; text-align: center; }
  [dir="rtl"] .routine-promo { text-align: center; }
  .footer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .category-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  [dir="rtl"] .hero-ctas { align-items: flex-end; }
}

/* ════════════════════════════════════════════════════
   SHOP V2 — supplemental classes (shop.html D4 system)
════════════════════════════════════════════════════ */

/* Shop page header band */
.shop-header {
  padding-block: clamp(100px,12vw,160px) clamp(32px,4vw,48px);
  padding-inline: var(--container-pad);
  border-block-end: 1px solid var(--border);
}
.shop-header .t-display { max-width: 640px; }

/* Product area wrapper */
.shop-product-area { min-width: 0; }

/* Toolbar */
.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-block-end: 32px;
  padding-block-end: 16px;
  border-block-end: 1px solid var(--border);
}
.shop-toolbar-left  { display: flex; align-items: center; gap: 12px; }
.shop-toolbar-right { display: flex; align-items: center; gap: 8px; }

.shop-result-count {
  font-family: var(--font-ui);
  font-size: 11px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--fg-mid);
}
.shop-sort-label {
  font-family: var(--font-ui);
  font-size: 11px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--fg-dim);
}
.shop-sort-select {
  font-family: var(--font-ui);
  font-size: 11px; font-weight: 600; letter-spacing: 0.06em;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  background: var(--bg-card);
  color: var(--fg);
  cursor: pointer;
  min-height: 44px;
}
.shop-sort-select:focus { outline: 2px solid var(--accent); }

/* Filter sidebar V2 */
.filter-sidebar-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px;
  border-block-end: 1px solid var(--border);
}
.filter-sidebar-title {
  font-family: var(--font-ui);
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--fg);
}
.filter-clear-all {
  font-family: var(--font-ui);
  font-size: 10px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--accent);
  transition: opacity var(--transition);
}

/* Active chips */
.filter-active-chips {
  display: flex; flex-wrap: wrap; gap: 6px;
  padding: 12px 24px;
  border-block-end: 1px solid var(--border);
  min-height: 0;
}
.filter-active-chips:empty { display: none; }
.filter-chip {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 4px 10px;
  background: var(--accent-warm-light, rgba(192,57,43,0.10));
  border: 1px solid var(--accent);
  border-radius: var(--radius-pill);
  font-family: var(--font-ui);
  font-size: 10px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--accent);
  cursor: pointer;
  transition: background var(--transition);
}
.filter-chip:hover { background: rgba(192,57,43,0.20); }

/* Filter group accordion */
.filter-group { border-block-end: 1px solid var(--border); }
.filter-group:last-child { border-block-end: none; }
.filter-group-toggle {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 24px;
  font-family: var(--font-ui);
  font-size: 10px; font-weight: 700; letter-spacing: 0.10em; text-transform: uppercase;
  color: var(--fg);
  cursor: pointer;
  transition: background var(--transition);
}
.filter-group-toggle:hover { background: var(--bg-alt); }
.filter-chevron {
  transition: transform 0.25s var(--ease-brand);
  flex-shrink: 0;
}
.filter-group-toggle[aria-expanded="false"] .filter-chevron { transform: rotate(-90deg); }
.filter-group-list { padding: 4px 24px 16px; display: flex; flex-direction: column; gap: 4px; }
.filter-group-list.collapsed { display: none; }

/* Checkbox items V2 */
.filter-checkbox-item {
  display: flex; align-items: center; gap: 10px;
  padding: 6px 0;
  cursor: pointer;
  user-select: none;
  min-height: 44px;
}
.filter-checkbox-item.zero { opacity: 0.4; cursor: not-allowed; }
.filter-checkbox {
  width: 16px; height: 16px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border-strong);
  cursor: pointer;
  transition: all var(--transition);
  accent-color: var(--accent);
}
.filter-checkbox:checked { accent-color: var(--accent); }
.filter-checkbox-label {
  flex: 1;
  font-family: var(--font-ui);
  font-size: 12px; font-weight: 500;
  color: var(--fg-mid);
  transition: color var(--transition);
}
.filter-checkbox-item:hover .filter-checkbox-label,
.filter-checkbox-item.checked .filter-checkbox-label { color: var(--fg); }
.filter-checkbox-count {
  font-family: var(--font-ui);
  font-size: 10px; font-weight: 600;
  color: var(--fg-dim);
  margin-inline-start: auto;
}

/* Mobile filter button */
.filter-mobile-count {
  display: none;
  min-width: 18px; height: 18px;
  background: var(--accent);
  border-radius: var(--radius-pill);
  font-family: var(--font-ui);
  font-size: 9px; font-weight: 700;
  color: #fff;
  align-items: center; justify-content: center;
  padding-inline: 4px;
}

/* Filter sheet (bottom-sheet, mobile) */
.filter-sheet-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 997;
  opacity: 0;
  transition: opacity 0.3s;
}
.filter-sheet-overlay:not([hidden]) { display: block; }
.filter-sheet-overlay.open { opacity: 1; }
.filter-sheet {
  display: none;
  position: fixed;
  inset-block-end: 0;
  inset-inline: 0;
  background: var(--bg);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  z-index: 998;
  max-height: 85svh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transform: translateY(100%);
  transition: transform 0.4s var(--ease-brand);
  box-shadow: 0 -8px 40px rgba(0,0,0,0.2);
}
.filter-sheet:not([hidden]) { display: flex; }
.filter-sheet.open { transform: translateY(0); }
.filter-sheet-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px;
  border-block-end: 1px solid var(--border);
  flex-shrink: 0;
}
.filter-sheet-title {
  font-family: var(--font-ui);
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--fg);
}
.filter-sheet-close { min-height: 44px; min-width: 44px; display: flex; align-items: center; justify-content: center; }
.filter-sheet-body { overflow-y: auto; flex: 1; padding-block-end: 16px; }
.filter-sheet-footer {
  display: flex; gap: 12px; padding: 16px 24px;
  border-block-start: 1px solid var(--border);
  flex-shrink: 0;
}
.filter-sheet-footer .btn { flex: 1; justify-content: center; }

/* Product badges (shop cards) */
.product-badges { display: flex; gap: 6px; position: absolute; inset-block-start: 12px; inset-inline-start: 12px; }
.product-badge {
  font-family: var(--font-ui);
  font-size: 9px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 3px 8px;
  border-radius: var(--radius-pill);
}
.badge-bestseller { background: var(--accent); color: #fff; }
.badge-new        { background: var(--fg);    color: var(--bg); }

/* Product card skin type tags */
.product-card-skin-tags { display: flex; flex-wrap: wrap; gap: 4px; margin-block: 6px; }
.product-skin-tag {
  font-family: var(--font-ui);
  font-size: 9px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 2px 7px;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  color: var(--fg-dim);
}

/* Shop mobile responsive */
@media (max-width: 1024px) {
  .filter-mobile-btn { display: flex; }
  .shop-header { padding-block-start: 120px; }
}
@media (max-width: 768px) {
  .shop-toolbar { flex-direction: column; align-items: flex-start; }
  .shop-toolbar-left { width: 100%; }
  .filter-mobile-btn { width: 100%; }
}

/* Product card image wrap needs relative for badges */
.product-card-image-wrap { position: relative; }
