/* =========================================================================
   VERA-X NUTRITION — Modern, Renkli, Kampanya Odaklı E-Ticaret Tasarımı
   drsupplement.com.tr referans alınmıştır
   ========================================================================= */

/* ============================== RESET ============================== */
*,*::before,*::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { margin: 0; padding: 0; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
ul, ol { margin: 0; padding: 0; list-style: none; }
input, select, textarea { font: inherit; color: inherit; }
sub, sup { font-size: 60%; vertical-align: super; line-height: 0; }
sub { vertical-align: sub; }

/* ============================== TOKENS ============================== */
:root {
  /* Renk paleti — drsupplement esinli, sarı/kırmızı/siyah enerjik */
  --bg: #ffffff;
  --bg-soft: #fef9f3;
  --bg-cream: #faf6ef;
  --surface: #ffffff;

  --ink: #0a0a0a;
  --ink-dim: #2c2c2c;
  --ink-mute: #6a6a6a;
  --ink-soft: #9a9a9a;

  --line: #ececec;
  --line-strong: #d5d5d5;

  /* Marka renkleri — ana vurgular */
  --brand: #f5b800;          /* Vera-X sarı — neredeyse altın */
  --brand-deep: #e3a200;     /* hover sarı */
  --brand-soft: #fff6d8;     /* açık sarı bg */
  --brand-glow: #ffe27a;

  --accent: #e30613;         /* canlı kırmızı — kampanya, indirim */
  --accent-deep: #b50410;
  --accent-soft: #fff0f1;

  --black: #0a0a0a;
  --black-deep: #000000;

  /* Renk sistemleri */
  --green: #16a34a;
  --green-soft: #e8f5ec;
  --orange: #ff6a00;
  --info: #2563eb;

  /* Tipografi */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --font-display: 'Fraunces', 'Inter', serif;
  --font-mono: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;

  /* Radyus / gölge */
  --radius: 8px;
  --radius-lg: 14px;
  --radius-xl: 24px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(0,0,0,.06), 0 1px 3px rgba(0,0,0,.04);
  --shadow: 0 4px 12px rgba(0,0,0,.08), 0 2px 4px rgba(0,0,0,.04);
  --shadow-lg: 0 18px 40px rgba(0,0,0,.10), 0 6px 12px rgba(0,0,0,.06);
  --shadow-brand: 0 12px 30px rgba(227,6,19,.22);

  --ease: cubic-bezier(.4,0,.2,1);

  /* Layout */
  --container: 1320px;
  --container-px: 24px;
  --header-h: 84px;
}

/* ============================== BASE ============================== */
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--ink);
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 { margin: 0; font-weight: 700; letter-spacing: -0.01em; color: var(--ink); line-height: 1.15; }
h1 { font-size: clamp(40px, 6vw, 76px); letter-spacing: -0.025em; }
h2 { font-size: clamp(28px, 4vw, 48px); letter-spacing: -0.02em; }
h3 { font-size: clamp(20px, 2.5vw, 28px); }
h4 { font-size: 17px; }
p { margin: 0 0 14px; color: var(--ink-dim); }

.italic { font-family: var(--font-display); font-style: italic; font-weight: 500; color: var(--accent); }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--container-px);
}

.section { padding: 70px 0; position: relative; }
@media (max-width: 760px) { .section { padding: 50px 0; } }

.text-center { text-align: center; }
.mt-16 { margin-top: 16px; }
.mt-32 { margin-top: 32px; }

/* ============================== ANNOUNCE BAR ============================== */
.announce {
  background: var(--black);
  color: #fff;
  overflow: hidden;
  position: relative;
  border-bottom: 2px solid var(--brand);
}
.announce-track {
  display: flex;
  gap: 36px;
  align-items: center;
  white-space: nowrap;
  padding: 11px 0;
  animation: marquee 36s linear infinite;
  width: max-content;
}
.announce-item {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.announce-item strong {
  background: var(--brand);
  color: var(--black);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.06em;
}
.announce .dot { width: 6px; height: 6px; background: var(--brand); border-radius: 50%; flex: none; }

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================== HEADER ============================== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--line);
  transition: box-shadow .2s var(--ease);
}
.header.scrolled { box-shadow: var(--shadow); }

.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--container-px);
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 28px;
}

.logo {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 30px;
  letter-spacing: -0.02em;
  color: var(--black);
  line-height: 1;
}
.logo .x {
  background: var(--brand);
  color: var(--black);
  padding: 0 6px;
  font-style: normal;
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: 20px;
  border-radius: 4px;
  transform: translateY(-2px);
  display: inline-block;
}
.logo .logo-sub {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-left: 6px;
  align-self: center;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 8px;
  flex: 1;
}
.nav-item { position: relative; }
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  font-weight: 600;
  font-size: 13.5px;
  letter-spacing: 0.02em;
  color: var(--ink);
  text-transform: uppercase;
  position: relative;
  border-radius: var(--radius);
  transition: color .2s var(--ease), background .2s var(--ease);
}
.nav-link:hover { color: var(--accent); background: var(--accent-soft); }
.nav-link.has-dropdown::after {
  content: "";
  width: 5px; height: 5px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  margin-left: 4px;
}

.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 320px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 10px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity .2s var(--ease), transform .2s var(--ease);
  z-index: 50;
}
.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown {
  opacity: 1; pointer-events: auto; transform: translateY(0);
}
.dropdown a {
  display: block;
  padding: 12px 14px;
  border-radius: var(--radius);
  transition: background .15s var(--ease);
}
.dropdown a:hover { background: var(--brand-soft); }
.dropdown a strong { display: block; font-size: 14px; font-weight: 700; color: var(--ink); margin-bottom: 2px; }
.dropdown a span { font-size: 12px; color: var(--ink-mute); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}
.icon-btn {
  width: 42px; height: 42px;
  display: inline-flex;
  align-items: center; justify-content: center;
  color: var(--ink);
  border-radius: 50%;
  position: relative;
  transition: background .2s var(--ease), color .2s var(--ease);
}
.icon-btn:hover { background: var(--brand-soft); color: var(--accent); }
.icon-btn .badge {
  position: absolute;
  top: 4px; right: 4px;
  min-width: 18px; height: 18px;
  padding: 0 5px;
  border-radius: 9px;
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  display: inline-flex;
  align-items: center; justify-content: center;
  border: 2px solid #fff;
}
.menu-toggle { display: none; width: 42px; height: 42px; align-items: center; justify-content: center; color: var(--ink); }

