/* === Ofertas Relâmpago — Design tokens === */
:root {
  --bg: #f7f3ec;
  --bg-warm: #efe9dc;
  --bg-card: #fbf8f2;
  --ink: #161310;
  --ink-2: #3a342d;
  --ink-3: #6e655a;
  --line: #1613101a;
  --line-strong: #16131033;
  --accent: oklch(68% 0.19 35);     /* electric coral */
  --accent-deep: oklch(54% 0.20 32);
  --sage: oklch(58% 0.06 145);
  --gold: oklch(76% 0.13 80);
  --display: "Instrument Serif", "Times New Roman", serif;
  --sans: "Geist", system-ui, -apple-system, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;
  --shadow-soft: 0 1px 0 rgba(22,19,16,.04), 0 12px 32px -16px rgba(22,19,16,.18);
  --shadow-hover: 0 1px 0 rgba(22,19,16,.06), 0 28px 48px -20px rgba(22,19,16,.28);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }

.serif { font-family: var(--display); font-weight: 400; letter-spacing: -0.01em; }
.mono { font-family: var(--mono); letter-spacing: 0.02em; }
.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.eyebrow .dot { display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); margin-right: 8px; transform: translateY(-1px); }

.container { max-width: 1320px; margin: 0 auto; padding: 0 32px; }

/* ============ Top utility bar ============ */
.top-bar {
  background: var(--ink);
  color: #efe9dc;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 9px 0;
  overflow: hidden;
}
.top-bar-track {
  display: flex;
  gap: 56px;
  white-space: nowrap;
  animation: marquee 38s linear infinite;
}
.top-bar-track span { display: inline-flex; align-items: center; gap: 12px; }
.top-bar-track .pulse {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 var(--accent);
  animation: pulse 1.6s ease-out infinite;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 oklch(68% 0.19 35 / 0.5); }
  70% { box-shadow: 0 0 0 10px oklch(68% 0.19 35 / 0); }
  100% { box-shadow: 0 0 0 0 oklch(68% 0.19 35 / 0); }
}

/* ============ Nav ============ */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(247, 243, 236, 0.86);
  backdrop-filter: saturate(140%) blur(16px);
  -webkit-backdrop-filter: saturate(140%) blur(16px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 76px;
  gap: 32px;
}
.nav-left { display: flex; align-items: center; gap: 28px; }
.nav-right { display: flex; align-items: center; gap: 20px; justify-content: flex-end; }
.nav-links { display: flex; gap: 26px; align-items: center; font-size: 14px; }
.nav-links a {
  position: relative;
  padding: 6px 0;
  transition: color .2s;
}
.nav-links a:hover { color: var(--accent-deep); }
.nav-links a.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--accent); border-radius: 2px;
}
.brand {
  display: inline-flex; align-items: baseline; gap: 8px;
  font-family: var(--display); font-size: 30px; line-height: 1;
  letter-spacing: -0.02em;
}
.brand-mark {
  display: inline-grid; place-items: center;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--ink); color: var(--bg);
  transform: translateY(4px);
}
.brand-mark svg { width: 16px; height: 16px; }
.brand-sub {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--ink-3); transform: translateY(-4px);
}

.icon-btn {
  width: 40px; height: 40px;
  display: inline-grid; place-items: center;
  border-radius: 50%;
  transition: background .2s, color .2s;
  position: relative;
}
.icon-btn:hover { background: var(--bg-warm); }
.icon-btn svg { width: 18px; height: 18px; stroke: currentColor; }
.cart-dot {
  position: absolute; top: 6px; right: 6px;
  min-width: 18px; height: 18px; padding: 0 4px;
  background: var(--accent); color: white;
  border-radius: 999px;
  font-family: var(--mono); font-size: 10px; font-weight: 600;
  display: grid; place-items: center;
}

