:root {
  --paper: #f6f3ec;
  --white: #fffcf7;
  --ink: #141210;
  --muted: #6b6560;
  --line: #e4ddd2;
  --line-2: #d6cfc3;
  --accent: #e11d2e;
  --accent-2: #b91422;
  --accent-soft: #fff1f0;
  --forest: #17352c;
  --forest-2: #0f241e;
  --gold: #c9892a;
  --gold-soft: #fff6e4;
  --shadow: 0 1px 2px rgba(20, 18, 16, 0.05), 0 18px 40px rgba(20, 18, 16, 0.07);
  --radius: 18px;
  --max: 1180px;
  --sans: Inter, ui-sans-serif, system-ui, sans-serif;
  --serif: Inter, ui-sans-serif, system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.55;
  min-height: 100vh;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button { cursor: pointer; }
.wrap { width: min(var(--max), calc(100% - 32px)); margin: 0 auto; }

.promo-bar {
  display: block;
  background: #ff9a12;
  overflow: hidden;
  height: 52px;
}
.promo-bar:hover { filter: brightness(1.03); }
.promo-track {
  display: block;
  height: 100%;
  text-decoration: none;
}
.promo-track img {
  display: block;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(246, 243, 236, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.header-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  min-height: 72px;
}
.header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.brand-mark {
  width: 26px;
  height: 32px;
  display: block;
  flex: 0 0 auto;
  background: none;
  border-radius: 0;
}
.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.brand-copy { display: flex; align-items: baseline; line-height: 1; }
.brand-copy strong {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--ink);
}
.brand-copy strong span { color: #fb2840; }
.nav-links {
  display: flex;
  justify-content: center;
  gap: 4px;
  flex-wrap: wrap;
}
.nav-links a {
  padding: 8px 11px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--muted);
}
.nav-links a:hover,
.nav-links a.is-on {
  background: #fff;
  color: var(--ink);
}
.header-search { position: relative; z-index: 55; }
.header-search .btn svg { display: block; }
.search-pop {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  width: min(420px, calc(100vw - 24px));
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 12px;
  z-index: 80;
}
.search-pop input {
  width: 100%;
  height: 44px;
  border: 1px solid var(--line-2);
  border-radius: 12px;
  padding: 0 14px;
  outline: none;
  background: var(--paper);
}
.search-pop input:focus { border-color: #cfcbc4; background: #fff; }
.search-hits { display: grid; gap: 2px; margin-top: 8px; max-height: 360px; overflow: auto; }
.search-suggest {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: center;
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  padding: 9px 10px;
  border-radius: 10px;
  font-size: 14px;
  color: var(--ink);
}
.search-suggest svg { width: 16px; height: 16px; color: var(--muted); }
.search-suggest span { min-width: 0; }
.search-suggest b { font-weight: 800; color: var(--ink); }
.search-suggest:hover,
.search-suggest.is-on { background: var(--paper); }
.search-empty {
  padding: 10px 8px;
  font-size: 13px;
  color: var(--muted);
}
.menu-btn {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  border: 1px solid transparent;
  transition: transform 0.15s ease, background 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-solid { background: var(--accent); color: #fff; }
.btn-solid:hover { background: var(--accent-2); }
.btn-ink { background: var(--ink); color: #fff; }
.btn-ghost {
  background: transparent;
  border-color: var(--line-2);
  color: var(--ink);
}
.btn-white { background: #fff; color: var(--ink); }
.btn-discord {
  width: 40px;
  height: 40px;
  min-height: 40px;
  padding: 0;
  border-radius: 12px;
  background: #5865f2;
  color: #fff;
}
.btn-discord svg { width: 22px; height: 22px; display: block; }
.btn-discord:hover { background: #4752c4; }

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(20,18,16,0.4);
  opacity: 0;
  pointer-events: none;
  transition: 0.2s;
  z-index: 60;
}
.overlay.is-on { opacity: 1; pointer-events: auto; }
.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: min(360px, 92vw);
  height: 100%;
  background: var(--white);
  z-index: 70;
  transform: translateX(110%);
  transition: 0.25s ease;
  padding: 24px;
  display: grid;
  align-content: start;
  gap: 8px;
}
.mobile-nav.is-on { transform: none; }
.mobile-nav a {
  padding: 12px 4px;
  border-bottom: 1px solid var(--line);
  font-weight: 650;
}

.hero {
  position: relative;
  padding: 42px 0 18px;
  overflow: hidden;
}
.hero .wrap { position: relative; z-index: 1; }
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(20,18,16,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20,18,16,0.035) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(#000, transparent 85%);
  pointer-events: none;
}
.crumbs {
  display: flex;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 22px;
}
.crumbs span { color: var(--ink); font-weight: 600; }
.byline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 18px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 14px;
}
.avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--forest);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.04em;
}
.dot { width: 4px; height: 4px; background: #c4bbb0; border-radius: 50%; }
.reviewed {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 650;
  color: var(--ink);
}
.hero h1 {
  font-family: var(--sans);
  font-size: clamp(36px, 5.4vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.04em;
  font-weight: 800;
  margin: 0 0 18px;
  max-width: 18em;
  overflow-wrap: break-word;
}
.hero h1 em {
  display: block;
  margin-top: 10px;
  font-style: normal;
  font-size: 0.42em;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: #f05a00;
}
.lede {
  max-width: 62ch;
  font-size: 18px;
  color: #3f3a36;
  margin: 0 0 22px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; }

.section { padding: 56px 0; }
.section.tight { padding: 28px 0 56px; }
.section.soft { background: #efeae1; }
.section.ink {
  background: var(--forest);
  color: #f4efe6;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
  margin-bottom: 22px;
}
.section-head h2 {
  font-family: var(--sans);
  font-size: clamp(26px, 3.6vw, 36px);
  margin: 0 0 6px;
  letter-spacing: -0.04em;
  font-weight: 800;
}
.section-head p { margin: 0; color: var(--muted); }
.section.ink .section-head p { color: #c9d6cf; }

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  display: grid;
  align-content: start;
  min-height: 100%;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.card-media {
  position: relative;
  aspect-ratio: 1;
  background: #ece7de;
  overflow: hidden;
}
.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card-tags {
  position: absolute;
  left: 10px;
  top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  z-index: 1;
}
.price-chip {
  position: absolute;
  right: 10px;
  bottom: 10px;
  background: #fff;
  color: var(--ink);
  font-weight: 800;
  font-size: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}
.pill {
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 5px 8px;
  border-radius: 999px;
}
.qc-dot {
  background: var(--forest);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 8px;
  border-radius: 999px;
}
.card-body { padding: 12px 14px 14px; }
.card-body h3 {
  margin: 0 0 8px;
  font-size: 15px;
  line-height: 1.3;
  font-weight: 700;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.6em;
}
.seller-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  color: var(--muted);
  font-size: 12.5px;
  font-weight: 600;
}
.boosted {
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gold-soft);
  color: #8a5a12;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 8px;
  border-radius: 999px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 28px;
}

.quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  padding: 8px 0 36px;
}
.quick-links a {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 650;
}
.quick-links a:hover { border-color: var(--ink); }

.bio-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
  align-items: center;
}
.portrait {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 28px;
  display: grid;
  justify-items: start;
  gap: 14px;
}
.portrait .avatar { width: 72px; height: 72px; font-size: 22px; }
.portrait h3 { margin: 0; font-family: var(--sans); font-size: 32px; font-weight: 800; letter-spacing: -0.04em; }
.meta-list { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 700;
}
.bio-copy p { font-size: 17px; color: #3f3a36; }

.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.cat-tile {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 18px;
  min-height: 132px;
  display: grid;
  align-content: space-between;
  position: relative;
  overflow: hidden;
}
.cat-tile:hover { border-color: var(--ink); }
.cat-tile b { font-size: 28px; }
.cat-tile h3 { margin: 10px 0 4px; font-size: 16px; }
.cat-tile span { color: var(--muted); font-size: 13px; font-weight: 650; }
.hot {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 4px 7px;
  border-radius: 999px;
}

.region-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.region-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px;
}
.region-card h3 {
  font-family: var(--sans);
  font-size: 28px;
  margin: 8px 0 10px;
  font-weight: 800;
  letter-spacing: -0.04em;
}
}
.checks { display: grid; gap: 12px; margin: 18px 0 22px; }
.check {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
}
.check i {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #e8f3ea;
  color: #1f7a3a;
  font-weight: 800;
}
.check i.warn { background: var(--gold-soft); color: #8a5a12; }
.check b { display: block; }
.check p { margin: 2px 0 0; color: var(--muted); font-size: 14px; }

.community {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 24px;
  align-items: center;
}
.quote {
  font-family: var(--sans);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.2;
  margin: 0 0 16px;
  font-weight: 800;
  letter-spacing: -0.04em;
}
}

.faq-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}
.faq-tabs button {
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 700;
}
.faq-tabs button.is-on { background: var(--ink); color: #fff; border-color: var(--ink); }
.faq-list { display: grid; gap: 8px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}
.faq-item button {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  padding: 16px 18px;
  font-weight: 750;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.faq-item p {
  display: none;
  margin: 0;
  padding: 0 18px 16px;
  color: #4a453f;
}
.faq-item.is-open p { display: block; }
.faq-item button span { color: var(--muted); }

.newsletter {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  align-items: center;
}
.mail-form {
  display: flex;
  gap: 8px;
  background: #fff;
  border-radius: 999px;
  padding: 6px;
}
.mail-form input {
  flex: 1;
  border: 0;
  outline: none;
  padding: 0 14px;
  background: transparent;
  min-width: 0;
}

.toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}
.search {
  flex: 1;
  min-width: 220px;
  position: relative;
}
.search input,
.toolbar select {
  width: 100%;
  height: 46px;
  border: 1px solid var(--line-2);
  background: #fff;
  border-radius: 14px;
  padding: 0 14px 0 40px;
}
.toolbar select { padding-left: 14px; width: auto; min-width: 160px; }
.search svg {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  color: var(--muted);
}

.page-hero { padding: 36px 0 8px; }
.page-hero h1 {
  font-family: var(--sans);
  font-size: clamp(32px, 4.5vw, 48px);
  margin: 0 0 10px;
  letter-spacing: -0.04em;
  font-weight: 800;
}
.coupon-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
  align-items: start;
}
.coupon-card {
  background: #fff;
  border: 1.5px dashed #f0c3c6;
  border-radius: 24px;
  padding: 28px 26px 24px;
  box-shadow: var(--shadow);
}
.coupon-card .kicker { color: var(--accent); }
.coupon-off {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -0.05em;
  margin: 6px 0 8px;
}
.coupon-card > p { margin: 0 0 18px; color: var(--muted); }
.coupon-code {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff8f8;
  color: var(--ink);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 0.14em;
  margin-bottom: 14px;
}
.coupon-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.coupon-actions .btn { flex: 1; min-width: 140px; }
.coupon-copied {
  margin: 12px 0 0;
  color: #1f7a4c;
  font-size: 13px;
  font-weight: 600;
}
.coupon-steps {
  list-style: none;
  margin: 0;
  padding: 8px 0 0;
  display: grid;
  gap: 14px;
  counter-reset: step;
}
.coupon-steps li {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px 18px 16px 18px;
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 4px 12px;
}
.coupon-steps li::before {
  counter-increment: step;
  content: counter(step);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  display: grid;
  place-items: center;
  grid-row: 1 / span 2;
  margin-top: 2px;
}
.coupon-steps b { font-size: 16px; }
.coupon-steps span { color: var(--muted); font-size: 14px; grid-column: 2; }

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.article-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 22px;
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 220px;
}
.kicker {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}
.article-card h3 { margin: 0; font-size: 22px; font-family: var(--sans); font-weight: 800; letter-spacing: -0.03em; }
.prose {
  max-width: 72ch;
  font-size: 17px;
}
.prose h1, .prose h2 { font-family: var(--sans); letter-spacing: -0.04em; font-weight: 800; }
.prose h2 { margin-top: 1.6em; }
.prose a { color: var(--accent); font-weight: 700; }

