/* ============================================================================
   marketplace — v2-tech "Modern, techy, friendly" — Marketplace structure
   Big editorial hero, alternating featured blocks, real category tiles,
   ingredient stories, lifestyle routine, story spread. KG-pattern energy
   plus tech-product-page tokens.
   --------------------------------------------------------------------------
   Type rule: General Sans ONLY on h1–h4 + .display. Everything else Switzer.
   ========================================================================== */

:root {
  /* ---- Palette ---- */
  --paper:       #fafaf7;
  --paper-soft:  #f0efea;
  --paper-mid:   #e6e4dd;
  --card:        #ffffff;
  --ink:         #0c0d10;
  --ink-soft:    #5a5d65;
  --ink-quiet:   #8b8e96;
  --line:        rgba(12, 13, 16, 0.08);
  --line-strong: rgba(12, 13, 16, 0.18);
  --invert:      #ffffff;
  --accent:      #ff6b5a;
  --accent-soft: #ffe5e0;
  --accent-deep: #e6543f;

  /* ---- Soft shadows ---- */
  --shadow-sm: 0 1px 2px rgba(12, 13, 16, 0.04), 0 1px 1px rgba(12, 13, 16, 0.03);
  --shadow-md: 0 1px 2px rgba(12, 13, 16, 0.04), 0 4px 12px rgba(12, 13, 16, 0.03);
  --shadow-lg: 0 1px 2px rgba(12, 13, 16, 0.04), 0 12px 32px rgba(12, 13, 16, 0.06);

  /* ---- Type: General Sans = display only; Switzer = everything else ---- */
  --display: 'General Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --sans:    'Switzer', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* ---- Geometry ---- */
  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-xl:   28px;
  --radius-pill: 999px;

  /* ---- Layout ---- */
  --wrap: 1400px;
  --gutter: 32px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  font-size: 15px;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; height: auto; }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; }

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
@media (max-width: 720px) {
  .wrap { padding: 0 20px; }
}

/* ============================================================================
   TYPOGRAPHY — General Sans on display only
   ========================================================================== */

h1, h2, h3, h4, .display {
  font-family: var(--display);
  color: var(--ink);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.02;
  overflow-wrap: break-word;
  word-wrap: break-word;
}
h1 { font-size: clamp(40px, 7vw, 96px); font-weight: 500; letter-spacing: -0.028em; line-height: 0.95; }
h2 { font-size: clamp(30px, 4.5vw, 64px); font-weight: 500; letter-spacing: -0.024em; line-height: 1.0; }
h3 { font-size: clamp(20px, 2vw, 32px); font-weight: 500; letter-spacing: -0.018em; line-height: 1.12; }
h4 { font-size: clamp(15px, 1.2vw, 18px); font-weight: 600; letter-spacing: -0.008em; line-height: 1.3; }

.u-emph {
  color: var(--accent);
  font-weight: 500;
}

p { line-height: 1.65; }

.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.eyebrow--accent { color: var(--accent); }

.body-sm { font-size: 13.5px; line-height: 1.55; color: var(--ink-soft); }

/* ============================================================================
   BADGES & PILLS
   ========================================================================== */

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px 5px 9px;
  font-size: 11.5px;
  font-weight: 500;
  border-radius: var(--radius-pill);
  background: var(--accent-soft);
  color: var(--accent-deep);
  line-height: 1;
  white-space: nowrap;
}
.pill__dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent);
  display: inline-block;
  flex-shrink: 0;
}

.chip {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  padding: 6px 11px;
  border-radius: var(--radius-pill);
  background: var(--paper-soft);
  color: var(--ink);
  letter-spacing: -0.005em;
}
.chip--accent { background: var(--accent-soft); color: var(--accent-deep); }
.chip--ink { background: var(--ink); color: var(--invert); }

