/* ===== GMC FONT — Soft pillow theme (Pastel) =====
   Rounded, fluffy, puffy cards with multi-layer soft shadows. */

@font-face {
  font-family: "GMC Cocoa Banana";
  src: url("assets/GMCCocoaBananaBold.ttf") format("truetype");
  font-weight: 400 900;
  font-style: normal;
  font-display: swap;
}

:root {
  /* ====== PALETTE — Pastel rainbow on ivory ====== */
  --bg:        #FEFEF6;    /* main page — soft ivory */
  --bg-soft:   #FCFCEF;    /* a touch warmer */
  --paper:     #F9F8EA;    /* alt section bg */
  --ivory:     #FDFDF1;
  --white:     #FFFFFF;

  /* Accent palette (from references — pastel rainbow) */
  --pink:      #FF9EBB;    /* hot pink */
  --pink-soft: #FFCCDC;    /* soft pink */
  --pink-deep: #F47BA0;    /* darker pink for shadows/hover */

  --mint:      #B5E8C8;
  --mint-deep: #8FD9AB;

  --butter:    #FFE189;    /* warm yellow */
  --butter-deep:#FFC957;

  --sky:       #B8DCF5;    /* baby blue */
  --sky-deep:  #8FC7EB;

  --lilac:     #E0B5F0;    /* soft magenta */
  --lilac-deep:#C58FE0;

  --peach:     #FFCBA8;
  --peach-deep:#FFA877;

  /* Aliases for back-compat with components */
  --coral:     var(--pink);
  --coral-deep:var(--pink-deep);
  --tan:       var(--butter);
  --tan-deep:  var(--butter-deep);
  --sage:      var(--mint);
  --slate:     var(--sky-deep);
  --rose:      var(--pink-soft);
  --lemon:     var(--butter);
  --lime:      var(--mint);
  --salmon:    var(--peach);
  --cream:     var(--bg-soft);

  /* Ink — softer, slightly muted */
  --ink:       #5A3B3A;       /* warm brown */
  --ink-soft:  #8A6F6E;
  --ink-mute:  #BFA89A;
  --line:      #F5E2C8;       /* hairline warm */
  --line-soft: #FBF0DC;

  /* Type */
  --f-display: "Prompt", system-ui, sans-serif;
  --f-display-2: "Prompt", system-ui, sans-serif;
  --f-body:    "Prompt", system-ui, sans-serif;
  --f-mono:    ui-monospace, "SFMono-Regular", monospace;
  --w-h: 500;
  --w-b: 400;

  /* Radius — generous & pillowy */
  --r-sm: 14px;
  --r-md: 20px;
  --r-lg: 28px;
  --r-xl: 36px;
  --r-pill: 999px;

    /* Soft pillow shadows — restored, subtle and warm */
  --pillow:
    0 2px 0 rgba(255,255,255,.95) inset,
    0 -4px 10px rgba(218,175,120,.08) inset,
    0 14px 28px rgba(218,175,120,.16),
    0 4px 10px rgba(218,175,120,.10);
  --pillow-sm:
    0 1px 0 rgba(255,255,255,.9) inset,
    0 6px 14px rgba(218,175,120,.12),
    0 2px 4px rgba(218,175,120,.08);
  --pillow-lg:
    0 2px 0 rgba(255,255,255,1) inset,
    0 -6px 14px rgba(218,175,120,.10) inset,
    0 22px 40px rgba(218,175,120,.20),
    0 8px 16px rgba(218,175,120,.12);
  --pillow-press: 0 2px 4px rgba(218,175,120,.08);
  --pillow-puffy:
    0 2px 0 rgba(255,255,255,1) inset,
    0 -8px 18px rgba(218,175,120,.10) inset,
    0 20px 40px rgba(218,175,120,.18),
    0 8px 16px rgba(218,175,120,.10);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--f-body);
  font-weight: var(--w-b);
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 { font-weight: var(--w-h); letter-spacing: -.005em; line-height: 1.2; }

button { font: inherit; cursor: pointer; }
button:disabled { cursor: wait; opacity: .72; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ===== App shell ===== */
.app-shell { min-height: 100vh; }

/* Mobile phone wrapper */
.viewport-mobile {
  display: flex;
  justify-content: center;
  padding: 24px 12px 80px;
  background:
    radial-gradient(circle at 25% 20%, #FFE3EC 0 200px, transparent 220px),
    radial-gradient(circle at 75% 80%, #FFE3EC 0 220px, transparent 240px),
    var(--bg);
}
.phone {
  width: 390px;
  height: 844px;
  border-radius: 50px;
  background: var(--ink);
  padding: 12px;
  box-shadow: 0 40px 80px rgba(244,123,160,.35), inset 0 0 0 2px #2c1e25;
  position: relative;
}
.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 40px;
  background: var(--bg);
  overflow: hidden;
  overflow-y: auto;
  position: relative;
  scrollbar-width: thin;
}
.phone-notch {
  position: absolute;
  top: 20px; left: 50%;
  transform: translateX(-50%);
  width: 110px; height: 30px;
  background: #2c1e25;
  border-radius: 20px;
  z-index: 60;
}
.phone-status {
  height: 48px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 28px 0 30px;
  font-size: 14px; font-weight: 500;
  color: var(--ink);
  position: sticky; top: 0; z-index: 50;
  background: var(--bg);
}

/* Type helpers */
.display, .display-2 {
  font-family: var(--f-display);
  font-weight: var(--w-h);
  letter-spacing: -.01em;
}
.eyebrow {
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--pink-deep);
}

/* Pillow sticker badge */
.sticker {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  background: var(--white);
  font-weight: 500; font-size: 12px;
  color: var(--pink-deep);
  box-shadow: var(--pillow-sm);
}
.sticker.coral, .sticker.pink { background: var(--pink); color: var(--white); }
.sticker.lemon { background: var(--butter); color: var(--ink); }
.sticker.lime  { background: var(--mint); color: var(--ink); }
.sticker.salmon{ background: var(--peach); color: var(--ink); }
.sticker.sky   { background: var(--sky); color: var(--ink); }
.sticker.lilac { background: var(--lilac); color: var(--white); }

/* Pillow buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 26px;
  border: 1px solid var(--ink);
  border-radius: var(--r-pill);
  background: var(--white);
  color: var(--ink);
  font-weight: 500;
  font-size: 14px;
  box-shadow: var(--pillow-sm);
  transition: transform .12s ease, box-shadow .15s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--pillow); }
.btn:active { transform: translateY(1px); box-shadow: var(--pillow-press); }
.btn.coral { background: var(--pink); color: var(--white); }
.btn.salmon { background: var(--peach); color: var(--ink); }
.btn.sky    { background: var(--sky); color: var(--ink); }
.btn.lemon  { background: var(--butter); color: var(--ink); }
.btn.lime   { background: var(--mint); color: var(--ink); }
.btn.ink    { background: var(--ink); color: var(--white); }
.btn.ghost  { background: transparent; box-shadow: none; color: var(--ink-soft); }
.btn.ghost:hover { background: var(--white); box-shadow: var(--pillow-sm); color: var(--ink); }
.btn.sm { padding: 9px 18px; font-size: 13px; }
.btn.lg { padding: 18px 32px; font-size: 15px; }
.btn.block { width: 100%; }

/* Pillow field */
.field {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  background: var(--white);
  box-shadow: var(--pillow-sm);
  transition: box-shadow .15s;
}
.field:focus-within { box-shadow: var(--pillow); }
.field input, .field select, .field textarea {
  flex: 1; border: 0; background: transparent; outline: 0;
  font: inherit; color: inherit; padding: 0;
}
.field.flat { border-radius: var(--r-md); }

/* Pillow card */
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--pillow-sm);
}