/* ============ Buttons ============ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.005em;
  transition: transform .15s ease, background .2s, color .2s, box-shadow .2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary {
  background: var(--ink); color: var(--bg);
}
.btn-primary:hover { background: var(--accent-deep); }
.btn-accent {
  background: var(--accent); color: white;
  box-shadow: 0 8px 22px -10px var(--accent-deep);
}
.btn-accent:hover { background: var(--accent-deep); }
.btn-ghost {
  background: transparent; color: var(--ink);
  border: 1px solid var(--line-strong);
}
.btn-ghost:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.btn .arrow {
  display: inline-block; transition: transform .2s ease;
}
.btn:hover .arrow { transform: translateX(3px); }

/* ============ Hero ============ */
.hero {
  padding: 56px 0 80px;
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: end;
}
.hero h1 {
  font-family: var(--display);
  font-size: clamp(56px, 8.2vw, 132px);
  line-height: 0.92;
  letter-spacing: -0.035em;
  margin: 24px 0 0;
  font-weight: 400;
}
.hero h1 .ital { font-style: italic; color: var(--accent-deep); }
.hero h1 .strike { position: relative; display: inline-block; }
.hero h1 .strike::after {
  content: ""; position: absolute; left: -4%; right: -4%; top: 50%;
  height: 4px; background: var(--accent); transform: rotate(-3deg);
}
.hero-lede {
  max-width: 460px;
  font-size: 17px;
  color: var(--ink-2);
  line-height: 1.55;
  margin: 28px 0 32px;
}
.hero-ctas { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.hero-meta {
  display: flex; gap: 28px; margin-top: 44px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.hero-meta-item .num {
  font-family: var(--display); font-size: 36px; line-height: 1;
  letter-spacing: -0.02em;
}
.hero-meta-item .lbl {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-3); margin-top: 6px;
}

.hero-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: var(--bg-warm);
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-soft);
}
.hero-card .ph {
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(135deg, transparent 0 14px, rgba(22,19,16,0.04) 14px 15px),
    linear-gradient(160deg, oklch(86% 0.04 35), oklch(78% 0.10 35));
}
.hero-card .ph-label {
  position: absolute; top: 20px; left: 20px;
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink-2);
  padding: 6px 10px; background: rgba(247, 243, 236, 0.78);
  border-radius: 4px; backdrop-filter: blur(4px);
}
.hero-card-overlay {
  position: absolute; left: 20px; right: 20px; bottom: 20px;
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 16px;
}
.hero-card-tag {
  background: var(--ink); color: var(--bg);
  padding: 14px 18px; border-radius: 14px;
  display: flex; flex-direction: column; gap: 6px;
}
.hero-card-tag .price {
  font-family: var(--display); font-size: 30px; line-height: 1;
}
.hero-card-tag .strike-old {
  font-family: var(--mono); font-size: 11px; color: oklch(75% 0.02 80);
  text-decoration: line-through;
}
.hero-card-discount {
  background: var(--accent); color: white;
  width: 72px; height: 72px; border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--display); font-size: 22px;
  line-height: 1;
  box-shadow: 0 18px 30px -12px var(--accent-deep);
  transform: rotate(-8deg);
  animation: wiggle 4s ease-in-out infinite;
}
@keyframes wiggle {
  0%, 100% { transform: rotate(-8deg); }
  50% { transform: rotate(-2deg); }
}

.hero-floating-card {
  position: absolute;
  right: -16px; top: 24px;
  width: 230px;
  background: var(--bg-card);
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow-hover);
  border: 1px solid var(--line);
  transform: rotate(4deg);
}
.hero-floating-card .stars { color: var(--gold); letter-spacing: 2px; font-size: 14px; }
.hero-floating-card .quote {
  font-family: var(--display); font-size: 19px; line-height: 1.25;
  margin: 8px 0 12px; letter-spacing: -0.01em;
}
.hero-floating-card .who {
  display: flex; align-items: center; gap: 10px;
  font-size: 12px;
}
.avatar {
  width: 28px; height: 28px; border-radius: 50%;
  background: linear-gradient(135deg, oklch(70% 0.10 35), oklch(58% 0.18 32));
  display: grid; place-items: center;
  color: white; font-family: var(--mono); font-size: 11px;
}

/* ============ Marquee strip / trust ============ */
.trust-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}
.trust-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px;
  font-family: var(--display); font-size: 28px;
  letter-spacing: -0.01em;
  color: var(--ink-2);
}
.trust-row span { white-space: nowrap; }
.trust-row .sep {
  width: 6px; height: 6px; border-radius: 50%; background: var(--ink-3);
}

