/* Learning Press — structured-literacy publisher theme (violet, clean, academic) */

:root {
  --paper: #FBF9F5;
  --ink: #241D33;
  --ink-soft: #5C5470;
  --violet: #6D51B4;
  --violet-deep: #55409A;
  --violet-night: #2E2548;
  --lilac: #F0ECF9;
  --lilac-deep: #DDD4F0;
  --lilac-line: #E6E0F4;
  --gold: #D9A420;
  --gold-soft: #F7EBCB;
  --sage: #3E8E68;
  --sage-soft: #E2F0E8;
  --white: #FFFFFF;
  --radius: 12px;
  --border: 1.5px solid #2E254826;
  --border-strong: 2px solid var(--ink);
  --shadow-hard: 3px 3px 0 rgba(36, 29, 51, 0.16);
  --shadow-soft: 0 2px 10px rgba(36, 29, 51, 0.07);
  --font-display: 'Bricolage Grotesque', 'Public Sans', system-ui, sans-serif;
  --font-body: 'Public Sans', system-ui, -apple-system, sans-serif;
  /* Legacy aliases still referenced by the admin page's inline styles. */
  --butter: var(--gold);
  --leaf: var(--sage);
  --leaf-soft: var(--sage-soft);
  --rose-deep: #B23A5E;
  --shadow: var(--shadow-soft);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
}

h1, h2, h3 {
  font-family: var(--font-display);
  line-height: 1.12;
  margin: 0 0 0.45em;
  color: var(--ink);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 800; }
h2 { font-size: clamp(1.45rem, 3vw, 2rem); font-weight: 700; }
h3 { font-size: 1.12rem; font-weight: 700; }

p { margin: 0 0 1em; }
a { color: var(--violet-deep); }

img { max-width: 100%; }

.shell { max-width: 1120px; margin: 0 auto; padding: 0 22px; }
.narrow { max-width: 720px; }
.center { text-align: center; }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--violet-deep); color: #fff; padding: 10px 18px;
  border-radius: 0 0 10px 0; z-index: 100;
}
.skip-link:focus { left: 0; }

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ------------------------------------------------------------------ header */

.site-header {
  background: var(--white);
  border-bottom: var(--border);
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 14px;
  padding-bottom: 14px;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
}

.brand-mark { border-radius: 10px; }

.brand-word {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  line-height: 1.05;
  letter-spacing: -0.01em;
}
.brand-word em { font-style: normal; color: var(--violet-deep); }
.brand-word small {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.66rem;
  color: var(--ink-soft);
  letter-spacing: 1.1px;
  text-transform: uppercase;
  margin-top: 2px;
}

.site-nav {
  display: flex;
  gap: 4px;
  align-items: center;
  flex-wrap: wrap;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  border-radius: 8px;
  text-decoration: none;
  color: var(--ink-soft);
  font-weight: 600;
  font-size: 0.93rem;
}

.nav-bubble { display: grid; place-items: center; }
.nav-bubble svg { width: 17px; height: 17px; }

.nav-link:hover { background: var(--lilac); color: var(--violet-deep); }

.nav-link.active {
  color: var(--violet-deep);
  background: var(--lilac);
  font-weight: 700;
}

.cart-link .nav-bubble { position: relative; }

.cart-count[hidden] { display: none; }

.cart-count {
  position: absolute;
  top: -9px;
  right: -11px;
  min-width: 17px;
  height: 17px;
  padding: 0 4px;
  display: grid;
  place-items: center;
  background: var(--violet-deep);
  color: #fff;
  font-size: 0.64rem;
  font-weight: 700;
  border-radius: 999px;
}