/* Sections */
.section { padding: 88px 0; }
.section-tight { padding: 56px 0; }
.container {
  width: min(1320px, calc(100% - 48px));
  margin: 0 auto;
}
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }

/* ===== NAV ===== */
.nav {
  position: sticky; top: 0; z-index: 40;
  background: var(--bg);
  border-bottom: 0;
  padding-bottom: 4px;
}
.nav-inner {
  display: flex; align-items: center; gap: 24px;
  width: min(1320px, calc(100% - 48px));
  margin: 0 auto;
  padding: 16px 0;
}
.logo {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -.01em;
  color: var(--ink);
}
.logo-mark {
  width: 36px; height: 36px;
  border-radius: 12px;
  background: var(--pink);
  display: grid; place-items: center;
  color: var(--white);
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 18px;
  box-shadow: var(--pillow-sm);
}
.nav-links { display: flex; gap: 4px; align-items: center; flex: 1; }
.nav-links a {
  padding: 9px 16px; border-radius: 999px;
  font-weight: 400; font-size: 14px;
  color: var(--ink-soft);
  white-space: nowrap;
  transition: all .15s;
}
.nav-links a:hover { color: var(--ink); background: var(--white); box-shadow: var(--pillow-sm); }
.nav-links a.active { background: var(--white); color: var(--pink-deep); box-shadow: var(--pillow-sm); font-weight: 500; }
.nav-right { display: flex; align-items: center; gap: 10px; }
.icon-btn {
  width: 42px; height: 42px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--white);
  display: grid; place-items: center;
  position: relative;
  box-shadow: var(--pillow-sm);
  color: var(--ink);
  transition: transform .12s, box-shadow .15s;
}
.icon-btn:hover { transform: translateY(-2px); box-shadow: var(--pillow); }
.icon-btn .badge {
  position: absolute; top: -4px; right: -4px;
  background: var(--pink); color: var(--white);
  border: 2px solid var(--bg);
  border-radius: 999px;
  min-width: 22px; height: 22px;
  display: grid; place-items: center;
  font-size: 11px; font-weight: 500; padding: 0 5px;
  box-shadow: 0 2px 6px rgba(244,123,160,.4);
}
.search-pill {
  display: flex; align-items: center; gap: 10px;
  flex: 1; max-width: 380px;
  padding: 11px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink-soft);
  box-shadow: var(--pillow-sm);
}
.search-pill input { flex: 1; border: 0; outline: 0; background: transparent; font: inherit; color: var(--ink); }

/* Marquee — pillow */
.marquee {
  background: linear-gradient(90deg, var(--pink) 0%, var(--peach) 50%, var(--butter) 100%);
  color: var(--white);
  border-bottom: 0;
  overflow: hidden;
  font-family: var(--f-body);
  font-weight: 500;
  letter-spacing: .06em;
  font-size: 12px;
}
.marquee-track {
  display: inline-flex; gap: 36px;
  padding: 10px 0;
  animation: marq 40s linear infinite;
  white-space: nowrap;
}
.marquee-item { display: inline-flex; align-items: center; gap: 36px; }
.marquee-item .star { color: var(--butter); }
@keyframes marq { to { transform: translateX(-50%); } }