.item-grid {
  display: grid;
  grid-template-columns: minmax(240px, 400px) 1fr;
  gap: 28px;
  align-items: start;
}
.item-gallery {
  display: grid;
  gap: 10px;
  max-width: 400px;
}
.item-shot {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
}
.item-shot img { width: 100%; aspect-ratio: 1; object-fit: cover; background: #ece7de; display: block; }
.item-thumbs {
  display: flex;
  gap: 8px;
}
.item-thumbs button {
  width: 72px;
  height: 72px;
  flex: 0 0 72px;
  padding: 0;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  cursor: pointer;
}
.item-thumbs button.is-on {
  border-color: #111;
  box-shadow: 0 0 0 1px #111;
}
.item-thumbs button.is-empty {
  cursor: default;
  background: #fff;
}
.item-thumbs button img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #ece7de;
}
.buy-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px;
}
.buy-box h1 { margin: 0 0 10px; font-size: 28px; letter-spacing: -0.03em; }
.buy-box .price { font-size: 36px; font-weight: 800; letter-spacing: -0.04em; }
.buy-box .btn {
  min-height: 56px;
  padding: 0 32px;
  font-size: 17px;
  width: 100%;
}
.buy-note {
  margin: 10px 0 0;
  text-align: center;
  font-size: 13px;
  color: #9a938b;
  font-weight: 400;
}
.qc-tips {
  margin-top: 22px;
  background: #fff4e8;
  border: 1px solid #f3e2cc;
  border-radius: 22px;
  padding: 22px 24px 20px;
}
.qc-tips h2 {
  margin: 0 0 14px;
  font-size: 18px;
  letter-spacing: -0.03em;
}
.qc-tips ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
  counter-reset: qc;
}
.qc-tips li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}
.qc-tips li::before {
  counter-increment: qc;
  content: counter(qc);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #ff7a1a;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  display: grid;
  place-items: center;
  line-height: 1;
  margin-top: 1px;
}
.specs { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0 22px; }