/* ------------------------------------------------------------------ buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.98rem;
  padding: 11px 22px;
  border-radius: 10px;
  border: var(--border-strong);
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
}

.btn-primary {
  background: var(--violet-deep);
  color: #fff;
  box-shadow: var(--shadow-hard);
}
.btn-primary:hover { transform: translate(-1px, -1px); box-shadow: 4px 4px 0 rgba(36, 29, 51, 0.2); }
.btn-primary:active { transform: translate(2px, 2px); box-shadow: 1px 1px 0 rgba(36, 29, 51, 0.2); }

.btn-outline {
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow-hard);
}
.btn-outline:hover { background: var(--lilac); transform: translate(-1px, -1px); }

.btn-ghost { background: transparent; color: var(--violet-deep); border-color: transparent; }
.btn-ghost:hover { background: var(--lilac); }

.btn-big { font-size: 1.08rem; padding: 14px 28px; }
.btn-small { font-size: 0.88rem; padding: 8px 16px; }

.btn[disabled] { opacity: 0.55; cursor: wait; transform: none; }

/* --------------------------------------------------------------------- hero */

.hero {
  background: linear-gradient(180deg, var(--lilac) 0%, var(--paper) 100%);
  border-bottom: var(--border);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  padding-top: 64px;
  padding-bottom: 72px;
}

.eyebrow {
  font-weight: 700;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 2.4px;
  color: var(--violet-deep);
  margin-bottom: 12px;
}

.lede { font-size: 1.12rem; color: var(--ink-soft); max-width: 56ch; }

.squiggle {
  color: var(--violet-deep);
  box-shadow: inset 0 -0.32em 0 var(--gold-soft);
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin: 28px 0 22px; }

.trust-row {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  padding: 0;
  margin: 0;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink-soft);
}
.trust-row li::before { content: '✓ '; color: var(--sage); font-weight: 800; }

/* hero resource-card mock: phoneme–grapheme mapping */
.hero-paper { display: grid; place-items: center; }

.paper-sheet {
  width: min(360px, 86vw);
  background: var(--white);
  border: var(--border-strong);
  border-radius: 14px;
  box-shadow: 5px 5px 0 rgba(46, 37, 72, 0.18);
  padding: 24px 26px 22px;
}

.mock-tag {
  display: inline-block;
  background: var(--lilac);
  color: var(--violet-deep);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 12px;
}

.paper-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
  margin-bottom: 14px;
}

.phoneme-row {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
}

.phoneme-box {
  flex: 1;
  display: grid;
  place-items: center;
  height: 58px;
  border: 2px solid var(--violet);
  border-radius: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--violet-deep);
  background: var(--lilac);
}
.phoneme-box.blank { background: var(--white); color: var(--lilac-deep); }

.mock-note {
  font-size: 0.82rem;
  color: var(--ink-soft);
  border-top: 1.5px solid var(--lilac-line);
  padding-top: 12px;
  margin: 0;
}
.mock-note strong { color: var(--ink); }

.mock-skills {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.mock-skills li {
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--ink-soft);
  background: var(--paper);
  border: 1px solid var(--lilac-deep);
  border-radius: 6px;
  padding: 3px 9px;
}

/* ----------------------------------------------------------------- sections */