/* ===== Hero v1 — poster stage ===== */
.hero1 {
  position: relative;
  min-height: min(760px, calc(100vh - 138px));
  overflow: hidden;
  background: var(--bg);
}
.hero1::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,250,241,.98) 0%, rgba(255,250,241,.96) 31%, rgba(255,250,241,.42) 56%, rgba(255,250,241,.08) 100%);
  content: "";
  pointer-events: none;
  z-index: 1;
}
.hero1::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, var(--bg) 100%);
  content: "";
  pointer-events: none;
  z-index: 1;
}
.hero1-art {
  position: absolute;
  inset: 0;
  background: var(--bg);
}
.hero1-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero1-poster {
  position: absolute;
  width: auto;
  max-width: none;
  border: 1px solid rgba(80,53,51,.14);
  border-radius: 24px;
  box-shadow: 0 28px 70px rgba(80,53,51,.18);
  object-fit: cover;
}
.hero1-poster-main {
  top: 32px;
  right: 18px;
  width: clamp(430px, 45vw, 690px);
  transform: rotate(3deg);
}
.hero1-poster-side {
  right: min(41vw, 560px);
  bottom: -150px;
  width: clamp(260px, 28vw, 420px);
  transform: rotate(-10deg);
}
.hero1-sample {
  position: absolute;
  color: var(--ink);
  filter: drop-shadow(0 10px 20px rgba(80,53,51,.12));
  line-height: .9;
  white-space: nowrap;
}
.hero1-sample-th {
  top: 18%;
  right: 38%;
  color: var(--pink-deep);
  font-size: clamp(54px, 6vw, 104px);
  transform: rotate(-6deg);
}
.hero1-sample-en {
  right: 7%;
  bottom: 6%;
  color: var(--coral-deep);
  font-size: clamp(38px, 4vw, 74px);
  transform: rotate(4deg);
}
.hero1-inner {
  position: relative;
  z-index: 2;
  width: min(1320px, calc(100% - 48px));
  min-height: inherit;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  padding: 48px 0 200px;
}
.hero1-copy {
  max-width: 610px;
}
.hero1-crumbs {
  display: flex; gap: 14px; flex-wrap: wrap;
  font-size: 13px; color: var(--ink-soft); font-weight: 500;
}
.hero1-crumbs > span:nth-child(even) { color: var(--ink-mute); }
.hero1 h1 {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(40px, 5vw, 78px);
  line-height: .98;
  margin: 18px 0 22px;
  letter-spacing: 0;
}
.hero1 .sub { font-size: 15px; max-width: 540px; color: var(--ink-soft); margin-bottom: 30px; line-height: 1.72; }
.hero1 .ctas { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; margin-bottom: 32px; }
.hero1-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  color: var(--ink-soft);
  font-size: 13px;
}
.hero1-trust span {
  display: flex;
  align-items: center;
  gap: 7px;
}
.hero1-trust svg {
  color: var(--coral-deep);
}

/* Hero v2 — color band, pillows */
.hero2 { border-bottom: 0; background: var(--bg); padding-bottom: 32px; }
.hero2-band {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  width: min(1320px, calc(100% - 48px));
  margin: 0 auto;
}
.hero2-cell {
  position: relative;
  padding: 32px 28px;
  border-right: 0;
  border-radius: var(--r-lg);
  min-height: 360px;
  display: flex; flex-direction: column; justify-content: space-between;
  overflow: hidden;
  box-shadow: var(--pillow);
}
.hero2-cell .sample {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 64px;
  line-height: .92;
  color: var(--ink);
}
.hero2-cell .meta { display: flex; justify-content: space-between; align-items: end; }
.hero2-cell .meta b { font-family: var(--f-display); font-weight: 500; font-size: 18px; }
.hero2-cell .meta .hex { font-family: var(--f-mono); font-size: 11px; color: var(--ink); opacity: .55; }
.hero2-headline {
  width: min(1320px, calc(100% - 48px));
  margin: 0 auto;
  padding: 64px 0 40px;
  display: grid; grid-template-columns: 2fr 1fr; gap: 48px; align-items: end;
}
.hero2-headline h1 {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(34px, 4.2vw, 64px);
  margin: 0; line-height: 1.05;
  letter-spacing: -.02em;
}

/* Section title */
.sec-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 36px;
  gap: 24px; flex-wrap: wrap;
}
.sec-head .title {
  font-family: var(--f-display);
  font-weight: var(--w-h);
  font-size: clamp(24px, 2.6vw, 36px);
  line-height: 1.05;
  letter-spacing: -.02em;
  margin: 0;
}
.sec-head .desc { color: var(--ink-soft); max-width: 420px; font-size: 15px; }

/* Flat font card with 1:1 image preview */
.fcard {
  background: var(--white);
  border: 0;
  border-radius: 24px;
  padding: 10px 10px 0;
  overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: var(--pillow-sm);
  transition: transform .2s ease, border-color .2s ease;
  cursor: pointer;
  position: relative;
}
.fcard:hover { transform: translateY(-4px); box-shadow: var(--pillow); }
.fcard .preview {
  aspect-ratio: 1 / 1;
  width: 100%;
  padding: 0;
  display: grid; place-items: center;
  text-align: center;
  border-radius: 18px;
  position: relative;
  overflow: hidden;
}
.fcard .preview > img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.fcard .preview::after { display: none; }
.fcard .info { padding: 18px 14px 20px; display: flex; flex-direction: column; gap: 10px; }
.fcard .row { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.fcard h3 { margin: 0; font-family: var(--f-display); font-weight: 500; font-size: 14px; letter-spacing: -.01em; }
.fcard .tags { display: flex; gap: 6px; flex-wrap: wrap; }
.fcard .tag {
  font-size: 11px; font-weight: 400;
  padding: 4px 11px;
  border-radius: 999px;
  background: var(--bg);
  color: var(--ink-soft);
  border: 1px solid var(--line-soft);
  box-shadow: none;
}
.fcard .price {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 14px;
  color: var(--pink-deep);
}
.fcard .price s { color: var(--ink-mute); font-size: 13px; margin-right: 6px; font-weight: 400; }

/* Big feature card — flat */
.feat {
  border: 0;
  border-radius: 28px;
  padding: 36px;
  background: var(--pink);
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 18px;
  box-shadow: var(--pillow);
  cursor: pointer;
  color: var(--white);
  position: relative;
  overflow: hidden;
  transition: transform .2s;
}
.feat:hover { transform: translateY(-3px); }
.feat::before, .feat::after { display: none; }
.feat .big { font-family: var(--f-display); font-weight: 500; font-size: 80px; line-height: .9; }
.feat .foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; position: relative; z-index: 2; }
.feat .foot h3 { margin: 0; font-family: var(--f-display); font-weight: 500; font-size: 22px; }

/* Pill chips */
.pill-row { display: flex; flex-wrap: wrap; gap: 10px; }
.pill {
  border: 1px solid var(--line);
  padding: 9px 18px;
  border-radius: 999px;
  background: var(--white);
  font-weight: 400;
  font-size: 13px;
  color: var(--ink-soft);
  cursor: pointer;
  box-shadow: var(--pillow-sm);
  transition: all .15s;
  white-space: nowrap;
}
.pill:hover { color: var(--pink-deep); border-color: var(--pink); transform: translateY(-1px); }
.pill.active { background: var(--pink); color: var(--white); font-weight: 500; border-color: var(--pink); }

