*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }
button, a, input, select { touch-action: manipulation; }
h1, h2, h3 { text-wrap: balance; }
h1, h2, h3, [id] { scroll-margin-top: 84px; }

.skip-link { position: fixed; left: 12px; top: 10px; z-index: 1000; transform: translateY(-150%); padding: 10px 14px; border-radius: 8px; background: var(--ink); color: white; text-decoration: none; }
.skip-link:focus-visible { transform: translateY(0); }

:root {
  --orange:   #C24716;
  --ink:      #1A1612;
  --cream:    #FAF7F2;
  --warm:     #F0EBE3;
  --tan:      #C8B89A;
  --green:    #2D7A4F;
  --muted:    #7A6E62;
  --border:   #DDD5C8;
  --white:    #FFFFFF;

  --finance:  #D4A843;
  --tech:     #2A6AE8;
  --gaming:   #7B4AE8;
  --software: #E8622A;
  --home:     #2D7A4F;
  --everyday: #C0392B;
}

body {
  background: var(--cream);
  color: var(--ink);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  line-height: 1.6;
}

.trust-strip {
  max-width: 1120px;
  margin: -20px auto 0;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 12px 36px rgba(26, 22, 18, 0.08);
  overflow: hidden;
}

.trust-strip > div { padding: 18px 22px; border-right: 1px solid var(--border); }
.trust-strip > div:last-child { border-right: 0; }
.trust-strip strong { display: block; font-size: 14px; margin-bottom: 2px; }
.trust-strip span { display: block; color: var(--muted); font-size: 12px; }

/* ── NAV ── */
.site-nav {
  background: var(--ink);
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-search {
  display: flex;
  align-items: center;
  width: min(300px, 28vw);
  margin: 0 20px;
}

.nav-search input {
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(255,255,255,0.18);
  border-right: 0;
  border-radius: 8px 0 0 8px;
  background: rgba(255,255,255,0.08);
  color: white;
  padding: 8px 10px;
}

.nav-search input::placeholder { color: rgba(255,255,255,0.5); }

.nav-search button {
  border: 1px solid var(--orange);
  border-radius: 0 8px 8px 0;
  background: var(--orange);
  color: white;
  padding: 8px 10px;
  cursor: pointer;
}

.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;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-icon { width: 32px; height: 32px; }

.logo-text {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
}

.logo-text span { color: var(--orange); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
}

.nav-links a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--white); }

a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible {
  outline: 3px solid #F5A37F;
  outline-offset: 3px;
}

.sort-control { display: flex; align-items: center; gap: 8px; margin-left: auto; }
.sort-control label { color: var(--muted); font-size: 13px; }
.sort-control select {
  background: var(--white); color: var(--ink); border: 1px solid var(--border);
  border-radius: 8px; padding: 8px 30px 8px 10px; font: inherit; font-size: 13px;
}

.ad-slot {
  min-height: 180px; border: 1px dashed var(--border); border-radius: 12px;
  background: rgba(255,255,255,.55); display: flex; flex-direction: column;
  justify-content: center; text-align: center; overflow: hidden;
}
.ad-slot > span { color: var(--muted); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }

.nav-cta {
  background: var(--orange);
  color: white !important;
  padding: 8px 18px;
  border-radius: 8px;
  font-weight: 600 !important;
  font-size: 13px !important;
}

/* ── HERO ── */
.hero {
  background: var(--ink);
  padding: 56px 32px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(232,98,42,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(232,98,42,0.15);
  border: 1px solid rgba(232,98,42,0.3);
  color: var(--orange);
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.4; }
}

.hero h1 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 16px;
  position: relative;
}

.hero h1 span { color: var(--orange); }

.hero p {
  color: rgba(255,255,255,0.5);
  font-size: 16px;
  max-width: 480px;
  margin: 0 auto 32px;
  font-weight: 300;
}

.deal-finder {
  max-width: 700px;
  margin: 0 auto 24px;
  padding: 13px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 16px;
  background: rgba(255,255,255,.07);
  box-shadow: 0 22px 60px rgba(0,0,0,.22);
  text-align: left;
  position: relative;
}

