/* ═══════════════════════════════════════════
   DESIGN TOKENS
═══════════════════════════════════════════ */
:root {
  --bg: #FAF8F5;
  --ink: #26221C;
  --ink-soft: #6E675D;
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-pill: 999px;

  --focus-bg: #E7EFE4;
  --focus-accent: #8FB585;
  --chill-bg: #EDE8F7;
  --chill-accent: #A98FD6;
  --fresh-bg: #FAF3D9;
  --fresh-accent: #D9B84A;

  --grad-focus: linear-gradient(135deg, #7FD8BE, #5EC4D4);
  --grad-chill: linear-gradient(135deg, #B79CED, #F2A6D8);
  --grad-fresh: linear-gradient(135deg, #F7D774, #FCAE7C);
  --grad-holo: linear-gradient(120deg, #A5F0D3, #B9C6FF, #FBC2EB, #FFE8A3, #A5F0D3);

  --nav-h: 64px;
  --section-gap: 96px;
  --card-gap: 24px;
}

/* ═══════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 {
  font-family: 'Space Grotesk', 'Segoe UI', sans-serif;
  font-weight: 700;
  line-height: 1.15;
}
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
img, svg { display: block; }
section { scroll-margin-top: var(--nav-h); }

/* ═══════════════════════════════════════════
   TYPOGRAPHY HELPERS
═══════════════════════════════════════════ */
.micro-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-family: 'Inter', sans-serif;
}
.micro-label--center { text-align: center; }
.micro-label--focus { color: var(--focus-accent); }
.micro-label--chill { color: var(--chill-accent); }
.micro-label--fresh { color: var(--fresh-accent); }

/* ═══════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: 600;
  font-family: 'Space Grotesk', sans-serif;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }

/* Primary: ink bg, holo sweep on hover */
.btn--primary {
  background: var(--ink);
  color: #fff;
  background-size: 300% 300%;
  background-image: linear-gradient(120deg, #26221C 0%, #26221C 40%, #A5F0D3 60%, #B9C6FF 80%, #FBC2EB 100%);
  background-position: 0% 50%;
  transition: background-position 0.5s ease, transform 0.18s ease, box-shadow 0.18s ease;
}
.btn--primary:hover {
  background-position: 100% 50%;
  box-shadow: 0 6px 24px rgba(38,34,28,0.22);
}

/* Ghost */
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid rgba(38,34,28,0.2);
}
.btn--ghost:hover {
  border-color: var(--ink);
  background: rgba(38,34,28,0.04);
}

/* SKU buttons */
.btn--sku {
  padding: 10px 20px;
  font-size: 13px;
  background: var(--ink);
  color: #fff;
  background-size: 200% 200%;
  background-position: 0% 50%;
  transition: background-position 0.4s ease, transform 0.18s ease;
}
.btn--focus { background-image: linear-gradient(135deg, #26221C 0%, #26221C 45%, #7FD8BE 75%, #5EC4D4 100%); }
.btn--chill { background-image: linear-gradient(135deg, #26221C 0%, #26221C 45%, #B79CED 75%, #F2A6D8 100%); }
.btn--fresh { background-image: linear-gradient(135deg, #26221C 0%, #26221C 45%, #F7D774 75%, #FCAE7C 100%); }
.btn--sku:hover { background-position: 100% 50%; }

.btn--full { width: 100%; }

/* ═══════════════════════════════════════════
   BLOBS
═══════════════════════════════════════════ */
.blob {
  position: absolute;
  border-radius: 40% 60% 55% 45% / 55% 45% 60% 40%;
  filter: blur(40px);
  pointer-events: none;
  animation: blobMorph 16s ease-in-out infinite;
  z-index: 0;
}
.blob--holo {
  background: var(--grad-holo);
  background-size: 300% 300%;
  animation: blobMorph 16s ease-in-out infinite, holoShift 10s linear infinite;
}
.blob--focus  { background: var(--grad-focus); opacity: 0.45; }
.blob--chill  { background: var(--grad-chill); opacity: 0.45; }
.blob--fresh  { background: var(--grad-fresh); opacity: 0.45; }

@keyframes blobMorph {
  0%   { border-radius: 40% 60% 55% 45% / 55% 45% 60% 40%; }
  25%  { border-radius: 55% 45% 38% 62% / 48% 62% 38% 52%; }
  50%  { border-radius: 62% 38% 50% 50% / 38% 55% 45% 62%; }
  75%  { border-radius: 45% 55% 60% 40% / 60% 40% 55% 45%; }
  100% { border-radius: 40% 60% 55% 45% / 55% 45% 60% 40%; }
}
@keyframes holoShift {
  0%   { background-position: 0% 50%; filter: blur(40px) hue-rotate(0deg); }
  50%  { background-position: 100% 50%; filter: blur(40px) hue-rotate(30deg); }
  100% { background-position: 0% 50%; filter: blur(40px) hue-rotate(0deg); }
}

/* ═══════════════════════════════════════════
   NAV
═══════════════════════════════════════════ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: var(--nav-h);
  background: transparent;
  backdrop-filter: blur(0px);
  transition: background 0.3s ease, backdrop-filter 0.3s ease, box-shadow 0.3s ease;
}
.nav.scrolled {
  background: rgba(250,248,245,0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(38,34,28,0.08);
}

.nav__wordmark {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 2px;
  letter-spacing: -0.02em;
}
.nav__period {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--grad-holo);
  background-size: 300% 300%;
  animation: holoShift 6s linear infinite;
  flex-shrink: 0;
  margin-left: 1px;
  vertical-align: middle;
  position: relative;
  top: -1px;
}

.nav__links {
  display: flex;
  gap: 32px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
}
.nav__links a:hover { color: var(--ink); }

.nav__cart {
  position: relative;
  padding: 8px;
  color: var(--ink);
  display: flex;
  align-items: center;
}
.nav__cart:hover { opacity: 0.7; }

.nav__badge {
  position: absolute;
  top: 2px;
  right: 2px;
  background: var(--ink);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  min-width: 16px;
  height: 16px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.2s, transform 0.2s;
}
.nav__badge.visible {
  opacity: 1;
  transform: scale(1);
}
.nav__badge.bump {
  animation: badgeBump 0.35s ease;
}
@keyframes badgeBump {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.55); }
  70%  { transform: scale(0.9); }
  100% { transform: scale(1); }
}

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.hero {
  min-height: calc(100vh - var(--nav-h));
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 60px 24px 80px;
  gap: 48px;
}
@media (min-width: 960px) {
  .hero { grid-template-columns: 1fr 1fr; padding: 60px 80px; }
}

.hero__blob {
  width: 520px;
  height: 520px;
  top: -60px;
  right: -100px;
  opacity: 0.55;
}
@media (max-width: 959px) {
  .hero__blob { width: 340px; height: 340px; top: -20px; right: -60px; }
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 540px;
}
.hero__content .micro-label { margin-bottom: 20px; }
.hero__content h1 {
  font-size: clamp(2.4rem, 6vw, 4rem);
  margin-bottom: 20px;
  color: var(--ink);
}
.hero__sub {
  font-size: 17px;
  color: var(--ink-soft);
  margin-bottom: 36px;
  max-width: 460px;
  line-height: 1.7;
}
.hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; }

.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero__jar { width: clamp(180px, 30vw, 280px); height: auto; }

@keyframes jarFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}
.jar-float { animation: jarFloat 6s ease-in-out infinite; }

/* ═══════════════════════════════════════════
   SECTION HEADER
═══════════════════════════════════════════ */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-header .micro-label { margin-bottom: 12px; }
.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--ink);
}

/* ═══════════════════════════════════════════
   PRODUCTS
═══════════════════════════════════════════ */
.products {
  padding: var(--section-gap) 24px;
}
@media (min-width: 640px) { .products { padding-left: 40px; padding-right: 40px; } }
@media (min-width: 960px) { .products { padding-left: 80px; padding-right: 80px; } }

.products__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--card-gap);
  max-width: 1100px;
  margin: 0 auto;
}
@media (min-width: 640px) { .products__grid { grid-template-columns: repeat(3, 1fr); } }

.card {
  border-radius: var(--radius-lg);
  padding: 32px 28px 28px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(38,34,28,0.1);
}
.card--focus { background: var(--focus-bg); }
.card--chill { background: var(--chill-bg); }
.card--fresh { background: var(--fresh-bg); }

.card__blob {
  width: 200px;
  height: 200px;
  top: -60px;
  right: -60px;
}

.card__icon { position: relative; z-index: 1; margin-bottom: 4px; }
.card__jar {
  position: absolute;
  bottom: 24px;
  right: 20px;
  opacity: 0.55;
  z-index: 0;
}
.card__name {
  font-size: 1.35rem;
  position: relative;
  z-index: 1;
}
.card__desc {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.6;
  position: relative;
  z-index: 1;
  flex: 1;
}
.card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
  margin-top: 8px;
}
.card__price {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
}

/* ═══════════════════════════════════════════
   YADOM
═══════════════════════════════════════════ */
.yadom {
  background: #F6F1EA;
  padding: var(--section-gap) 24px;
}
@media (min-width: 640px) { .yadom { padding-left: 40px; padding-right: 40px; } }
@media (min-width: 960px) { .yadom { padding-left: 80px; padding-right: 80px; } }

.yadom__inner { max-width: 820px; margin: 0 auto; }

.yadom__body {
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.75;
  margin-bottom: 48px;
  text-align: center;
}

.yadom__stats {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.stat { text-align: center; }
.stat__num {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
}
.stat__label {
  font-size: 12px;
  color: var(--ink-soft);
  margin-top: 4px;
  display: block;
}

.yadom__steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 640px) {
  .yadom__steps { flex-direction: row; gap: 32px; }
}

.step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  flex: 1;
}
.step__num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}
.step strong {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  margin-bottom: 4px;
  font-size: 15px;
}
.step p { font-size: 14px; color: var(--ink-soft); }

/* ═══════════════════════════════════════════
   KIT BANNER
═══════════════════════════════════════════ */
.kit {
  padding: var(--section-gap) 24px;
}
@media (min-width: 640px) { .kit { padding-left: 40px; padding-right: 40px; } }
@media (min-width: 960px) { .kit { padding-left: 80px; padding-right: 80px; } }

.kit__panel {
  max-width: 1100px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  background: var(--grad-holo);
  background-size: 300% 300%;
  animation: holoShift 10s linear infinite;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
@media (min-width: 640px) {
  .kit__panel { flex-direction: row; text-align: left; justify-content: space-between; }
}

.kit__jars {
  display: flex;
  gap: 12px;
  align-items: flex-end;
  flex-shrink: 0;
}
.kit__copy { flex: 1; max-width: 440px; }
.kit__copy .micro-label { margin-bottom: 10px; color: rgba(38,34,28,0.6); }
.kit__copy h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  color: var(--ink);
  margin-bottom: 10px;
}
.kit__copy > p {
  font-size: 15px;
  color: var(--ink-soft);
  margin-bottom: 20px;
}

.kit__price-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.kit__price {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
}
.kit__strike {
  font-size: 1rem;
  color: var(--ink-soft);
  text-decoration: line-through;
}
.kit__badge {
  background: var(--ink);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
}

/* ═══════════════════════════════════════════
   SOCIAL PROOF
═══════════════════════════════════════════ */
.social-proof {
  padding: var(--section-gap) 0;
  overflow: hidden;
}
.social-proof > .micro-label { padding: 0 24px; margin-bottom: 28px; }

.marquee {
  overflow: hidden;
  border-top: 1px solid rgba(38,34,28,0.08);
  border-bottom: 1px solid rgba(38,34,28,0.08);
  padding: 14px 0;
  margin-bottom: 48px;
  background: rgba(38,34,28,0.02);
}
.marquee__track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: marqueeScroll 18s linear infinite;
}
.marquee__track span {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink-soft);
  padding-right: 4px;
  flex-shrink: 0;
}
@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.testimonials {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  padding: 0 24px;
  max-width: 1100px;
  margin: 0 auto;
}
@media (min-width: 640px) { .testimonials { grid-template-columns: repeat(3,1fr); padding: 0 40px; } }
@media (min-width: 960px) { .testimonials { padding: 0 80px; } }