/* Scrollable category bar (All Fonts) */
.cat-scroll {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  padding: 4px 32px 16px 4px;
  margin: 0 -4px;
  scrollbar-width: thin;
  scrollbar-color: var(--line) transparent;
  mask-image: linear-gradient(to right, transparent 0, black 12px, black calc(100% - 36px), transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0, black 12px, black calc(100% - 36px), transparent 100%);
}
.cat-scroll::-webkit-scrollbar { height: 6px; }
.cat-scroll::-webkit-scrollbar-track { background: transparent; }
.cat-scroll::-webkit-scrollbar-thumb { background: var(--line); border-radius: 999px; }
.cat-scroll > * { flex-shrink: 0; scroll-snap-align: start; }

/* Filters */
.filters {
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  background: var(--white);
  padding: 26px;
  box-shadow: var(--pillow);
  position: sticky; top: 92px;
}
.filter-group { padding: 16px 0; border-bottom: 1px solid var(--line-soft); }
.filter-group:first-child { padding-top: 4px; }
.filter-group:last-child { border-bottom: 0; padding-bottom: 4px; }
.filter-group h4 {
  margin: 0 0 12px;
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 15px;
}

/* Tester */
.tester {
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  background: var(--white);
  overflow: hidden;
  box-shadow: var(--pillow-lg);
}
.tester-bar {
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
  padding: 18px 26px;
  border-bottom: 1px solid var(--line-soft);
  background: var(--bg-soft);
}
.tester-bar .group { display: flex; align-items: center; gap: 8px; }
.tester-bar .group label { font-size: 11px; font-weight: 500; color: var(--pink-deep); letter-spacing: .08em; text-transform: uppercase; }
.tester-input {
  width: 100%;
  min-height: 240px;
  padding: 40px 36px;
  font-size: 96px;
  line-height: 1.05;
  border: 0; outline: 0;
  background: transparent;
  resize: vertical;
  color: var(--ink);
  font-family: inherit;
  caret-color: var(--pink);
}
.range {
  -webkit-appearance: none; appearance: none;
  width: 130px; height: 6px;
  background: var(--line);
  border: 0;
  border-radius: 999px;
  outline: 0;
  box-shadow: inset 0 1px 2px rgba(244,123,160,.15);
}
.range::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 20px; height: 20px;
  background: var(--white); border: 0; border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(244,123,160,.4);
}
.color-swatch {
  width: 24px; height: 24px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  box-shadow: var(--pillow-sm);
  transition: transform .12s;
}
.color-swatch:hover { transform: scale(1.1); }
.color-swatch.on { box-shadow: 0 0 0 3px var(--white), 0 0 0 5px var(--pink); }

/* License blocks (Specimens panel) */
.license-block {
  margin-bottom: 28px;
}
.license-block h4 {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 17px;
  margin: 0 0 12px;
  color: var(--ink);
  letter-spacing: 0;
}
.license-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex; flex-direction: column;
  gap: 10px;
}
.license-block ul li {
  position: relative;
  padding-left: 22px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.7;
}
.license-block ul li::before {
  content: "•";
  position: absolute;
  left: 4px; top: 0;
  color: var(--pink);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
}
.license-block ul li b { color: var(--pink-deep); font-weight: 500; }
.license-foot {
  text-align: center;
  font-size: 12px;
  color: var(--ink-mute);
  padding-top: 18px;
  border-top: 1px solid var(--line-soft);
  margin-top: 8px;
}
.phone-screen .license-block h4 { font-size: 15px; }
.phone-screen .license-block ul li { font-size: 13px; padding-left: 18px; line-height: 1.65; }
.phone-screen .license-foot { font-size: 11px; }

/* Detail page on mobile */
.phone-screen .detail-h1 { font-size: 44px !important; line-height: 1; }
.phone-screen .detail-meta { font-size: 12px !important; gap: 8px !important; }
.phone-screen .detail-meta span { font-size: 12px; }
.phone-screen .detail-actions { gap: 8px !important; flex-wrap: wrap !important; }
.phone-screen .detail-actions .btn { padding: 9px 16px; font-size: 13px; }
.phone-screen .detail-actions .btn.coral { padding: 11px 16px; }
.phone-screen .tester-input { font-size: 36px !important; min-height: 110px; padding: 16px 18px; }
.phone-screen .tester-bar { padding: 12px 14px; gap: 12px; }
.phone-screen .tester-bar .group { gap: 6px; }
.phone-screen .tester-bar .group label { font-size: 10px; }
.phone-screen .tester-bar .range { width: 100px; }
.phone-screen .tester-bar .color-swatch { width: 20px; height: 20px; }
.phone-screen .tabs button { padding: 7px 12px; font-size: 12px; }
.phone-screen .tabs { font-size: 12px; }

/* Weight rows on mobile — stack the meta + sample */
.phone-screen .weight-row { grid-template-columns: 1fr !important; gap: 6px !important; padding: 16px 18px !important; }
.phone-screen .weight-row > :last-child { display: none; }
.phone-screen .weight-row .weight-meta { display: flex; align-items: baseline; gap: 8px; }
.phone-screen .weight-row .weight-meta br { display: none; }
.phone-screen .weight-row .weight-sample { font-size: 28px !important; }

/* License tier rows on mobile — stack price below */
.phone-screen .tier-row { grid-template-columns: 24px 1fr !important; }
.phone-screen .tier-row > :last-child { grid-column: 1 / -1; text-align: right; padding-left: 38px; }
.phone-screen .tier-row .desc { font-size: 12px; }

/* Footer */
.footer {
  background: var(--white); color: var(--ink-soft);
  border-top: 0;
  padding: 80px 0 28px;
  border-radius: 36px 36px 0 0;
  box-shadow: 0 -8px 24px rgba(244,123,160,.08);
  margin-top: 24px;
}
.footer a { color: var(--ink-soft); transition: color .12s; }
.footer a:hover { color: var(--pink-deep); }
.footer .cols {
  width: min(1320px, calc(100% - 48px));
  margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer h5 {
  font-family: var(--f-display); font-weight: 500; font-size: 14px;
  margin: 0 0 16px;
  color: var(--ink);
}
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; font-size: 13px; }
.footer .legal {
  width: min(1320px, calc(100% - 48px));
  margin: 56px auto 0;
  border-top: 1px solid var(--line-soft);
  padding-top: 20px;
  display: flex; justify-content: space-between;
  font-size: 12px; color: var(--ink-mute);
}
.foot-mark {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--pink);
  display: grid; place-items: center;
  color: var(--white);
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 22px;
  box-shadow: var(--pillow-sm);
}