@media (max-width: 1020px) {
  .nav { display: none; }
  .menu-toggle { display: inline-flex; }
}

/* Mobile drawer */
.mobile-nav {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 1000;
  opacity: 0; pointer-events: none;
  transition: opacity .25s var(--ease);
}
.mobile-nav.open { opacity: 1; pointer-events: auto; }
.mobile-nav-panel {
  position: absolute;
  right: 0; top: 0;
  height: 100vh;
  width: min(360px, 88vw);
  background: #fff;
  padding: 24px;
  transform: translateX(100%);
  transition: transform .3s var(--ease);
  display: flex; flex-direction: column;
}
.mobile-nav.open .mobile-nav-panel { transform: translateX(0); }
.mobile-nav-head {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 16px; margin-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.mobile-nav a {
  display: block;
  padding: 14px 8px;
  font-weight: 600;
  font-size: 15px;
  border-bottom: 1px solid var(--line);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.mobile-nav a:last-child { border-bottom: 0; }

/* ============================== HERO ============================== */
.hero {
  background:
    radial-gradient(ellipse at top right, var(--brand-soft) 0%, transparent 55%),
    radial-gradient(ellipse at bottom left, var(--accent-soft) 0%, transparent 50%),
    var(--bg-cream);
  padding: 70px 0 90px;
  position: relative;
  overflow: hidden;
}
.hero-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(280px, 50vw, 620px);
  color: var(--brand);
  opacity: 0.07;
  z-index: 0;
  letter-spacing: -0.06em;
  pointer-events: none;
  user-select: none;
  line-height: 1;
}
.hero-grid {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--container-px);
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 50px;
  align-items: center;
}
.hero-content { position: relative; }
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
  text-transform: uppercase;
}
.pulse { width: 8px; height: 8px; background: var(--accent); border-radius: 50%; position: relative; }
.pulse::after {
  content: ""; position: absolute; inset: -3px; border-radius: 50%;
  background: var(--accent); opacity: 0.35;
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0%   { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(2.2); opacity: 0; }
}
.chip {
  background: var(--brand);
  color: var(--black);
  padding: 3px 8px;
  border-radius: var(--radius-pill);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.07em;
}
.hero-title {
  margin-top: 24px;
  font-size: clamp(44px, 7vw, 88px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 0.96;
  color: var(--black);
}
.hero-title .italic {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent) 0%, var(--brand-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
}
.hero-title .stroke {
  -webkit-text-stroke: 2px var(--black);
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-style: normal;
  font-weight: 800;
}
.hero-lead {
  margin-top: 22px;
  font-size: 17px;
  line-height: 1.6;
  max-width: 520px;
  color: var(--ink-dim);
}
.hero-actions {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: #fff;
  padding: 16px 28px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: var(--shadow-brand);
  transition: transform .2s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease);
}
.btn-primary:hover {
  background: var(--accent-deep);
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(227,6,19,.32);
}
.btn-play {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px 10px 10px;
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
  border-radius: var(--radius-pill);
  transition: background .2s var(--ease);
}
.btn-play:hover { background: rgba(0,0,0,.05); }
.play-circle {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--black);
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--black);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: background .2s var(--ease), color .2s var(--ease);
}
.btn-ghost:hover { background: var(--black); color: var(--brand); }

.hero-meta {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 480px;
}
.hero-meta-item {
  padding-left: 16px;
  border-left: 3px solid var(--brand);
}
.hero-meta-num {
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 800;
  color: var(--black);
  letter-spacing: -0.02em;
  line-height: 1;
}
.hero-meta-num sup { color: var(--accent); font-weight: 700; }
.hero-meta-label {
  margin-top: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.hero-visual {
  position: relative;
  height: 540px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-product {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}
.hero-product .product-tub {
  width: auto;
  max-width: 380px;
  height: 100%;
  filter: drop-shadow(0 30px 50px rgba(0,0,0,.25));
}
.hero-floats { position: absolute; inset: 0; pointer-events: none; }
.hero-float-card {
  position: absolute;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  pointer-events: auto;
  min-width: 200px;
  z-index: 3;
}
.hero-float-card .ic {
  width: 40px; height: 40px;
  background: var(--brand);
  color: var(--black);
  border-radius: 50%;
  display: inline-flex;
  align-items: center; justify-content: center;
  flex: none;
}
.hero-float-card strong { display: block; font-size: 13px; font-weight: 700; color: var(--ink); }
.hero-float-card span { display: block; font-size: 11px; color: var(--ink-mute); margin-top: 2px; }
.hero-float-card.top-right    { top: 30px;    right: -16px; animation: floatA 5s ease-in-out infinite; }
.hero-float-card.bottom-left  { bottom: 40px; left: -24px; animation: floatB 5.5s ease-in-out infinite; }
@keyframes floatA {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-10px); }
}
@keyframes floatB {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(12px); }
}

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-visual { height: 420px; order: -1; }
  .hero-meta { max-width: 100%; }
}
@media (max-width: 560px) {
  .hero-meta { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .hero-meta-item { padding-left: 10px; }
  .hero-float-card { min-width: 0; padding: 10px 12px; }
  .hero-float-card.top-right { right: 4px; }
  .hero-float-card.bottom-left { left: 4px; }
}

/* ============================== BRAND STRIP ============================== */
.brand-strip {
  background: var(--black);
  color: var(--brand);
  border-top: 4px solid var(--brand);
  border-bottom: 4px solid var(--brand);
  overflow: hidden;
  padding: 18px 0;
}
.brand-track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
  width: max-content;
  align-items: center;
}
.brand-item {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(22px, 3vw, 36px);
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: center;
  gap: 30px;
}
.brand-item .star { color: var(--accent); font-style: normal; font-size: 0.7em; }