/* ============ Flash deal banner ============ */
.flash {
  margin: 80px 0;
  background: var(--ink);
  color: var(--bg);
  border-radius: 28px;
  padding: 48px;
  position: relative;
  overflow: hidden;
}
.flash::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(600px 240px at 10% 100%, oklch(68% 0.19 35 / 0.35), transparent 70%),
    radial-gradient(500px 200px at 95% 0%, oklch(58% 0.06 145 / 0.18), transparent 70%);
  pointer-events: none;
}
.flash-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
}
.flash h2 {
  font-family: var(--display);
  font-size: clamp(40px, 5vw, 64px);
  line-height: 0.96;
  letter-spacing: -0.02em;
  margin: 16px 0 18px;
  font-weight: 400;
}
.flash h2 .ital { font-style: italic; color: oklch(80% 0.16 35); }
.flash p { max-width: 480px; color: oklch(85% 0.02 80); margin: 0 0 28px; font-size: 16px; }

.countdown {
  display: flex; gap: 14px;
}
.cd-box {
  background: rgba(247, 243, 236, 0.06);
  border: 1px solid rgba(247, 243, 236, 0.18);
  border-radius: 16px;
  padding: 18px 20px;
  min-width: 86px;
  text-align: center;
  backdrop-filter: blur(8px);
}
.cd-num {
  font-family: var(--display);
  font-size: 44px; line-height: 1;
  font-variant-numeric: tabular-nums;
}
.cd-lbl {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: oklch(75% 0.02 80);
  margin-top: 8px;
}

/* ============ Section heads ============ */
.section { padding: 80px 0; }
.section-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 32px;
  margin-bottom: 40px;
}
.section-head h2 {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(36px, 4.8vw, 64px);
  line-height: 1;
  letter-spacing: -0.025em;
  margin: 14px 0 0;
  max-width: 720px;
}
.section-head h2 .ital { font-style: italic; color: var(--accent-deep); }
.section-head .tail {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; color: var(--ink-3);
}

/* ============ Article grid ============ */
.articles {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 28px;
}
.article {
  background: var(--bg-card);
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex; flex-direction: column;
}
.article:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.article-img {
  position: relative;
  aspect-ratio: 16 / 10;
  background: var(--bg-warm);
  overflow: hidden;
}
.article-img.tall { aspect-ratio: 4 / 5; }
.article-img .ph {
  position: absolute; inset: 0;
  transition: transform .4s ease;
}
.article:hover .article-img .ph { transform: scale(1.05); }
.article-img .pill {
  position: absolute; top: 16px; left: 16px;
  background: rgba(22,19,16,0.82); color: var(--bg);
  font-family: var(--mono); font-size: 10px;
  padding: 6px 10px; border-radius: 999px;
  letter-spacing: 0.18em; text-transform: uppercase;
}
.article-body { padding: 24px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.article-meta {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-3);
}
.article h3 {
  font-family: var(--display); font-weight: 400;
  font-size: 26px; line-height: 1.08;
  letter-spacing: -0.015em;
  margin: 0;
}
.article-excerpt { color: var(--ink-2); font-size: 14px; line-height: 1.55; }
.article-foot {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: auto; padding-top: 16px; border-top: 1px solid var(--line);
  font-size: 13px;
}
.article-foot .read {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 500;
}
.article-foot .read:hover { color: var(--accent-deep); }
.article.feature { grid-row: span 2; }
.article.feature h3 { font-size: 38px; }
.article.feature .article-img { aspect-ratio: 4 / 3.2; }

/* Photo placeholders */
.ph-1 { background: linear-gradient(150deg, oklch(82% 0.05 35) 0%, oklch(64% 0.14 30) 100%); }
.ph-2 { background: linear-gradient(160deg, oklch(78% 0.06 80) 0%, oklch(58% 0.10 60) 100%); }
.ph-3 { background: linear-gradient(135deg, oklch(82% 0.04 145) 0%, oklch(56% 0.08 160) 100%); }
.ph-4 { background: linear-gradient(165deg, oklch(82% 0.04 250) 0%, oklch(54% 0.09 240) 100%); }
.ph-5 { background: linear-gradient(150deg, oklch(86% 0.04 80) 0%, oklch(70% 0.13 50) 100%); }
.ph-6 { background: linear-gradient(150deg, oklch(80% 0.06 320) 0%, oklch(56% 0.12 320) 100%); }
.ph-7 { background: linear-gradient(150deg, oklch(86% 0.03 40) 0%, oklch(64% 0.10 40) 100%); }
.ph-stripe {
  position: relative;
}
.ph-stripe::after {
  content: "";
  position: absolute; inset: 0;
  background: repeating-linear-gradient(135deg, transparent 0 16px, rgba(22,19,16,0.05) 16px 17px);
}
.ph-tag {
  position: absolute; bottom: 14px; right: 14px;
  background: rgba(247, 243, 236, 0.86);
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-2);
  padding: 6px 10px; border-radius: 6px;
  backdrop-filter: blur(4px);
}

