/* ============================================================================
   DataProt redesign — unified design system from Harsha's HTML artifacts.
   Every rule below is faithful to the source files, with one deliberate change:
   Harsha's forest green accent (#146B4E / #0E5C42 / #EEF4F0) is replaced with
   DataProt blue (#1e40af / #1e3a8a / #eff6ff).
   Loaded AFTER style.css so its selectors win any overlap during transition.
   ============================================================================ */

:root {
  --paper: #FAFAF8;
  --paper-2: #F6F5F1;
  --surface: #FFFFFF;
  --ink: #1A1B1E;
  --ink-2: #44464C;
  --muted: #71747B;
  --faint: #A2A5AC;
  --line: #ECEBE6;
  --line-soft: #F3F2EE;
  /* DataProt blue swap */
  --accent: #1e40af;
  --accent-2: #1e3a8a;
  --accent-soft: #eff6ff;
  --radius: 16px;
  --radius-sm: 11px;
  --shadow: 0 1px 2px rgba(26,27,30,.03), 0 10px 30px -18px rgba(26,27,30,.20);
  --shadow-lift: 0 2px 6px rgba(26,27,30,.05), 0 20px 44px -20px rgba(26,27,30,.30);
  --wrap: 1120px;
  --ease: cubic-bezier(.2,.7,.2,1);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0 !important;
  background: var(--paper) !important;
  color: var(--ink) !important;
  font-family: 'Inter', system-ui, -apple-system, sans-serif !important;
  font-size: 16px !important;
  line-height: 1.65 !important;
  letter-spacing: -.006em !important;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
::selection { background: var(--accent-soft); color: var(--accent-2); }

.wrap { max-width: var(--wrap); margin: 0 auto; padding-left: 24px; padding-right: 24px; }
.wrap.narrow { max-width: 760px; }
.wrap.medium { max-width: 1080px; }
.wrap.wide { max-width: 1120px; }

.serif { font-family: 'Newsreader', Georgia, serif; font-optical-sizing: auto; }
.eyebrow {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--faint);
}
.tick { color: var(--accent); flex: none; }