.section { padding: 60px 0; }
.section-lilac { background: var(--violet-night); color: #EDE8F8; }
.section-lilac h2, .section-lilac h3 { color: #fff; }

.section-title {
  margin-bottom: 36px;
}
.section-title span { position: relative; display: inline-block; }

.page-head {
  background: linear-gradient(180deg, var(--lilac) 0%, var(--paper) 100%);
  border-bottom: var(--border);
  padding: 48px 0 26px;
}

/* ---------------------------------------------------------------- products */

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}

.product-card {
  position: relative;
  background: var(--white);
  border: var(--border-strong);
  border-radius: var(--radius);
  box-shadow: var(--shadow-hard);
  overflow: hidden;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.product-card:hover { transform: translate(-2px, -2px); box-shadow: 5px 5px 0 rgba(36, 29, 51, 0.18); }

.card-cover {
  display: block;
  position: relative;
  aspect-ratio: 17 / 13;
  background: var(--lilac);
  overflow: hidden;
  border-bottom: var(--border-strong);
}
.card-cover img { width: 100%; height: 100%; object-fit: cover; display: block; }

.cover-fallback {
  height: 100%;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  color: var(--violet);
  padding: 18px;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
}
.cover-fallback svg { width: 42px; height: 42px; }
.cover-fallback.big { min-height: 320px; }
.cover-fallback.big svg { width: 66px; height: 66px; }

.price-sticker {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--ink);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 5px 12px;
  border-radius: 8px;
}
.price-sticker.free { background: var(--sage); }

.card-body { padding: 16px 18px 18px; }
.card-body h3 { font-size: 1.02rem; margin-bottom: 8px; }
.card-body h3 a { color: var(--ink); text-decoration: none; }
.card-body h3 a:hover { color: var(--violet-deep); }

.chip-row { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 12px; }

.chip {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 6px;
  background: var(--paper);
  border: 1px solid var(--lilac-deep);
  color: var(--ink-soft);
}
.chip-grade { background: var(--lilac); border-color: var(--lilac-deep); color: var(--violet-deep); }
.chip-subject { background: var(--gold-soft); border-color: #E8D5A0; color: #7A5A0B; }

.card-actions { display: flex; gap: 8px; }

.see-all { text-align: center; margin-top: 34px; }

.empty-shelf {
  text-align: center;
  padding: 48px 20px;
  color: var(--ink-soft);
  background: var(--white);
  border: 2px dashed var(--lilac-deep);
  border-radius: var(--radius);
  max-width: 520px;
  margin: 0 auto;
}
.empty-shelf svg { width: 48px; height: 48px; color: var(--violet); margin-bottom: 8px; }
.empty-shelf p { margin: 0; font-weight: 600; }

/* ------------------------------------------------------------------ filters */

.filter-bar {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 30px;
}

.filter-group { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }

.filter-label {
  font-weight: 700;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  color: var(--ink-soft);
  margin-right: 4px;
}

.filter-chip {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.86rem;
  padding: 6px 14px;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink-soft);
  border: 1.5px solid var(--lilac-deep);
}
.filter-chip:hover { background: var(--lilac); color: var(--violet-deep); }
.filter-chip.active { background: var(--violet-deep); border-color: var(--violet-deep); color: #fff; }

/* -------------------------------------------------------------------- steps */

.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  counter-reset: step;
}

.steps li {
  background: var(--white);
  color: var(--ink);
  border: var(--border-strong);
  border-radius: var(--radius);
  box-shadow: var(--shadow-hard);
  padding: 26px 24px;
}

.step-num {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  margin-bottom: 12px;
  border: var(--border-strong);
}

.steps h3 { color: var(--ink); }
.steps p { margin: 0; color: var(--ink-soft); font-size: 0.94rem; }

/* ------------------------------------------------------------ approach strip */

.teacher-strip { display: grid; }

.teacher-card {
  position: relative;
  background: var(--white);
  border: var(--border-strong);
  border-radius: var(--radius);
  box-shadow: 5px 5px 0 rgba(46, 37, 72, 0.16);
  padding: 44px clamp(24px, 5vw, 56px);
  max-width: 800px;
  margin: 0 auto;
}

.teacher-badge {
  display: inline-block;
  background: var(--lilac);
  color: var(--violet-deep);
  font-weight: 700;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  padding: 5px 14px;
  border-radius: 6px;
  margin-bottom: 14px;
}

.teacher-card p { color: var(--ink-soft); max-width: 62ch; }

.approach-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 22px;
  display: grid;
  gap: 10px;
}
.approach-list li {
  padding-left: 26px;
  position: relative;
  color: var(--ink-soft);
  font-size: 0.98rem;
}
.approach-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--sage);
  font-weight: 800;
}
.approach-list strong { color: var(--ink); }

/* ------------------------------------------------------------- product page */

.product-page {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(24px, 5vw, 60px);
  align-items: start;
}