.testimonial {
  border-radius: var(--radius-md);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.testimonial--focus { background: var(--focus-bg); }
.testimonial--chill { background: var(--chill-bg); }
.testimonial--fresh { background: var(--fresh-bg); }
.testimonial p { font-size: 15px; line-height: 1.6; }
.testimonial cite {
  font-size: 12px;
  color: var(--ink-soft);
  font-style: normal;
  font-weight: 500;
}

/* ═══════════════════════════════════════════
   FAQ
═══════════════════════════════════════════ */
.faq {
  padding: var(--section-gap) 24px;
  background: var(--bg);
}
@media (min-width: 640px) { .faq { padding-left: 40px; padding-right: 40px; } }
@media (min-width: 960px) { .faq { padding-left: 80px; padding-right: 80px; } }

.faq__inner { max-width: 720px; margin: 0 auto; }

.faq__list { display: flex; flex-direction: column; gap: 0; }

.faq__item {
  border-bottom: 1px solid rgba(38,34,28,0.1);
}
.faq__item:first-child { border-top: 1px solid rgba(38,34,28,0.1); }

.faq__q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  text-align: left;
  gap: 16px;
}
.faq__q:hover { color: var(--ink-soft); }

.faq__chevron {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.faq__q[aria-expanded="true"] .faq__chevron {
  transform: rotate(180deg);
}

.faq__a {
  padding-bottom: 20px;
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.7;
  overflow: hidden;
}
.faq__a[hidden] { display: none; }

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.footer {
  background: var(--ink);
  color: #fff;
  padding: 64px 24px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
}
@media (min-width: 640px) { .footer { padding-left: 40px; padding-right: 40px; } }

.footer__newsletter h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
  color: #fff;
}
.footer__newsletter > p {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 20px;
}