.badge {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: -0.005em;
  padding: 5px 10px;
  background: rgba(255,255,255,0.94);
  color: var(--ink);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.badge--accent { background: var(--accent); color: var(--invert); }
.badge--ink { background: var(--ink); color: var(--invert); }
.badge__dot { width: 5px; height: 5px; border-radius: 999px; background: currentColor; }

/* ============================================================================
   BUTTONS
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: -0.005em;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease,
              transform 0.12s ease, box-shadow 0.18s ease;
  white-space: nowrap;
}
.btn:active { transform: scale(0.98); }

.btn--primary {
  background: var(--accent);
  color: var(--invert);
  border-color: var(--accent);
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover { background: var(--accent-deep); border-color: var(--accent-deep); box-shadow: var(--shadow-md); }

.btn--ink { background: var(--ink); color: var(--invert); border-color: var(--ink); }
.btn--ink:hover { background: #1d1f25; }

.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn--ghost:hover { background: var(--paper-soft); border-color: var(--ink); }

.btn--invert { background: var(--invert); color: var(--ink); border-color: var(--invert); }
.btn--invert:hover { background: transparent; color: var(--invert); border-color: rgba(255,255,255,0.4); }

.btn--glass {
  background: rgba(255,255,255,0.12);
  color: var(--invert);
  border-color: rgba(255,255,255,0.28);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.btn--glass:hover { background: rgba(255,255,255,0.22); border-color: rgba(255,255,255,0.5); }

.btn--sm { padding: 10px 16px; font-size: 13px; }
.btn--block { width: 100%; }

.link-line {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.005em;
  position: relative;
}
.link-line::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: currentColor;
  opacity: 0.25;
  transition: opacity 0.2s ease;
}
.link-line:hover::after { opacity: 1; }
.link-line--invert { color: var(--invert); }

/* ============================================================================
   FADE-UP REVEAL
   ========================================================================== */

[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-reveal].is-in {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================================
   ANNOUNCEMENT BAR
   ========================================================================== */

.announce {
  background: var(--ink);
  color: var(--invert);
  padding: 9px 0;
  text-align: center;
  font-size: 12px;
  position: relative;
  z-index: 60;
}
.announce__inner { display: flex; justify-content: center; align-items: center; gap: 16px; flex-wrap: wrap; }
.announce__text { font-family: var(--sans); font-weight: 400; }
.announce__text--kr { letter-spacing: 0.02em; opacity: 0.85; }
.announce__sep { opacity: 0.4; }

/* ============================================================================
   HEADER
   ========================================================================== */

.header {
  position: absolute; /* hero takes the full viewport — header sits on top */
  top: 33px; /* below announce bar */
  left: 0; right: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.32) 0%, rgba(0,0,0,0) 100%);
  z-index: -1;
  pointer-events: none;
}
.header__row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  height: 68px;
  gap: 32px;
}
.header__brand {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: -0.02em;
  color: var(--invert);
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.header__brand::before {
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 6px;
  background: radial-gradient(circle at 30% 30%, #ffb4a8 0%, var(--accent) 55%, var(--accent-deep) 100%);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.4);
}

.nav { display: none; gap: 2px; justify-content: center; }
@media (min-width: 980px) { .nav { display: flex; } }

.nav__item {
  font-family: var(--sans);
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  padding: 8px 12px;
  border-radius: 8px;
  letter-spacing: -0.005em;
  position: relative;
  transition: background 0.18s ease, color 0.18s ease;
}
.nav__item:hover { background: rgba(255,255,255,0.10); color: var(--invert); }
.nav__item--has-menu::after {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  border-right: 1.3px solid currentColor;
  border-bottom: 1.3px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  margin-left: 6px;
  opacity: 0.5;
  vertical-align: middle;
}

.header__actions { display: flex; align-items: center; gap: 12px; }

.lang {
  display: inline-flex;
  padding: 3px;
  background: rgba(255,255,255,0.12);
  border-radius: var(--radius-pill);
  font-family: var(--sans);
  font-size: 11.5px;
  color: rgba(255,255,255,0.78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.lang__btn {
  padding: 5px 10px;
  border-radius: var(--radius-pill);
  color: rgba(255,255,255,0.78);
  font-weight: 500;
  transition: background 0.18s ease, color 0.18s ease;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.lang__btn.is-active {
  background: var(--invert);
  color: var(--ink);
}

.header__icon {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--invert);
  position: relative;
  border-radius: 10px;
  transition: background 0.18s ease;
}
.header__icon:hover { background: rgba(255,255,255,0.10); }
.header__cart-count {
  position: absolute;
  top: 4px;
  right: 4px;
  min-width: 15px;
  height: 15px;
  padding: 0 4px;
  border-radius: var(--radius-pill);
  background: var(--accent);
  color: var(--invert);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.menu-toggle { display: inline-flex; }
@media (min-width: 980px) { .menu-toggle { display: none; } }

/* ============================================================================
   HERO — full-bleed editorial image (KG pattern)
   ========================================================================== */

.hero {
  position: relative;
  width: 100%;
  min-height: 760px;
  height: 100svh;
  overflow: hidden;
  color: var(--invert);
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.18) 0%, rgba(0,0,0,0) 28%, rgba(0,0,0,0.20) 60%, rgba(0,0,0,0.68) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  padding-bottom: clamp(90px, 13vh, 160px);
  padding-top: clamp(120px, 18vh, 200px);
  gap: 28px;
}
.hero__copy {
  max-width: 880px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.hero__eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  text-shadow: 0 1px 6px rgba(0,0,0,0.3);
}
.hero__title {
  color: var(--invert);
  font-family: var(--display);
  font-size: clamp(52px, 9vw, 140px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.92;
  text-shadow: 0 2px 16px rgba(0,0,0,0.32);
}
.hero__title-line {
  display: block;
  word-break: keep-all;
  overflow-wrap: normal;
}
.hero__title-line--accent {
  color: var(--accent);
}
.hero__lede {
  font-family: var(--sans);
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.55;
  max-width: 56ch;
  color: rgba(255,255,255,0.88);
  font-weight: 400;
  letter-spacing: -0.003em;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 6px;
}

.hero__badge {
  position: absolute;
  right: var(--gutter);
  bottom: clamp(100px, 14vh, 180px);
  z-index: 3;
  padding: 18px 22px;
  background: rgba(12,13,16,0.42);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-md);
  display: none;
  flex-direction: column;
  gap: 2px;
  max-width: 200px;
}
@media (min-width: 900px) {
  .hero__badge { display: flex; }
}
.hero__badge-meta {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.65);
}
.hero__badge-num {
  font-family: var(--display);
  font-size: 44px;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--invert);
  margin-top: 4px;
  display: inline-flex;
  align-items: baseline;
  gap: 1px;
}
.hero__badge-pct {
  font-size: 22px;
  color: var(--accent);
  font-weight: 500;
}
.hero__badge-label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  color: rgba(255,255,255,0.62);
  margin-top: 6px;
  line-height: 1.4;
  letter-spacing: -0.005em;
}

.hero__strip {
  position: absolute;
  left: 0; right: 0;
  bottom: 0;
  z-index: 2;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.14);
  background: rgba(12,13,16,0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.hero__strip-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  color: rgba(255,255,255,0.74);
  font-family: var(--sans);
  font-size: 11.5px;
  letter-spacing: 0.04em;
}
.hero__strip-meta { white-space: nowrap; }
.hero__strip-brands {
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.62);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.hero__strip-scroll {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

/* ============================================================================
   INTRO STRIP — sets tone after hero
   ========================================================================== */

.intro {
  padding: clamp(64px, 9vw, 128px) 0;
  background: var(--paper);
}
.intro__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
}
@media (min-width: 900px) {
  .intro__grid {
    grid-template-columns: 160px 1fr 420px;
    gap: 48px;
  }
}
.intro__eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent);
  padding-top: 8px;
}
.intro__title {
  font-family: var(--display);
  font-size: clamp(28px, 3.4vw, 48px);
  font-weight: 400;
  letter-spacing: -0.022em;
  line-height: 1.1;
  color: var(--ink);
}
.intro__body {
  font-family: var(--sans);
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.65;
  color: var(--ink-soft);
  letter-spacing: -0.003em;
}