/* ============ Product grid ============ */
.cat-tabs {
  display: flex; gap: 8px; flex-wrap: wrap;
}
.cat-tab {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.16em; text-transform: uppercase;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  transition: background .2s, color .2s, border-color .2s;
}
.cat-tab:hover { border-color: var(--ink); }
.cat-tab.active { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.cat-tab .count { color: var(--ink-3); margin-left: 6px; }
.cat-tab.active .count { color: oklch(80% 0.02 80); }

.products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.product {
  background: var(--bg-card);
  border-radius: 20px;
  border: 1px solid var(--line);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .25s, box-shadow .25s;
  position: relative;
}
.product:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.product-media {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--bg-warm);
  overflow: hidden;
}
.product-media .ph { position: absolute; inset: 0; transition: transform .4s ease; }
.product:hover .product-media .ph { transform: scale(1.05); }
.product-badges {
  position: absolute; top: 14px; left: 14px;
  display: flex; flex-direction: column; gap: 6px;
}
.badge {
  font-family: var(--mono); font-size: 10px;
  padding: 5px 9px; border-radius: 6px;
  letter-spacing: 0.16em; text-transform: uppercase;
}
.badge.hot { background: var(--accent); color: white; }
.badge.new { background: var(--ink); color: var(--bg); }
.badge.eco { background: var(--sage); color: white; }
.badge.off { background: var(--bg-card); color: var(--ink); border: 1px solid var(--line-strong); }
.product-wish {
  position: absolute; top: 14px; right: 14px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(247,243,236,.9);
  display: grid; place-items: center;
  backdrop-filter: blur(4px);
  transition: background .2s, color .2s, transform .2s;
}
.product-wish svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 1.5; transition: fill .2s; }
.product-wish.active { color: var(--accent); }
.product-wish.active svg { fill: var(--accent); }
.product-wish:hover { transform: scale(1.08); }

.product-add {
  position: absolute; left: 14px; right: 14px; bottom: 14px;
  background: var(--ink); color: var(--bg);
  padding: 11px 14px; border-radius: 12px;
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  display: flex; justify-content: space-between; align-items: center;
  opacity: 0; transform: translateY(8px);
  transition: opacity .25s, transform .25s, background .2s;
}
.product:hover .product-add { opacity: 1; transform: translateY(0); }
.product-add:hover { background: var(--accent-deep); }

.product-body { padding: 20px; display: flex; flex-direction: column; gap: 8px; }
.product-cat {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-3);
}
.product h4 {
  font-family: var(--display); font-weight: 400;
  font-size: 22px; line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0;
}
.product-rating {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--ink-3);
}
.product-rating .stars { color: var(--gold); letter-spacing: 2px; font-size: 13px; }
.product-prices {
  display: flex; align-items: baseline; gap: 10px;
  margin-top: 8px;
}
.price-now {
  font-family: var(--display); font-size: 28px; line-height: 1;
  letter-spacing: -0.01em;
}
.price-old {
  font-family: var(--mono); font-size: 12px;
  color: var(--ink-3); text-decoration: line-through;
}
.price-save {
  font-family: var(--mono); font-size: 11px;
  color: var(--accent-deep); margin-left: auto;
  text-transform: uppercase; letter-spacing: 0.14em;
}

/* Stock bar */
.stock {
  margin-top: 4px;
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-3);
  display: flex; align-items: center; gap: 8px;
}
.stock-bar {
  flex: 1; height: 3px; background: var(--line);
  border-radius: 2px; overflow: hidden;
}
.stock-bar i {
  display: block; height: 100%;
  background: var(--accent);
  border-radius: 2px;
}