/* Scroll row */
.scroll-x {
  display: flex; gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 12px;
  margin: 0 -24px; padding-left: 24px; padding-right: 24px;
}
.scroll-x > * { scroll-snap-align: start; flex: 0 0 auto; }

/* ===== Mobile ===== */
.phone-screen .nav-inner { padding: 12px 14px; gap: 8px; }
.phone-screen .nav-links { display: none; }
.phone-screen .search-pill { display: none; }
.phone-screen .container { width: calc(100% - 28px); padding: 0; }
.phone-screen .section { padding: 36px 0; }
.phone-screen .section-tight { padding: 28px 0; }
.phone-screen .grid-2 { grid-template-columns: 1fr; }
.phone-screen .grid-3 { grid-template-columns: repeat(3, 1fr); gap: 8px; }
.phone-screen .grid-4 { grid-template-columns: repeat(3, 1fr); gap: 8px; }
/* Reviews grid */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
/* Reviews on phone preview = horizontal scroll */
.phone-screen .reviews-grid {
  display: flex;
  overflow-x: auto;
  gap: 14px;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
  grid-template-columns: unset;
}
.phone-screen .reviews-grid > * {
  flex: 0 0 76%;
  scroll-snap-align: start;
}

/* Hero on mobile */
.phone-screen .hero1 {
  min-height: 700px;
}
.phone-screen .hero1::after {
  background: linear-gradient(180deg, rgba(255,250,241,.06) 0%, rgba(255,250,241,.28) 38%, rgba(255,250,241,.97) 64%, rgba(255,250,241,1) 100%);
}
.phone-screen .hero1-inner {
  width: calc(100% - 28px);
  padding: 24px 0 30px;
}
.phone-screen .hero1-poster-main {
  left: 14px;
  right: auto;
  top: 18px;
  width: calc(100% - 28px);
}
.phone-screen .hero1-poster-side {
  display: none;
}
.phone-screen .hero1-sample-th {
  left: 18px;
  right: auto;
  top: 332px;
  font-size: 42px;
}
.phone-screen .hero1-sample-en {
  display: none;
}
.phone-screen .hero1-crumbs { font-size: 11px; gap: 8px; }
.phone-screen .hero1 h1 { font-size: 42px; line-height: 1; margin: 12px 0 16px; }
.phone-screen .hero1 .sub { font-size: 14px; max-width: none; margin: 0 0 22px; line-height: 1.65; }
.phone-screen .hero1 .ctas { margin-bottom: 22px; }
.phone-screen .hero1 .btn.lg { padding: 13px 22px; font-size: 14px; }
.phone-screen .hero1-trust {
  gap: 9px 14px;
  font-size: 12px;
}

/* Hero v2 on mobile */
.phone-screen .hero2-band { grid-template-columns: 1fr 1fr; gap: 10px; padding: 0 14px; }
.phone-screen .hero2-cell { border-radius: var(--r-md); min-height: 150px; padding: 16px; }
.phone-screen .hero2-cell .sample { font-size: 44px; }
.phone-screen .hero2-cell .meta b { font-size: 14px; }
.phone-screen .hero2-headline { grid-template-columns: 1fr; padding: 24px 0 16px; gap: 14px; }
.phone-screen .hero2-headline h1 { font-size: 38px; }

/* Section header on mobile */
.phone-screen .sec-head { margin-bottom: 20px; flex-direction: column; align-items: flex-start; gap: 8px; }
.phone-screen .sec-head .title { font-size: 28px; }
.phone-screen .sec-head .desc { font-size: 13px; }

/* Font card on mobile — compact, soft, fluffy */
.phone-screen .fcard {
  padding: 4px 4px 0;
  border-radius: 14px;
}
.phone-screen .fcard .preview { border-radius: 10px; }
.phone-screen .fcard .info { padding: 7px 5px 9px; gap: 5px; }
.phone-screen .fcard h3 { font-size: 11px; line-height: 1.2; }
.phone-screen .fcard .row { font-size: 10px; gap: 3px; align-items: center; }
.phone-screen .fcard .row > div { gap: 3px; }
.phone-screen .fcard .tags { display: none; }
.phone-screen .fcard .info .row:nth-child(2) { display: flex !important; }
.phone-screen .fcard .price { font-size: 12px; }
.phone-screen .fcard .price s { font-size: 10px; margin-right: 2px; }
/* ปุ่มในการ์ด 3 คอลัม — icon-only */
.phone-screen .fcard .btn.coral { padding: 6px 7px; font-size: 0; gap: 0; }
.phone-screen .fcard .btn.coral svg { display: block; }
.phone-screen .fcard .btn.sm:not(.coral) { padding: 6px 7px; }
/* Bring weights count back as tiny line under name */
.phone-screen .fcard h3::after {
  content: "";
  display: block;
}

/* Categories grid on mobile */
.phone-screen .cat-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
.phone-screen .cat { padding: 16px; min-height: 100px; border-radius: 16px; }
.phone-screen .cat-name { font-size: 17px; }
.phone-screen .cat-count { font-size: 11px; }

/* All Fonts layout */
.fonts-grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 24px;
}
.phone-screen .fonts-grid { grid-template-columns: 1fr; gap: 0; }

/* List row layout */
.font-row {
  display: grid;
  grid-template-columns: 260px 1fr 140px;
  align-items: stretch;
}
.phone-screen .font-row { grid-template-columns: 96px 1fr; }
.phone-screen .font-row > :last-child { grid-column: 1 / -1; border-left: 0 !important; border-top: 1px solid var(--line); }

/* Featured big card on mobile */
.phone-screen .feat { padding: 24px; border-radius: 20px; }
.phone-screen .feat .big { font-size: 56px; }
.phone-screen .feat .foot h3 { font-size: 22px; }