/* ============================================================================
   SECTION SCAFFOLD
   ========================================================================== */

.section { padding: clamp(64px, 9vw, 128px) 0; }
.section--tight { padding: clamp(48px, 6vw, 80px) 0; }
.section--soft { background: var(--paper-soft); }
.section--dark { background: var(--ink); color: var(--invert); }
.section--dark h2, .section--dark h3, .section--dark h4 { color: var(--invert); }
.section--dark .body-sm { color: rgba(255,255,255,0.7); }

.section-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: end;
  margin-bottom: clamp(40px, 5vw, 72px);
}
@media (min-width: 760px) {
  .section-head { grid-template-columns: 1fr auto; }
}
.section-head__title {
  max-width: 16ch;
  margin-top: 14px;
}
.section-head__intro {
  font-family: var(--sans);
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 36ch;
  letter-spacing: -0.005em;
}
.section--dark .section-head__intro { color: rgba(255,255,255,0.65); }

/* ============================================================================
   CATEGORY GRID — 4 editorial tiles (2x2 with one big)
   ========================================================================== */

.cat-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 760px) {
  .cat-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr 1fr;
    gap: 18px;
    min-height: 720px;
  }
  .cat-tile--lg {
    grid-column: span 2;
    grid-row: span 2;
  }
}
.cat-tile {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 4 / 5;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  color: var(--invert);
  isolation: isolate;
}
@media (min-width: 760px) {
  .cat-tile { aspect-ratio: auto; }
}
.cat-tile__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
  z-index: 0;
}
.cat-tile__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,0.55) 100%);
}
.cat-tile:hover .cat-tile__bg { transform: scale(1.04); }
.cat-tile__body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.cat-tile__count {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: rgba(255,255,255,0.78);
}
.cat-tile__title {
  font-family: var(--display);
  font-size: clamp(24px, 2.8vw, 44px);
  font-weight: 500;
  letter-spacing: -0.022em;
  line-height: 1.0;
  color: var(--invert);
  margin-top: 4px;
}
.cat-tile--lg .cat-tile__title {
  font-size: clamp(36px, 4.5vw, 72px);
}
.cat-tile__cta {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--invert);
  align-self: flex-start;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.32);
}