/* ============================== SECTION HEAD ============================== */
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 44px;
}
.section-head-stack { max-width: 720px; }
.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  padding-left: 22px;
  position: relative;
  display: inline-block;
}
.eyebrow::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 14px; height: 2px;
  background: var(--accent);
}
.eyebrow.no-bar { padding-left: 0; }
.eyebrow.no-bar::before { display: none; }
.section-title { margin-top: 14px; font-weight: 800; }
.section-lead { margin-top: 16px; font-size: 16px; color: var(--ink-dim); max-width: 600px; }
.section-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--black);
  padding-bottom: 6px;
  border-bottom: 2px solid var(--brand);
  transition: color .2s var(--ease);
}
.section-link:hover { color: var(--accent); }

@media (max-width: 720px) {
  .section-head { flex-direction: column; align-items: flex-start; }
}

/* ============================== CATEGORY MOSAIC ============================== */
.cat-mosaic {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 220px;
  gap: 14px;
}
.cat-tile {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--bg-cream);
  border: 1px solid var(--line);
  color: var(--ink);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  grid-column: span 2;
}
.cat-tile-1 {
  grid-column: span 3;
  grid-row: span 2;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
  color: #fff;
}
.cat-tile:nth-child(2) { background: linear-gradient(135deg, var(--brand) 0%, var(--brand-deep) 100%); color: var(--black); }
.cat-tile:nth-child(3) { background: var(--black); color: #fff; grid-column: span 3; }
.cat-tile:nth-child(4) { background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%); color: #fff; }
.cat-tile:nth-child(5) { background: var(--bg-soft); border-color: var(--brand); }

.cat-tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.cat-tile-bg {
  position: absolute;
  right: -10px; bottom: -50px;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(120px, 18vw, 240px);
  opacity: 0.10;
  pointer-events: none;
  letter-spacing: -0.04em;
  line-height: 1;
}
.cat-tile-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
.cat-tile-num {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.85;
}
.cat-tile-count {
  font-size: 11px;
  font-weight: 700;
  background: rgba(255,255,255,0.18);
  padding: 3px 9px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.cat-tile:nth-child(2) .cat-tile-count,
.cat-tile:nth-child(5) .cat-tile-count { background: rgba(0,0,0,0.15); }
.cat-tile-body { position: relative; z-index: 1; }
.cat-tile-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.025em;
  margin-bottom: 10px;
}
.cat-tile-1 .cat-tile-title { font-size: clamp(40px, 6vw, 72px); }
.cat-tile-desc { font-size: 13px; opacity: 0.85; margin: 0; max-width: 280px; }
.cat-tile-arrow {
  position: absolute;
  top: 18px; right: 18px;
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: inline-flex;
  align-items: center; justify-content: center;
  transition: transform .25s var(--ease), background .25s var(--ease);
}
.cat-tile:hover .cat-tile-arrow { transform: rotate(-45deg); background: rgba(255,255,255,0.35); }
.cat-tile:nth-child(2) .cat-tile-arrow,
.cat-tile:nth-child(5) .cat-tile-arrow { background: rgba(0,0,0,0.15); }

@media (max-width: 1024px) {
  .cat-mosaic { grid-template-columns: repeat(4, 1fr); }
  .cat-tile, .cat-tile-1 { grid-column: span 2; grid-row: auto; }
  .cat-tile:nth-child(3) { grid-column: span 4; }
}
@media (max-width: 640px) {
  .cat-mosaic { grid-template-columns: 1fr; grid-auto-rows: 180px; }
  .cat-tile, .cat-tile-1, .cat-tile:nth-child(3) { grid-column: 1; }
}

/* ============================== PRODUCTS GRID ============================== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 1100px) { .products-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 820px)  { .products-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px)  { .products-grid { grid-template-columns: 1fr; } }

/* ============================== PRODUCT CARD ============================== */
.pcard {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.pcard:hover {
  transform: translateY(-4px);
  border-color: var(--brand);
  box-shadow: var(--shadow-lg);
}
.pcard-badges {
  position: absolute;
  top: 14px; left: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 3;
}
.pbadge {
  display: inline-block;
  padding: 4px 9px;
  border-radius: var(--radius-pill);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.pbadge.discount { background: var(--accent); color: #fff; }
.pbadge.new      { background: var(--brand); color: var(--black); }
.pbadge.best     { background: var(--black); color: var(--brand); }

.pcard-wishlist {
  position: absolute;
  top: 14px; right: 14px;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  border: 1px solid var(--line);
  color: var(--ink-mute);
  display: inline-flex;
  align-items: center; justify-content: center;
  z-index: 3;
  transition: color .2s var(--ease), background .2s var(--ease), transform .2s var(--ease);
}
.pcard-wishlist:hover { color: var(--accent); background: #fff; transform: scale(1.08); }

.pcard-media {
  display: block;
  aspect-ratio: 1 / 1;
  background:
    radial-gradient(ellipse at center, var(--brand-soft) 0%, transparent 70%),
    var(--bg-cream);
  overflow: hidden;
  position: relative;
}
.pcard-tub-wrap {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  transition: transform .4s var(--ease);
}
.pcard:hover .pcard-tub-wrap { transform: scale(1.06) translateY(-4px); }
.pcard-tub-wrap .product-tub { width: auto; height: 92%; max-width: 100%; filter: drop-shadow(0 14px 22px rgba(0,0,0,.18)); }

.pcard-quickview {
  position: absolute;
  left: 50%; bottom: 12px;
  transform: translate(-50%, 8px);
  background: var(--black);
  color: var(--brand);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  opacity: 0;
  transition: opacity .25s var(--ease), transform .25s var(--ease);
  z-index: 2;
  white-space: nowrap;
}
.pcard:hover .pcard-quickview { opacity: 1; transform: translate(-50%, 0); }

.pcard-body {
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.pcard-cat {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}
.pcard-name {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  margin: 0;
  min-height: 38px;
}
.pcard-name a { color: var(--ink); }
.pcard-name a:hover { color: var(--accent); }
.pcard-flavor {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--ink-mute);
  font-weight: 500;
}
.pcard-flavor .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--brand); }
.pcard-foot {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 8px;
}
.pcard-price-stack { display: flex; flex-direction: column; gap: 2px; }
.pcard-price-old {
  font-size: 12px;
  color: var(--ink-soft);
  text-decoration: line-through;
}
.pcard-price {
  font-size: 20px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.pcard-cart-price {
  font-size: 10.5px;
  font-weight: 700;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 2px 6px;
  border-radius: 4px;
  display: inline-block;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.pcard-add {
  flex: none;
  width: 42px; height: 42px;
  background: var(--brand);
  color: var(--black);
  border-radius: 50%;
  display: inline-flex;
  align-items: center; justify-content: center;
  transition: background .2s var(--ease), color .2s var(--ease), transform .2s var(--ease);
}
.pcard-add:hover { background: var(--accent); color: #fff; transform: rotate(90deg); }

/* ============================== SCIENCE SECTION ============================== */
.science {
  background: var(--black);
  color: #fff;
  border-radius: var(--radius-xl);
  margin: 50px auto;
  max-width: calc(var(--container) - 48px);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.science::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top right, rgba(245,184,0,0.12) 0%, transparent 50%),
    radial-gradient(ellipse at bottom left, rgba(227,6,19,0.10) 0%, transparent 50%);
  pointer-events: none;
}
.science-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.science h2, .science h3, .science h4 { color: #fff; }
.science p { color: rgba(255,255,255,0.72); }
.science .eyebrow { color: var(--brand); }
.science .eyebrow::before { background: var(--brand); }

.science-visual {
  position: relative;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.science-tub {
  width: 70%;
  height: 90%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.science-tub .product-tub { width: auto; height: 100%; max-width: 100%; filter: drop-shadow(0 24px 40px rgba(245,184,0,.18)); }

.science-callouts { position: absolute; inset: 0; }
.science-callout {
  position: absolute;
  background: #fff;
  color: var(--black);
  padding: 14px 18px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 110px;
}
.science-callout .num { font-size: 24px; font-weight: 800; color: var(--accent); letter-spacing: -0.02em; }
.science-callout span:last-child { font-size: 10px; font-weight: 700; letter-spacing: 0.08em; color: var(--ink-mute); }
.callout-1 { top: 8%;   left: -10px; animation: floatA 5s ease-in-out infinite; }
.callout-2 { top: 50%;  right: -10px; animation: floatB 4.5s ease-in-out infinite; }
.callout-3 { bottom: 10%; left: 10%; animation: floatA 6s ease-in-out infinite; }

.science-title { margin-top: 14px; font-size: clamp(32px, 4vw, 52px); }
.science-lead { font-size: 17px; line-height: 1.6; margin: 20px 0; }
.science-list { display: flex; flex-direction: column; gap: 20px; margin-top: 30px; }
.science-item { display: flex; gap: 18px; }
.science-item-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  color: var(--brand);
  font-weight: 600;
  min-width: 28px;
  line-height: 1;
}
.science-item h4 { font-size: 16px; margin-bottom: 6px; }
.science-item p { font-size: 14px; margin: 0; }

@media (max-width: 900px) {
  .science { margin: 30px 16px; padding: 50px 0; }
  .science-grid { grid-template-columns: 1fr; gap: 30px; }
  .science-visual { aspect-ratio: 4/5; max-width: 360px; margin: 0 auto; }
}

/* ============================== EDITORIAL CAMPAIGN ============================== */
.editorial {
  padding: 70px 0;
}
.editorial-inner {
  background:
    radial-gradient(circle at 100% 100%, rgba(245,184,0,0.18) 0%, transparent 50%),
    var(--accent);
  border-radius: var(--radius-xl);
  color: #fff;
  padding: 70px 60px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.editorial-inner::before {
  content: "%";
  position: absolute;
  top: -100px; right: -50px;
  font-family: var(--font-display);
  font-size: 600px;
  color: rgba(255,255,255,0.08);
  line-height: 1;
  font-weight: 700;
  pointer-events: none;
}
.editorial-tag {
  display: inline-block;
  background: rgba(0,0,0,0.25);
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.editorial-title {
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.025em;
  color: #fff;
}
.editorial-title .italic { color: var(--brand); -webkit-text-fill-color: var(--brand); background: none; }
.editorial-title .outline { -webkit-text-stroke: 2px #fff; -webkit-text-fill-color: transparent; color: transparent; }
.editorial-desc { color: rgba(255,255,255,0.88); margin: 20px 0 26px; max-width: 460px; font-size: 16px; }
.editorial-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--brand);
  color: var(--black);
  padding: 15px 28px;
  border-radius: var(--radius-pill);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform .2s var(--ease), background .2s var(--ease);
}
.editorial-btn:hover { background: #fff; transform: translateY(-2px); }
.editorial-code {
  margin-top: 22px;
  font-size: 13px;
  color: rgba(255,255,255,0.85);
}
.code-chip {
  display: inline-block;
  background: rgba(0,0,0,0.3);
  border: 1px dashed rgba(255,255,255,0.4);
  padding: 4px 10px;
  border-radius: 6px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: 0.08em;
}
.editorial-discount {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(140px, 18vw, 220px);
  text-align: center;
  line-height: 1;
  color: var(--brand);
  position: relative;
  z-index: 1;
  letter-spacing: -0.05em;
}
.editorial-discount sup {
  font-size: 18px;
  font-family: var(--font-sans);
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 6px;
}
@media (max-width: 800px) {
  .editorial-inner { grid-template-columns: 1fr; padding: 40px 24px; text-align: center; }
  .editorial-desc { margin-left: auto; margin-right: auto; }
}

/* ============================== TESTIMONIALS ============================== */
.testimonials { background: var(--bg-cream); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testi-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  position: relative;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.testi-quote-mark {
  position: absolute;
  top: 14px; right: 22px;
  font-family: var(--font-display);
  font-size: 90px;
  line-height: 1;
  color: var(--brand);
  opacity: 0.45;
  font-weight: 700;
  pointer-events: none;
}
.testi-stars { color: var(--brand); display: inline-flex; gap: 1px; margin-bottom: 14px; }
.testi-text { font-size: 15.5px; line-height: 1.55; color: var(--ink); margin: 0 0 22px; min-height: 96px; font-weight: 500; }
.testi-author { display: flex; align-items: center; gap: 12px; padding-top: 16px; border-top: 1px solid var(--line); }
.testi-avatar {
  width: 40px; height: 40px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 15px;
}
.testi-name { font-size: 14px; font-weight: 700; }
.testi-meta { font-size: 12px; color: var(--ink-mute); margin-top: 2px; }
.testi-verified {
  margin-left: auto;
  font-size: 11px;
  font-weight: 700;
  color: var(--green);
  background: var(--green-soft);
  padding: 3px 8px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.03em;
}
@media (max-width: 920px) { .testi-grid { grid-template-columns: 1fr; } }

/* ============================== FAQ ============================== */
.faq-wrap {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  overflow: hidden;
  transition: border-color .2s var(--ease);
}
.faq-item.active { border-color: var(--brand); box-shadow: var(--shadow); }
.faq-q {
  width: 100%;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  text-align: left;
  font-weight: 700;
  font-size: 15.5px;
  color: var(--ink);
}
.faq-icon { position: relative; width: 18px; height: 18px; flex: none; }
.faq-icon::before, .faq-icon::after {
  content: "";
  position: absolute;
  background: var(--black);
  transition: transform .3s var(--ease), background .2s var(--ease);
}
.faq-icon::before { top: 50%; left: 0; right: 0; height: 2px; transform: translateY(-50%); }
.faq-icon::after  { left: 50%; top: 0; bottom: 0; width: 2px; transform: translateX(-50%); }
.faq-item.active .faq-icon::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }
.faq-item.active .faq-icon::before { background: var(--accent); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s var(--ease), padding .25s var(--ease);
  padding: 0 22px;
  color: var(--ink-dim);
  font-size: 15px;
  line-height: 1.6;
}
.faq-item.active .faq-a { max-height: 600px; padding: 0 22px 22px; }

/* ============================== NEWSLETTER ============================== */
.newsletter {
  background: linear-gradient(135deg, var(--brand) 0%, #ffce4d 100%);
  padding: 70px 0;
}
.newsletter-inner {
  max-width: 740px;
  margin: 0 auto;
  text-align: center;
}
.newsletter .eyebrow { color: var(--accent); display: inline-block; margin: 0 auto; }
.newsletter .eyebrow::before { background: var(--accent); }
.newsletter-title {
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 800;
  color: var(--black);
  letter-spacing: -0.025em;
  line-height: 1.05;
}
.newsletter-title .italic { color: var(--accent); -webkit-text-fill-color: var(--accent); background: none; }
.newsletter-lead { font-size: 16px; color: var(--ink); margin: 20px auto 28px; max-width: 520px; }
.newsletter-form {
  display: flex;
  gap: 8px;
  max-width: 520px;
  margin: 0 auto;
  background: #fff;
  padding: 6px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow);
}
.newsletter-form input {
  flex: 1;
  padding: 14px 22px;
  border: 0;
  background: transparent;
  font-size: 15px;
  outline: none;
  color: var(--ink);
}
.newsletter-form button {
  padding: 12px 26px;
  background: var(--black);
  color: var(--brand);
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background .2s var(--ease);
}
.newsletter-form button:hover { background: var(--accent); color: #fff; }
.newsletter-perks {
  display: flex;
  justify-content: center;
  gap: 22px;
  margin-top: 22px;
  font-size: 13px;
  color: var(--ink);
  flex-wrap: wrap;
}
.newsletter-perks .check { color: var(--green); font-weight: 800; margin-right: 4px; }

/* ============================== FOOTER ============================== */
.footer {
  background: var(--black);
  color: #fff;
  padding: 70px 0 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .logo { color: #fff; }
.footer-brand .logo .x { background: var(--brand); color: var(--black); }
.footer-brand p {
  color: rgba(255,255,255,0.6);
  margin: 16px 0 22px;
  font-size: 14px;
  max-width: 320px;
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  display: inline-flex;
  align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: color .2s var(--ease), background .2s var(--ease), border-color .2s var(--ease);
}
.footer-social a:hover {
  color: var(--black);
  background: var(--brand);
  border-color: var(--brand);
}
.footer-col h5 {
  color: var(--brand);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-family: var(--font-mono);
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col a {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color .2s var(--ease);
}
.footer-col a:hover { color: var(--brand); }

.footer-bottom {
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  color: rgba(255,255,255,0.5);
  font-size: 13px;
}
.footer-pay { display: flex; gap: 8px; flex-wrap: wrap; }
.pay {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 6px 10px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 4px;
  color: rgba(255,255,255,0.7);
}

@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-top { grid-template-columns: 1fr; }
}

/* ============================== WHATSAPP FLOAT ============================== */
.wa-float {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: inline-flex;
  align-items: center; justify-content: center;
  box-shadow: 0 8px 22px rgba(37,211,102,0.45);
  z-index: 50;
  transition: transform .2s var(--ease);
  animation: waPulse 2s infinite;
}
.wa-float:hover { transform: scale(1.08); }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 8px 22px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0.4); }
  50%      { box-shadow: 0 8px 22px rgba(37,211,102,0.45), 0 0 0 16px rgba(37,211,102,0); }
}

/* ============================== PAGE HERO (other pages) ============================== */
.page-hero {
  background:
    radial-gradient(ellipse at top right, var(--brand-soft) 0%, transparent 50%),
    var(--bg-cream);
  padding: 50px 0 50px;
  border-bottom: 1px solid var(--line);
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-mute);
  margin-bottom: 18px;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.breadcrumb a { color: var(--accent); transition: color .2s var(--ease); }
.breadcrumb a:hover { color: var(--black); }
.breadcrumb .sep { color: var(--ink-soft); }
.page-title {
  font-size: clamp(34px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--black);
}
.page-subtitle {
  margin-top: 16px;
  font-size: 16px;
  color: var(--ink-dim);
  max-width: 720px;
}

/* ============================== CATEGORY PAGE ============================== */
.cat-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 36px;
  padding: 40px 0 80px;
}
.cat-sidebar {
  position: sticky;
  top: calc(var(--header-h) + 24px);
  align-self: start;
}
.cat-side-block {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 18px;
  margin-bottom: 16px;
}
.cat-side-title {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.cat-side-block ul li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 0;
  font-size: 14px;
  color: var(--ink-dim);
  border-bottom: 1px solid var(--line);
  transition: color .2s var(--ease);
}
.cat-side-block ul li:last-child a { border-bottom: 0; }
.cat-side-block ul li a:hover { color: var(--accent); }
.cat-side-block ul li.active a { color: var(--accent); font-weight: 700; }
.cat-side-block ul li a span { font-size: 11px; color: var(--ink-soft); font-family: var(--font-mono); }

.cat-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
  gap: 16px;
  flex-wrap: wrap;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.cat-total { font-size: 14px; color: var(--ink-dim); }
.cat-total strong { color: var(--ink); font-weight: 700; }
.cat-sort {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--ink-mute);
}
.cat-sort select {
  padding: 8px 32px 8px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--ink) 50%), linear-gradient(135deg, var(--ink) 50%, transparent 50%);
  background-position: calc(100% - 18px) 50%, calc(100% - 13px) 50%;
  background-size: 5px 5px;
  background-repeat: no-repeat;
}

@media (max-width: 900px) {
  .cat-layout { grid-template-columns: 1fr; }
  .cat-sidebar { position: static; }
}

/* ============================== PRODUCT DETAIL ============================== */
.pd-layout {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 50px;
  padding: 30px 0 60px;
}
@media (max-width: 900px) {
  .pd-layout { grid-template-columns: 1fr; }
}

.pd-gallery { position: sticky; top: calc(var(--header-h) + 24px); align-self: start; }
.pd-main-img {
  background:
    radial-gradient(ellipse at center, var(--brand-soft) 0%, transparent 70%),
    var(--bg-cream);
  border-radius: var(--radius-lg);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px;
  border: 1px solid var(--line);
}
.pd-main-img .product-tub { width: auto; height: 100%; max-width: 100%; filter: drop-shadow(0 24px 40px rgba(0,0,0,.2)); }
.pd-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 14px;
}
.pd-thumb {
  background: var(--bg-cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  aspect-ratio: 1;
  padding: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .2s var(--ease);
}
.pd-thumb.active { border-color: var(--accent); }
.pd-thumb .product-tub { width: auto; height: 90%; max-width: 100%; }

.pd-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}
.pd-title {
  margin-top: 14px;
  font-size: clamp(26px, 3.4vw, 38px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--black);
}
.pd-meta-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 18px 0 24px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--ink-mute);
}
.pd-rating { display: inline-flex; align-items: center; gap: 8px; }
.pd-rating .stars { color: var(--brand); display: inline-flex; gap: 1px; }
.pd-rating strong { color: var(--ink); font-weight: 700; }
.pd-code { font-family: var(--font-mono); font-size: 12px; }
.pd-stock { display: inline-flex; align-items: center; gap: 8px; color: var(--green); font-weight: 700; }
.pd-stock .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px var(--green-soft); }

.pd-price-block {
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
}
.pd-price { font-size: clamp(32px, 4vw, 48px); font-weight: 800; color: var(--accent); letter-spacing: -0.02em; line-height: 1; }
.pd-price-old { font-size: 18px; color: var(--ink-soft); text-decoration: line-through; }
.pd-price-disc {
  background: var(--accent);
  color: #fff;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
}
.pd-cart-price {
  margin-top: 12px;
  background: var(--brand-soft);
  border: 1px dashed var(--brand);
  padding: 10px 14px;
  border-radius: var(--radius);
  font-size: 13px;
  color: var(--ink-dim);
  font-weight: 600;
}
.pd-cart-price strong { color: var(--accent); font-weight: 800; }

.pd-opt-group { margin-top: 26px; }
.pd-opt-label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.pd-opt-label strong { color: var(--ink); font-family: var(--font-sans); }
.pd-flavors { display: flex; flex-wrap: wrap; gap: 8px; }
.pd-flavor {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-pill);
  font-size: 12.5px;
  font-weight: 600;
  background: #fff;
  color: var(--ink-dim);
  transition: border-color .2s var(--ease), color .2s var(--ease), background .2s var(--ease);
}
.pd-flavor .dot { width: 10px; height: 10px; border-radius: 50%; }
.pd-flavor:hover { border-color: var(--accent); color: var(--ink); }
.pd-flavor.active { border-color: var(--accent); background: var(--accent-soft); color: var(--accent); font-weight: 700; }