/* Footer */
.phone-screen .footer { padding: 48px 0 24px; border-radius: 24px 24px 0 0; }
.phone-screen .footer .cols { grid-template-columns: 1fr 1fr; gap: 24px; }
.phone-screen .footer .legal { flex-direction: column; gap: 6px; font-size: 11px; }

/* Filters / forms */
.phone-screen .filters { position: relative; top: auto; }
.phone-screen .tester-input { font-size: 44px; min-height: 130px; padding: 18px; }
.phone-screen .tester-bar { padding: 12px 16px; gap: 10px; }

/* Inline 2-col & 3-col grids collapse on mobile */
.phone-screen [style*="grid-template-columns: 1fr 1fr"],
.phone-screen [style*="grid-template-columns:1fr 1fr"] {
  grid-template-columns: 1fr !important;
}

/* Hide on mobile */
.phone-screen .mobile-hide { display: none !important; }
.phone-screen .icon-btn { width: 38px; height: 38px; }
.phone-screen .buy-grid { grid-template-columns: 1fr !important; }
.phone-screen .cart-grid { grid-template-columns: 1fr !important; }

/* News card on mobile */
.phone-screen .news { padding: 24px; border-radius: 22px; }
.phone-screen .news h2 { font-size: 30px; }

/* All Fonts page bits */
.phone-screen .cat-scroll { padding-bottom: 14px; }
.phone-screen .pill { padding: 7px 14px; font-size: 12px; }

/* Steps */
.phone-screen .steps { gap: 4px; flex-wrap: wrap; }
.phone-screen .steps .step { padding: 6px 10px; font-size: 11px; }
.phone-screen .steps .step .n { width: 18px; height: 18px; font-size: 10px; }
.phone-screen .steps .dash { width: 8px; }

/* Logo */
.phone-screen .logo { font-size: 18px; }
.phone-screen .logo-mark { width: 30px; height: 30px; border-radius: 9px; font-size: 15px; }
/* Login button on mobile — compact */
.phone-screen .nav-right .btn.sm { padding: 7px 12px; font-size: 12px; white-space: nowrap; }

.mobile-only { display: none; }
.phone-screen .mobile-only { display: initial; }
.mobile-only-flex { display: none; }
.phone-screen .mobile-only-flex { display: flex; }
.phone-screen .nav-right { gap: 6px; }
.phone-screen .desktop-only { display: none !important; }

/* Form */
.form-stack { display: flex; flex-direction: column; gap: 14px; }
.label-row { display: flex; justify-content: space-between; font-size: 12px; color: var(--ink-mute); font-weight: 500; margin-bottom: 6px; letter-spacing: .04em; text-transform: uppercase; }
.form-error {
  border: 1px solid var(--pink);
  border-radius: var(--r-md);
  background: var(--pink-soft);
  color: var(--ink);
  padding: 10px 12px;
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
}

/* Tabs */
.tabs { display: inline-flex; gap: 0; border: 1px solid var(--line); border-radius: 999px; padding: 4px; background: var(--white); width: max-content; box-shadow: var(--pillow-sm); }
.tabs button { border: 0; background: transparent; padding: 8px 18px; border-radius: 999px; font-weight: 400; font-size: 13px; color: var(--ink-soft); }
.tabs button.on { background: var(--pink); color: var(--white); font-weight: 500; box-shadow: var(--pillow-sm); }

/* Auth — minimal centered single column */
.auth-min {
  min-height: calc(100vh - 80px);
  display: grid;
  place-items: center;
  padding: 48px 24px;
  background: var(--bg);
}
.phone-screen .auth-min { padding: 32px 16px; min-height: 0; }
.auth-min-inner {
  width: 100%;
  max-width: 400px;
  display: flex; flex-direction: column;
  gap: 18px;
}
.auth-logo {
  display: inline-flex; align-items: center; gap: 10px;
  align-self: center;
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 22px;
  color: var(--ink);
  cursor: pointer;
  margin-bottom: 4px;
}
.auth-logo .logo-mark {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: var(--pink);
  display: grid; place-items: center;
  color: var(--white);
  font-size: 17px;
  font-weight: 500;
  box-shadow: var(--pillow-sm);
}
.auth-tabs {
  align-self: center;
  margin-bottom: 8px;
}
.auth-h1 {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 28px;
  text-align: center;
  margin: 0;
  letter-spacing: -.01em;
}
.auth-sub {
  text-align: center;
  color: var(--ink-soft);
  font-size: 14px;
  margin: 0 0 8px;
}
.auth-divider {
  display: flex; align-items: center; gap: 14px;
  color: var(--ink-mute); font-size: 12px;
  margin: 4px 0;
}
.auth-divider::before, .auth-divider::after {
  content: "";
  flex: 1; height: 1px;
  background: var(--line);
}
.auth-foot {
  text-align: center;
  color: var(--ink-soft);
  font-size: 13px;
  margin: 8px 0 0;
}
.auth-foot a { color: var(--pink-deep); font-weight: 500; cursor: pointer; }
.auth-foot a:hover { text-decoration: underline; }

.auth-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.auth-steps {
  display: flex; gap: 6px;
  margin-bottom: 4px;
}
.auth-step {
  flex: 1; height: 4px;
  border-radius: 999px;
  background: var(--line-soft);
}
.auth-step.on { background: var(--pink); }

.auth-purpose-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.purpose-chip {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  font-size: 13px;
  cursor: pointer;
  transition: border-color .12s, background .12s;
}
.purpose-chip:has(input:checked) {
  background: var(--butter);
  border-color: var(--butter-deep);
}
.purpose-chip input { margin: 0; }

/* Cart */
.cart-line {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--pillow-sm);
}
.cart-line .thumb {
  width: 64px; height: 64px; flex-shrink: 0;
  background: var(--butter);
  border: 0; border-radius: var(--r-md);
  display: grid; place-items: center; font-family: var(--f-display); font-weight: 500; font-size: 24px;
  box-shadow: var(--pillow-sm);
  overflow: hidden;
}