.qc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.qc-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.qc-card img { aspect-ratio: 1; object-fit: cover; width: 100%; }
.qc-card div { padding: 12px 14px 16px; }

.site-footer {
  background: var(--ink);
  color: #efeae3;
  padding: 48px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 28px;
  margin-bottom: 28px;
}
.footer-col h3 {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #b7aea4;
  margin: 0 0 12px;
}
.footer-col a, .footer-col p { display: block; color: #d8d0c6; margin: 0 0 8px; font-size: 14px; }
.legal {
  border-top: 1px solid #2b2723;
  padding-top: 18px;
  color: #a89f95;
  font-size: 13px;
}
.legal p { margin: 0 0 10px; }

.empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 48px 12px;
  color: var(--muted);
}

@media (max-width: 980px) {
  .product-grid, .cat-grid, .article-grid, .qc-grid { grid-template-columns: repeat(2, 1fr); }
  .bio-grid, .region-grid, .community, .newsletter, .item-grid, .footer-grid, .coupon-layout {
    grid-template-columns: 1fr;
  }
  .nav-links { display: none; }
  .menu-btn { display: grid; place-items: center; }
  .header-row { grid-template-columns: auto 1fr auto; }
  .hero h1 { max-width: none; }
}
@media (max-width: 640px) {
  .product-grid, .cat-grid, .article-grid, .qc-grid { grid-template-columns: 1fr 1fr; }
  .promo-bar { height: 40px; }
  .section { padding: 40px 0; }
  .card-body h3 { font-size: 13px; min-height: 2.4em; }
  .boosted { font-size: 11px; }
  .header-row { gap: 10px; min-height: 64px; }
  .hero h1 { max-width: none; font-size: clamp(28px, 8vw, 40px); }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn, .cta-row .btn { width: 100%; }
  .section-head { align-items: start; }
  .section-head .btn { display: none; }
}