/* ============ Editorial split / featured product ============ */
.editorial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.editorial-img {
  position: relative;
  min-height: 560px;
  background: var(--bg-warm);
  overflow: hidden;
}
.editorial-img .ph { position: absolute; inset: 0; }
.editorial-body {
  background: var(--bg-card);
  padding: 56px;
  display: flex; flex-direction: column; justify-content: center;
  gap: 22px;
}
.editorial-body h2 {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1;
  letter-spacing: -0.025em;
  margin: 6px 0;
}
.editorial-body h2 .ital { font-style: italic; color: var(--accent-deep); }
.editorial-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 12px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.editorial-stats .num { font-family: var(--display); font-size: 36px; line-height: 1; }
.editorial-stats .lbl { font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-3); margin-top: 6px; }

/* ============ Testimonials ============ */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial {
  background: var(--bg-card);
  border-radius: 22px;
  border: 1px solid var(--line);
  padding: 32px;
  display: flex; flex-direction: column; gap: 18px;
  transition: transform .25s, box-shadow .25s;
}
.testimonial:hover { transform: translateY(-3px); box-shadow: var(--shadow-soft); }
.testimonial .stars { color: var(--gold); letter-spacing: 3px; }
.testimonial .quote {
  font-family: var(--display); font-size: 24px; line-height: 1.2;
  letter-spacing: -0.01em; flex: 1;
}
.testimonial .quote::before { content: "\201C"; }
.testimonial .quote::after { content: "\201D"; }
.testimonial .person {
  display: flex; align-items: center; gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.testimonial .name { font-weight: 500; }
.testimonial .role { font-size: 12px; color: var(--ink-3); font-family: var(--mono); letter-spacing: 0.1em; text-transform: uppercase; }
.testimonial .verified {
  margin-left: auto;
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--sage);
  display: inline-flex; align-items: center; gap: 4px;
}

/* ============ Newsletter ============ */
.newsletter {
  margin: 80px 0;
  background: var(--bg-warm);
  border-radius: 28px;
  padding: 64px 56px;
  position: relative;
  overflow: hidden;
}
.newsletter::before {
  content: ""; position: absolute;
  width: 360px; height: 360px;
  background: radial-gradient(circle, oklch(68% 0.19 35 / 0.18), transparent 70%);
  right: -80px; top: -120px;
  pointer-events: none;
}
.newsletter-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.newsletter h2 {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(36px, 4.4vw, 56px);
  line-height: 0.98; letter-spacing: -0.025em;
  margin: 12px 0 16px;
}
.newsletter h2 .ital { font-style: italic; color: var(--accent-deep); }
.newsletter p { color: var(--ink-2); max-width: 460px; margin: 0; }
.nl-form {
  background: var(--bg-card);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 6px 6px 6px 22px;
  display: flex; align-items: center;
  transition: border-color .2s;
}
.nl-form:focus-within { border-color: var(--ink); }
.nl-form input {
  flex: 1; border: 0; background: transparent;
  font: inherit; font-size: 15px; padding: 12px 0; outline: 0;
  color: var(--ink);
}
.nl-form input::placeholder { color: var(--ink-3); }
.nl-perks {
  display: flex; gap: 22px; flex-wrap: wrap;
  margin-top: 18px;
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-3);
}
.nl-perks span { display: inline-flex; align-items: center; gap: 8px; }
.nl-perks .tick { color: var(--sage); font-size: 14px; }

/* Newsletter side art */
.nl-art {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 380px;
  margin-left: auto;
}
.nl-coin {
  position: absolute;
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--display);
  box-shadow: var(--shadow-soft);
}
.nl-coin.c1 {
  width: 60%; height: 60%; left: 20%; top: 20%;
  background: var(--ink); color: var(--bg);
  font-size: 56px;
  transform: rotate(-6deg);
}
.nl-coin.c2 {
  width: 36%; height: 36%; right: 0; top: 8%;
  background: var(--accent); color: white;
  font-size: 28px;
  transform: rotate(8deg);
  animation: float 5s ease-in-out infinite;
}
.nl-coin.c3 {
  width: 28%; height: 28%; left: 0; bottom: 4%;
  background: var(--bg-card); color: var(--ink);
  font-size: 20px;
  border: 1px solid var(--line-strong);
  transform: rotate(-12deg);
  animation: float 6s ease-in-out infinite reverse;
}
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(var(--r, 8deg)); }
  50% { transform: translateY(-10px) rotate(var(--r, 8deg)); }
}