.deal-finder__label {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0 2px 9px;
  color: rgba(255,255,255,.58);
  font: 500 10px/1 'DM Mono', monospace;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.deal-finder__label span { display: block; width: 13px; height: 3px; border-radius: 3px; background: rgba(255,255,255,.24); }
.deal-finder__label span:first-child { background: var(--orange); }
.deal-finder__controls { display: flex; }
.deal-finder__controls input {
  flex: 1;
  min-width: 0;
  min-height: 50px;
  padding: 13px 16px;
  border: 1px solid transparent;
  border-radius: 10px 0 0 10px;
  background: var(--white);
  color: var(--ink);
  font: 500 15px/1.3 'DM Sans', sans-serif;
}
.deal-finder__controls input::placeholder { color: var(--muted); }
.deal-finder__controls select {
  min-height: 50px;
  max-width: 180px;
  padding: 0 34px 0 13px;
  border: 0;
  border-left: 1px solid var(--border);
  border-radius: 0;
  background: var(--white);
  color: var(--ink);
  font: 600 13px/1.2 'DM Sans', sans-serif;
}
.deal-finder__controls button {
  min-height: 50px;
  padding: 12px 20px;
  border: 0;
  border-radius: 0 10px 10px 0;
  background: var(--orange);
  color: white;
  font: 700 14px/1.2 'DM Sans', sans-serif;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color .2s, transform .2s;
}
.deal-finder__controls button:hover { background: #A93B12; }
.deal-finder__controls button:active { transform: translateY(1px); }
.deal-finder__routes { display: flex; align-items: center; flex-wrap: wrap; gap: 7px 13px; padding: 10px 3px 0; font-size: 11px; }
.deal-finder__routes span { color: rgba(255,255,255,.38); }
.deal-finder__routes a { color: rgba(255,255,255,.72); text-underline-offset: 3px; }
.deal-finder__routes a:hover { color: white; }
.hero .hero-subscribe-label { margin: 0 auto 9px; color: rgba(255,255,255,.62); font-size: 12px; font-weight: 600; }

.hero-email {
  display: flex;
  gap: 8px;
  max-width: 400px;
  margin: 0 auto 16px;
}

.hero-email input {
  flex: 1;
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.07);
  color: white;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
}

.hero-email input::placeholder { color: rgba(255,255,255,0.3); }
.hero-email input:focus-visible { border-color: rgba(232,98,42,0.7); }

.hero-email button {
  background: var(--orange);
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}

.hero-msg {
  font-size: 13px;
  margin-top: 6px;
}
.hero-msg.success { color: #6ee7a8; }
.hero-msg.error   { color: #ff9090; }

.hero-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}

.hero-social a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  transition: color 0.2s;
}

.hero-social a:hover { color: white; }

/* ── STATS BAR ── */
.stats-bar {
  background: var(--orange);
  padding: 14px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
}

.stat-num {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 12px;
  opacity: 0.8;
  font-weight: 400;
}

/* ── CATEGORY TABS ── */
.category-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
  position: sticky;
  top: 60px;
  z-index: 90;
}

.category-bar::-webkit-scrollbar { display: none; }

.cat-tab {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 14px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: color 0.2s, border-color 0.2s, background-color 0.2s;
  text-decoration: none;
}

.cat-tab:hover { color: var(--ink); }

.cat-tab.active {
  color: var(--ink);
  border-bottom-color: var(--orange);
  font-weight: 600;
}

/* ── MAIN LAYOUT ── */
.main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 24px;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.section-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 8px;
}

.section-sub {
  font-size: 12px;
  color: var(--muted);
  font-weight: 400;
  margin-left: 4px;
}

.view-all {
  font-size: 13px;
  color: var(--orange);
  text-decoration: none;
  font-weight: 600;
}

/* ── FEATURED DEAL ── */
.featured-deal {
  background: var(--ink);
  border-radius: 16px;
  padding: 28px 32px;
  display: grid;
  grid-template-columns: 1fr 200px;
  gap: 24px;
  align-items: center;
  margin-bottom: 32px;
  position: relative;
  overflow: hidden;
}

.featured-deal::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--orange);
}

.featured-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(232,98,42,0.2);
  color: var(--orange);
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 12px;
}

.featured-title {
  font-size: 22px;
  font-weight: 700;
  color: white;
  line-height: 1.2;
  margin-bottom: 10px;
}

.featured-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
  line-height: 1.6;
}

.featured-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 16px;
}

.price-now {
  font-size: 32px;
  font-weight: 700;
  color: var(--green);
}

.price-was {
  font-size: 16px;
  color: rgba(255,255,255,0.3);
  text-decoration: line-through;
}

.price-badge {
  background: var(--orange);
  color: white;
  font-size: 12px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 6px;
  font-family: 'DM Mono', monospace;
}

.featured-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--orange);
  color: white;
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
}

.featured-img {
  width: 200px;
  height: 160px;
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  overflow: hidden;
}

.featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── DEAL GRID ── */
.deals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
  margin-bottom: 40px;
}

/* ── DEAL CARD ── */
.deal-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
  text-decoration: none;
  display: block;
  color: inherit;
  position: relative;
}

.deal-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.card-top-bar { height: 3px; width: 100%; }