/* ============================================================================
   FEATURED EDIT — 3 alternating BIG editorial product blocks (KG pattern)
   ========================================================================== */

.edit-stack {
  display: flex;
  flex-direction: column;
  gap: clamp(48px, 7vw, 96px);
}
.edit-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(20px, 3vw, 48px);
  align-items: stretch;
}
@media (min-width: 760px) {
  .edit-block { grid-template-columns: 7fr 5fr; gap: clamp(36px, 5vw, 72px); }
  .edit-block--right .edit-block__media { order: 2; }
  .edit-block--right .edit-block__copy { order: 1; }
}
.edit-block__media {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--paper-soft);
  box-shadow: var(--shadow-md);
}
@media (min-width: 760px) {
  .edit-block__media { aspect-ratio: 6 / 5; }
}
.edit-block__img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s ease;
}
.edit-block:hover .edit-block__img { transform: scale(1.03); }

.edit-block__tag {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 11px;
  background: rgba(255,255,255,0.94);
  color: var(--accent-deep);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: var(--radius-pill);
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: -0.005em;
  box-shadow: var(--shadow-sm);
}
.edit-block__tag--ink { background: var(--ink); color: var(--invert); }
.edit-block__tag .badge__dot { background: var(--accent); }

.edit-block__copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: center;
  padding: 8px 0;
}
.edit-block__brand {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.edit-block__title {
  font-family: var(--display);
  font-size: clamp(28px, 3.4vw, 52px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 0.98;
}
.edit-block__lede {
  font-family: var(--sans);
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.55;
  color: var(--ink-soft);
  letter-spacing: -0.003em;
  max-width: 42ch;
}
.edit-block__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.edit-block__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 14px;
  margin-top: 4px;
  border-top: 1px solid var(--line);
}
.edit-block__price {
  font-family: var(--sans);
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.015em;
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
}
.edit-block__price-old {
  font-size: 14px;
  color: var(--ink-quiet);
  text-decoration: line-through;
  font-weight: 400;
  letter-spacing: 0;
}

/* ============================================================================
   AI FEATURE — full-bleed editorial AI consultant section
   ========================================================================== */

.ai-feature {
  position: relative;
  min-height: 640px;
  height: 90svh;
  max-height: 880px;
  overflow: hidden;
  color: var(--invert);
  display: flex;
  align-items: center;
}
.ai-feature__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.ai-feature__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(95deg, rgba(12,13,16,0.78) 0%, rgba(12,13,16,0.32) 60%, rgba(12,13,16,0) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.32) 0%, rgba(0,0,0,0) 50%);
  z-index: 1;
}
.ai-feature__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 640px;
  padding: 96px 0;
}
.ai-feature__eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent);
}
.ai-feature__title {
  font-family: var(--display);
  color: var(--invert);
  font-size: clamp(36px, 5.2vw, 80px);
  font-weight: 500;
  letter-spacing: -0.028em;
  line-height: 0.96;
}
.ai-feature__lede {
  font-family: var(--sans);
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.55;
  color: rgba(255,255,255,0.82);
  letter-spacing: -0.003em;
  max-width: 56ch;
}
.ai-feature__row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}
.ai-feature__stats {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 24px;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.18);
  max-width: 540px;
}
@media (min-width: 760px) {
  .ai-feature__stats { grid-template-columns: repeat(4, 1fr); }
}
.ai-feature__stats li {
  font-family: var(--sans);
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  line-height: 1.35;
  letter-spacing: -0.005em;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ai-feature__stats-num {
  font-family: var(--display);
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--invert);
  line-height: 1;
}