/* ==================== Site header ==================== */
.site-header {
  position: sticky; top: 0; z-index: 40;
  border-bottom: 1px solid var(--line) !important;
  background: rgba(250,250,248,.82) !important;
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  padding: 0 !important;
  box-shadow: none !important;
}
.hdr {
  display: flex; align-items: center; gap: 20px; height: 64px;
  max-width: var(--wrap); margin: 0 auto;
  padding-left: 24px; padding-right: 24px;
}
.logo-lockup { display: flex; align-items: center; gap: 11px; flex: none; text-decoration: none; }
.logo-lockup .mark { width: 11px; height: 11px; border-radius: 2px; background: var(--ink); transform: rotate(45deg); }
.logo-text { display: flex; flex-direction: column; line-height: 1.05; }
.logo-text b { font-weight: 700; font-size: 16px; letter-spacing: -.025em; color: var(--ink); }
.logo-text em {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-style: normal; font-size: 9px;
  letter-spacing: .13em; text-transform: uppercase;
  color: var(--faint); margin-top: 3px; font-weight: 500;
}
.hdr .nav { display: flex; align-items: center; gap: 2px; margin-right: auto; }
.hdr .nav a {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 14px; font-weight: 500;
  color: var(--ink-2); padding: 8px 12px; border-radius: 9px;
  letter-spacing: -.012em; text-decoration: none;
  transition: background .15s, color .15s;
}
.hdr .nav a:hover, .hdr .nav a.on { background: var(--paper-2); color: var(--ink); }
.hdr .nav .caret { width: 13px; height: 13px; opacity: .45; }
.hdr-right { display: flex; align-items: center; gap: 10px; flex: none; }
.hdr .search {
  display: flex; align-items: center; gap: 8px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 10px; padding: 0 12px; height: 38px; width: 214px;
  transition: border-color .15s, box-shadow .15s;
}
.hdr .search:focus-within { border-color: #CDCCC4; box-shadow: 0 0 0 3px rgba(26,27,30,.05); }
.hdr .search svg { width: 15px; height: 15px; color: var(--faint); flex: none; }
.hdr .search input {
  border: none; background: none; outline: none;
  font-family: inherit; font-size: 13.5px; color: var(--ink);
  width: 100%; letter-spacing: -.01em; padding: 0;
}
.hdr .search input::placeholder { color: var(--faint); }
.menu-btn {
  display: none; border: 1px solid var(--line); background: var(--surface);
  border-radius: 9px; width: 38px; height: 38px;
  align-items: center; justify-content: center;
  cursor: pointer; color: var(--ink);
}
.menu-btn svg { width: 18px; height: 18px; }
.mobile-panel {
  display: none; flex-direction: column;
  padding: 6px 24px 18px; border-top: 1px solid var(--line-soft);
  background: var(--paper);
}
.mobile-panel.open { display: flex; }
.mobile-panel a {
  padding: 13px 4px; font-size: 15px; font-weight: 500;
  color: var(--ink-2); border-bottom: 1px solid var(--line-soft);
  letter-spacing: -.01em; text-decoration: none;
}
.mobile-panel .search {
  width: 100%; margin-top: 14px; height: 42px;
  display: flex; align-items: center; gap: 8px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 10px; padding: 0 12px;
}
.mobile-panel .search svg { width: 15px; height: 15px; color: var(--faint); flex: none; }
.mobile-panel .search input {
  border: none; background: none; outline: none;
  font-family: inherit; font-size: 14px; color: var(--ink);
  width: 100%; letter-spacing: -.01em; padding: 0;
}
.mobile-panel .search input::placeholder { color: var(--faint); }

/* ==================== Buttons ==================== */
.dp-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  border: none; cursor: pointer; border-radius: 11px;
  font-family: inherit; font-weight: 600; font-size: 14.5px;
  letter-spacing: -.01em; padding: 13px 22px;
  background: var(--ink) !important; color: #fff !important; text-decoration: none;
  transition: background .18s var(--ease), transform .06s ease;
  white-space: nowrap;
}
.dp-btn * { color: #fff !important; }
.dp-btn:hover { background: #000 !important; }
.dp-btn:active { transform: translateY(1px); }
.dp-btn:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; }
.dp-btn svg { width: 15px; height: 15px; }
.dp-btn-quiet { background: transparent; color: var(--ink); border: 1px solid var(--line); }
.dp-btn-quiet:hover { background: var(--paper-2); border-color: #DEDDD6; }

/* ==================== Breadcrumbs, section rules ==================== */
.dp-crumbs { font-size: 12px; color: var(--faint); padding: 22px 0 0; letter-spacing: 0; }
.dp-crumbs a { color: var(--muted); transition: color .15s; text-decoration: none; }
.dp-crumbs a:hover { color: var(--ink); }
.dp-crumbs .cur { color: var(--ink-2); }
hr.rule, hr.dp-rule { border: none; border-top: 1px solid var(--line); margin: 52px 0 0; }
.sec { padding: 52px 0 0; }
.sec.last { padding-bottom: 64px; }
.sec-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 20px; margin-bottom: 22px;
}
.sec-head h2 {
  font-family: 'Newsreader', serif; font-size: 24px;
  font-weight: 500; letter-spacing: -.01em; margin: 6px 0 0; line-height: 1.15;
}
.sec-head .eyebrow { display: block; }
.sec-head .note { font-size: 12.5px; color: var(--faint); margin-top: 8px; letter-spacing: 0; }
.sec-link {
  font-size: 13px; font-weight: 600; color: var(--ink);
  display: inline-flex; align-items: center; gap: 6px;
  white-space: nowrap; transition: color .15s;
}
.sec-link:hover { color: var(--accent-2); }
.sec-link svg { width: 14px; height: 14px; }

/* ==================== Store / merchant page ==================== */
.body-grid { display: grid; grid-template-columns: 1fr; gap: 6px; padding-bottom: 8px; }
.main { min-width: 0; }
.main > section { padding: 40px 0; }

.hero {
  padding: 6px 0 8px;
  background: transparent !important;
  color: var(--ink) !important;
  text-align: left !important;
}
.hero * { color: inherit; }
.hero-id { display: flex; gap: 20px; align-items: center; text-align: left; }
.hero-id > div { text-align: left; }
.hero-id .logo {
  width: 60px; height: 60px; border-radius: 15px; flex: none;
  background: var(--surface); border: 1px solid var(--line);
  display: grid; place-items: center;
  font-family: 'Newsreader', serif; font-weight: 500;
  font-size: 28px; color: var(--ink) !important;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hero-id .logo img { width: 100%; height: 100%; object-fit: contain; padding: 8px; }
.hero-id .meta-line { font-size: 12px; color: var(--faint) !important; margin-top: 6px; letter-spacing: 0; text-align: left; }
.hero h1 {
  font-family: 'Newsreader', serif !important;
  font-optical-sizing: auto;
  font-size: 38px !important;
  line-height: 1.03 !important;
  margin: 0 !important;
  font-weight: 500 !important;
  letter-spacing: -.01em !important;
  color: var(--ink) !important;
  padding: 0 !important;
  background: none !important;
  text-shadow: none !important;
  text-align: left !important;
}
.hero .lede {
  font-size: 16.5px !important;
  line-height: 1.6 !important;
  color: var(--ink-2) !important;
  margin: 18px 0 0 !important;
  max-width: 60ch;
  letter-spacing: -.01em;
  text-align: left !important;
}

.best {
  margin-top: 24px; background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.best-main {
  padding: 22px 24px;
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
}
.best-copy { flex: 1; min-width: 0; }
.best-copy .eyebrow { color: var(--accent-2); }
.best-offer {
  font-family: 'Newsreader', serif; font-size: 24px;
  font-weight: 500; letter-spacing: -.01em; line-height: 1.15;
  margin-top: 5px;
  color: var(--ink) !important;
  text-align: left;
}
.best-offer em { font-style: italic; color: var(--accent) !important; }
.best, .best-main, .best-copy, .best-meta { text-align: left !important; }
.best-sub { font-size: 13px; color: var(--muted); margin-top: 5px; letter-spacing: 0; }
.best-cta { flex: none; }
.best-meta {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  padding: 14px 24px; border-top: 1px solid var(--line-soft);
}
.best-meta .m { font-size: 12px; color: var(--muted); letter-spacing: 0; display: inline-flex; align-items: center; gap: 6px; }
.best-meta .m b { color: var(--ink); font-weight: 600; }
.see-all {
  margin-left: auto; display: inline-flex; align-items: center; gap: 6px;
  font-size: 12.5px; font-weight: 600; color: var(--ink); letter-spacing: -.01em;
  background: none; border: none; cursor: pointer;
  font-family: inherit; padding: 2px 0; transition: color .15s; text-decoration: none;
}
.see-all:hover { color: var(--accent-2); }
.see-all svg { width: 13px; height: 13px; }
.dot-sep { width: 3px; height: 3px; border-radius: 50%; background: var(--line); flex: none; }

/* ==================== Ways to save (icon rows) ==================== */
.save-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
}
.save { display: flex; gap: 16px; align-items: center; padding: 17px 22px; border-top: 1px solid var(--line-soft); }
.save:first-child { border-top: none; }
.save .ic {
  width: 34px; height: 34px; border-radius: 9px; flex: none;
  display: grid; place-items: center;
  background: var(--paper-2); color: var(--ink-2);
}
.save .ic svg { width: 17px; height: 17px; }
.save .body { flex: 1; min-width: 0; }
.save h3 { margin: 0; font-size: 14.5px; font-weight: 600; letter-spacing: -.01em; }
.save p { margin: 2px 0 0; font-size: 13px; color: var(--muted); line-height: 1.5; letter-spacing: 0; }
.save .amt { flex: none; font-size: 13.5px; font-weight: 600; color: var(--accent-2); white-space: nowrap; font-variant-numeric: tabular-nums; }

/* ==================== Coupon rows ==================== */
.coupons { display: flex; flex-direction: column; gap: 14px; }
.coupon {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow);
  transition: box-shadow .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
}
.coupon:hover { box-shadow: var(--shadow-lift); border-color: #E2E1DB; transform: translateY(-1px); }
.coupon .row { display: flex; gap: 22px; padding: 22px 24px; align-items: center; }
.coupon .act { margin-left: auto; flex: none; padding-left: 6px; }
.figure { flex: none; width: 86px; text-align: left; padding-top: 2px; }
.figure .n {
  font-family: 'Newsreader', serif; font-size: 33px;
  font-weight: 500; color: var(--accent); line-height: .95;
  letter-spacing: -.02em; display: block;
}
.figure .n.sm { font-size: 25px; }
.figure .l {
  font-family: 'JetBrains Mono', monospace; font-size: 9.5px;
  letter-spacing: .13em; text-transform: uppercase;
  color: var(--faint); margin-top: 8px; display: block;
}
/* Editorial fallback when no numeric discount can be extracted — italic
   Newsreader in DataProt blue matches Harsha's `.hero em` treatment.
   Sits at the same size as the numeric headline so the row still balances. */
.figure.fig-deal .n em {
  font-family: 'Newsreader', Georgia, serif;
  font-style: italic; font-weight: 500;
  color: var(--accent);
  letter-spacing: -.01em;
}
.figure .pre {
  font-family: 'JetBrains Mono', monospace; font-size: 9.5px;
  letter-spacing: .13em; text-transform: uppercase;
  color: var(--faint); display: block; margin-bottom: 4px;
}
.coupon .txt { flex: 1; min-width: 0; }
.coupon h3 {
  margin: 0; font-size: 16px; font-weight: 600; letter-spacing: -.012em;
  display: flex; align-items: center; gap: 9px; flex-wrap: wrap;
}
.coupon .desc { margin: 6px 0 0; font-size: 13.5px; color: var(--ink-2); line-height: 1.55; letter-spacing: -.004em; }
.code-btn { min-width: 118px; padding: 11px 20px; font-size: 14px; }
.reveal { display: none; align-items: center; gap: 8px; }
.reveal.show { display: inline-flex; animation: dp-fade .3s var(--ease); }
@keyframes dp-fade { from { opacity: 0; transform: translateY(3px); } to { opacity: 1; transform: none; } }
.code-val {
  font-family: 'JetBrains Mono', monospace; font-size: 13.5px;
  font-weight: 500; letter-spacing: .04em; color: var(--ink);
  background: var(--paper-2); border: 1px dashed #D8D6CE;
  padding: 10px 13px; border-radius: 9px;
}
.copy {
  border: 1px solid var(--line); background: var(--surface);
  border-radius: 9px; padding: 10px 13px;
  font-family: inherit; font-size: 12.5px; font-weight: 600;
  color: var(--ink-2); cursor: pointer; transition: .15s;
}
.copy:hover { background: var(--paper-2); border-color: #DEDDD6; }
.copy.done { color: var(--accent-2); border-color: #CFE0D7; background: var(--accent-soft); }
.coupon .tag {
  font-family: 'JetBrains Mono', monospace; font-size: 9.5px;
  font-weight: 500; letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted); border: 1px solid var(--line);
  padding: 3px 7px; border-radius: 6px;
}

/* Per-coupon variants collapsible — sits INSIDE a primary .coupon card and
   holds the "N more with same discount" codes. Small, quiet, and doesn't
   compete visually with the primary row. */
.coupon-variants {
  margin: 4px 24px 22px;
  padding-top: 14px;
  border-top: 1px dashed var(--line);
}
.coupon-variants-btn {
  list-style: none;
  cursor: pointer;
  display: inline-flex; align-items: center; gap: 6px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px; font-weight: 500;
  letter-spacing: .04em;
  color: var(--muted);
  background: transparent; border: none; padding: 4px 0;
  transition: color .15s;
}
.coupon-variants-btn:hover { color: var(--ink); }
.coupon-variants-btn::-webkit-details-marker { display: none; }
.coupon-variants-btn .chev {
  width: 12px; height: 12px;
  transition: transform .2s var(--ease);
  color: currentColor;
}
.coupon-variants[open] .coupon-variants-btn .chev { transform: rotate(180deg); }
.coupon-variants-btn .coupon-variants-close { display: none; }
.coupon-variants[open] .coupon-variants-btn .coupon-variants-open { display: none; }
.coupon-variants[open] .coupon-variants-btn .coupon-variants-close { display: inline; }
.coupon-variants-list { display: flex; flex-direction: column; gap: 12px; margin-top: 14px; }
.coupon-variants-list .coupon { box-shadow: none; border-color: var(--line-soft); background: var(--paper-2); }
.coupon-variants-list .coupon .row { padding: 18px 20px; }

/* "Show N more coupons" collapsible — native <details>/<summary>, works
   without JS, keeps every coupon in the initial HTML for Google. */
.coupons-more { margin-top: 16px; }
.coupons-more[open] { padding-bottom: 4px; }
.coupons-more-btn {
  list-style: none; /* hide the default triangle marker */
  cursor: pointer;
  width: 100%;
  gap: 8px;
}
.coupons-more-btn::-webkit-details-marker { display: none; }
.coupons-more-btn .chev {
  width: 14px; height: 14px;
  transition: transform .2s var(--ease);
}
.coupons-more[open] .coupons-more-btn .chev { transform: rotate(180deg); }
/* Swap the label based on open/closed state. */
.coupons-more-btn .coupons-more-close { display: none; }
.coupons-more[open] .coupons-more-btn .coupons-more-open { display: none; }
.coupons-more[open] .coupons-more-btn .coupons-more-close { display: inline; }
.coupons-more-list { margin-top: 16px; }

/* Per-coupon freshness pill — makes "hand-checked, re-checked weekly" visible
   next to every code. Renders under the description in .coupon .txt. */
.coupon-verified {
  display: inline-flex; align-items: center; gap: 5px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px; letter-spacing: .05em;
  color: var(--accent-2); font-weight: 500;
}
.coupon-verified svg { width: 12px; height: 12px; flex: none; }

/* Row containing the freshness pill + voting widget. Flex-wraps on narrow
   viewports so the widget can drop below the pill without overlap. */
.coupon-meta {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 8px 16px;
  margin-top: 10px;
}

/* Row trust-signal — "N said it worked". No buttons here; voting itself
   happens in the reveal modal (where the user has actually tried the code). */
.vote-count {
  display: inline-flex; align-items: center; gap: 5px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px; letter-spacing: .05em;
  color: var(--accent-2); font-weight: 500;
}
.vote-count svg { width: 11px; height: 11px; flex: none; }
.vote-count[hidden] { display: none; }

/* Voting inside the reveal modal — the only place users can cast a vote,
   since it only makes sense after seeing the code. Sits under the code +
   Copy row, above the merchant fallback link. */
.dp-reveal-vote {
  margin-top: 4px; padding-top: 18px;
  border-top: 1px dashed var(--line);
}
.dp-reveal-vote-ask {
  display: flex; align-items: center; flex-wrap: wrap; gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px; letter-spacing: .05em; color: var(--muted);
}
.dp-reveal-vote-prompt { margin-right: 4px; }
.vote-btn {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 5px 11px; border-radius: 7px;
  background: var(--surface); border: 1px solid var(--line);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; font-weight: 500; letter-spacing: .04em;
  color: var(--muted); cursor: pointer;
  transition: border-color .15s, color .15s, background .15s;
}
.vote-btn:hover { border-color: #DEDDD6; color: var(--ink); background: var(--paper-2); }
.vote-btn.is-active {
  border-color: var(--accent-2); color: var(--accent-2); background: var(--accent-soft);
}
.vote-btn .thumb { width: 12px; height: 12px; flex: none; }
.dp-reveal-vote-count {
  margin-top: 8px; font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: .05em; color: var(--muted);
}
.dp-reveal-vote-count[hidden] { display: none; }
.dp-reveal-vote-thanks {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px; letter-spacing: .05em;
  color: var(--accent-2); font-weight: 500;
}
.dp-reveal-vote-thanks[hidden] { display: none; }
.dp-reveal-vote-thanks svg { width: 12px; height: 12px; flex: none; }

/* ==================== Good to know (FAQ reframed) ==================== */
.gtk { border-top: 1px solid var(--line); }
.gtk-item { padding: 20px 2px; border-bottom: 1px solid var(--line); }
.gtk-item h3 {
  font-size: 15.5px; font-weight: 600; letter-spacing: -.012em;
  margin: 0; display: flex; gap: 10px; align-items: baseline;
}
.gtk-item h3::before { content: "—"; color: var(--accent); font-weight: 500; flex: none; }
.gtk-item p {
  font-size: 14px; color: var(--ink-2); line-height: 1.65;
  margin: 8px 0 0 22px; max-width: 64ch; letter-spacing: -.004em;
}
.gtk-item strong { font-weight: 600; color: var(--ink); }

/* ==================== Store description block ==================== */
.store-desc { padding: 40px 0; }
.store-desc h2 {
  font-family: 'Newsreader', serif; font-size: 24px;
  font-weight: 500; letter-spacing: -.01em; margin: 6px 0 16px; line-height: 1.15;
}
.store-desc p { font-size: 15px; line-height: 1.7; color: var(--ink-2); margin: 0 0 14px; max-width: 66ch; }

/* ==================== Sidebar (store page) ==================== */
.sidebar { display: flex; flex-direction: column; }
.side-block { padding: 24px 0; border-top: 1px solid var(--line); }
.side-block:first-child { padding-top: 4px; border-top: none; }
.side-h { display: block; margin-bottom: 13px; }
.side-about { font-size: 13.5px; line-height: 1.6; color: var(--ink-2); letter-spacing: -.004em; }
.side-visit { width: 100%; margin-top: 16px; }
.side-visit svg { width: 14px; height: 14px; }
.side-cats { display: flex; flex-wrap: wrap; gap: 8px; }
.pn-cat {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 14px; background: var(--surface); border: 1px solid var(--line);
  border-radius: 99px; font-size: 13px; font-weight: 600;
  color: var(--ink); letter-spacing: -.01em; transition: .18s var(--ease);
  text-decoration: none;
}
.pn-cat:hover { border-color: #CFE0D7; background: var(--accent-soft); color: var(--accent-2); }
.pn-cat svg { width: 12px; height: 12px; color: var(--faint); transition: .18s var(--ease); }
.pn-cat:hover svg { color: var(--accent-2); transform: translateX(2px); }
.side-all {
  display: inline-flex; align-items: center; gap: 5px;
  margin-top: 14px; font-size: 12.5px; font-weight: 500;
  color: var(--muted); transition: color .15s; text-decoration: none;
}
.side-all:hover { color: var(--ink); }
.side-all svg { width: 12px; height: 12px; }
.side-store {
  display: flex; align-items: center; gap: 11px;
  padding: 11px 0; border-top: 1px solid var(--line-soft);
  text-decoration: none;
}
.side-store:first-child { border-top: none; padding-top: 2px; }
.side-store .fav {
  width: 28px; height: 28px; border-radius: 7px; flex: none;
  display: grid; place-items: center;
  background: var(--paper-2); font-size: 11px; font-weight: 700; color: var(--ink-2);
  overflow: hidden;
}
.side-store .fav img { width: 100%; height: 100%; object-fit: contain; }
.side-store .ss-nm { font-size: 14px; font-weight: 600; letter-spacing: -.01em; transition: color .15s; }
.side-store:hover .ss-nm { color: var(--accent-2); }
.side-store .ss-off { margin-left: auto; font-family: 'JetBrains Mono', monospace; font-size: 10.5px; color: var(--accent-2); font-weight: 500; }

/* ==================== Site footer ==================== */
.site-footer {
  background: var(--ink) !important;
  color: rgba(255,255,255,.6) !important;
  padding: 56px 0 30px !important;
  letter-spacing: 0; margin-top: 20px;
  border: none !important;
}
.site-footer * { color: inherit; }
.site-footer .foot-inner {
  max-width: var(--wrap); margin: 0 auto;
  padding-left: 24px; padding-right: 24px;
}
.foot-top { display: flex; gap: 44px; flex-wrap: wrap; }
.foot-brand-block { flex: 1 1 250px; min-width: 230px; }
.foot-brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.foot-brand .mark { width: 11px; height: 11px; border-radius: 2px; background: #fff; transform: rotate(45deg); }
.foot-brand b { font-weight: 700; font-size: 16px; letter-spacing: -.025em; color: #fff !important; }
.foot-tag { font-size: 13px; line-height: 1.6; color: rgba(255,255,255,.5) !important; margin: 16px 0 0; max-width: 36ch; }
.foot-cats {
  font-family: 'JetBrains Mono', monospace; font-size: 10.5px;
  letter-spacing: .08em; color: rgba(255,255,255,.35) !important; margin-top: 14px;
}
.foot-links { flex: 2 1 440px; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 26px; }
.foot-col h4 {
  font-family: 'JetBrains Mono', monospace; font-size: 10px; font-weight: 500;
  letter-spacing: .13em; text-transform: uppercase;
  color: rgba(255,255,255,.4) !important; margin: 0 0 14px;
}
.foot-col a {
  display: block; font-size: 13.5px;
  color: rgba(255,255,255,.62) !important;
  padding: 5px 0; text-decoration: none; transition: color .15s;
}
.foot-col a:hover { color: #fff !important; }
.foot-bottom {
  margin-top: 44px; padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex; justify-content: space-between; gap: 18px;
  flex-wrap: wrap; align-items: center;
}
/* Footer copyright pill — Harsha's design has a subtle outlined pill on dark ink.
   Must beat the .copy coupon-button rule (line ~323) which would otherwise give
   this span a white surface background → white-text-on-white. */
.foot-bottom .copy {
  font-size: 12px;
  color: rgba(255,255,255,.42) !important;
  background: transparent !important;
  border: 1px solid rgba(255,255,255,.12) !important;
  padding: 9px 18px !important;
  border-radius: 99px;
  display: inline-block;
}
.foot-disclose { font-size: 12px; color: rgba(255,255,255,.42) !important; max-width: 52ch; line-height: 1.55; }

/* ==================== Category page ==================== */
.cat-hero { padding: 30px 0 6px; }
.cat-id { display: flex; gap: 18px; align-items: center; }
.cat-id .ic {
  width: 56px; height: 56px; border-radius: 15px; flex: none;
  display: grid; place-items: center;
  background: var(--surface); border: 1px solid var(--line);
  color: var(--ink); box-shadow: var(--shadow);
}
.cat-id .ic svg { width: 26px; height: 26px; }
.cat-id .eyebrow { color: var(--accent-2); }
.cat-hero h1 {
  font-family: 'Newsreader', serif; font-optical-sizing: auto;
  font-size: 40px; line-height: 1.05; letter-spacing: -.015em;
  font-weight: 500; margin: 5px 0 0;
}
.cat-desc { font-size: 17px; line-height: 1.55; color: var(--ink-2); margin: 20px 0 0; max-width: 64ch; }
.cat-stats {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  margin-top: 22px; padding: 14px 20px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow);
}
.cat-stats .s { font-size: 12.5px; color: var(--muted); display: inline-flex; align-items: center; gap: 7px; letter-spacing: 0; }
.cat-stats .s b { color: var(--ink); font-weight: 600; }
.cat-stats .d { width: 3px; height: 3px; border-radius: 50%; background: var(--line); }
.cat-stats .tick { width: 15px; height: 15px; }

/* Top-picks podium — listicle-style ranked cards on the category page.
   Big serif rank number, logo + name, data-derived "why" line, CTA. */
.podium {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.podium-card {
  position: relative;
  display: flex; flex-direction: column;
  padding: 24px; padding-top: 18px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow);
  transition: box-shadow .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
  text-decoration: none;
}
.podium-card:hover { box-shadow: var(--shadow-lift); border-color: #E2E1DB; transform: translateY(-2px); }
.podium-rank {
  font-family: 'Newsreader', Georgia, serif;
  font-style: italic; font-weight: 500;
  font-size: 46px; line-height: 1; letter-spacing: -.02em;
  color: var(--accent); margin-bottom: 8px;
}
.podium-head { display: flex; align-items: center; gap: 12px; margin-top: 4px; }
.podium-logo {
  width: 40px; height: 40px; border-radius: 10px; flex: none;
  display: grid; place-items: center;
  background: var(--paper-2); font-size: 15px; font-weight: 700;
  color: var(--ink-2); letter-spacing: -.03em; overflow: hidden;
}
.podium-logo img { width: 100%; height: 100%; object-fit: contain; padding: 4px; }
.podium-id { min-width: 0; }
.podium-name {
  font-size: 16px; font-weight: 600; letter-spacing: -.012em;
  color: var(--ink); line-height: 1.2;
}
.podium-cat {
  font-family: 'JetBrains Mono', monospace; font-size: 10px;
  letter-spacing: .11em; text-transform: uppercase;
  color: var(--faint); margin-top: 3px;
}
.podium-headline {
  margin-top: 14px;
  font-family: 'Newsreader', serif; font-optical-sizing: auto;
  font-size: 17px; font-weight: 500; letter-spacing: -.01em;
  line-height: 1.28; color: var(--ink);
}
.podium-reason {
  margin-top: 8px; font-size: 13px; color: var(--muted);
  line-height: 1.5; letter-spacing: 0;
}
.podium-foot {
  margin-top: auto; padding-top: 18px;
  display: flex; flex-direction: column; gap: 6px;
  border-top: 1px solid var(--line-soft);
  margin-top: 18px;
}
.podium-fresh {
  display: inline-flex; align-items: center; gap: 5px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px; letter-spacing: .05em;
  color: var(--accent-2); font-weight: 500;
}
.podium-fresh svg { width: 11px; height: 11px; flex: none; }
/* Podium card CTAs — primary Get code button + secondary "See all deals" link.
   The whole card no longer wraps as an anchor; individual pieces (rank, logo,
   name, headline) link to the store page, and the two CTAs sit at the bottom.
*/
.podium-actions {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  margin-top: 2px;
}
.podium-primary { padding: 10px 16px; font-size: 13.5px; border-radius: 10px; }
.podium-visit {
  font-size: 12.5px; font-weight: 600; color: var(--ink-2);
  letter-spacing: -.006em; text-decoration: none;
  transition: color .15s;
}
.podium-visit:hover { color: var(--accent-2); }
.podium-card .podium-rank,
.podium-card .podium-logo,
.podium-card .podium-name,
.podium-card .podium-headline { text-decoration: none; color: inherit; }
.podium-card .podium-rank { display: inline-block; color: var(--accent); }
.podium-card .podium-name:hover { color: var(--accent-2); }
.podium-card .podium-headline:hover { color: var(--accent-2); }

/* "New this week" — 3-col store card with an "Added Xd ago" tag. */
.new-store-card {
  display: flex; flex-direction: column;
  padding: 20px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-sm); box-shadow: var(--shadow);
  transition: box-shadow .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease);
  text-decoration: none;
}
.new-store-card:hover { box-shadow: var(--shadow-lift); border-color: #E2E1DB; transform: translateY(-1px); }
.new-store-top { display: flex; align-items: center; gap: 12px; }
.new-store-logo {
  width: 40px; height: 40px; border-radius: 10px; flex: none;
  display: grid; place-items: center;
  background: var(--paper-2); font-size: 15px; font-weight: 700;
  color: var(--ink-2); letter-spacing: -.03em; overflow: hidden;
}
.new-store-logo img { width: 100%; height: 100%; object-fit: contain; padding: 4px; }
.new-store-name {
  font-size: 15px; font-weight: 600; letter-spacing: -.012em; color: var(--ink);
  line-height: 1.2;
}
.new-store-cat { font-size: 12px; color: var(--muted); margin-top: 2px; }
.new-store-meta {
  display: flex; align-items: center; gap: 6px;
  margin-top: 16px; padding-top: 14px;
  border-top: 1px solid var(--line-soft);
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px; letter-spacing: .04em; color: var(--faint);
}
.new-store-meta .dot { color: var(--line); }

@media (max-width: 900px) {
  .podium { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .podium { grid-template-columns: 1fr; }
}

/* Deals grid (category "This week's picks") */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.deal {
  display: flex; flex-direction: column;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow); padding: 20px;
  transition: box-shadow .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
  text-decoration: none;
}
.deal:hover { box-shadow: var(--shadow-lift); border-color: #E2E1DB; transform: translateY(-2px); }
.deal-store { display: flex; align-items: center; gap: 9px; margin-bottom: 16px; }
/* Anchor variant: logo + name row links to the store page. Preserve the flex
   layout, subtle name-color shift on hover for clickable affordance. */
a.deal-store { text-decoration: none; color: inherit; }
a.deal-store .nm { transition: color .15s; }
a.deal-store:hover .nm { color: var(--accent-2); }
.fav {
  width: 30px; height: 30px; border-radius: 8px; flex: none;
  display: grid; place-items: center;
  background: var(--paper-2); font-size: 12px; font-weight: 700; color: var(--ink-2);
  letter-spacing: -.02em; overflow: hidden;
}
.fav img { width: 100%; height: 100%; object-fit: contain; }
.deal-store .nm { font-size: 12.5px; font-weight: 600; color: var(--ink-2); }
.deal-fig {
  font-family: 'Newsreader', serif; font-size: 30px;
  font-weight: 500; color: var(--accent);
  line-height: 1; letter-spacing: -.02em;
}
.deal-fig .u {
  font-size: 12px; color: var(--faint);
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: .08em; text-transform: uppercase;
}
.deal h3 { font-size: 15.5px; font-weight: 600; letter-spacing: -.012em; margin: 10px 0 0; }
.deal p { font-size: 13px; color: var(--muted); line-height: 1.5; margin: 6px 0 0; }
.deal-foot { display: flex; align-items: center; gap: 10px; margin-top: 18px; }
.deal-verified {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11.5px; color: var(--accent-2); font-weight: 500;
}
.deal-verified svg { width: 12px; height: 12px; }
.deal-foot .dp-btn { margin-left: auto; padding: 10px 16px; font-size: 13.5px; border-radius: 10px; }

/* Store sort + grid (category) */
.sortbar { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 20px; }
.sortbar .count { font-size: 13px; color: var(--muted); }
.sortbar .count b { color: var(--ink); font-weight: 600; }
.seg {
  display: inline-flex;
  background: var(--paper-2); border: 1px solid var(--line);
  border-radius: 11px; padding: 3px;
}
.seg button {
  border: none; background: none;
  font-family: inherit; font-size: 12.5px; font-weight: 500; color: var(--muted);
  padding: 7px 13px; border-radius: 8px;
  cursor: pointer; transition: .15s; white-space: nowrap;
}
.seg button.active { background: var(--surface); color: var(--ink); box-shadow: 0 1px 2px rgba(26,27,30,.06); }
.store-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.store-card {
  display: flex; flex-direction: column; padding: 20px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-sm); box-shadow: var(--shadow);
  transition: box-shadow .22s var(--ease), border-color .22s var(--ease), transform .22s var(--ease);
  text-decoration: none;
}
.store-card:hover { box-shadow: var(--shadow-lift); border-color: #E2E1DB; transform: translateY(-1px); }
.store-card .sc-top { text-decoration: none; color: inherit; display: flex; align-items: center; gap: 12px; }
.store-card .sc-top:hover .sc-name { color: var(--accent-2); }
.store-card .sc-headline {
  display: block; margin-top: 12px;
  font-family: 'Newsreader', serif; font-optical-sizing: auto;
  font-size: 15px; font-weight: 500; letter-spacing: -.01em;
  line-height: 1.28; color: var(--ink); text-decoration: none;
  transition: color .15s;
}
.store-card .sc-headline:hover { color: var(--accent-2); }
.store-card .sc-meta {
  display: flex; align-items: center; justify-content: space-between;
  gap: 10px; margin-top: 10px;
  font-size: 12.5px; color: var(--faint);
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: .03em;
}
.store-card .sc-actions {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  margin-top: 14px; padding-top: 14px;
  border-top: 1px solid var(--line-soft);
}
.store-card .sc-primary { padding: 9px 14px; font-size: 13px; border-radius: 9px; }
.store-card .sc-visit {
  font-size: 12.5px; font-weight: 600; color: var(--ink-2);
  letter-spacing: -.006em; text-decoration: none; transition: color .15s;
}
.store-card .sc-visit:hover { color: var(--accent-2); }
.sc-top { display: flex; align-items: center; gap: 12px; }
.sc-top .lg {
  width: 40px; height: 40px; border-radius: 10px; flex: none;
  display: grid; place-items: center;
  background: var(--paper-2); font-size: 15px; font-weight: 700; color: var(--ink-2);
  letter-spacing: -.03em; overflow: hidden;
}
.sc-top .lg img { width: 100%; height: 100%; object-fit: contain; padding: 4px; }
.sc-name { font-size: 15px; font-weight: 600; letter-spacing: -.012em; color: var(--ink); }
.sc-type { font-size: 12px; color: var(--muted); margin-top: 1px; }
.sc-foot {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 18px; padding-top: 14px; border-top: 1px solid var(--line-soft);
}
.sc-off { font-size: 13.5px; font-weight: 600; color: var(--accent-2); letter-spacing: -.01em; }
.sc-codes { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--faint); letter-spacing: .03em; }

/* Guides (category) */
.guide {
  display: flex; flex-direction: column; padding: 24px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow);
  transition: .2s var(--ease); text-decoration: none;
}
.guide:hover { border-color: #E0DFD8; box-shadow: var(--shadow-lift); transform: translateY(-2px); }
.guide .gtag {
  font-family: 'JetBrains Mono', monospace; font-size: 10px; font-weight: 500;
  letter-spacing: .11em; text-transform: uppercase; color: var(--accent-2);
}
.guide h3 {
  font-family: 'Newsreader', serif; font-size: 20px; font-weight: 500;
  letter-spacing: -.01em; line-height: 1.2; margin: 12px 0 0; color: var(--ink);
}
.guide p { font-size: 13.5px; color: var(--muted); line-height: 1.55; margin: 10px 0 0; }
.guide .gmeta {
  font-family: 'JetBrains Mono', monospace; font-size: 10.5px;
  letter-spacing: .05em; color: var(--faint); margin-top: 18px;
}

/* Related categories */
.related { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 4px; }
.rel {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 11px 16px; background: var(--surface); border: 1px solid var(--line);
  border-radius: 99px; font-size: 13.5px; font-weight: 500;
  color: var(--ink-2); transition: .18s var(--ease); text-decoration: none;
}
.rel:hover { border-color: #DEDDD6; background: var(--paper-2); color: var(--ink); }
.rel svg { width: 15px; height: 15px; color: var(--muted); }

/* ==================== Directory (stores archive) ==================== */
.dir-hero { padding: 32px 0 0; }
.dir-hero .eyebrow { color: var(--accent-2); }
.dir-hero h1 {
  font-family: 'Newsreader', serif; font-optical-sizing: auto;
  font-size: 44px; line-height: 1.04; letter-spacing: -.02em;
  font-weight: 500; margin: 14px 0 0;
}
.dir-hero .sub { font-size: 17px; line-height: 1.55; color: var(--ink-2); margin: 16px 0 0; max-width: 52ch; }
.dir-search {
  display: flex; align-items: center; gap: 11px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 13px; padding: 0 16px; height: 52px;
  box-shadow: var(--shadow); max-width: 460px; margin-top: 26px;
  transition: border-color .15s, box-shadow .15s;
}
.dir-search:focus-within { border-color: #CDCCC4; box-shadow: 0 0 0 4px rgba(26,27,30,.05); }
.dir-search svg { width: 18px; height: 18px; color: var(--faint); flex: none; }
.dir-search input {
  border: none; background: none; outline: none;
  font-family: inherit; font-size: 15.5px; color: var(--ink);
  width: 100%; letter-spacing: -.01em;
}
.dir-search input::placeholder { color: var(--faint); }

.chips { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 24px; }
.chip {
  padding: 8px 14px; border: 1px solid var(--line); border-radius: 99px;
  font-family: inherit; font-size: 12.5px; font-weight: 500; color: var(--ink-2);
  cursor: pointer; background: var(--surface);
  transition: .15s var(--ease); white-space: nowrap; text-decoration: none;
  display: inline-flex; align-items: center;
}
.chip:hover:not(.active) { background: var(--paper-2); border-color: #DEDDD6; }
.chip.active { background: var(--ink); color: #fff; border-color: var(--ink); }

.alpha {
  position: sticky; top: 64px; z-index: 20;
  background: rgba(250,250,248,.9); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line); margin-top: 26px;
}
.alpha-inner {
  max-width: var(--wrap); margin: 0 auto;
  padding-left: 24px; padding-right: 24px;
  display: flex; flex-wrap: wrap; gap: 2px; padding-top: 10px; padding-bottom: 10px;
}
.alpha a {
  width: 26px; height: 26px; display: grid; place-items: center;
  border-radius: 7px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px; font-weight: 500; color: var(--muted);
  transition: .12s; text-decoration: none;
}
.alpha a:hover { background: var(--paper-2); color: var(--ink); }
.alpha a.off { color: var(--line); pointer-events: none; }

.dir-body { padding: 20px 0 64px; }
.count-line { font-size: 13px; color: var(--muted); margin: 10px 0 22px; }
.count-line b { color: var(--ink); font-weight: 600; }

.ltr-group { margin-bottom: 34px; scroll-margin-top: 118px; }
.ltr-head { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.ltr-head .l { font-family: 'Newsreader', serif; font-size: 22px; font-weight: 600; color: var(--ink); width: 22px; }
.ltr-head .rule { flex: 1; height: 1px; background: var(--line); }
.sc {
  display: flex; align-items: center; gap: 12px;
  padding: 15px 16px; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-sm); box-shadow: var(--shadow);
  transition: .2s var(--ease); text-decoration: none;
}
.sc:hover { border-color: #E0DFD8; box-shadow: var(--shadow-lift); transform: translateY(-1px); }
.sc .lg {
  width: 36px; height: 36px; border-radius: 9px; flex: none;
  display: grid; place-items: center;
  background: var(--paper-2); font-size: 14px; font-weight: 700; color: var(--ink-2);
  letter-spacing: -.03em; overflow: hidden;
}
.sc .lg img { width: 100%; height: 100%; object-fit: contain; padding: 3px; }
.sc .nm { font-size: 14px; font-weight: 600; letter-spacing: -.012em; line-height: 1.15; color: var(--ink); }
.sc .cd { font-family: 'JetBrains Mono', monospace; font-size: 10.5px; color: var(--faint); letter-spacing: .03em; margin-top: 2px; }
.empty { text-align: center; color: var(--muted); font-size: 14px; padding: 50px 0; }

/* Directory grid (4 columns on desktop) */
.dir-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }

/* ==================== About / static prose page ==================== */
.about-hero { padding: 40px 0 8px; }
.about-hero .eyebrow { color: var(--accent-2); }
.about-hero h1 {
  font-family: 'Newsreader', serif; font-optical-sizing: auto;
  font-size: 46px; line-height: 1.04; letter-spacing: -.02em;
  font-weight: 500; margin: 14px 0 0;
}
.about-hero h1 em { font-style: italic; color: var(--accent); }
.about-hero .lede { font-size: 18px; line-height: 1.55; color: var(--ink-2); margin: 20px 0 0; max-width: 56ch; }

.block { margin-top: 8px; }
.block .eyebrow { display: block; margin-bottom: 12px; }
.block h2 {
  font-family: 'Newsreader', serif; font-size: 28px; font-weight: 500;
  letter-spacing: -.01em; margin: 0 0 16px; line-height: 1.15;
}
.prose p { font-size: 16px; line-height: 1.7; color: var(--ink-2); margin: 0 0 16px; max-width: 66ch; }
.prose p:last-child { margin-bottom: 0; }
.prose strong { font-weight: 600; color: var(--ink); }
.prose a {
  color: var(--accent-2); font-weight: 500;
  text-decoration: underline; text-underline-offset: 2px;
  text-decoration-color: #CFE0D7; transition: color .15s;
}
.prose a:hover { color: var(--accent); text-decoration-color: currentColor; }
.prose a.mail { font-family: 'JetBrains Mono', monospace; text-decoration: none; letter-spacing: -.02em; }
.prose a.mail:hover { text-decoration: underline; text-underline-offset: 2px; }

/* About "How we check" step list */
.steps { display: flex; flex-direction: column; gap: 2px; margin-top: 8px; border-top: 1px solid var(--line); }
.step { display: flex; gap: 20px; padding: 22px 2px; border-bottom: 1px solid var(--line); }
.step .n {
  font-family: 'JetBrains Mono', monospace; font-size: 12px;
  color: var(--accent); flex: none; padding-top: 3px;
  font-weight: 500; width: 24px;
}
.step h3 { font-size: 16px; font-weight: 600; letter-spacing: -.01em; margin: 0; }
.step p { font-size: 14px; color: var(--muted); margin: 5px 0 0; line-height: 1.55; max-width: 60ch; }

.callout {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 26px 28px; margin-top: 8px;
}
.callout .eyebrow { color: var(--accent-2); }
.callout h2 {
  font-family: 'Newsreader', serif; font-size: 23px; font-weight: 500;
  letter-spacing: -.01em; margin: 10px 0 14px; line-height: 1.2;
}
.callout p { font-size: 15px; line-height: 1.65; color: var(--ink-2); margin: 0 0 12px; max-width: 64ch; }
.callout p:last-child { margin-bottom: 0; }
.callout strong { font-weight: 600; color: var(--ink); }

/* ==================== Blog page ==================== */
.blog-hero { padding: 36px 0 4px; }
.blog-hero .eyebrow { color: var(--accent-2); }
.blog-hero h1 {
  font-family: 'Newsreader', serif; font-optical-sizing: auto;
  font-size: 46px; line-height: 1.03; letter-spacing: -.02em;
  font-weight: 500; margin: 14px 0 0;
}
.blog-hero .sub { font-size: 18px; line-height: 1.55; color: var(--ink-2); margin: 18px 0 0; max-width: 54ch; }

.featured {
  display: grid; grid-template-columns: 1.05fr .95fr;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow);
  overflow: hidden; margin-bottom: 34px;
  transition: box-shadow .25s var(--ease), border-color .25s var(--ease);
  text-decoration: none;
}
.featured:hover { box-shadow: var(--shadow-lift); border-color: #E2E1DB; }
.featured .body { padding: 38px 40px; display: flex; flex-direction: column; }
.featured .tagline { display: flex; align-items: center; gap: 10px; }
.featured .fcat {
  font-family: 'JetBrains Mono', monospace; font-size: 10.5px;
  letter-spacing: .11em; text-transform: uppercase;
  color: var(--accent-2); font-weight: 500;
}
.featured .fpill {
  font-family: 'JetBrains Mono', monospace; font-size: 9.5px;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--faint); border: 1px solid var(--line);
  padding: 3px 8px; border-radius: 6px;
}
.featured h2 {
  font-family: 'Newsreader', serif; font-size: 32px;
  font-weight: 500; letter-spacing: -.015em; line-height: 1.12; margin: 16px 0 0;
  color: var(--ink);
}
.featured p { font-size: 15.5px; line-height: 1.6; color: var(--ink-2); margin: 14px 0 0; max-width: 48ch; }
.featured .fmeta {
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  letter-spacing: .03em; color: var(--faint);
  margin-top: 22px; display: flex; align-items: center; gap: 9px;
}
.featured .fmeta .d { width: 3px; height: 3px; border-radius: 50%; background: var(--line); }
.featured .flink {
  display: inline-flex; align-items: center; gap: 7px; margin-top: 22px;
  font-size: 14px; font-weight: 600; color: var(--ink);
  transition: gap .2s var(--ease);
}
.featured:hover .flink { gap: 11px; }
.featured .flink svg { width: 15px; height: 15px; }
.featured .cover {
  position: relative; background: var(--ink);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 20px; min-height: 280px; overflow: hidden;
}
.featured .cover::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 17px 17px;
}
.featured .cover::after {
  content: ""; position: absolute; top: -40%; left: 50%;
  width: 80%; height: 80%; transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(30,64,175,.35), transparent 70%);
  filter: blur(10px);
}
.featured .cover .cmark {
  width: 28px; height: 28px; border-radius: 5px;
  background: #fff; transform: rotate(45deg);
  position: relative; z-index: 1;
}
.featured .cover .clabel {
  position: relative; z-index: 1;
  font-family: 'JetBrains Mono', monospace; font-size: 10px;
  letter-spacing: .16em; text-transform: uppercase;
  color: rgba(255,255,255,.55);
}

.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.post {
  display: flex; flex-direction: column; padding: 24px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow);
  transition: box-shadow .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
  text-decoration: none;
}
.post:hover { box-shadow: var(--shadow-lift); border-color: #E2E1DB; transform: translateY(-2px); }
.post .pcat {
  font-family: 'JetBrains Mono', monospace; font-size: 10px; font-weight: 500;
  letter-spacing: .11em; text-transform: uppercase; color: var(--accent-2);
}
.post h3 {
  font-family: 'Newsreader', serif; font-size: 20px;
  font-weight: 500; letter-spacing: -.01em; line-height: 1.22;
  margin: 12px 0 0; color: var(--ink);
}
.post p {
  font-size: 13.5px; line-height: 1.55; color: var(--muted); margin: 10px 0 0;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.post .pmeta {
  font-family: 'JetBrains Mono', monospace; font-size: 10.5px;
  letter-spacing: .03em; color: var(--faint);
  margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line-soft);
  display: flex; align-items: center; gap: 8px;
}
.post .pmeta .d { width: 3px; height: 3px; border-radius: 50%; background: var(--line); }

.pagination { display: flex; justify-content: center; align-items: center; gap: 7px; margin-top: 44px; }
.pg {
  min-width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  gap: 6px; border: 1px solid var(--line); border-radius: 10px;
  font-family: inherit; font-size: 13.5px; font-weight: 500;
  color: var(--ink-2); background: var(--surface);
  cursor: pointer; transition: .15s; padding: 0 8px; text-decoration: none;
}
.pg:hover:not(.active) { background: var(--paper-2); border-color: #DEDDD6; }
.pg.active { background: var(--ink); color: #fff; border-color: var(--ink); }
.pg.next { padding: 0 16px; }
.pg svg { width: 14px; height: 14px; }

/* ==================== Homepage ==================== */
/* Homepage reuses `.hero` — but with a taller top pad and 52px h1. Store page
   uses `.hero` too but with a compact 6px top pad, so we scope via body.home
   to avoid a specificity duel. layout.ts sets bodyClass:"home" on the home
   template only. */
body.home .hero { padding: 60px 0 8px !important; }
body.home .hero-inner { max-width: 660px; }
body.home .hero .eyebrow { color: var(--accent-2); }
body.home .hero h1 {
  font-family: 'Newsreader', serif !important;
  font-optical-sizing: auto;
  font-size: 52px !important;
  line-height: 1.02 !important;
  letter-spacing: -.02em;
  font-weight: 500;
  margin: 14px 0 0 !important;
  text-align: left !important;
  color: var(--ink) !important;
  padding: 0;
  background: none !important;
}
body.home .hero h1 em { font-style: italic; color: var(--accent) !important; }
body.home .hero .sub {
  font-size: 18px !important;
  line-height: 1.55 !important;
  color: var(--ink-2) !important;
  margin: 20px 0 0 !important;
  max-width: 56ch;
  text-align: left !important;
}
body.home .sec { padding: 64px 0; }
body.home .sec-head { margin-bottom: 26px; }
body.home .sec-head h2 { font-size: 26px; }
body.home .sec-head .note { font-size: 13px; color: var(--faint); margin-top: 7px; }

/* Reset the legacy .hero-search styling (style.css:609) that gave the old
   dark hero a white pill with a heavy drop shadow. The new hero-search is
   just a flex wrapper around .big-search + Search button. */
.hero-search {
  display: flex !important;
  gap: 10px !important;
  margin: 30px 0 0 !important;
  max-width: 560px !important;
  background: transparent !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  position: static !important;
}
.hero-search input { padding: 0 !important; border-radius: 0 !important; }
.hero-search button { margin: 0 !important; border-radius: 13px !important; padding: 0 26px !important; }
.big-search {
  flex: 1; display: flex; align-items: center; gap: 11px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 13px; padding: 0 16px; height: 54px;
  box-shadow: var(--shadow);
  transition: border-color .15s, box-shadow .15s;
}
.big-search:focus-within { border-color: #CDCCC4; box-shadow: 0 0 0 4px rgba(26,27,30,.05); }
.big-search svg { width: 18px; height: 18px; color: var(--faint); flex: none; }
.big-search input {
  border: none; background: none; outline: none;
  font-family: inherit; font-size: 16px; color: var(--ink);
  width: 100%; letter-spacing: -.01em;
}
.big-search input::placeholder { color: var(--faint); }
.hero-search .dp-btn { height: 54px; border-radius: 13px; padding: 0 26px; }

.hero-pop {
  display: flex; align-items: center; gap: 10px;
  flex-wrap: wrap; margin-top: 18px;
  font-size: 13px; color: var(--muted);
}
.hero-pop .lbl { color: var(--faint); }

.hero-stat {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 26px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; letter-spacing: .04em; color: var(--muted);
}
.hero-stat .tick { width: 14px; height: 14px; }

/* Trust strip (below hero) */
.trust {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}
.trust-inner {
  max-width: var(--wrap); margin: 0 auto;
  padding: 20px 24px;
  display: flex; flex-wrap: wrap; gap: 8px 40px;
}
.trust .item {
  display: flex; align-items: center; gap: 9px;
  font-size: 13.5px; color: var(--ink-2);
}
.trust .item svg { width: 16px; height: 16px; color: var(--accent); flex: none; }
.trust .item b { font-weight: 600; color: var(--ink); }
.trust .item span { color: var(--muted); }

/* Category card (name in a JetBrains uppercase eyebrow above title) */
.deal-store .cat {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9.5px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--faint); margin-top: 1px;
}

/* 4-col category grid (Browse by category).
   Scoped to `.grid-4 .cat` to avoid collision with `.deal-store .cat`, which is
   a small uppercase eyebrow label used inside deal cards. */
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.grid-4 .cat {
  display: block; padding: 18px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  transition: .2s var(--ease); text-decoration: none;
}
.grid-4 .cat:hover { border-color: #E0DFD8; box-shadow: var(--shadow); transform: translateY(-1px); }
.grid-4 .cat-top { display: flex; align-items: center; gap: 11px; }
.grid-4 .cat .ic {
  width: 32px; height: 32px; border-radius: 8px; flex: none;
  display: grid; place-items: center;
  background: var(--paper-2); color: var(--ink-2);
}
.grid-4 .cat .ic svg { width: 17px; height: 17px; }
.grid-4 .cat h3 { font-size: 15px; font-weight: 600; letter-spacing: -.012em; margin: 0; color: var(--ink); }
.grid-4 .cat .count {
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  color: var(--faint); letter-spacing: .02em; margin-left: auto;
}
.grid-4 .cat .brands {
  font-size: 12.5px; color: var(--muted);
  margin: 12px 0 0; line-height: 1.5; letter-spacing: 0;
}

/* Guides section — lighter surface bg so the card grid pops off it */
.guides {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.guides .guide { background: var(--paper); }

/* 6-col store row (Top stores) */
.grid-6 { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.store-mini {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 10px; padding: 20px 12px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  transition: .2s var(--ease); text-decoration: none;
}
.store-mini:hover { border-color: #E0DFD8; box-shadow: var(--shadow); transform: translateY(-1px); }
.store-mini .lg {
  width: 42px; height: 42px; border-radius: 11px;
  display: grid; place-items: center;
  background: var(--paper-2); font-size: 16px; font-weight: 700;
  color: var(--ink-2); letter-spacing: -.03em;
  overflow: hidden;
}
.store-mini .lg img { width: 100%; height: 100%; object-fit: contain; padding: 4px; }
.store-mini .nm { font-size: 13.5px; font-weight: 600; letter-spacing: -.01em; color: var(--ink); }
.store-mini .cnt {
  font-family: 'JetBrains Mono', monospace; font-size: 10.5px;
  color: var(--faint); letter-spacing: .03em; margin-top: -4px;
}

/* Method card (How we check) */
.method-inner {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 44px; align-items: center;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow); padding: 40px;
}
.method h2 {
  font-family: 'Newsreader', serif; font-size: 28px;
  font-weight: 500; letter-spacing: -.01em; margin: 8px 0 0; line-height: 1.15;
  color: var(--ink);
}
.method .eyebrow { color: var(--accent-2); }
.method-steps { display: flex; flex-direction: column; gap: 16px; }
.mstep { display: flex; gap: 14px; }
.mstep .n {
  font-family: 'JetBrains Mono', monospace; font-size: 12px;
  color: var(--accent); flex: none; padding-top: 2px; font-weight: 500;
}
.mstep h4 { font-size: 14.5px; font-weight: 600; margin: 0; letter-spacing: -.01em; color: var(--ink); }
.mstep p { font-size: 13px; color: var(--muted); margin: 3px 0 0; line-height: 1.5; }

@media (max-width: 900px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-6 { grid-template-columns: repeat(3, 1fr); }
  .method-inner { grid-template-columns: 1fr; gap: 28px; padding: 32px; }
}
@media (max-width: 600px) {
  body.home .hero { padding: 40px 0 8px !important; }
  body.home .hero h1 { font-size: 38px !important; }
  body.home .hero .sub { font-size: 16px !important; }
  /* Keep the hero search on one row so it doesn't turn into a
     giant black Search button stacked under a giant input. Both
     shrink together, staying proportionate to the phone width. */
  .hero-search { flex-direction: row; align-items: stretch; gap: 8px; max-width: 100%; }
  .big-search { height: 48px; border-radius: 12px; padding: 0 14px; flex: 1; min-width: 0; }
  .big-search input { font-size: 15px; }
  /* Base .dp-btn is padded 13px 22px (a "hero CTA" size). On the mobile
     hero search we want a small, quiet submit button — overrides need
     !important because .dp-btn wins on specificity otherwise. */
  .hero-search .dp-btn {
    width: auto !important; height: 44px !important;
    padding: 0 12px !important; font-size: 12px !important;
    border-radius: 11px !important; flex: none;
    font-weight: 500;
  }
  .big-search { height: 44px; }
  .grid-4 { grid-template-columns: 1fr; }
  .grid-6 { grid-template-columns: repeat(2, 1fr); }
}

/* ==================== Coupon reveal modal ==================== */
/* Fired by clicking a code button. Opens in a new tab (same URL + #reveal=N)
   while the original tab navigates to the affiliate URL — legacy flow. */
.dp-reveal {
  position: fixed; inset: 0; z-index: 100;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
}
.dp-reveal[hidden] { display: none; }
.dp-reveal-backdrop {
  position: absolute; inset: 0;
  background: rgba(26, 27, 30, .45);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  animation: dp-reveal-fade .18s var(--ease);
}
.dp-reveal-card {
  position: relative; z-index: 1;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lift);
  padding: 32px 32px 26px;
  max-width: 460px; width: 100%;
  animation: dp-reveal-pop .22s var(--ease);
}
@keyframes dp-reveal-fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes dp-reveal-pop {
  from { opacity: 0; transform: translateY(6px) scale(.98); }
  to { opacity: 1; transform: none; }
}
.dp-reveal-close {
  position: absolute; top: 14px; right: 14px;
  width: 32px; height: 32px; border-radius: 8px;
  border: 1px solid var(--line); background: var(--surface);
  color: var(--ink-2); cursor: pointer;
  display: grid; place-items: center;
  transition: background .15s, border-color .15s, color .15s;
}
.dp-reveal-close:hover { background: var(--paper-2); border-color: #DEDDD6; color: var(--ink); }
.dp-reveal-close svg { width: 15px; height: 15px; }
.dp-reveal-card .eyebrow { color: var(--accent-2); display: block; }
.dp-reveal-card h2 {
  font-family: 'Newsreader', serif; font-optical-sizing: auto;
  font-size: 22px; line-height: 1.2; letter-spacing: -.01em;
  font-weight: 500; margin: 8px 0 22px; color: var(--ink);
}
.dp-reveal-code-row {
  display: flex; align-items: stretch; gap: 10px;
  margin-bottom: 18px;
}
.dp-reveal-code {
  flex: 1; min-width: 0;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 17px; font-weight: 500; letter-spacing: .04em;
  color: var(--ink);
  background: var(--paper-2);
  border: 1px dashed #D8D6CE;
  border-radius: 10px;
  padding: 12px 14px;
  display: flex; align-items: center;
  overflow-x: auto; white-space: nowrap;
}
.dp-reveal-code-row .dp-btn {
  padding: 12px 18px; font-size: 13.5px; border-radius: 10px;
  flex: none; min-width: 120px;
}
.dp-reveal-code-row .dp-btn.done {
  background: var(--accent) !important;
}
.dp-reveal-hint {
  font-size: 13px; line-height: 1.55; color: var(--muted);
  margin: 0 0 12px; letter-spacing: 0;
}
.dp-reveal-aff {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13.5px; font-weight: 600; color: var(--accent-2);
  text-decoration: underline; text-underline-offset: 2px;
  text-decoration-color: #CFE0D7; transition: color .15s;
}
.dp-reveal-aff:hover { color: var(--accent); text-decoration-color: currentColor; }
.dp-reveal-aff[hidden] { display: none; }

@media (max-width: 600px) {
  .dp-reveal-card { padding: 28px 22px 22px; }
  .dp-reveal-card h2 { font-size: 20px; margin: 6px 0 18px; }
  .dp-reveal-code-row { flex-direction: column; }
  .dp-reveal-code-row .dp-btn { min-width: 0; width: 100%; }
}

/* ==================== Newsletter strip (above footer) ==================== */
/* Rendered on every page via layout.ts. Warm-paper strip that sits between
   the last content section and the dark ink footer, so the visual transition
   dark → light → dark reads as a distinct footer neighborhood. */
.newsletter {
  background: var(--paper-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 56px 0;
  margin-top: 40px;
}
.newsletter-inner {
  max-width: var(--wrap); margin: 0 auto;
  padding-left: 24px; padding-right: 24px;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center;
}
.newsletter .eyebrow { color: var(--accent-2); display: block; margin-bottom: 10px; }
.newsletter h2 {
  font-family: 'Newsreader', serif; font-optical-sizing: auto;
  font-size: 28px; font-weight: 500; letter-spacing: -.01em; line-height: 1.15;
  margin: 0 0 12px; color: var(--ink);
}
.newsletter p {
  font-size: 15px; line-height: 1.6; color: var(--ink-2);
  margin: 0; max-width: 52ch; letter-spacing: -.004em;
}
.newsletter-form {
  display: grid; grid-template-columns: 1fr auto; gap: 10px;
  align-items: start; position: relative;
}
.newsletter-input {
  display: flex; align-items: center; gap: 10px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 12px; padding: 0 16px; height: 52px;
  box-shadow: var(--shadow);
  transition: border-color .15s, box-shadow .15s;
}
.newsletter-input:focus-within { border-color: #CDCCC4; box-shadow: 0 0 0 4px rgba(26,27,30,.05); }
.newsletter-input input {
  border: none; background: none; outline: none;
  font-family: inherit; font-size: 15px; color: var(--ink);
  width: 100%; letter-spacing: -.006em; padding: 0;
}
.newsletter-input input::placeholder { color: var(--faint); }
.newsletter-form .dp-btn { height: 52px; border-radius: 12px; padding: 0 24px; }
.newsletter-hint {
  grid-column: 1 / -1;
  font-size: 12.5px; color: var(--muted);
  margin-top: 2px; letter-spacing: 0;
}
.newsletter-hint.is-err { color: #B42318; }

/* Screen-reader-only utility for hidden labels. */
.newsletter .sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* Thank-you card that replaces the form on successful submit. */
.newsletter-thanks {
  grid-column: 1 / -1;
  text-align: left;
  max-width: 640px;
}
.newsletter-thanks .eyebrow { color: var(--accent-2); display: block; margin-bottom: 10px; }
.newsletter-thanks h2 {
  font-family: 'Newsreader', serif; font-optical-sizing: auto;
  font-size: 28px; font-weight: 500; letter-spacing: -.01em; line-height: 1.15;
  margin: 0 0 10px; color: var(--ink);
}
.newsletter-thanks p { font-size: 15px; line-height: 1.6; color: var(--ink-2); margin: 0; max-width: 56ch; }

@media (max-width: 900px) {
  .newsletter { padding: 44px 0; }
  .newsletter-inner { grid-template-columns: 1fr; gap: 24px; }
}
@media (max-width: 600px) {
  .newsletter-form { grid-template-columns: 1fr; }
  .newsletter-form .dp-btn { width: 100%; }
  .newsletter h2 { font-size: 24px; }
}

/* ==================== Contact form ==================== */
.dp-form { display: flex; flex-direction: column; gap: 20px; margin-top: 8px; }
.dp-field { display: flex; flex-direction: column; gap: 8px; }
.dp-field label {
  font-family: 'JetBrains Mono', monospace; font-size: 11px; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase; color: var(--ink-2);
}
.dp-field label .dp-opt {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 400; text-transform: none; letter-spacing: 0;
  color: var(--faint); font-size: 12px; margin-left: 5px;
}
.dp-field input[type="text"],
.dp-field input[type="email"],
.dp-field textarea {
  font-family: inherit; font-size: 15px; color: var(--ink);
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 12px 14px;
  outline: none; transition: border-color .15s, box-shadow .15s;
  letter-spacing: -.006em; line-height: 1.55;
  width: 100%; box-sizing: border-box;
}
.dp-field textarea { resize: vertical; min-height: 140px; }
.dp-field input:focus,
.dp-field textarea:focus {
  border-color: #CDCCC4; box-shadow: 0 0 0 3px rgba(26,27,30,.05);
}
.dp-field input::placeholder,
.dp-field textarea::placeholder { color: var(--faint); }
.dp-hint { font-size: 12.5px; color: var(--muted); margin-top: 2px; letter-spacing: 0; }
.dp-actions { flex-direction: row; justify-content: flex-start; margin-top: 4px; }
.dp-actions .dp-btn { min-width: 180px; }
.dp-honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-banner {
  padding: 14px 18px; border-radius: var(--radius-sm);
  font-size: 14px; line-height: 1.5; letter-spacing: -.004em;
  margin: 0 0 20px; border: 1px solid;
}
.form-banner strong { font-weight: 600; margin-right: 4px; }
.form-banner-ok {
  background: var(--accent-soft); border-color: #C7D9F5; color: var(--accent-2);
}
.form-banner-err {
  background: #FEF3F2; border-color: #FDA29B; color: #B42318;
}

/* ==================== Desktop store-page two-column ==================== */
@media (min-width: 900px) {
  .body-grid {
    grid-template-columns: 284px minmax(0, 1fr);
    gap: 48px; align-items: start; padding-top: 8px;
  }
  .sidebar { grid-column: 1; grid-row: 1; position: sticky; top: 84px; }
  .main { grid-column: 2; grid-row: 1; }
}

/* ==================== Responsive ==================== */
@media (max-width: 900px) {
  .post-grid { grid-template-columns: repeat(2, 1fr); }
  .featured { grid-template-columns: 1fr; }
  .featured .cover { min-height: 180px; order: -1; }
  .featured .body { padding: 30px 28px; }
  .featured h2 { font-size: 27px; }
  .dir-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 860px) {
  .grid-3, .store-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .hdr .nav, .hdr-right .search { display: none; }
  .menu-btn { display: inline-flex; }
  .hdr { gap: 12px; }
  .logo-lockup { margin-right: auto; }
  .dir-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .wrap { padding-left: 18px; padding-right: 18px; }
  .cat-hero h1 { font-size: 32px; }
  .cat-desc { font-size: 15.5px; }
  .dir-hero h1 { font-size: 33px; }
  .about-hero h1, .blog-hero h1 { font-size: 34px; }
  .about-hero .lede, .blog-hero .sub { font-size: 16px; }
  .grid-3, .store-grid, .post-grid, .dir-grid { grid-template-columns: 1fr; }
  .sortbar { flex-direction: column; align-items: flex-start; gap: 12px; }
  .seg { width: 100%; justify-content: space-between; }
  .sec-head { flex-direction: column; align-items: flex-start; gap: 6px; }
  .hero h1 { font-size: 30px; }
  .best-cta { width: 100%; }
  .best-cta .dp-btn { width: 100%; }
  .best-meta { gap: 10px 14px; }
  .best-meta .dot-sep { display: none; }
  .best-meta .m { min-width: 100%; }
  .see-all { margin-left: 0; margin-top: 2px; }
  .coupon .row { gap: 16px; flex-wrap: wrap; }
  .figure { width: 70px; }
  .figure .n { font-size: 28px; }
  .coupon .act { margin-left: 0; width: 100%; padding-left: 0; margin-top: 2px; }
  .code-btn { width: 100%; }
  .reveal { width: 100%; justify-content: space-between; }
  .code-val { flex: 1; text-align: center; }
  .save { align-items: flex-start; }
  .save .amt { align-self: center; }
  .foot-links { grid-template-columns: 1fr 1fr; gap: 22px 26px; }
  .foot-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