.card-img {
  width: 100%;
  height: 140px;
  background: var(--warm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  position: relative;
  overflow: hidden;
}

.card-img img { width: 100%; height: 100%; object-fit: cover; }

.card-discount {
  position: absolute;
  top: 10px; left: 10px;
  background: var(--orange);
  color: white;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  padding: 3px 8px;
  border-radius: 6px;
  z-index: 2;
}

.card-source {
  position: absolute;
  top: 10px; right: 10px;
  background: rgba(0,0,0,0.6);
  color: rgba(255,255,255,0.8);
  font-size: 10px;
  padding: 3px 7px;
  border-radius: 5px;
  font-family: 'DM Mono', monospace;
  z-index: 2;
  text-transform: capitalize;
}

.card-verified {
  position: absolute;
  bottom: 10px; right: 10px;
  background: var(--green);
  color: white;
  font-size: 10px;
  padding: 3px 7px;
  border-radius: 5px;
  font-family: 'DM Mono', monospace;
  display: flex;
  align-items: center;
  gap: 3px;
  z-index: 2;
}

.card-body { padding: 14px 16px; }

.card-cat {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.card-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.35;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 10px;
}

.stars { color: #F5A623; letter-spacing: -1px; }

.card-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.price-sale {
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.price-orig {
  font-size: 13px;
  color: var(--muted);
  text-decoration: line-through;
}

.price-save {
  font-size: 12px;
  color: var(--green);
  font-weight: 600;
}

.card-history {
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 12px;
  font-family: 'DM Mono', monospace;
}

.card-history span { color: var(--green); font-weight: 500; }

.card-btn {
  display: block;
  width: 100%;
  background: var(--orange);
  color: white;
  border: none;
  padding: 10px;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
}

/* ── TELEGRAM BANNER ── */
.tg-banner {
  background: linear-gradient(135deg, #1A1612 0%, #2D2520 100%);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
  border: 1px solid rgba(232,98,42,0.2);
  flex-wrap: wrap;
}

.tg-left h3 {
  font-size: 20px;
  font-weight: 700;
  color: white;
  margin-bottom: 6px;
}

.tg-left p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  max-width: 400px;
}

.tg-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #229ED9;
  color: white;
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ── EMPTY STATE ── */
.empty-state {
  text-align: center;
  padding: 80px 24px;
  color: var(--muted);
}

.empty-state p { margin-bottom: 8px; font-size: 15px; }
.empty-state p:first-child { font-size: 18px; font-weight: 600; color: var(--ink); }

.consent-copy { margin-top: 10px; font-size: 12px; color: rgba(255,255,255,0.55); }
.consent-copy a { color: rgba(255,255,255,0.8); }

.message-page,
.legal-page,
.admin-page {
  max-width: 760px;
  min-height: 50vh;
  margin: 0 auto;
  padding: 64px 24px;
}

.message-page h1,
.legal-page h1 { margin-bottom: 16px; }
.message-page p,
.legal-page p { margin-bottom: 20px; color: var(--muted); }
.message-page .btn-primary { display: inline-block; margin-top: 12px; }

.admin-page > p { color: var(--muted); margin-bottom: 24px; }
.metric-total { font-size: 42px; font-weight: 700; color: var(--orange); margin-bottom: 28px; }
.metric-total span { font-size: 15px; color: var(--muted); }
.metric-table { margin: 28px 0; }
.metric-table h2 { font-size: 18px; margin-bottom: 10px; }
.metric-table table { width: 100%; border-collapse: collapse; background: white; }
.metric-table th, .metric-table td { padding: 9px 12px; border-bottom: 1px solid var(--border); text-align: left; }
.metric-table td { width: 110px; text-align: right; }

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 32px 0;
}

.pagination a {
  color: var(--orange);
  font-weight: 700;
  text-decoration: none;
}

.pagination span { color: var(--muted); }

/* ── CATEGORY HERO (category pages) ── */
.cat-hero {
  background: var(--ink);
  padding: 40px 32px 36px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cat-hero::before {
  content: '';
  position: absolute;
  top: -60px; left: 50%;
  transform: translateX(-50%);
  width: 400px; height: 300px;
  background: radial-gradient(ellipse, rgba(232,98,42,0.10) 0%, transparent 70%);
  pointer-events: none;
}

.cat-hero h1 {
  font-size: clamp(24px, 4vw, 38px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 8px;
  position: relative;
}

.cat-hero h1 span { color: var(--orange); }

.cat-hero p {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  max-width: 440px;
  margin: 0 auto;
  position: relative;
}

/* ── DEAL DETAIL PAGE ── */
.deal-page {
  max-width: 940px;
  margin: 0 auto;
  padding: 32px 24px;
}

.breadcrumb {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 24px;
}

.breadcrumb a { color: var(--orange); text-decoration: none; }

.deal-detail {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 40px;
  background: var(--white);
  border-radius: 16px;
  padding: 32px;
  border: 1px solid var(--border);
}

.deal-detail__img-wrap {
  background: var(--warm);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  overflow: hidden;
}

.deal-detail__img { width: 100%; object-fit: contain; border-radius: 12px; }

.deal-detail__img-placeholder {
  font-size: 80px;
  padding: 40px;
}

.deal-detail__category-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(232,98,42,0.1);
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 14px;
}

.deal-detail__title {
  font-size: 24px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.deal-detail__rating {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 16px;
}

.deal-detail__pricing {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.deal-detail__sale {
  font-size: 36px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.03em;
}

.deal-detail__original {
  font-size: 18px;
  color: var(--muted);
  text-decoration: line-through;
}

.deal-detail__badge {
  background: var(--orange);
  color: white;
  font-size: 13px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 8px;
  font-family: 'DM Mono', monospace;
}

.deal-detail__desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--orange);
  color: white;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  margin-bottom: 16px;
}

.deal-detail__disclosure {
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 16px;
  line-height: 1.5;
}

.deal-detail__meta {
  display: flex;
  gap: 8px;
  font-size: 12px;
  color: var(--muted);
  font-family: 'DM Mono', monospace;
}

.share-row { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-top: 18px; }
.share-row button,
.share-row a {
  border: 1px solid var(--border); background: var(--white); color: var(--ink);
  border-radius: 8px; padding: 8px 12px; font: inherit; font-size: 12px;
  font-weight: 600; text-decoration: none; cursor: pointer;
}

.tools-page { max-width: 1040px; margin: 0 auto; padding: 64px 24px 80px; }
.tools-hero { max-width: 720px; margin-bottom: 36px; }
.eyebrow { color: var(--orange); font: 600 11px 'DM Mono', monospace; letter-spacing: .12em; text-transform: uppercase; }
.tools-hero h1 { font-size: clamp(34px, 5vw, 56px); line-height: 1.04; letter-spacing: -.04em; margin: 12px 0 18px; }
.tools-hero p { color: var(--muted); font-size: 17px; max-width: 650px; }
.tool-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.tool-card { background: var(--white); border: 1px solid var(--border); border-radius: 18px; padding: 28px; box-shadow: 0 8px 26px rgba(26,22,18,.05); }
.tool-card--risk { border-top: 4px solid #B93B31; }
.tool-card__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.tool-mark { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 12px; background: var(--ink); color: white; font: 700 13px 'DM Mono', monospace; }
.partner-label { color: var(--muted); background: var(--warm); border-radius: 999px; padding: 5px 9px; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }
.tool-card h2 { font-size: 26px; margin-bottom: 8px; }
.tool-summary { color: var(--muted); margin-bottom: 18px; }
.tool-card ul { list-style: none; margin: 0 0 24px; }
.tool-card li { border-top: 1px solid var(--border); padding: 11px 0; color: var(--muted); font-size: 13px; }
.tool-card li strong { color: var(--ink); }
.tool-pending { color: var(--muted); font-size: 13px; padding: 13px 0; }
.risk-note { margin-top: 22px; padding: 18px 20px; background: #FFF1ED; border: 1px solid #EDC7BA; border-radius: 12px; color: #713126; font-size: 13px; }

.catalogue-hero {
  background: var(--ink); color: white; padding: 64px 24px 52px; text-align: center;
}
.catalogue-hero h1 { font-size: clamp(36px, 6vw, 64px); line-height: 1.02; letter-spacing: -.045em; margin: 14px 0 16px; }
.catalogue-hero h1 span { color: var(--orange); }
.catalogue-hero > p { max-width: 620px; margin: 0 auto 26px; color: rgba(255,255,255,.58); font-size: 16px; }
.catalogue-search { display: flex; max-width: 620px; margin: 0 auto; }
.catalogue-search input { flex: 1; min-width: 0; border: 1px solid rgba(255,255,255,.18); border-radius: 10px 0 0 10px; padding: 14px 16px; font: inherit; }
.catalogue-search button { border: 0; border-radius: 0 10px 10px 0; background: var(--orange); color: white; padding: 14px 20px; font: inherit; font-weight: 700; cursor: pointer; }
.catalogue-filters { display: grid; grid-template-columns: minmax(220px,1.6fr) repeat(3,minmax(140px,1fr)); max-width: 1180px; gap: 8px; align-items: end; text-align: left; }
.catalogue-filters > input { height: 48px; border-radius: 10px; }
.catalogue-filters label { display: grid; gap: 5px; }
.catalogue-filters label span { color: rgba(255,255,255,.65); font: 600 10px "DM Mono", monospace; letter-spacing: .05em; text-transform: uppercase; }
.catalogue-filters select,.catalogue-filters label input { width: 100%; min-width: 0; height: 48px; border: 1px solid rgba(255,255,255,.18); border-radius: 10px; padding: 0 12px; background: white; color: var(--ink); font: inherit; }
.catalogue-filters button { height: 48px; border-radius: 10px; white-space: nowrap; }
.catalogue-result-context { margin: 5px 0 0; color: var(--muted); font-size: 11px; }
.catalogue-filter-error { max-width: 740px; margin: 12px auto 0 !important; color: #ffd7c7 !important; font-weight: 600; }
.collection-links { max-width: 1120px; margin: 22px auto 0; padding: 0 24px; display: grid; grid-template-columns: .8fr repeat(2, 1fr); gap: 14px; align-items: stretch; }
.collection-links h2 { margin: 5px 0 0; font-size: 21px; }
.collection-links a { display: flex; flex-direction: column; gap: 6px; padding: 17px 18px; border: 1px solid var(--border); border-radius: 13px; color: var(--ink); background: white; text-decoration: none; }
.collection-links a:hover { border-color: var(--orange); }
.collection-links a span { color: var(--muted); font-size: 12px; line-height: 1.45; }
.collection-hero { max-width: 1120px; margin: 0 auto; padding: 52px 24px 30px; }
.collection-hero h1 { margin: 12px 0; font-size: clamp(38px, 6vw, 68px); letter-spacing: -.05em; line-height: 1; }
.collection-hero > p { max-width: 720px; color: var(--muted); font-size: 17px; line-height: 1.55; }
.collection-proof { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.collection-proof span { padding: 7px 10px; border-radius: 999px; background: var(--warm); color: var(--muted); font-size: 11px; }
.collection-method { margin: 0 0 22px; padding: 18px 20px; border-left: 3px solid var(--orange); border-radius: 0 10px 10px 0; background: var(--cream); }
.collection-method p { margin: 5px 0 0; color: var(--muted); font-size: 13px; line-height: 1.55; }
.collection-related { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; margin-top: 26px; }
.collection-related a { color: var(--orange); font-weight: 700; text-decoration: none; }
.search-alert-panel { max-width: 1040px; margin: 20px auto 0; padding: 22px 26px; display: grid; grid-template-columns: .9fr 1.4fr; gap: 28px; align-items: center; border: 1px solid var(--border); border-radius: 14px; background: var(--white); }
.search-alert-panel h2 { margin: 6px 0; font-size: 22px; letter-spacing: -.02em; }
.search-alert-panel p { color: var(--muted); font-size: 13px; }
.search-alert-form { display: grid; grid-template-columns: 1fr .75fr 1.2fr; gap: 6px 8px; align-items: end; }
.search-alert-form label { color: var(--muted); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; }
.search-alert-form input,.search-alert-form select { min-width: 0; width: 100%; border: 1px solid var(--border); border-radius: 8px; padding: 11px 10px; background: white; color: var(--ink); font: inherit; }
.search-alert-form button { grid-column: 1 / -1; border: 0; border-radius: 8px; padding: 11px 15px; background: var(--ink); color: white; font: inherit; font-weight: 700; cursor: pointer; }
.search-alert-form small { grid-column: 1 / -1; color: var(--muted); font-size: 10px; }
.alert-unavailable { padding: 15px; border-radius: 9px; background: var(--warm); color: var(--muted); font-size: 12px; line-height: 1.5; }
.alert-message { margin-top: 8px; padding: 7px 9px; border-radius: 7px; }
.alert-message.success { background: #e6f5eb; color: #27613b; }
.alert-message.error { background: #fae9e7; color: #8e3029; }
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 18px; }

.store-hero { padding-bottom: 54px; }
.store-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 16px; }
.store-card {
  display: grid; grid-template-columns: 52px 1fr auto; align-items: center; gap: 16px;
  min-height: 126px; padding: 20px; color: var(--ink); background: var(--white);
  border: 1px solid var(--border); border-radius: 16px; text-decoration: none;
  box-shadow: 0 8px 26px rgba(35, 26, 17, .05); transition: border-color .2s, transform .2s, box-shadow .2s;
}
.store-card:hover { border-color: var(--orange); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(35, 26, 17, .09); }
.store-card__mark { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 14px; background: var(--cream); color: var(--orange); font-size: 24px; font-weight: 700; }
.store-card h2 { margin: 4px 0 6px; font-size: 19px; letter-spacing: -.02em; }
.store-card p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.45; }
.store-kind { color: var(--orange); font: 600 11px/1.2 "DM Mono", monospace; letter-spacing: .06em; text-transform: uppercase; }
.store-card__cta { color: var(--orange); font-weight: 700; white-space: nowrap; }
.store-method { margin-top: 30px; }
.store-detail-hero { max-width: 1180px; margin: 0 auto; padding: 64px 24px 38px; }
.store-detail-hero h1 { margin: 10px 0 10px; font-size: clamp(38px, 6vw, 68px); letter-spacing: -.05em; line-height: 1; }
.store-detail-hero > p { max-width: 720px; color: var(--muted); line-height: 1.6; }
.store-explainer { padding: 14px 16px; border-left: 3px solid var(--orange); background: var(--cream); border-radius: 0 10px 10px 0; }

@media (max-width: 620px) {
  .store-card { grid-template-columns: 46px 1fr; }
  .store-card__cta { grid-column: 2; }
}
.product-card { display: grid; grid-template-rows: 190px 1fr; overflow: hidden; border: 1px solid var(--border); border-radius: 14px; background: var(--white); color: var(--ink); text-decoration: none; transition: transform .2s, box-shadow .2s; }
.product-card:hover { transform: translateY(-3px); box-shadow: 0 14px 34px rgba(26,22,18,.09); }
.product-card__image { display: grid; place-items: center; background: var(--warm); overflow: hidden; font-size: 54px; }
.product-card__image img { width: 100%; height: 100%; object-fit: contain; }
.product-card__body { padding: 18px; display: flex; flex-direction: column; }
.product-card__meta { color: var(--muted); font: 500 10px 'DM Mono', monospace; text-transform: uppercase; letter-spacing: .05em; }
.product-card h2 { font-size: 17px; line-height: 1.3; margin: 9px 0 14px; }
.product-card__price strong { font-size: 22px; }
.product-card__proof { display: flex; flex-wrap: wrap; gap: 6px; margin: 12px 0 18px; }
.product-card__proof span { background: var(--warm); color: var(--muted); border-radius: 99px; padding: 4px 7px; font-size: 10px; }
.product-card__cta { margin-top: auto; color: var(--orange); font-size: 13px; font-weight: 700; }

.product-page { max-width: 1040px; margin: 0 auto; padding: 36px 24px 72px; }
.product-overview { display: grid; grid-template-columns: 340px 1fr; gap: 42px; align-items: center; background: var(--white); border: 1px solid var(--border); border-radius: 18px; padding: 30px; }
.product-overview__image { height: 310px; display: grid; place-items: center; overflow: hidden; border-radius: 13px; background: var(--warm); font-size: 80px; }
.product-overview__image img { width: 100%; height: 100%; object-fit: contain; }
.product-overview h1 { font-size: clamp(28px, 4vw, 44px); line-height: 1.08; letter-spacing: -.035em; margin: 10px 0 14px; }
.price-history { margin-top: 18px; padding: 26px 30px; background: var(--white); border: 1px solid var(--border); border-radius: 16px; }
.price-history__header { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 18px; }
.price-history h2 { margin: 7px 0 0; font-size: 26px; letter-spacing: -.025em; }
.observed-low { display: flex; flex-direction: column; align-items: flex-end; text-align: right; }
.observed-low strong { color: var(--green); font-size: 25px; font-variant-numeric: tabular-nums; }
.observed-low span, .history-method, .history-warning { color: var(--muted); font-size: 12px; line-height: 1.55; }
.history-warning { padding: 10px 12px; border-left: 3px solid var(--orange); background: var(--cream); }
.history-series { display: grid; gap: 18px; }
.history-table-wrap { overflow-x: auto; }
.history-table-wrap h3 { margin: 0 0 8px; font-size: 14px; }
.history-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.history-table th, .history-table td { padding: 10px 12px; border-bottom: 1px solid var(--border); text-align: left; }
.history-table th { color: var(--muted); font: 600 10px/1.3 "DM Mono", monospace; letter-spacing: .05em; text-transform: uppercase; }
.history-table td { font-variant-numeric: tabular-nums; }
.history-method { margin: 16px 0 0; }
.product-description { color: var(--muted); margin-bottom: 22px; }
.product-facts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.product-facts div { background: var(--cream); border-radius: 10px; padding: 12px; }
.product-facts strong,.product-facts span { display: block; }
.product-facts strong { font-size: 19px; }
.product-facts span { color: var(--muted); font-size: 10px; }
.freshness-note { color: var(--muted); font-size: 11px; margin-top: 15px; }
.watch-panel { margin-top: 18px; display: grid; grid-template-columns: 1.1fr 1fr; gap: 28px; align-items: center; background: var(--ink); color: var(--white); border-radius: 16px; padding: 26px 30px; }
.watch-panel h2 { margin: 7px 0 8px; font-size: 25px; letter-spacing: -.02em; }
.watch-panel p { color: rgba(255,255,255,.65); font-size: 13px; line-height: 1.55; }
.watch-form { display: grid; grid-template-columns: 1fr 1.5fr; gap: 7px 10px; }
.watch-form label { color: rgba(255,255,255,.65); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; }
.watch-form input { min-width: 0; width: 100%; border: 1px solid rgba(255,255,255,.18); border-radius: 8px; padding: 11px 12px; font: inherit; }
.watch-price { position: relative; }
.watch-price span { position: absolute; left: 12px; top: 10px; color: var(--muted); }
.watch-price input { padding-left: 25px; }
.watch-form button { grid-column: 1 / -1; border: 0; border-radius: 8px; padding: 12px 15px; background: var(--orange); color: white; font: inherit; font-weight: 700; cursor: pointer; }
.watch-form small { grid-column: 1 / -1; color: rgba(255,255,255,.48); font-size: 10px; }
.watch-unavailable { border: 1px solid rgba(255,255,255,.14); border-radius: 10px; padding: 18px; color: rgba(255,255,255,.62); font-size: 13px; }
.watch-message { margin-top: 10px; padding: 8px 10px; border-radius: 7px; }
.watch-message.success { background: rgba(39,145,78,.22); color: #b8f4cc; }
.watch-message.error { background: rgba(194,53,43,.2); color: #ffc0bb; }
.offers-section { margin-top: 34px; }
.offer-section-header { align-items: end; gap: 28px; }
.offer-section-header p { max-width: 510px; margin: 0 0 2px; color: var(--muted); font-size: 12px; line-height: 1.5; text-align: right; }
.offer-list { display: flex; flex-direction: column; gap: 10px; }
.offer-row { position: relative; display: grid; grid-template-columns: minmax(145px,1.05fr) minmax(125px,.65fr) minmax(280px,1.55fr) minmax(155px,.7fr); align-items: stretch; gap: 0; overflow: hidden; background: var(--white); border: 1px solid var(--border); border-radius: 12px; }
.offer-row--best { border-color: rgba(230,92,32,.42); box-shadow: 0 8px 24px rgba(48,37,26,.06); }
.offer-merchant,.offer-price,.offer-terms,.offer-action { padding: 17px 18px; }
.offer-merchant { align-self: center; }
.offer-merchant strong,.offer-merchant > span { display: block; }
.offer-merchant strong { font-size: 15px; }
.offer-merchant > span:not(.offer-best-label) { margin-top: 4px; color: var(--muted); font-size: 10px; line-height: 1.4; }
.offer-best-label { width: max-content; margin-bottom: 7px; color: var(--orange); font: 700 9px/1.2 "DM Mono",monospace; letter-spacing: .055em; text-transform: uppercase; }
.offer-price { display: flex; flex-direction: column; justify-content: center; border-left: 3px solid var(--orange); background: var(--cream); font-variant-numeric: tabular-nums; }
.offer-price > span { color: var(--muted); font: 600 9px/1.3 "DM Mono",monospace; letter-spacing: .04em; text-transform: uppercase; }
.offer-price strong { display: block; margin: 4px 0 1px; font-size: 21px; letter-spacing: -.025em; }
.offer-price del { color: var(--muted); font-size: 10px; }
.offer-terms { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); align-content: center; gap: 9px 16px; margin: 0; border-right: 1px solid var(--border); }
.offer-terms div { min-width: 0; }
.offer-terms dt { color: var(--muted); font: 600 9px/1.25 "DM Mono",monospace; letter-spacing: .04em; text-transform: uppercase; }
.offer-terms dd { overflow-wrap: anywhere; margin: 2px 0 0; font-size: 11px; font-weight: 650; line-height: 1.3; }
.offer-terms__unknown { grid-column: 1 / -1; }
.offer-terms__unknown dd { color: var(--muted); font-weight: 500; }
.offer-availability::before { display: inline-block; width: 6px; height: 6px; margin-right: 5px; border-radius: 50%; background: var(--muted); content: ""; vertical-align: 1px; }
.offer-availability--in_stock::before { background: var(--green); }
.offer-availability--limited::before,.offer-availability--preorder::before { background: var(--orange); }
.offer-action { display: flex; flex-direction: column; justify-content: center; align-items: stretch; gap: 8px; }
.offer-action > span { color: var(--muted); font-size: 9px; line-height: 1.35; text-align: center; }
.offer-action > a { background: var(--orange); color: white; border-radius: 8px; padding: 10px 14px; text-align: center; text-decoration: none; font-size: 12px; font-weight: 700; white-space: nowrap; }
.offer-action > a:hover { background: #c94e18; }
.offer-action > a:focus-visible { outline: 3px solid rgba(230,92,32,.28); outline-offset: 3px; }
.catalogue-method { margin-top: 24px; background: var(--warm); border-radius: 12px; padding: 18px 20px; }
.catalogue-method p { color: var(--muted); font-size: 13px; margin-top: 4px; }

.vpn-page { max-width: 1160px; margin: 0 auto; padding: 54px 24px 80px; }
.vpn-hero { max-width: 780px; margin-bottom: 22px; }
.vpn-hero h1 { margin: 10px 0 14px; font-size: clamp(38px, 6vw, 68px); line-height: .98; letter-spacing: -.05em; }
.vpn-hero p { color: var(--muted); font-size: 16px; line-height: 1.6; }
.vpn-caution { margin: 22px 0 26px; padding: 16px 18px; border-left: 4px solid var(--orange); background: var(--warm); color: var(--muted); font-size: 13px; line-height: 1.55; }
.vpn-caution strong { color: var(--ink); }
.vpn-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.vpn-card { display: flex; flex-direction: column; border: 1px solid var(--border); border-radius: 16px; padding: 22px; background: var(--white); }
.vpn-card__header,.vpn-card__header > div { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.vpn-card__header h2 { font-size: 22px; }
.vpn-brand-mark { display: inline-flex; align-items: baseline; min-width: 132px; padding: 10px 12px; border-radius: 10px; background: var(--ink); color: white; font-size: 17px; letter-spacing: -.035em; }
.vpn-brand-mark b { font-weight: 750; }
.vpn-brand-mark span { font-weight: 500; }
.vpn-brand-mark--nordvpn { background: #3971e7; }
.vpn-brand-mark--surfshark { background: #142d2c; color: #65f2d5; }
.vpn-brand-mark--protonvpn { background: #6d4aff; }
.vpn-brand-mark--expressvpn { background: #da3940; }
.direct-label { padding: 5px 8px; border-radius: 99px; background: #e7f5ec; color: #27613b; font-size: 10px; font-weight: 700; }
.vpn-current { margin: 18px 0; padding: 15px; border-radius: 10px; background: var(--cream); }
.vpn-current > span,.vpn-current > strong { display: block; }
.vpn-current > span { color: var(--muted); font-size: 10px; text-transform: uppercase; letter-spacing: .04em; }
.vpn-current > strong { margin: 5px 0; font-size: 20px; }
.vpn-current p { color: var(--muted); font-size: 11px; line-height: 1.5; }
.vpn-current--pending { background: #f5efe5; }
.vpn-facts { margin: 0; }
.vpn-facts div { display: grid; grid-template-columns: 110px 1fr; gap: 12px; padding: 9px 0; border-top: 1px solid var(--border); }
.vpn-facts dt { color: var(--muted); font-size: 10px; font-weight: 700; text-transform: uppercase; }
.vpn-facts dd { margin: 0; font-size: 12px; line-height: 1.45; }
.vpn-actions { display: flex; align-items: center; gap: 14px; margin-top: auto; padding-top: 20px; }
.vpn-actions a:not(.btn-primary) { color: var(--muted); font-size: 11px; }
.vpn-method { margin-top: 30px; padding: 26px; border-radius: 14px; background: var(--ink); color: white; }
.vpn-method h2 { margin-bottom: 14px; }
.vpn-method ol { margin: 0; padding-left: 22px; color: rgba(255,255,255,.68); line-height: 1.6; font-size: 13px; }
.vpn-method strong { color: white; }

.deal-detail__saving {
  color: var(--green);
  font-size: 14px;
  font-weight: 600;
  margin: -8px 0 18px;
}
.comparison-link { display: inline-block; margin-top: 14px; color: var(--orange); font-size: 13px; font-weight: 700; text-decoration: none; }

.related-deals { margin-top: 40px; }

/* ── FOOTER ── */
footer {
  background: var(--ink);
  padding: 40px 32px 24px;
  margin-top: 40px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.footer-brand p {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  max-width: 280px;
  line-height: 1.6;
  margin-top: 10px;
}

.footer-links h4 {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.3); }

.affiliate-note {
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  max-width: 500px;
  text-align: right;
}

/* ── RESPONSIVE ── */
.price-sale,.price-orig,.price-save,.deal-detail__sale,.deal-detail__original,
.product-card__price,.offer-price,.metric-total,table td { font-variant-numeric: tabular-nums; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .product-card:hover, .deal-card:hover { transform: none; }
}

@media (max-width: 768px) {
  .site-nav { padding-left: max(16px, env(safe-area-inset-left)); padding-right: max(16px, env(safe-area-inset-right)); }
  .nav-search { flex: 1; margin: 0 10px; width: auto; }
  .nav-search button { padding-inline: 8px; }
  .nav-links { gap: 0; }
  .nav-links li { display: none; }
  .nav-links li:last-child { display: block; }
  .nav-cta { display: flex; align-items: center; min-height: 42px; padding-inline: 12px; }

  .hero { padding: 40px 16px 36px; }
  .hero-email { flex-direction: column; }

  .stats-bar { gap: 20px; padding: 14px 16px; }

  .category-bar { padding: 0 12px; }

  .main { padding: 24px 16px; }

  .featured-deal { grid-template-columns: 1fr; padding: 24px; }
  .featured-img { display: none; }

  .deals-grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }

  .tg-banner { padding: 24px; }
  .tg-banner { flex-direction: column; text-align: center; }

  footer { padding: 32px 16px 20px; }
  .footer-top { gap: 24px; }

  .deal-detail { grid-template-columns: 1fr; }
  .deal-detail__img-wrap { min-height: 200px; }
  .trust-strip { margin: 0; border-radius: 0; grid-template-columns: 1fr; }
  .trust-strip > div { border-right: 0; border-bottom: 1px solid var(--border); }
  .trust-strip > div:last-child { border-bottom: 0; }
  .tool-grid { grid-template-columns: 1fr; }
  .tools-page { padding-top: 40px; }
  .catalogue-search { flex-direction: column; gap: 8px; }
  .catalogue-search input,.catalogue-search button { border-radius: 10px; }
  .catalogue-filters { display: grid; grid-template-columns: 1fr; }
  .catalogue-filters > input,.catalogue-filters label,.catalogue-filters button { width: 100%; }
  .collection-links { grid-template-columns: 1fr; padding: 0 16px; }
  .search-alert-panel { margin: 14px 16px 0; grid-template-columns: 1fr; padding: 20px; }
  .search-alert-form { grid-template-columns: 1fr; }
  .search-alert-form button,.search-alert-form small { grid-column: 1; }
  .watch-panel { grid-template-columns: 1fr; padding: 22px; }
  .watch-form { grid-template-columns: 1fr; }
  .watch-form button,.watch-form small { grid-column: 1; }
  .vpn-grid { grid-template-columns: 1fr; }
  .vpn-page { padding-left: 16px; padding-right: 16px; }
  .vpn-facts div { grid-template-columns: 92px 1fr; }
  .vpn-actions { align-items: flex-start; flex-direction: column; }
  .product-overview { grid-template-columns: 1fr; gap: 24px; padding: 20px; }
  .product-overview__image { height: 230px; }
  .product-facts { grid-template-columns: repeat(2, 1fr); }
  .price-history { padding: 20px; }
  .price-history__header { align-items: flex-start; flex-direction: column; }
  .observed-low { align-items: flex-start; text-align: left; }
  .offer-section-header { align-items: flex-start; flex-direction: column; gap: 7px; }
  .offer-section-header p { max-width: none; text-align: left; }
  .offer-row { grid-template-columns: 1fr 1fr; }
  .offer-terms { grid-column: 1 / -1; border-top: 1px solid var(--border); border-right: 0; }
  .offer-action { grid-column: 1 / -1; border-top: 1px solid var(--border); }
}

@media (max-width: 520px) {
  .offer-row { grid-template-columns: 1fr; }
  .offer-merchant,.offer-price,.offer-terms,.offer-action { grid-column: 1; }
  .offer-price { border-top: 1px solid var(--border); }
  .offer-terms { grid-template-columns: 1fr 1fr; }
  .logo-text { display: none; }
  .deal-finder__controls { flex-direction: column; gap: 7px; }
  .deal-finder__controls input,.deal-finder__controls select,.deal-finder__controls button { max-width: none; border: 0; border-radius: 9px; width: 100%; }
  .deal-finder__routes { justify-content: center; }
}