.pd-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
  flex-wrap: wrap;
}
.qty {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-pill);
  overflow: hidden;
  background: #fff;
}
.qty button {
  width: 44px; height: 48px;
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
}
.qty button:hover { color: var(--accent); }
.qty input {
  width: 50px;
  height: 48px;
  border: 0;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  background: transparent;
  outline: none;
  -moz-appearance: textfield;
}
.qty input::-webkit-outer-spin-button,
.qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.pd-add {
  flex: 1;
  min-width: 200px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--accent);
  color: #fff;
  padding: 16px 26px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: var(--shadow-brand);
  transition: background .2s var(--ease), transform .2s var(--ease);
}
.pd-add:hover { background: var(--accent-deep); transform: translateY(-2px); }
.pd-fav {
  width: 48px; height: 48px;
  border: 1.5px solid var(--line);
  border-radius: 50%;
  display: inline-flex;
  align-items: center; justify-content: center;
  color: var(--ink-mute);
  background: #fff;
  transition: color .2s var(--ease), border-color .2s var(--ease);
}
.pd-fav:hover { color: var(--accent); border-color: var(--accent); }

.pd-perks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 28px;
  padding: 20px;
  background: var(--bg-cream);
  border-radius: var(--radius-lg);
}
.pd-perk { display: flex; align-items: center; gap: 12px; }
.pd-perk-ic {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--brand);
  color: var(--black);
  display: inline-flex;
  align-items: center; justify-content: center;
  flex: none;
}
.pd-perk strong { display: block; font-size: 13px; font-weight: 700; }
.pd-perk span { display: block; font-size: 11.5px; color: var(--ink-mute); margin-top: 2px; }