/* ============================================================================
   PRODUCT GRID & CARDS
   ========================================================================== */

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 16px;
}
@media (min-width: 720px) { .product-grid { grid-template-columns: repeat(3, 1fr); gap: 32px 20px; } }
@media (min-width: 1080px) { .product-grid { grid-template-columns: repeat(4, 1fr); gap: 36px 24px; } }

.product-card { position: relative; display: flex; flex-direction: column; }
.product-card__media {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 14px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}
.product-card:hover .product-card__media {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: rgba(12,13,16,0.12);
}
.product-card__img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: opacity 0.4s ease;
}
.product-card__img--alt { opacity: 0; }
.product-card:hover .product-card__img--primary { opacity: 0; }
.product-card:hover .product-card__img--alt { opacity: 1; }

.product-card__badges {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 2;
}

.product-card__quickadd {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  z-index: 2;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.product-card:hover .product-card__quickadd { opacity: 1; transform: translateY(0); }
.product-card__quickadd .btn {
  background: rgba(255,255,255,0.96);
  color: var(--ink);
  border-color: transparent;
  box-shadow: var(--shadow-md);
}
.product-card__quickadd .btn:hover { background: var(--ink); color: var(--invert); }

.product-card__brand {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--ink-quiet);
  margin-bottom: 4px;
}
.product-card__title {
  font-family: var(--sans);
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.35;
  margin-bottom: 4px;
  letter-spacing: -0.005em;
}
.product-card__sub { font-size: 12.5px; color: var(--ink-soft); margin-bottom: 8px; letter-spacing: -0.005em; }
.product-card__price {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.005em;
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.product-card__price-old {
  font-weight: 400;
  color: var(--ink-quiet);
  text-decoration: line-through;
  font-size: 12.5px;
}

/* ============================================================================
   BRAND SPOTLIGHT — big editorial block + 2 pair tiles
   ========================================================================== */

.brand-edit {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 4vw, 56px);
  margin-bottom: 18px;
}
@media (min-width: 900px) {
  .brand-edit { grid-template-columns: 7fr 5fr; align-items: center; }
}
.brand-edit__visual {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  background-size: cover;
  background-position: center;
  min-height: 360px;
}
@media (min-width: 900px) {
  .brand-edit__visual { aspect-ratio: 5 / 6; }
}
.brand-edit__copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.brand-edit__tag {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}
.brand-edit__name {
  font-family: var(--display);
  font-size: clamp(40px, 5vw, 80px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 0.94;
}
.brand-edit__lede {
  font-family: var(--sans);
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.6;
  color: rgba(255,255,255,0.78);
  max-width: 50ch;
  letter-spacing: -0.003em;
}
.brand-edit__bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.16);
}
.brand-edit__bullets li {
  font-family: var(--sans);
  font-size: 14px;
  color: rgba(255,255,255,0.78);
  letter-spacing: -0.005em;
}
.brand-edit__bullets strong {
  color: var(--invert);
  font-weight: 600;
}