.newsletter__form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 420px;
}
.newsletter__form input[type="email"] {
  flex: 1;
  min-width: 220px;
  padding: 12px 18px;
  border-radius: var(--radius-pill);
  border: 1.5px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s;
}
.newsletter__form input[type="email"]::placeholder { color: rgba(255,255,255,0.4); }
.newsletter__form input[type="email"]:focus { border-color: rgba(255,255,255,0.5); }
.newsletter__form .btn--primary {
  background-image: linear-gradient(120deg, #A5F0D3, #B9C6FF, #FBC2EB, #FFE8A3, #A5F0D3);
  color: var(--ink);
}

.newsletter__success {
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  margin-top: 8px;
}
.newsletter__success[hidden] { display: none; }

.footer__socials {
  display: flex;
  gap: 24px;
  font-size: 14px;
  font-weight: 500;
}
.footer__socials a { color: rgba(255,255,255,0.65); }
.footer__socials a:hover { color: #fff; }

.footer__legal-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 13px;
}
.footer__legal-links a { color: rgba(255,255,255,0.45); }
.footer__legal-links a:hover { color: rgba(255,255,255,0.75); }

.footer__disclaimer {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  max-width: 540px;
  line-height: 1.6;
}
.footer__copy {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

/* ═══════════════════════════════════════════
   CART DRAWER
═══════════════════════════════════════════ */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(38,34,28,0.45);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(2px);
}
.cart-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: min(420px, 100vw);
  background: var(--bg);
  z-index: 210;
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 40px rgba(38,34,28,0.18);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.cart-drawer.open {
  transform: translateX(0);
}
.cart-drawer[hidden] { display: flex; } /* keep flex layout; visibility is via transform */

.cart-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(38,34,28,0.08);
  flex-shrink: 0;
}
.cart-drawer__title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
}
.cart-drawer__close {
  color: var(--ink-soft);
  padding: 6px;
  border-radius: 8px;
  transition: background 0.15s;
}
.cart-drawer__close:hover { background: rgba(38,34,28,0.07); }