/* Product tabs */
.pd-tabs { padding: 30px 0 60px; }
.pd-tab-nav {
  display: flex;
  gap: 4px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 30px;
  overflow-x: auto;
  scrollbar-width: none;
}
.pd-tab-nav::-webkit-scrollbar { display: none; }
.pd-tab-trigger {
  padding: 14px 22px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-mute);
  position: relative;
  white-space: nowrap;
  transition: color .2s var(--ease);
}
.pd-tab-trigger::after {
  content: "";
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s var(--ease);
}
.pd-tab-trigger.active { color: var(--accent); }
.pd-tab-trigger.active::after { transform: scaleX(1); }
.pd-tab-panel { display: none; }
.pd-tab-panel.active { display: block; animation: fadeIn .3s var(--ease); }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.pd-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.pd-content h3 { font-size: 22px; margin-bottom: 12px; color: var(--ink); }
.pd-content p { color: var(--ink-dim); margin-bottom: 14px; }
.pd-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pd-features li {
  padding-left: 28px;
  position: relative;
  color: var(--ink-dim);
  font-size: 14px;
  line-height: 1.55;
}
.pd-features li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 0;
  width: 20px; height: 20px;
  background: var(--brand);
  color: var(--black);
  border-radius: 50%;
  display: inline-flex;
  align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 11px;
}
@media (max-width: 800px) { .pd-content { grid-template-columns: 1fr; } }