.brand-pair {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 14px;
}
@media (min-width: 760px) {
  .brand-pair { grid-template-columns: 1fr 1fr; }
}
.brand-pair__tile {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  color: var(--invert);
}
.brand-pair__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
  z-index: 0;
}
.brand-pair__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,0.62) 100%);
}
.brand-pair__tile:hover .brand-pair__bg { transform: scale(1.04); }
.brand-pair__body { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 4px; }
.brand-pair__tag {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
}
.brand-pair__name {
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 500;
  letter-spacing: -0.024em;
  color: var(--invert);
  margin: 4px 0 6px;
}
.brand-pair__meta {
  font-family: var(--sans);
  font-size: 12.5px;
  color: rgba(255,255,255,0.7);
  letter-spacing: -0.005em;
}

/* ============================================================================
   INGREDIENT GRID — 5 cards with one BIG
   ========================================================================== */

.ing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 760px) {
  .ing-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 320px;
    gap: 18px;
  }
}
.ing-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--paper-soft);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--invert);
  min-height: 280px;
  padding: 22px;
}
@media (min-width: 760px) {
  .ing-card { padding: 24px; min-height: 0; }
  .ing-card--lg { grid-column: span 2; grid-row: span 2; padding: 32px; }
}
.ing-card__img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s ease;
  z-index: 0;
}
.ing-card__img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 35%, rgba(0,0,0,0.62) 100%);
}
.ing-card:hover .ing-card__img { transform: scale(1.04); }
.ing-card__body { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 4px; }
.ing-card__count {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: rgba(255,255,255,0.78);
}
.ing-card__name {
  font-family: var(--display);
  font-size: clamp(22px, 2.2vw, 32px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.0;
  color: var(--invert);
  margin: 4px 0 0;
}
.ing-card--lg .ing-card__name {
  font-size: clamp(32px, 3.8vw, 56px);
}
.ing-card__lede {
  font-family: var(--sans);
  font-size: 14.5px;
  line-height: 1.5;
  color: rgba(255,255,255,0.82);
  margin-top: 8px;
  max-width: 32ch;
  letter-spacing: -0.003em;
}

/* ============================================================================
   ROUTINE — 3 lifestyle steps
   ========================================================================== */

.routine {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 760px) {
  .routine { grid-template-columns: repeat(3, 1fr); gap: 22px; }
}
.routine__step {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.routine__img {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  background-size: cover;
  background-position: center;
  margin-bottom: 6px;
}
.routine__num {
  font-family: var(--display);
  font-size: clamp(40px, 4vw, 64px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--accent);
  margin-top: 4px;
}
.routine__title {
  font-family: var(--display);
  font-size: clamp(22px, 2.2vw, 32px);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.routine__body {
  font-family: var(--sans);
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-soft);
  letter-spacing: -0.003em;
  max-width: 32ch;
}
.routine__product {
  font-family: var(--sans);
  font-size: 12.5px;
  color: var(--ink-quiet);
  letter-spacing: -0.005em;
  padding-top: 8px;
  border-top: 1px solid var(--line);
  margin-top: 4px;
}
.routine__product strong { color: var(--ink); font-weight: 600; }

.routine__cta {
  text-align: center;
  margin-top: clamp(28px, 4vw, 48px);
}

/* ============================================================================
   COMMUNITY VIDEOS
   ========================================================================== */

.community { position: relative; }
.community__rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(240px, 26vw, 320px);
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
  scrollbar-width: thin;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  margin-left: calc(var(--gutter) * -1);
  margin-right: calc(var(--gutter) * -1);
}
.video-card {
  position: relative;
  aspect-ratio: 9 / 14;
  background: var(--card) center/cover no-repeat;
  border-radius: var(--radius-lg);
  overflow: hidden;
  scroll-snap-align: start;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.video-card__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--paper-mid);
}
.video-card__poster { z-index: 1; transition: opacity 0.3s ease; background-size: cover; background-position: center; }
.video-card.is-playing .video-card__poster { opacity: 0; pointer-events: none; }
.video-card__verified {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px 5px 7px;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: var(--radius-pill);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
  letter-spacing: -0.005em;
}
.video-card__verified-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--invert);
}
.video-card__verified-icon svg { width: 9px; height: 9px; }