/* Dashboard */
.dash {
  display: grid; grid-template-columns: 250px 1fr; gap: 32px;
}
.phone-screen .dash { grid-template-columns: 1fr; gap: 18px; }
.dash-side {
  border: 1px solid var(--line); border-radius: var(--r-xl);
  background: var(--white); padding: 18px;
  box-shadow: var(--pillow);
  height: max-content;
}
.dash-side a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; border-radius: 14px;
  font-weight: 400;
  color: var(--ink-soft);
  font-size: 14px;
  transition: background .12s, color .12s;
}
.dash-side a.on { background: var(--pink); color: var(--white); font-weight: 500; box-shadow: var(--pillow-sm); }
.dash-side a:hover:not(.on) { background: var(--bg-soft); color: var(--ink); }

.hl {
  position: relative;
  display: inline-block;
  color: var(--pink-deep);
}
.hl::after { display: none; }

/* Newsletter */
.news {
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 64px;
  background: linear-gradient(135deg, var(--mint) 0%, var(--sky) 100%);
  box-shadow: var(--pillow-lg);
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.phone-screen .news { grid-template-columns: 1fr; padding: 32px; }
.news h2 { font-family: var(--f-display); font-weight: 500; font-size: clamp(24px, 2.8vw, 40px); margin: 0 0 14px; line-height: 1.05; letter-spacing: -.02em; }

/* Category card — flat */
.cat {
  border: 0;
  border-radius: 22px;
  padding: 22px;
  background: var(--white);
  box-shadow: var(--pillow-sm);
  display: flex; flex-direction: column; justify-content: flex-end; gap: 4px;
  cursor: pointer;
  position: relative; overflow: hidden;
  min-height: 130px;
  transition: transform .2s, border-color .2s;
}
.cat:hover { transform: translateY(-3px); box-shadow: var(--pillow); }
.cat .big { font-family: var(--f-display); font-weight: 500; font-size: 64px; line-height: 1; }
.cat-name { font-family: var(--f-display); font-weight: 500; font-size: 22px; line-height: 1.1; }
.cat-count { font-size: 12px; color: var(--ink-soft); }
.cat .name { font-weight: 500; font-size: 15px; }
.cat .count { color: var(--ink-mute); font-size: 12px; }

.cat-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.phone-screen .cat-grid { grid-template-columns: 1fr 1fr; gap: 10px; }

/* Bar */
.bar { height: 8px; border-radius: 999px; background: var(--line-soft); border: 0; overflow: hidden; box-shadow: inset 0 1px 2px rgba(244,123,160,.1); }
.bar > i { display: block; height: 100%; background: linear-gradient(90deg, var(--mint), var(--mint-deep)); }

/* Checkout summary */
.summary {
  border: 1px solid var(--line); border-radius: var(--r-xl);
  padding: 26px; background: var(--white);
  box-shadow: var(--pillow);
  display: flex; flex-direction: column; gap: 12px;
}
.summary .line { display: flex; justify-content: space-between; font-size: 14px; }

/* Steps */
.steps {
  display: flex; align-items: center; gap: 8px;
}
.steps .step {
  display: flex; align-items: center; gap: 8px;
  padding: 9px 16px; border-radius: 999px; border: 1px solid var(--line);
  background: var(--white); font-size: 13px; font-weight: 400; color: var(--ink-soft);
  box-shadow: var(--pillow-sm);
}
.steps .step.on { background: var(--pink); color: var(--white); font-weight: 500; }
.steps .step .n { width: 22px; height: 22px; border-radius: 999px; background: var(--line); color: var(--ink-soft); display: grid; place-items: center; font-size: 11px; font-weight: 500; border: 0; }
.steps .step.on .n { background: var(--white); color: var(--pink-deep); }
.steps .dash { width: 18px; height: 2px; background: var(--line); border-radius: 999px; }

/* Checkmark */
@keyframes pop { 0% { transform: scale(.6); opacity: 0; } 60% { transform: scale(1.08); } 100% { transform: scale(1); opacity: 1; } }
.checkmark {
  width: 96px; height: 96px; border-radius: 999px;
  background: var(--mint); border: 0;
  color: var(--ink);
  display: grid; place-items: center;
  margin: 0 auto 18px;
  animation: pop .35s ease-out;
  box-shadow: var(--pillow);
}

/* Compare */
.compare-row { display: grid; grid-template-columns: 1fr; gap: 10px; }
.compare-row .crow {
  display: grid; grid-template-columns: 200px 1fr 32px;
  gap: 14px; align-items: center;
  padding: 16px 24px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--white);
  box-shadow: var(--pillow-sm);
}
.phone-screen .compare-row .crow { grid-template-columns: 1fr; }
.compare-row .crow .nm { font-family: var(--f-display); font-weight: 500; font-size: 16px; }
.compare-row .crow .sm { font-size: 36px; line-height: 1; }

/* FAB */
.fab {
  position: fixed; right: 16px; bottom: 16px;
  width: 56px; height: 56px; border-radius: 999px;
  background: var(--pink); color: var(--white);
  border: 0;
  box-shadow: 0 10px 24px rgba(244,123,160,.5), 0 1px 0 rgba(255,255,255,.6) inset;
  display: grid; place-items: center;
  z-index: 70;
}