/* ============ Footer ============ */
footer {
  background: var(--ink);
  color: var(--bg);
  padding: 80px 0 28px;
  margin-top: 40px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(247, 243, 236, 0.12);
}
.foot h5 {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: oklch(80% 0.02 80);
  margin: 0 0 18px;
  font-weight: 500;
}
.foot ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.foot ul a { color: oklch(90% 0.02 80); }
.foot ul a:hover { color: var(--accent); }
.foot-brand h4 {
  font-family: var(--display); font-size: 32px;
  letter-spacing: -0.02em; font-weight: 400;
  margin: 0 0 12px;
}
.foot-brand p { color: oklch(80% 0.02 80); font-size: 14px; max-width: 320px; }
.foot-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 22px;
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: oklch(70% 0.02 80);
}
.foot-bottom-links { display: flex; gap: 22px; }
.foot-bottom-links a:hover { color: var(--accent); }

/* ============ Cart drawer ============ */
.drawer-overlay {
  position: fixed; inset: 0;
  background: rgba(22,19,16,0.4);
  backdrop-filter: blur(4px);
  z-index: 100;
  opacity: 0; pointer-events: none;
  transition: opacity .25s;
}
.drawer-overlay.open { opacity: 1; pointer-events: auto; }
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: 440px; max-width: 96vw;
  background: var(--bg);
  z-index: 101;
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(.2,.7,.2,1);
  box-shadow: -20px 0 40px -20px rgba(22,19,16,0.3);
}
.drawer.open { transform: translateX(0); }
.drawer-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 28px;
  border-bottom: 1px solid var(--line);
}
.drawer-head h3 { font-family: var(--display); font-size: 28px; margin: 0; font-weight: 400; }
.drawer-head .count { font-family: var(--mono); font-size: 11px; color: var(--ink-3); letter-spacing: 0.14em; }
.drawer-items { flex: 1; overflow-y: auto; padding: 16px 28px; display: flex; flex-direction: column; gap: 16px; }
.cart-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.cart-item-img {
  width: 80px; height: 80px;
  border-radius: 14px;
  overflow: hidden;
  background: var(--bg-warm);
  position: relative;
}
.cart-item-img .ph { position: absolute; inset: 0; }
.cart-item-info { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.cart-item-info .n { font-family: var(--display); font-size: 18px; line-height: 1.15; letter-spacing: -0.01em; }
.cart-item-info .v { font-family: var(--mono); font-size: 11px; color: var(--ink-3); letter-spacing: 0.1em; text-transform: uppercase; }
.qty {
  display: flex; align-items: center;
  border: 1px solid var(--line-strong); border-radius: 999px;
  height: 30px; width: fit-content;
  margin-top: 6px;
}
.qty button { width: 28px; height: 28px; display: grid; place-items: center; font-size: 13px; }
.qty span { padding: 0 8px; font-family: var(--mono); font-size: 12px; }
.cart-item-right { display: flex; flex-direction: column; justify-content: space-between; align-items: flex-end; }
.cart-item-right .p { font-family: var(--display); font-size: 20px; letter-spacing: -0.01em; }
.cart-item-right .x {
  width: 24px; height: 24px; display: grid; place-items: center;
  color: var(--ink-3); border-radius: 50%; transition: background .2s, color .2s;
}
.cart-item-right .x:hover { background: var(--bg-warm); color: var(--accent); }

.drawer-foot { padding: 22px 28px; border-top: 1px solid var(--line); background: var(--bg-card); }
.drawer-total {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 8px;
}
.drawer-total .lbl { font-family: var(--mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-3); }
.drawer-total .v { font-family: var(--display); font-size: 32px; letter-spacing: -0.01em; }
.drawer-shipping { font-size: 12px; color: var(--ink-3); margin-bottom: 16px; }
.drawer-shipping b { color: var(--sage); font-family: var(--mono); letter-spacing: 0.1em; text-transform: uppercase; font-size: 10px; }
.drawer-cta { width: 100%; justify-content: center; padding: 16px; }

.cart-empty { padding: 80px 28px; text-align: center; color: var(--ink-3); }
.cart-empty .icn { font-size: 56px; margin-bottom: 12px; opacity: 0.4; }

/* ============ Search overlay ============ */
.search-overlay {
  position: fixed; inset: 0;
  background: rgba(22,19,16,0.5);
  backdrop-filter: blur(8px);
  z-index: 200;
  display: flex; justify-content: center; align-items: flex-start;
  padding-top: 14vh;
  opacity: 0; pointer-events: none;
  transition: opacity .25s;
}
.search-overlay.open { opacity: 1; pointer-events: auto; }
.search-panel {
  width: min(720px, 92vw);
  background: var(--bg);
  border-radius: 22px;
  padding: 12px;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.5);
  transform: translateY(-8px);
  transition: transform .25s;
}
.search-overlay.open .search-panel { transform: translateY(0); }
.search-input {
  display: flex; align-items: center; gap: 14px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
}
.search-input svg { width: 22px; height: 22px; color: var(--ink-3); }
.search-input input {
  flex: 1; border: 0; background: transparent;
  font-family: var(--display); font-size: 24px;
  letter-spacing: -0.01em;
  outline: 0; color: var(--ink);
}
.search-input input::placeholder { color: var(--ink-3); }
.search-input kbd {
  font-family: var(--mono); font-size: 10px;
  padding: 3px 6px; border-radius: 4px;
  background: var(--bg-warm); color: var(--ink-3);
  letter-spacing: 0.1em;
}
.search-results { max-height: 50vh; overflow-y: auto; padding: 12px; }
.search-section-label {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-3);
  padding: 12px 10px 8px;
}
.search-result {
  display: flex; align-items: center; gap: 14px;
  padding: 10px;
  border-radius: 12px;
  transition: background .15s;
  cursor: pointer;
}
.search-result:hover, .search-result.active { background: var(--bg-warm); }
.search-result-img {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--bg-warm); overflow: hidden; position: relative;
}
.search-result-img .ph { position: absolute; inset: 0; }
.search-result .info { flex: 1; min-width: 0; }
.search-result .n { font-size: 15px; }
.search-result .c { font-family: var(--mono); font-size: 10px; color: var(--ink-3); letter-spacing: 0.12em; text-transform: uppercase; }
.search-result .p { font-family: var(--display); font-size: 17px; }