.video-card__play {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-pill);
  background: rgba(12,13,16,0.7);
  color: var(--invert);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transition: background 0.18s ease, transform 0.12s ease;
  backdrop-filter: blur(4px);
}
.video-card__play:hover { background: rgba(12,13,16,0.9); }

.video-card__product {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 3;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: var(--radius-md);
  padding: 8px 8px 8px 10px;
  display: grid;
  grid-template-columns: 40px 1fr auto;
  gap: 10px;
  align-items: center;
  text-decoration: none;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}
.video-card__product-img {
  width: 40px;
  height: 40px;
  background: var(--paper-soft) center/cover no-repeat;
  border-radius: 10px;
  flex-shrink: 0;
}
.video-card__product-title {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 2px;
  letter-spacing: -0.005em;
}
.video-card__product-price {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-soft);
}
.video-card__product-add {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  padding: 7px 10px;
  background: var(--ink);
  color: var(--invert);
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

/* ============================================================================
   STORY / ABOUT — KG editorial spread
   ========================================================================== */

.story-edit {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}
@media (min-width: 900px) {
  .story-edit { grid-template-columns: 5fr 6fr; gap: clamp(48px, 6vw, 96px); }
}
.story-edit__media {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.story-edit__img {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  background-size: cover;
  background-position: center;
}
.story-edit__caption {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--ink-quiet);
  letter-spacing: -0.005em;
  text-align: right;
}
.story-edit__copy { display: flex; flex-direction: column; gap: 18px; }
.story-edit__title {
  font-family: var(--display);
  font-size: clamp(32px, 4.2vw, 64px);
  font-weight: 500;
  letter-spacing: -0.026em;
  line-height: 1.0;
}
.story-edit__lede {
  font-family: var(--sans);
  font-size: clamp(16px, 1.3vw, 18px);
  line-height: 1.55;
  color: var(--ink);
  letter-spacing: -0.003em;
  max-width: 52ch;
}
.story-edit__body {
  font-family: var(--sans);
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--ink-soft);
  letter-spacing: -0.003em;
  max-width: 52ch;
}
.story-edit__facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 24px;
  padding-top: 22px;
  margin-top: 6px;
  border-top: 1px solid var(--line);
}
@media (min-width: 760px) {
  .story-edit__facts { grid-template-columns: repeat(4, 1fr); }
}
.story-edit__fact-num {
  display: block;
  font-family: var(--display);
  font-size: clamp(22px, 2.2vw, 32px);
  font-weight: 500;
  letter-spacing: -0.022em;
  line-height: 1;
  color: var(--ink);
}
.story-edit__fact-label {
  display: block;
  font-family: var(--sans);
  font-size: 12.5px;
  color: var(--ink-soft);
  letter-spacing: -0.005em;
  margin-top: 6px;
  line-height: 1.35;
}