.nutri-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
}
.nutri-table th, .nutri-table td { padding: 13px 16px; text-align: left; border-bottom: 1px solid var(--line); }
.nutri-table th { background: var(--black); color: var(--brand); font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; font-size: 11px; }
.nutri-table tr:last-child td { border-bottom: 0; }
.nutri-table tr:nth-child(even) td { background: var(--bg-cream); }

.installment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
}
.installment-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 16px;
  background: #fff;
  transition: border-color .2s var(--ease), transform .2s var(--ease);
}
.installment-card:hover { border-color: var(--brand); transform: translateY(-2px); }
.installment-bank { font-weight: 800; font-size: 13px; margin-bottom: 6px; color: var(--ink); }
.installment-info { display: flex; justify-content: space-between; align-items: baseline; font-size: 12px; color: var(--ink-mute); }
.installment-amount { font-weight: 700; color: var(--accent); }

/* ============================== CART ============================== */
.cart-layout {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 30px;
  padding: 30px 0 80px;
}
@media (max-width: 900px) { .cart-layout { grid-template-columns: 1fr; } }
.cart-items { display: flex; flex-direction: column; gap: 12px; }
.cart-item {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 16px;
  align-items: center;
  transition: border-color .2s var(--ease);
}
.cart-item:hover { border-color: var(--brand); }
.cart-item-img {
  width: 100px; height: 100px;
  background: var(--bg-cream);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  padding: 10px;
}
.cart-item-img .product-tub { width: auto; height: 100%; max-width: 100%; }
.cart-item-name { font-weight: 700; font-size: 14.5px; color: var(--ink); margin: 0 0 4px; }
.cart-item-meta { font-size: 12px; color: var(--ink-mute); }
.cart-item-price { font-size: 18px; font-weight: 800; color: var(--accent); margin-top: 6px; }
.cart-item-actions { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.cart-item-remove { color: var(--ink-mute); font-size: 12px; font-weight: 600; text-decoration: underline; transition: color .2s var(--ease); }
.cart-item-remove:hover { color: var(--accent); }

.cart-summary {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px;
  position: sticky;
  top: calc(var(--header-h) + 24px);
  align-self: start;
}
.cart-summary h3 { font-size: 18px; margin-bottom: 18px; }
.cart-row { display: flex; justify-content: space-between; padding: 10px 0; font-size: 14px; color: var(--ink-dim); }
.cart-row.total { padding-top: 16px; margin-top: 8px; border-top: 1px solid var(--line); font-size: 18px; font-weight: 800; color: var(--ink); }
.cart-row.total .val { color: var(--accent); }
.cart-row.disc .val { color: var(--green); font-weight: 700; }
.cart-promo { display: flex; gap: 6px; margin: 14px 0; }
.cart-promo input { flex: 1; padding: 11px 14px; border: 1px solid var(--line); border-radius: var(--radius); font-size: 13px; outline: none; }
.cart-promo input:focus { border-color: var(--brand); }
.cart-promo button { padding: 11px 16px; background: var(--black); color: var(--brand); border-radius: var(--radius); font-weight: 700; font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; }
.cart-checkout {
  display: block;
  width: 100%;
  margin-top: 18px;
  text-align: center;
  padding: 15px;
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius-pill);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background .2s var(--ease);
}
.cart-checkout:hover { background: var(--accent-deep); }
.cart-secure { margin-top: 14px; font-size: 12px; color: var(--ink-mute); text-align: center; display: flex; align-items: center; justify-content: center; gap: 6px; }