/* Real small-screen layout. Phone preview rules above stay available in Tweaks. */
@media (max-width: 760px) {
  .nav {
    padding-bottom: 0;
  }
  .nav-inner {
    width: calc(100% - 28px);
    padding: 12px 0;
    gap: 8px;
  }
  .nav-links,
  .search-pill,
  .mobile-hide {
    display: none !important;
  }
  .nav-right {
    gap: 6px;
    margin-left: auto;
  }
  .nav-right .btn.sm {
    max-width: 112px;
    padding: 7px 12px;
    font-size: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .mobile-only {
    display: initial;
  }
  .mobile-only-flex {
    display: flex;
  }
  .desktop-only {
    display: none !important;
  }
  .logo {
    min-width: 0;
    gap: 8px;
    font-size: 18px;
  }
  .logo > span:last-child {
    max-width: 116px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .logo-mark {
    width: 30px;
    height: 30px;
    border-radius: 9px;
    font-size: 15px;
  }
  .icon-btn {
    width: 38px;
    height: 38px;
  }

  .container {
    width: calc(100% - 28px);
    padding: 0;
  }
  .section {
    padding: 44px 0;
  }
  .section-tight {
    padding: 30px 0;
  }
  .grid-2,
  [style*="grid-template-columns: 1fr 1fr"],
  [style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
  .grid-3,
  .grid-4 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }
  .btn {
    max-width: 100%;
  }
  .field[style*="min-width"] {
    width: 100%;
    min-width: 0 !important;
  }

  .hero1 {
    min-height: 700px;
  }
  .hero1::after {
    background: linear-gradient(180deg, rgba(255,250,241,.06) 0%, rgba(255,250,241,.28) 38%, rgba(255,250,241,.97) 64%, rgba(255,250,241,1) 100%);
  }
  .hero1-inner {
    width: calc(100% - 28px);
    padding: 390px 0 30px;
  }
  .hero1-poster-main {
    left: 14px;
    right: auto;
    top: 18px;
    width: calc(100% - 28px);
  }
  .hero1-poster-side {
    display: none;
  }
  .hero1-sample-th {
    left: 18px;
    right: auto;
    top: 332px;
    font-size: 42px;
  }
  .hero1-sample-en {
    display: none;
  }
  .hero1-crumbs {
    gap: 8px;
    font-size: 11px;
  }
  .hero1 h1 {
    margin: 12px 0 16px;
    font-size: 42px;
    line-height: 1;
  }
  .hero1 .sub {
    max-width: none;
    margin: 0 0 22px;
    font-size: 14px;
    line-height: 1.65;
  }
  .hero1 .ctas {
    margin-bottom: 22px;
  }
  .hero1 .btn.lg {
    padding: 13px 22px;
    font-size: 14px;
  }
  .hero1-trust {
    gap: 9px 14px;
    font-size: 12px;
  }
  .hero2-headline {
    width: calc(100% - 28px);
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 24px 0 16px;
  }
  .hero2-headline h1 {
    font-size: 38px;
  }
  .hero2-band {
    width: calc(100% - 28px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .hero2-cell {
    min-height: 150px;
    padding: 16px;
    border-radius: var(--r-md);
  }
  .hero2-cell .sample {
    font-size: 44px;
  }
  .hero2-cell .meta b {
    font-size: 14px;
  }

  .sec-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 20px;
  }
  .sec-head .title {
    font-size: 28px;
  }
  .sec-head .desc {
    font-size: 13px;
  }
  .feat {
    min-height: 520px;
    padding: 24px;
    border-radius: 20px;
  }
  .feat .big {
    font-size: 42px !important;
    overflow-wrap: anywhere;
  }
  .feat .foot {
    align-items: flex-start;
    flex-direction: column;
  }
  .feat .foot .display {
    font-size: 28px !important;
  }
  .fcard {
    padding: 4px 4px 0;
    border-radius: 14px;
  }
  .fcard .preview {
    border-radius: 10px;
  }
  .fcard .info {
    gap: 5px;
    padding: 7px 5px 9px;
  }
  .fcard h3 {
    font-size: 11px;
    line-height: 1.2;
  }
  .fcard .row {
    gap: 3px;
    align-items: center;
    font-size: 10px;
  }
  .fcard .row > div {
    gap: 3px;
  }
  .fcard .tags {
    display: none;
  }
  .fcard .info .row:nth-child(2) {
    display: flex !important;
  }
  .fcard .price {
    font-size: 12px;
  }
  .fcard .price s {
    margin-right: 2px;
    font-size: 10px;
  }
  .fcard .btn.coral { padding: 6px 7px; font-size: 0; gap: 0; }
  .fcard .btn.coral svg { display: block; }
  .fcard .btn.sm:not(.coral) { padding: 6px 7px; }
  .cat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .cat {
    min-height: 100px;
    padding: 16px;
    border-radius: 16px;
  }
  .cat-name {
    font-size: 17px;
  }
  .cat-count {
    font-size: 11px;
  }

  .fonts-grid,
  .buy-grid,
  .cart-grid,
  .dash {
    grid-template-columns: 1fr !important;
    gap: 18px;
  }
  .font-row {
    grid-template-columns: 96px 1fr;
  }
  .font-row > :last-child {
    grid-column: 1 / -1;
    border-top: 1px solid var(--line);
    border-left: 0 !important;
  }
  .filters {
    position: relative;
    top: auto;
  }
  .cat-scroll {
    padding-bottom: 14px;
  }
  .pill {
    padding: 7px 14px;
    font-size: 12px;
  }

  .reviews-grid {
    display: flex;
    overflow-x: auto;
    gap: 14px;
    scroll-snap-type: x mandatory;
    padding-bottom: 8px;
  }
  .reviews-grid > * {
    flex: 0 0 80vw;
    scroll-snap-align: start;
  }
  .news {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px;
    border-radius: 22px;
  }
  .news h2 {
    font-size: 30px;
  }
  .news > div:last-child {
    height: 214px !important;
  }
  .float-card {
    max-width: calc(100% - 24px);
  }
  .footer {
    padding: 48px 0 24px;
    border-radius: 24px 24px 0 0;
  }
  .footer .cols {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }
  .footer .cols > :first-child {
    grid-column: 1 / -1;
  }
  .footer .legal {
    flex-direction: column;
    gap: 6px;
    font-size: 11px;
  }

  .cart-line {
    grid-template-columns: 64px 1fr 36px;
  }
  .cart-line .col-hide {
    display: none;
  }
  .cart-line .thumb {
    width: 64px;
    height: 52px;
    font-size: 22px;
  }
  .steps {
    flex-wrap: wrap;
    gap: 4px;
  }
  .steps .step {
    padding: 6px 10px;
    font-size: 11px;
  }
  .steps .step .n {
    width: 18px;
    height: 18px;
    font-size: 10px;
  }
  .steps .dash {
    width: 8px;
  }
  .compare-row .crow {
    grid-template-columns: 1fr;
  }
  .auth-min {
    min-height: calc(100vh - 64px);
    padding: 32px 14px;
  }
}