.product-cover {
  background: var(--white);
  border: var(--border-strong);
  border-radius: var(--radius);
  box-shadow: 5px 5px 0 rgba(46, 37, 72, 0.16);
  padding: 12px;
}
.product-cover img { display: block; border-radius: 6px; width: 100%; }

.product-price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.9rem;
  color: var(--violet-deep);
  margin: 8px 0 14px;
}
.product-price.free { color: var(--sage); }

.product-desc { color: var(--ink-soft); }

.buy-row { display: flex; gap: 12px; flex-wrap: wrap; margin: 20px 0; }

.included-list {
  list-style: none;
  padding: 18px 22px;
  margin: 0;
  background: var(--lilac);
  border: 1.5px solid var(--lilac-deep);
  border-radius: var(--radius);
  font-weight: 500;
  color: var(--ink-soft);
  font-size: 0.95rem;
}
.included-list li { padding: 4px 0; }
.included-list li::before { content: '✓ '; color: var(--sage); font-weight: 800; }

/* --------------------------------------------------------------------- cart */

.cart-shell { max-width: 780px; }

.cart-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  border: var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 14px 18px;
  margin-bottom: 14px;
}

.cart-thumb {
  width: 64px;
  height: 52px;
  border-radius: 8px;
  object-fit: cover;
  background: var(--lilac);
  flex-shrink: 0;
}
.cart-thumb.fallback { display: grid; place-items: center; color: var(--violet); font-size: 1.4rem; }

.cart-item-title { flex: 1; font-weight: 600; }
.cart-item-title a { color: var(--ink); text-decoration: none; }
.cart-item-title a:hover { color: var(--violet-deep); }
.cart-item-title .chip-row { margin: 4px 0 0; }

.cart-item-price { font-family: var(--font-display); font-weight: 700; color: var(--violet-deep); }

.cart-remove {
  background: none;
  border: none;
  color: var(--ink-soft);
  cursor: pointer;
  font-size: 1.15rem;
  padding: 6px 9px;
  border-radius: 8px;
}
.cart-remove:hover { background: var(--lilac); color: var(--violet-deep); }

.cart-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: var(--white);
  border: var(--border-strong);
  border-radius: var(--radius);
  box-shadow: var(--shadow-hard);
  padding: 18px 22px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.cart-total { font-family: var(--font-display); font-weight: 800; font-size: 1.35rem; }

.cart-empty { text-align: center; padding: 30px 0 10px; }
.cart-loading { text-align: center; color: var(--ink-soft); }
.cart-note { color: var(--ink-soft); font-size: 0.9rem; margin-top: 14px; }

/* ---------------------------------------------------------------- thank you */

.thanks-card {
  background: var(--white);
  border: var(--border-strong);
  border-radius: var(--radius);
  box-shadow: 5px 5px 0 rgba(46, 37, 72, 0.16);
  padding: clamp(28px, 5vw, 48px);
  text-align: center;
}

.thanks-confetti {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--sage-soft);
  color: var(--sage);
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.download-list {
  list-style: none;
  padding: 0;
  margin: 26px 0;
  text-align: left;
}

.download-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: var(--lilac);
  border: 1.5px solid var(--lilac-deep);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.download-note { display: block; font-size: 0.83rem; color: var(--ink-soft); font-weight: 500; }

.thanks-foot { color: var(--ink-soft); font-size: 0.95rem; margin: 0; }

/* -------------------------------------------------------- about and contact */

.about-page {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 30px;
  align-items: start;
}

.about-card {
  background: var(--white);
  border: var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: clamp(24px, 4vw, 40px);
}
.about-card p { color: var(--ink-soft); }
.about-card h2 { font-size: 1.15rem; margin-top: 20px; }
.about-card h2:first-child { margin-top: 0; }
.about-sign { font-family: var(--font-display); font-weight: 700; color: var(--violet-deep); }