.cart-empty {
  text-align: center;
  padding: 80px 24px;
}
.cart-empty-icon {
  width: 80px; height: 80px;
  background: var(--bg-cream);
  border-radius: 50%;
  display: inline-flex;
  align-items: center; justify-content: center;
  color: var(--accent);
  margin-bottom: 22px;
}
.cart-empty h2 { font-size: 28px; margin-bottom: 12px; }
.cart-empty p { color: var(--ink-mute); margin-bottom: 24px; }

/* ============================== CONTACT ============================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  padding: 30px 0 80px;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info { display: flex; flex-direction: column; gap: 14px; }
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 20px 22px;
  transition: border-color .2s var(--ease), transform .2s var(--ease);
}
.contact-card:hover { border-color: var(--brand); transform: translateY(-2px); }
.contact-card-ic {
  width: 44px; height: 44px;
  background: var(--brand);
  color: var(--black);
  border-radius: 50%;
  display: inline-flex;
  align-items: center; justify-content: center;
  flex: none;
}
.contact-card h4 { font-size: 15px; margin: 0 0 2px; }
.contact-card p { margin: 0 0 4px; font-size: 14px; color: var(--ink-dim); }
.contact-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.contact-form h3 { margin-bottom: 20px; font-size: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-group label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-mute);
  display: block;
  margin-bottom: 6px;
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 14px;
  background: #fff;
  outline: none;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px var(--brand-soft);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit {
  background: var(--accent);
  color: #fff;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: background .2s var(--ease);
}
.form-submit:hover { background: var(--accent-deep); }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }

/* ============================== ABOUT ============================== */
.about-intro { padding: 60px 0; }
.about-intro h2 { font-size: clamp(26px, 3.5vw, 42px); }
.lead-quote {
  background: var(--brand-soft);
  border-left: 4px solid var(--brand);
  padding: 18px 22px;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  margin: 20px 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  color: var(--ink);
  line-height: 1.5;
}