/* ============================================================================
   JOURNAL — 3 article tiles
   ========================================================================== */

.journal {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 760px) {
  .journal { grid-template-columns: repeat(3, 1fr); gap: 22px; }
}
.journal__card { display: flex; flex-direction: column; gap: 16px; }
.journal__img {
  aspect-ratio: 5 / 4;
  border-radius: var(--radius-lg);
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}
.journal__card:hover .journal__img { transform: scale(1.02); }
.journal__body { display: flex; flex-direction: column; gap: 8px; padding: 0 4px; }
.journal__meta {
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-quiet);
}
.journal__title {
  font-family: var(--display);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 500;
  letter-spacing: -0.018em;
  line-height: 1.1;
}
.journal__lede {
  font-family: var(--sans);
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--ink-soft);
  letter-spacing: -0.003em;
  max-width: 32ch;
}

/* ============================================================================
   NEWSLETTER
   ========================================================================== */

.newsletter {
  text-align: center;
  max-width: 660px;
  margin: 0 auto;
  padding: clamp(40px, 6vw, 64px);
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}
.newsletter__eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.newsletter__title { margin-bottom: 14px; }
.newsletter__lede {
  font-family: var(--sans);
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin-bottom: 28px;
  letter-spacing: -0.003em;
  max-width: 44ch;
  margin-left: auto;
  margin-right: auto;
}
.newsletter__form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px;
  padding: 6px;
  background: var(--paper-soft);
  border-radius: var(--radius-pill);
  align-items: center;
}
.newsletter__input {
  font-family: var(--sans);
  font-size: 14.5px;
  padding: 12px 18px;
  background: transparent;
  border: none;
  color: var(--ink);
  outline: none;
}
.newsletter__input::placeholder { color: var(--ink-quiet); }
.newsletter__submit {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.005em;
  padding: 12px 22px;
  color: var(--invert);
  background: var(--accent);
  border-radius: var(--radius-pill);
  transition: background 0.18s ease;
}
.newsletter__submit:hover { background: var(--accent-deep); }
.newsletter__legal {
  font-family: var(--sans);
  font-size: 11.5px;
  color: var(--ink-quiet);
  margin-top: 14px;
  letter-spacing: -0.005em;
}

/* ============================================================================
   FOOTER
   ========================================================================== */

.footer {
  background: var(--ink);
  color: var(--invert);
  padding: clamp(56px, 7vw, 96px) 0 32px;
}
.footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
@media (min-width: 760px) {
  .footer__top { grid-template-columns: 1.5fr repeat(4, 1fr); gap: 40px; }
}
.footer__col-title {
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.55);
  margin-bottom: 14px;
}
.footer__list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer__list a {
  font-family: var(--sans);
  font-size: 13.5px;
  color: var(--invert);
  opacity: 0.82;
  letter-spacing: -0.005em;
}
.footer__list a:hover { opacity: 1; color: var(--accent); }

.footer__brandmark {
  font-family: var(--sans);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.footer__brandmark::before {
  content: "";
  width: 22px;
  height: 22px;
  border-radius: 7px;
  background: radial-gradient(circle at 30% 30%, #ffb4a8 0%, var(--accent) 55%, var(--accent-deep) 100%);
}
.footer__manifesto {
  font-family: var(--sans);
  font-size: 13.5px;
  line-height: 1.55;
  color: rgba(255,255,255,0.7);
  max-width: 34ch;
}

.footer__bottom {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-family: var(--sans);
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  letter-spacing: -0.005em;
}

.footer__payments { display: flex; gap: 8px; align-items: center; }
.footer__payment-tag {
  font-family: var(--sans);
  padding: 5px 10px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 7px;
  font-size: 11px;
  color: rgba(255,255,255,0.7);
}

/* ============================================================================
   SCROLLBAR
   ========================================================================== */

::-webkit-scrollbar { height: 6px; width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--line-strong); border-radius: 999px; }
::-webkit-scrollbar-thumb:hover { background: var(--ink-soft); }