.cart-drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Cart items */
.cart-empty {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: var(--ink-soft);
  text-align: center;
  padding: 40px 20px;
}

.cart-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 12px;
  align-items: start;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(38,34,28,0.07);
}
.cart-item__name {
  font-size: 15px;
  font-weight: 600;
  font-family: 'Space Grotesk', sans-serif;
}
.cart-item__unit {
  font-size: 12px;
  color: var(--ink-soft);
}
.cart-item__controls {
  display: flex;
  align-items: center;
  gap: 8px;
}
.cart-item__stepper {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1.5px solid rgba(38,34,28,0.15);
  border-radius: var(--radius-pill);
  overflow: hidden;
}
.cart-item__stepper button {
  width: 30px;
  height: 30px;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}
.cart-item__stepper button:hover { background: rgba(38,34,28,0.06); }
.cart-item__qty {
  min-width: 28px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
}
.cart-item__remove {
  color: var(--ink-soft);
  font-size: 18px;
  padding: 4px 6px;
  border-radius: 6px;
  transition: color 0.15s, background 0.15s;
}
.cart-item__remove:hover { color: var(--ink); background: rgba(38,34,28,0.07); }
.cart-item__total {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 15px;
  text-align: right;
  align-self: center;
}

/* Cart footer */
.cart-drawer__footer {
  padding: 16px 24px 24px;
  border-top: 1px solid rgba(38,34,28,0.08);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cart-drawer__footer[hidden] { display: none; }

.cart-shipping__label {
  font-size: 12px;
  color: var(--ink-soft);
  margin-bottom: 6px;
}
.cart-shipping__bar-track {
  height: 4px;
  background: rgba(38,34,28,0.1);
  border-radius: var(--radius-pill);
  overflow: hidden;
}
.cart-shipping__bar-fill {
  height: 100%;
  background: var(--grad-holo);
  background-size: 300% 100%;
  animation: holoShift 4s linear infinite;
  border-radius: var(--radius-pill);
  transition: width 0.4s ease;
  width: 0%;
}

.cart-subtotal {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 600;
  font-family: 'Space Grotesk', sans-serif;
}

/* ═══════════════════════════════════════════
   TOASTS
═══════════════════════════════════════════ */
.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 300;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}
.toast {
  background: var(--ink);
  color: #fff;
  padding: 12px 18px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 8px 24px rgba(38,34,28,0.2);
  pointer-events: auto;
  animation: toastIn 0.3s ease forwards;
  max-width: 280px;
}
.toast.out { animation: toastOut 0.3s ease forwards; }

@keyframes toastIn {
  from { opacity: 0; transform: translateY(12px) scale(0.95); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes toastOut {
  from { opacity: 1; transform: translateY(0) scale(1); }
  to   { opacity: 0; transform: translateY(8px) scale(0.95); }
}

/* ═══════════════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger card children */
.products__grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.products__grid .reveal:nth-child(3) { transition-delay: 0.2s; }
.testimonials .reveal:nth-child(2) { transition-delay: 0.1s; }
.testimonials .reveal:nth-child(3) { transition-delay: 0.2s; }

/* ═══════════════════════════════════════════
   REDUCED MOTION
═══════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .jar-float { animation: none !important; }
  .blob { animation: none !important; }
  .marquee__track { animation: none !important; }
  .nav__period { animation: none !important; }
  .kit__panel { animation: none !important; }
}