.about-side {
  background: var(--lilac);
  border: 1.5px solid var(--lilac-deep);
  border-radius: var(--radius);
  padding: 24px 26px;
}
.about-side h2 { font-size: 1.05rem; }
.about-side ul { list-style: none; padding: 0; margin: 0; font-weight: 500; color: var(--ink-soft); }
.about-side li { padding: 6px 0; padding-left: 22px; position: relative; }
.about-side li::before { content: '✓'; position: absolute; left: 0; color: var(--sage); font-weight: 800; }

.contact-page { max-width: 640px; }
.contact-card {
  background: var(--white);
  border: var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: clamp(24px, 4vw, 40px);
}
.contact-card h2 { font-size: 1.12rem; }
.contact-card .mt { margin-top: 28px; }
.contact-card p { color: var(--ink-soft); }

.terms-page { max-width: 760px; }
.terms-page h2 { font-size: 1.08rem; margin-top: 22px; }

/* -------------------------------------------------------------- admin login */

.admin-login-card {
  background: var(--white);
  border: var(--border-strong);
  border-radius: var(--radius);
  box-shadow: var(--shadow-hard);
  padding: clamp(28px, 5vw, 44px);
  max-width: 420px;
  margin: 20px auto;
  text-align: center;
}
.admin-login-card form { text-align: left; margin-top: 18px; display: grid; gap: 16px; }
.admin-login-card label { font-weight: 600; display: grid; gap: 6px; }
.admin-login-card input {
  font: inherit;
  padding: 11px 14px;
  border-radius: 10px;
  border: 1.5px solid var(--lilac-deep);
  background: var(--paper);
}
.admin-login-card input:focus { outline: none; border-color: var(--violet); }
.login-error { color: #B23A5E; font-weight: 600; margin: 0; }

/* ---------------------------------------------------------------- not found */

.notfound-card { padding: 40px 0; }
.notfound-emoji { font-size: 2.6rem; display: block; margin-bottom: 8px; }

/* ------------------------------------------------------------------- footer */

.site-footer { background: var(--violet-night); color: #D9D0EC; margin-top: 48px; }

.scallop { height: 0; }

.footer-row {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px 30px;
  padding: 38px 22px 40px;
  align-items: center;
}

.footer-brand { display: flex; gap: 14px; align-items: center; font-size: 0.94rem; }
.footer-brand strong { font-family: var(--font-display); font-size: 1.08rem; color: #fff; }

.footer-nav { display: flex; gap: 22px; justify-content: flex-end; flex-wrap: wrap; }
.footer-nav a { color: #D9D0EC; text-decoration: none; font-weight: 600; font-size: 0.94rem; }
.footer-nav a:hover { color: var(--gold); }

.footer-note { grid-column: 1 / -1; font-size: 0.8rem; color: #9C8FC4; border-top: 1px solid #453A6B; padding-top: 16px; }

/* -------------------------------------------------------------------- toast */

.toast[hidden] { display: none; }

.toast {
  position: fixed;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  background: var(--ink);
  color: #fff;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 10px;
  box-shadow: var(--shadow-hard);
  z-index: 200;
  animation: toast-in 0.22s ease;
}
@keyframes toast-in {
  from { opacity: 0; transform: translateX(-50%) translateY(12px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* --------------------------------------------------------------- responsive */

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; gap: 34px; padding-top: 44px; padding-bottom: 48px; }
  .steps { grid-template-columns: 1fr; }
  .product-page { grid-template-columns: 1fr; }
  .product-cover { max-width: 380px; margin: 0 auto; }
  .about-page { grid-template-columns: 1fr; }
  .footer-row { grid-template-columns: 1fr; }
  .footer-nav { justify-content: flex-start; }
}

@media (max-width: 560px) {
  .nav-link { padding: 7px 10px; font-size: 0.88rem; }
  .brand-word { font-size: 1.2rem; }
  .header-row { justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn, .product-card, .filter-chip { transition: none; }
}