/* ============ Toast ============ */
.toast {
  position: fixed; bottom: 30px; left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--ink); color: var(--bg);
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 14px;
  display: flex; align-items: center; gap: 10px;
  opacity: 0; pointer-events: none;
  transition: opacity .25s, transform .25s;
  z-index: 300;
  box-shadow: 0 20px 40px -10px rgba(0,0,0,0.4);
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast .check { color: var(--sage); font-weight: 700; }

/* ============ Responsive ============ */
@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-floating-card { right: 0; }
  .articles { grid-template-columns: 1fr 1fr; }
  .article.feature { grid-row: auto; }
  .products { grid-template-columns: 1fr 1fr 1fr; }
  .editorial { grid-template-columns: 1fr; }
  .editorial-img { min-height: 360px; }
  .testimonials { grid-template-columns: 1fr; }
  .flash-inner { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .newsletter-inner { grid-template-columns: 1fr; }
  .nl-art { display: none; }
}
@media (max-width: 720px) {
  .container { padding: 0 20px; }
  .nav-inner { height: 64px; }
  .nav-links { display: none; }
  .articles, .products { grid-template-columns: 1fr; }
  .hero { padding: 32px 0 56px; }
  .hero-meta { flex-wrap: wrap; gap: 16px 32px; }
  .flash, .newsletter, .editorial-body { padding: 32px 24px; }
  .countdown { flex-wrap: wrap; }
  .cd-box { min-width: 70px; padding: 14px 14px; }
  .cd-num { font-size: 32px; }
  .trust-row { font-size: 18px; gap: 16px; }
  .section { padding: 56px 0; }
  .foot-grid { grid-template-columns: 1fr; }
  .foot-bottom { flex-direction: column; gap: 12px; }
  .editorial-stats { grid-template-columns: 1fr 1fr; }
}