.about-stats { background: var(--black); padding: 60px 0; }
.about-stats .stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.about-stats .stat-item {
  border-right: 1px solid rgba(255,255,255,0.12);
  padding: 10px 16px;
}
.about-stats .stat-item:last-child { border-right: 0; }
.about-stats .stat-num {
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 800;
  color: var(--brand);
  letter-spacing: -0.025em;
  line-height: 1;
}
.about-stats .stat-num sup { color: var(--accent); font-weight: 700; }
.about-stats .stat-label {
  margin-top: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}
@media (max-width: 720px) {
  .about-stats .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .about-stats .stat-item { border-right: 0; padding: 16px 8px; }
}

/* ============================== ACCOUNT ============================== */
.account-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  padding: 30px 0 80px;
  align-items: start;
}
@media (max-width: 900px) { .account-layout { grid-template-columns: 1fr; } }

.account-perk-list { display: flex; flex-direction: column; gap: 16px; margin-top: 26px; }
.account-perk { display: flex; align-items: flex-start; gap: 14px; padding: 16px; background: var(--bg-cream); border-radius: var(--radius-lg); }
.account-perk-ic {
  width: 38px; height: 38px;
  background: var(--brand);
  color: var(--black);
  border-radius: 50%;
  display: inline-flex;
  align-items: center; justify-content: center;
  flex: none;
}
.account-perk h4 { font-size: 14px; margin: 0 0 2px; }
.account-perk p { font-size: 13px; color: var(--ink-mute); margin: 0; }

.account-tabs {
  display: flex;
  background: var(--bg-cream);
  border-radius: var(--radius-pill);
  padding: 5px;
  margin-bottom: 24px;
}
.account-tab {
  flex: 1;
  padding: 12px;
  text-align: center;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  color: var(--ink-mute);
  transition: background .2s var(--ease), color .2s var(--ease);
}
.account-tab.active { background: #fff; color: var(--accent); box-shadow: var(--shadow-sm); }
.account-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
}

/* ============================== ORDER TRACKING ============================== */
.tracking-form {
  max-width: 600px;
  margin: 0 auto 40px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.tracking-result {
  max-width: 720px;
  margin: 0 auto;
}
.tracking-step {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.tracking-step:last-child { border-bottom: 0; }
.tracking-dot {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--bg-cream);
  border: 2px solid var(--line);
  display: inline-flex;
  align-items: center; justify-content: center;
  color: var(--ink-mute);
}
.tracking-step.done .tracking-dot { background: var(--green); border-color: var(--green); color: #fff; }
.tracking-step.active .tracking-dot { background: var(--brand); border-color: var(--brand); color: var(--black); }
.tracking-title { font-weight: 700; }
.tracking-meta { font-size: 12px; color: var(--ink-mute); }
.tracking-time { font-family: var(--font-mono); font-size: 12px; color: var(--ink-dim); }

/* ============================== PRIVACY / TERMS ============================== */
.legal-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 30px 0 80px;
}
.legal-content h2 { margin: 32px 0 14px; font-size: 22px; color: var(--accent); }
.legal-content h3 { margin: 22px 0 10px; font-size: 17px; }
.legal-content p { font-size: 15px; color: var(--ink-dim); margin-bottom: 14px; line-height: 1.7; }
.legal-content ul { list-style: disc; padding-left: 22px; margin-bottom: 14px; color: var(--ink-dim); }
.legal-content ul li { margin-bottom: 6px; font-size: 15px; }

/* ============================== REVEAL ANIMATIONS ============================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  transition-delay: 0s;
}
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }
.reveal.in { opacity: 1; transform: none; }

/* ============================== UTILITY ============================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Selection */
::selection { background: var(--brand); color: var(--black); }
