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

:root {
  --bg: #f7f6f2;
  --bg-accent: #f1efe8;
  --surface: #ffffff;
  --surface-soft: #f6f5ef;
  --text: #13210f;
  --muted: #4d6347;
  --primary: #ceff72;
  --primary-dark: #a7e23f;
  --primary-ink: #10210f;
  --border-soft: #d9e4d0;
  --shadow-soft: rgba(19, 33, 15, 0.06);
  --shadow-card: 0 10px 24px rgba(19, 33, 15, 0.06);
  --shadow-card-hover: 0 14px 28px rgba(19, 33, 15, 0.09);
  --black: #111111;
  --border-strong: 2px solid var(--black);
  --button-border: 3px solid var(--black);
  --button-bottom-edge: 0 3px 0 var(--black);
  --button-bottom-edge-hover: 0 1px 0 var(--black);
  --card-border: 1px solid var(--border-soft);
  --radius-card: 18px;
}

body {
  font-family: 'Manrope', 'Segoe UI', system-ui, -apple-system, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(206, 255, 114, 0.12), transparent 26%),
    linear-gradient(180deg, var(--bg-accent) 0%, var(--bg) 100%);
  color: var(--text);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-link {
  text-decoration: none;
  color: inherit;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding: 18px 0;
  border-bottom: 2px solid var(--black);
}

.site-header {
  width: 100%;
}

.site-header.navbar-clean {
  padding: 18px 0;
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.navbar-clean {
  padding: 18px 22px;
  margin-top: 0;
  border: 2px solid var(--black);
  border-radius: 0;
  border-left: 0;
  border-right: 0;
  border-bottom-width: 2px;
  background: linear-gradient(145deg, #1a1a18 0%, #111111 100%);
  box-shadow: var(--shadow-card);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
}

.logo-mark {
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at top right, rgba(206, 255, 114, 0.38), transparent 42%),
    linear-gradient(145deg, #fffef4 0%, #eff5d8 100%);
  border: 3px solid var(--black);
  box-shadow: 0 6px 0 rgba(0, 0, 0, 0.35);
  overflow: hidden;
}

.logo-mark::after {
  content: "";
  position: absolute;
  right: 6px;
  bottom: 6px;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--primary);
  border: 2px solid var(--black);
}

.logo-mark-core {
  font-size: 1.4rem;
  font-weight: 900;
  line-height: 1;
  color: var(--primary-ink);
  letter-spacing: -0.06em;
}

.logo-lockup {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.logo-word {
  font-size: 1.42rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
}

.logo-tag {
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-weight: 600;
  color: #f3f2ea;
}

.nav-links a {
  text-decoration: none;
  color: inherit;
  font-size: 0.95rem;
  transition: color 0.15s, opacity 0.15s;
  opacity: 0.72;
}

.nav-links a:hover {
  opacity: 1;
}

.nav-links a:hover,
.view-all:hover,
.text-link-right a:hover,
.breadcrumb a:hover {
  color: var(--primary-dark);
}

.nav-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.header-link {
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  padding: 10px 0;
  opacity: 0.82;
}

.header-link:hover {
  opacity: 1;
}

.header-cta,
.navbar-clean .nav-actions .header-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border: var(--button-border);
  border-radius: 999px;
  background: linear-gradient(180deg, #dcff95 0%, var(--primary) 100%);
  color: var(--primary-ink);
  box-shadow: var(--button-bottom-edge);
  opacity: 1;
}

.navbar-clean .nav-actions .header-link {
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s, color 0.2s, border-color 0.2s;
}

.navbar-clean .nav-actions .header-link:hover {
  background: linear-gradient(180deg, #d4ff86 0%, var(--primary-dark) 100%);
  color: var(--primary-ink);
  border-color: var(--black);
  transform: translateY(2px);
  box-shadow: var(--button-bottom-edge-hover);
}

.navbar-clean .nav-links a {
  color: inherit;
}

.navbar-clean .nav-links a:hover,
.navbar-clean .header-link:hover {
  color: var(--primary);
}

.nav-actions-search {
  flex-wrap: wrap;
  justify-content: flex-end;
}

.search-header,
.search-wrapper,
.listing-search {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.96);
  border: var(--border-strong);
}

.search-header {
  border-radius: 60px;
  padding: 5px 10px 5px 18px;
}

.search-header i,
.search-wrapper i,
.listing-search i {
  color: #7c8b9c;
}

.search-header input,
.search-wrapper input,
.listing-search input,
.footer-subscribe input,
.newsletter-form input,
.price-range input {
  border: none;
  outline: none;
  background: transparent;
}

.search-header input {
  padding: 8px 0;
  font-size: 0.95rem;
  width: 200px;
}

.btn-outline,
.btn-primary,
.btn-submit-large,
.btn-deal,
.apply-filters-btn,
.btn-deal-row,
.visit-btn,
.filter-toggle,
.page-item {
  border-radius: 28px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  border: var(--button-border);
  box-shadow: var(--button-bottom-edge);
}

.btn-outline,
.btn-primary,
.btn-submit-large {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.btn-outline {
  background: var(--surface-soft);
  color: var(--primary-ink);
  padding: 8px 18px;
  font-size: 0.95rem;
}

.btn-outline:hover {
  background: var(--bg-accent);
  color: var(--primary-ink);
  transform: translateY(2px);
  box-shadow: var(--button-bottom-edge-hover);
}

.btn-primary,
.apply-filters-btn,
.btn-deal-row {
  background: linear-gradient(180deg, #dcff95 0%, var(--primary) 100%);
  color: var(--primary-ink);
}

.btn-primary {
  padding: 8px 20px;
  font-size: 0.95rem;
}

.btn-primary:hover,
.apply-filters-btn:hover,
.btn-deal:hover,
.visit-btn:hover,
.btn-deal-row:hover,
.btn-submit-large:hover,
.filter-toggle:hover,
.search-wrapper button:hover,
.listing-search button:hover,
.footer-subscribe button:hover,
.newsletter-form button:hover {
  background: linear-gradient(180deg, #d4ff86 0%, var(--primary-dark) 100%);
  color: var(--primary-ink);
  transform: translateY(2px);
  box-shadow: var(--button-bottom-edge-hover);
}

.search-wrapper button:hover,
.listing-search button:hover,
.footer-subscribe button:hover,
.newsletter-form button:hover {
  box-shadow: inset 2px 0 0 var(--black), inset 0 -1px 0 var(--black);
}

.search-wrapper button:hover {
  box-shadow: inset 2px 0 0 var(--black);
}

.btn-outline i,
.btn-primary i {
  margin-right: 6px;
}

.hero {
  padding: 48px 0 32px;
  text-align: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.85fr);
  align-items: stretch;
  gap: 28px;
  text-align: left;
  position: relative;
}

.hero-grid::before,
.hero-grid::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
  border-radius: 999px;
}

.hero-grid::before {
  width: 240px;
  height: 240px;
  right: 12%;
  top: 8%;
  background: radial-gradient(circle, rgba(206, 255, 114, 0.18), transparent 68%);
}

.hero-grid::after {
  width: 180px;
  height: 180px;
  left: -20px;
  bottom: 10px;
  background: radial-gradient(circle, rgba(206, 255, 114, 0.22), transparent 70%);
}

.hero-copy,
.hero-panel {
  position: relative;
  z-index: 1;
}

.hero-copy {
  padding: 18px 0;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  margin-bottom: 18px;
  border-radius: 999px;
  border: 2px solid var(--black);
  background: var(--surface);
  box-shadow: var(--shadow-card);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero-copy h1 {
  max-width: 10ch;
  font-size: clamp(3rem, 6vw, 5.3rem);
  line-height: 0.95;
  margin-bottom: 14px;
}

.hero-copy .hero-sub {
  max-width: 56ch;
}

.hero-panel {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-panel-card {
  border: 2px solid var(--black);
  border-radius: 20px;
  box-shadow: var(--shadow-card);
  padding: 24px;
}

.hero-panel-primary {
  background: linear-gradient(135deg, #fbfaef 0%, #ceff72 52%, #eef5cc 100%);
}

.hero-panel-secondary {
  background: rgba(255, 255, 255, 0.96);
}

.hero-panel-eyebrow {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}

.hero-feature-brand {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
}

.hero-feature-logo {
  width: 88px;
  height: 88px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-feature-brand h2 {
  font-size: 1.6rem;
  margin-bottom: 6px;
}

.hero-feature-brand p {
  color: var(--muted);
}

.hero-feature-link {
  display: inline-flex;
  align-items: center;
  margin-top: 18px;
  text-decoration: none;
  color: var(--primary-ink);
  font-weight: 800;
}

.hero-mini-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-mini-item {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 12px 0;
  border-top: 2px solid rgba(17, 17, 17, 0.08);
}

.hero-mini-item:first-child {
  border-top: 0;
  padding-top: 0;
}

.hero-mini-item p {
  color: var(--muted);
  margin-top: 4px;
  line-height: 1.42;
}

.hero-mini-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  min-width: 76px;
  aspect-ratio: 1 / 1;
  padding: 8px;
  border-radius: 22px;
  border: 2px solid var(--black);
  background: var(--black);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1.05;
  text-align: center;
  box-shadow: 0 10px 20px rgba(17, 17, 17, 0.12);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.hero-metric {
  background: rgba(255, 255, 255, 0.96);
  border: 2px solid var(--black);
  border-radius: 16px;
  box-shadow: var(--shadow-card);
  padding: 16px 14px;
}

.hero-metric strong {
  display: block;
  font-size: 1.4rem;
  margin-bottom: 2px;
}

.hero-metric span {
  color: var(--muted);
  font-size: 0.9rem;
}

.hero h1,
.page-header h1,
.policy-container h1,
.store-info h1 {
  color: var(--text);
  letter-spacing: -0.03em;
  font-weight: 700;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 12px;
}

.hero-sub,
.page-header p,
.submit-cta-text,
.newsletter-text p,
.coupon-desc,
.store-last-updated,
.footer-muted {
  color: var(--muted);
}

.hero-sub {
  font-size: 1.25rem;
  margin-bottom: 32px;
}

.search-wrapper {
  max-width: 700px;
  margin: 0 auto;
  border-radius: 60px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
  align-items: stretch;
}

.search-wrapper i {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0 0 22px;
  font-size: 1.05rem;
  line-height: 1;
}

.search-wrapper input {
  flex: 1;
  padding: 18px 16px 18px 14px;
  font-size: 1.1rem;
}

.search-wrapper button,
.listing-search button,
.footer-subscribe button,
.newsletter-form button {
  border: none;
  color: white;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: inset 2px 0 0 var(--black), inset 0 -3px 0 var(--black);
  transition: all 0.2s;
}

.search-wrapper button {
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 2px 0 0 var(--black);
  background: linear-gradient(180deg, #dcff95 0%, var(--primary) 100%);
  padding: 0 34px;
  font-size: 1rem;
  color: var(--primary-ink);
  border-left: 2px solid var(--black);
  border-radius: 0 999px 999px 0;
  align-self: stretch;
  min-height: 100%;
}

.trending-search {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
  color: #4a5c6c;
  font-size: 0.95rem;
}

.trending-search span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  font-weight: 600;
  color: var(--text);
}

.trending-search a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  text-decoration: none;
  color: var(--text);
  background: var(--surface);
  padding: 5px 14px;
  border-radius: 20px;
  border: var(--border-strong);
  box-shadow: 0 8px 18px rgba(19, 33, 15, 0.07);
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  margin: 42px 0 20px;
}

.section-shell {
  position: static;
  padding: 0;
  margin: 36px 0;
  border-radius: 0;
  overflow: visible;
  background: transparent;
  border: 0;
}

.section-shell::before {
  content: none;
}

.section-shell > * {
  position: static;
  z-index: auto;
}

.section-header h2,
.section-title {
  font-size: 2rem;
  font-weight: 650;
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1.15;
  max-width: 18ch;
}

#top-offers .section-header h2 {
  max-width: none;
}

.home-page .section-header h2,
.home-page #how-it-works.section-header h2,
.home-page #categories.section-header h2,
.home-page .home-faq-header h2 {
  max-width: none;
}

.home-page .trending-search {
  justify-content: flex-start;
  margin-top: 18px;
}

.home-page .trending-search span {
  padding-right: 2px;
}

.home-page .hero-copy h1 {
  max-width: 12ch;
  font-size: clamp(3rem, 6vw, 5.15rem);
  font-weight: 800;
  line-height: 0.92;
  margin-bottom: 18px;
  letter-spacing: -0.04em;
}

.home-page .hero-sub {
  max-width: 58ch;
  font-size: 1.08rem;
  line-height: 1.7;
  margin-bottom: 28px;
}

.home-page .hero-metrics {
  margin-top: 28px;
}

.view-all,
.text-link-right a,
.breadcrumb a {
  font-weight: 600;
  color: var(--primary-dark);
  text-decoration: none;
}

.view-all i,
.text-link-right a i,
.btn-deal i,
.btn-deal-row i {
  margin-left: 6px;
  font-size: 0.85em;
}

.coupon-grid,
.store-pages-grid,
.category-grid,
.faq-grid {
  display: grid;
  gap: 24px;
}

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

.coupon-grid-spacious {
  gap: 28px;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

.coupon-card,
.filter-sidebar,
.store-page-card,
.stat-card,
.coupon-row,
.info-box,
.policy-container,
.store-header,
.step,
.cat-card {
  background: rgba(255, 255, 255, 0.97);
  border: var(--card-border);
  box-shadow: var(--shadow-card);
}

.coupon-card,
.store-page-card,
.stat-card,
.step,
.cat-card {
  border-radius: var(--radius-card);
}

.coupon-card {
  padding: 22px 20px 20px;
  display: flex;
  flex-direction: column;
}

.coupon-grid-editorial {
  align-items: stretch;
}

.coupon-card-editorial {
  gap: 12px;
  padding: 20px;
  min-width: 0;
}

.coupon-card-topline,
.coupon-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.coupon-card-store {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.store-logo-editorial {
  width: 100%;
  height: 150px;
  margin-bottom: 2px;
  border-radius: 16px;
  background: transparent;
}

.coupon-card-editorial .discount-badge {
  margin-bottom: 0;
  font-size: 0.74rem;
}

.coupon-card-editorial .coupon-title {
  font-size: 1.28rem;
  line-height: 1.15;
}

.coupon-card-editorial .coupon-desc {
  margin-bottom: 0;
  font-size: 0.98rem;
  line-height: 1.55;
}

.coupon-card-meta {
  margin-top: auto;
  padding-top: 12px;
  border-top: 2px solid rgba(17, 17, 17, 0.08);
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 600;
}

.coupon-card:hover,
.store-page-card:hover,
.coupon-row:hover {
  box-shadow: var(--shadow-card-hover);
  border-color: #ccd8c1;
  transform: translateY(-2px);
}

.store-logo,
.logo-circle,
.store-page-logo {
  background: transparent;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  box-shadow: none;
}

.store-logo {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  margin-bottom: 16px;
  font-size: 1.4rem;
  overflow: hidden;
}

.brand-badge {
  position: relative;
  display: inline-flex;
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  border-radius: inherit;
  background: linear-gradient(145deg, #fefef6 0%, #eff4d7 100%);
  border: 3px solid var(--black);
  box-shadow: 0 8px 0 rgba(17, 17, 17, 0.12);
  overflow: hidden;
  isolation: isolate;
}

.brand-badge-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  margin: 5px;
  border: 1.75px solid rgba(17, 17, 17, 0.3);
  border-radius: calc(var(--radius-card) - 4px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.66) 0%, rgba(239, 245, 215, 0.88) 100%);
  overflow: hidden;
}

.brand-badge-accent {
  position: absolute;
  display: block;
  background: var(--primary);
  opacity: 0.95;
}

.brand-badge-accent-top {
  top: 10px;
  right: 10px;
  width: 22px;
  height: 22px;
  border-radius: 999px;
}

.brand-badge-accent-bottom {
  bottom: 10px;
  left: 50%;
  width: 32px;
  height: 6px;
  margin-left: -16px;
  border-radius: 999px;
}

.brand-badge-panel {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 56%;
  min-height: 38%;
  padding: 0 14px;
  border-radius: 16px;
  background: linear-gradient(145deg, #172114 0%, #304233 100%);
  box-shadow: 0 8px 16px rgba(19, 33, 15, 0.16);
}

.brand-badge-text {
  color: #ffffff;
  font-size: clamp(0.9rem, 32%, 1.5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.brand-badge--v1 .brand-badge-inner {
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.08) 0 32%, transparent 32% 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.72) 0%, rgba(239, 245, 215, 0.88) 100%);
}

.brand-badge--v2 .brand-badge-inner::before,
.brand-badge--v3 .brand-badge-inner::before,
.brand-badge--v4 .brand-badge-inner::before,
.brand-badge--v5 .brand-badge-inner::before,
.brand-badge--v6 .brand-badge-inner::before,
.brand-badge--v7 .brand-badge-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.brand-badge--v2 .brand-badge-inner::before {
  background:
    linear-gradient(135deg, transparent 0 58%, rgba(17, 17, 17, 0.08) 58% 66%, transparent 66% 100%);
}

.brand-badge--v3 .brand-badge-inner::before {
  background:
    repeating-linear-gradient(45deg, transparent 0 8px, rgba(17, 17, 17, 0.06) 8px 11px);
}

.brand-badge--v4 .brand-badge-inner::before {
  background:
    linear-gradient(0deg, transparent 0 55%, rgba(17, 17, 17, 0.08) 55% 61%, transparent 61% 100%);
}

.brand-badge--v5 .brand-badge-inner::before {
  background:
    radial-gradient(circle at 24% 24%, rgba(17, 17, 17, 0.1) 0 10px, transparent 10px),
    radial-gradient(circle at 78% 76%, rgba(17, 17, 17, 0.08) 0 15px, transparent 15px);
}

.brand-badge--v6 .brand-badge-inner::before {
  background:
    linear-gradient(90deg, transparent 0 22%, rgba(17, 17, 17, 0.08) 22% 27%, transparent 27% 100%),
    linear-gradient(0deg, transparent 0 68%, rgba(17, 17, 17, 0.06) 68% 73%, transparent 73% 100%);
}

.brand-badge--v7 .brand-badge-inner::before {
  background:
    repeating-linear-gradient(-45deg, transparent 0 10px, rgba(17, 17, 17, 0.06) 10px 13px);
}

.brand-badge--v3 .brand-badge-accent-top,
.brand-badge--v5 .brand-badge-accent-top,
.brand-badge--v7 .brand-badge-accent-top {
  width: 18px;
  height: 18px;
  right: 12px;
  top: 12px;
}

.brand-badge--v2 .brand-badge-accent-bottom,
.brand-badge--v4 .brand-badge-accent-bottom,
.brand-badge--v6 .brand-badge-accent-bottom {
  width: 28px;
  margin-left: -14px;
}

.discount-badge,
.trending-tag,
.verified-badge,
.pill-rating {
  border-radius: 40px;
  font-weight: 700;
  display: inline-block;
}

.discount-badge {
  background: var(--black);
  color: white;
  padding: 5px 14px;
  font-size: 0.9rem;
  width: fit-content;
  margin-bottom: 12px;
}

.coupon-title,
.store-page-name {
  font-weight: 700;
}

.coupon-title {
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.coupon-desc {
  font-size: 0.9rem;
  margin-bottom: 18px;
}

.btn-deal,
.visit-btn {
  background: linear-gradient(180deg, #dcff95 0%, var(--primary) 100%);
  color: var(--primary-ink);
  text-decoration: none;
  font-weight: 700;
  text-align: center;
}

.btn-deal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 40px;
  font-size: 0.95rem;
  margin-top: auto;
}

.btn-deal:hover,
.visit-btn:hover {
  background: linear-gradient(180deg, #d4ff86 0%, var(--primary-dark) 100%);
}

.stores-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  gap: 30px 40px;
  background: linear-gradient(135deg, rgba(255,255,255,0.98), rgba(206,255,114,0.22));
  padding: 32px 28px;
  border-radius: 24px;
  border: var(--border-strong);
  box-shadow: var(--shadow-card);
  margin: 20px 0 30px;
}

.store-logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
}

.logo-circle {
  width: 70px;
  height: 70px;
  border-radius: 18px;
  font-size: 2rem;
  overflow: hidden;
}

.category-grid {
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 18px;
}

.cat-card {
  padding: 24px 12px;
  text-align: center;
  text-decoration: none;
  color: inherit;
}

.category-grid-real {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.cat-icon {
  font-size: 2.2rem;
  margin-bottom: 10px;
  color: var(--text);
}

.cat-name {
  font-weight: 700;
  font-size: 1.1rem;
}

.empty-state-card,
.filter-empty {
  background: rgba(255, 255, 255, 0.97);
  border: var(--card-border);
  border-radius: 18px;
  box-shadow: var(--shadow-card);
  color: var(--muted);
}

.empty-state-card {
  padding: 22px 20px;
}

.empty-state-inline {
  padding: 14px 16px;
}

.filter-empty {
  padding: 14px 12px;
}

.trending-tag {
  background: var(--black);
  color: #fff;
  padding: 2px 12px;
  font-size: 0.75rem;
  margin-left: 10px;
}

.submit-cta,
.newsletter-box,
.extension-cta {
  border-radius: 24px;
}

.submit-cta {
  background: linear-gradient(135deg, #f7f6f2 0%, #ceff72 55%, #eef5ce 100%);
  padding: 40px 36px;
  margin: 48px 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.submit-cta h3,
.newsletter-text h2,
.extension-cta h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
}

.btn-submit-large {
  background: linear-gradient(180deg, #dcff95 0%, var(--primary) 100%);
  color: var(--primary-ink);
  padding: 16px 38px;
  font-size: 1.2rem;
}

.steps-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px 40px;
  margin: 30px 0 20px;
}

.step {
  flex: 1 1 180px;
  padding: 28px 18px;
  text-align: center;
  border-radius: 18px;
}

.step-icon {
  background: linear-gradient(145deg, #f7f6f2 0%, #e3efbc 100%);
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  color: var(--text);
  font-size: 1.8rem;
  border: var(--border-strong);
}

.step h4 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.newsletter-box {
  background: linear-gradient(145deg, #1a1a18 0%, #111111 100%);
  padding: 44px 40px;
  margin: 60px 0 40px;
  color: white;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.newsletter-box .newsletter-text h2 {
  color: #ffffff;
}

.newsletter-text p,
.footer-desc,
.footer a,
.copyright,
.cookie-line {
  color: #c6d8c3;
}

.newsletter-form,
.footer-subscribe {
  display: flex;
}

.newsletter-form {
  min-width: 300px;
}

.newsletter-form input,
.footer-subscribe input {
  flex: 1;
  min-width: 0;
  padding: 14px 16px;
  background: white;
}

.newsletter-form input {
  border-radius: 50px 0 0 50px;
}

.footer-subscribe input {
  border-radius: 14px 0 0 14px;
}

.newsletter-form button,
.footer-subscribe button {
  background: linear-gradient(180deg, #dcff95 0%, var(--primary) 100%);
  padding: 0 20px;
  color: var(--primary-ink);
  border-left: 2px solid var(--black);
}

.newsletter-form button {
  border-radius: 0 50px 50px 0;
}

.footer-subscribe button {
  border-radius: 0 14px 14px 0;
  min-width: 56px;
}

.page-header {
  margin: 40px 0 24px;
}

.page-header-compact {
  margin: 8px 0 0;
}

.page-header h1 {
  font-size: clamp(2.3rem, 4vw, 3.4rem);
  margin-bottom: 8px;
  line-height: 1.02;
  max-width: 12ch;
}

.page-header p {
  font-size: 1.08rem;
  max-width: 62ch;
  line-height: 1.7;
}

.listing-page-header {
  width: 100%;
  margin: 8px 0 14px;
}

.listing-page-header h1 {
  max-width: none;
  margin-bottom: 14px;
}

.listing-page-header p {
  max-width: none;
}

.listing-search-wrapper {
  display: flex;
  gap: 12px;
  margin-bottom: 22px;
  flex-wrap: wrap;
  align-items: stretch;
}

.category-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.category-chip {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  min-height: 42px;
  padding: 10px 16px;
  font: inherit;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(19, 33, 15, 0.06);
}

.category-chip.is-active {
  background: var(--primary);
}

.listing-search {
  flex: 1;
  min-width: min(100%, 320px);
  border-radius: 60px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.listing-search i {
  padding-left: 20px;
}

.listing-search input {
  flex: 1;
  min-width: 0;
  padding: 16px 18px 16px 14px;
  font-size: 1rem;
}

.listing-search button {
  background: linear-gradient(180deg, #dcff95 0%, var(--primary) 100%);
  min-width: 132px;
  padding: 0 28px;
  font-size: 0.95rem;
  color: var(--primary-ink);
  border-left: 2px solid var(--black);
  border-radius: 0 999px 999px 0;
  align-self: stretch;
}

.filter-toggle {
  background: var(--surface);
  border-radius: 60px;
  min-height: 54px;
  padding: 0 22px;
  font-weight: 700;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
}

.filter-sidebar.is-open {
  display: block;
}

.listing-layout {
  display: grid;
  grid-template-columns: minmax(250px, 280px) minmax(0, 1fr);
  gap: 32px;
  margin: 20px 0 40px;
  align-items: start;
}

.filter-sidebar {
  width: 100%;
  border-radius: 18px;
  padding: 24px 22px;
  height: fit-content;
  position: sticky;
  top: 24px;
}

.filter-section {
  margin-bottom: 28px;
}

.filter-section h4 {
  font-weight: 700;
  margin-bottom: 16px;
  font-size: 1.1rem;
  color: var(--text);
}

.filter-option {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.45;
}

.filter-option input {
  margin-top: 3px;
  margin-right: 0;
  accent-color: var(--primary-dark);
}

.store-checkbox-list {
  max-height: 200px;
  overflow-y: auto;
  padding-right: 6px;
}

.price-range {
  display: flex;
  gap: 8px;
  align-items: center;
}

.price-range input {
  width: 80px;
  padding: 8px;
  border: 2px solid var(--black);
  border-radius: 20px;
  text-align: center;
  background: var(--surface-soft);
}

.apply-filters-btn {
  width: 100%;
  min-height: 48px;
  padding: 12px 18px;
  margin-top: 10px;
  border: none;
}

.coupon-listing-area {
  flex: 1;
  min-width: 0;
}

.results-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(19, 33, 15, 0.05);
  color: var(--muted);
  font-weight: 600;
}

.sort-select {
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  min-height: 44px;
  padding: 0 40px 0 16px;
  background: var(--surface);
  color: var(--text);
  font-weight: 700;
  appearance: none;
  -webkit-appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--text) 50%),
    linear-gradient(135deg, var(--text) 50%, transparent 50%);
  background-position:
    calc(100% - 20px) calc(50% - 3px),
    calc(100% - 14px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  box-shadow: 0 6px 16px rgba(19, 33, 15, 0.06);
}

.coupon-listing-area .coupon-grid {
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 24px;
}

.coupon-listing-area .coupon-card-editorial {
  gap: 16px;
  padding: 20px;
  border-radius: 22px;
}

.coupon-listing-area .coupon-card-topline {
  align-items: flex-start;
}

.coupon-listing-area .store-logo-editorial {
  width: 72px;
  height: 72px;
  margin-bottom: 0;
  border-radius: 18px;
  box-shadow: 0 8px 18px rgba(19, 33, 15, 0.08);
}

.coupon-card-content {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.coupon-listing-area .coupon-title {
  font-size: 1.02rem;
  line-height: 1.22;
  margin-bottom: 0;
}

.coupon-listing-area .coupon-desc {
  font-size: 0.9rem;
  margin-bottom: 0;
  line-height: 1.55;
}

.coupon-listing-area .coupon-card-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.coupon-listing-area .coupon-card-trust span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 32px;
  padding: 0 11px;
  border-radius: 999px;
  background: #f9faf5;
  border: 1px solid var(--border-soft);
}

.coupon-listing-area .coupon-card-meta {
  gap: 10px;
  padding-top: 12px;
  align-items: center;
}

.coupon-listing-area .coupon-card-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
}

.coupon-card-actions {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.coupon-listing-area .btn-deal {
  margin-top: 0;
  min-width: 0;
  min-height: 52px;
  font-size: 1rem;
}

.coupon-card-actions .verified-badge {
  min-height: 42px;
  padding: 6px 14px;
  font-size: 0.84rem;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 20px 0 40px;
}

.page-item {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--surface);
  font-weight: 600;
}

.page-item.active {
  background: var(--primary);
  color: var(--primary-ink);
  border-color: var(--black);
}

.page-item:hover {
  background: var(--surface-soft);
  color: var(--text);
  transform: translateY(2px);
  box-shadow: var(--button-bottom-edge-hover);
}

.store-pages-section {
  margin: 50px 0 30px;
}

.stores-header {
  max-width: 760px;
}

.stores-hero-panel {
  background: linear-gradient(135deg, #f7f6f2, #ceff72);
  border: 2px solid var(--black);
  border-radius: 22px;
  padding: 30px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 38px;
}

.stores-hero-panel h2 {
  font-size: 1.8rem;
  color: var(--text);
  margin-bottom: 8px;
}

.stores-hero-panel p,
.store-list-description,
.store-list-meta p {
  color: var(--muted);
}

.stores-hero-btn {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.stores-listing-grid,
.stores-alpha-grid {
  display: grid;
  gap: 22px;
}

.stores-listing-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.store-list-card,
.stores-alpha-card {
  background: rgba(255,255,255,0.98);
  border: var(--card-border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
}

.store-list-card {
  padding: 24px;
  text-decoration: none;
  color: inherit;
  transition: all 0.2s;
}

.store-list-card:hover {
  box-shadow: var(--shadow-card-hover);
  border-color: #ccd8c1;
  transform: translateY(-2px);
}

.store-list-top {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 16px;
}

.store-list-logo {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  background: linear-gradient(145deg, #f7f6f2 0%, #e3efbe 100%);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
  flex-shrink: 0;
  border: 2px solid var(--black);
}

.store-list-meta h3 {
  font-size: 1.3rem;
  margin-bottom: 4px;
  color: var(--text);
}

.store-list-stats,
.store-list-footer,
.stores-alpha-links {
  display: flex;
  flex-wrap: wrap;
}

.store-list-stats {
  gap: 12px;
  margin: 18px 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.store-list-stats span {
  background: var(--surface-soft);
  border-radius: 999px;
  padding: 8px 12px;
  border: 2px solid var(--black);
  box-shadow: 0 8px 18px rgba(19, 33, 15, 0.07);
}

.store-list-footer {
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  color: var(--primary-dark);
  font-weight: 700;
}

.store-list-rating {
  color: var(--muted);
  font-weight: 600;
}

.stores-alpha-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.stores-alpha-card {
  padding: 22px;
}

.stores-alpha-letter {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(145deg, #f7f6f2 0%, #e0edb8 100%);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 16px;
  border: 2px solid var(--black);
}

.stores-alpha-links {
  flex-direction: column;
  gap: 10px;
}

.stores-alpha-links a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
}

.stores-alpha-links a:hover {
  color: var(--primary-dark);
}

.stores-category-strip {
  margin: 40px 0 20px;
}

.stores-category-strip h3 {
  margin-bottom: 16px;
  color: var(--text);
}

.store-pages-grid {
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
}

.store-page-card {
  padding: 20px 16px;
  text-align: center;
  text-decoration: none;
  color: inherit;
}

.store-page-logo {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  margin: 0 auto 16px;
  font-size: 2rem;
  overflow: hidden;
}

.store-page-name {
  font-size: 1.2rem;
  margin-bottom: 4px;
}

.store-page-deals {
  color: var(--primary-dark);
  font-weight: 600;
}

.breadcrumb {
  margin: 24px 0 16px;
  color: var(--muted);
  font-size: 0.95rem;
}

.breadcrumb span {
  color: var(--text);
  font-weight: 600;
}

.breadcrumb i {
  margin: 0 8px;
  font-size: 0.75rem;
}

.policy-container,
.store-header,
.info-box {
  border-radius: 20px;
}

.policy-container {
  padding: 48px;
  margin: 30px 0 50px;
}

.policy-container h1 {
  font-size: 2.8rem;
  margin-bottom: 12px;
}

.last-updated {
  color: var(--muted);
  margin-bottom: 32px;
  font-weight: 500;
}

.policy-container h2 {
  font-size: 1.7rem;
  font-weight: 700;
  margin: 36px 0 18px;
  color: var(--text);
  border-bottom: 2px solid var(--black);
  padding-bottom: 10px;
}

.policy-container h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 28px 0 12px;
  color: var(--text);
}

.policy-container p,
.policy-container li {
  color: var(--muted);
}

.policy-container p {
  margin-bottom: 18px;
}

.policy-container ul,
.policy-container ol {
  margin: 16px 0 20px 28px;
}

.highlight-box {
  background: linear-gradient(145deg, #f7f6f2 0%, #e9f3ca 100%);
  border-radius: 16px;
  padding: 24px 28px;
  margin: 28px 0;
  border: var(--border-strong);
  border-left: 10px solid var(--black);
}

.store-header {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  align-items: start;
  justify-content: stretch;
  gap: 20px 28px;
  margin: 20px 0 30px;
  padding: 32px 36px;
}

.summary-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 8px;
}

.editorial-main > .section-shell:first-child {
  margin-top: 0;
}

.summary-chip {
  background: rgba(255, 255, 255, 0.95);
  border: var(--card-border);
  border-radius: 16px;
  padding: 16px 18px;
  box-shadow: var(--shadow-card);
}

.summary-chip strong {
  display: block;
  font-size: 1.75rem;
  font-weight: 850;
  line-height: 1;
  margin-bottom: 6px;
}

.summary-chip-note strong {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.3;
}

.summary-chip span {
  color: var(--muted);
  font-size: 0.95rem;
}

.summary-chip-note {
  background: linear-gradient(180deg, #fffef4 0%, #f5f3e8 100%);
}

.editorial-layout {
  display: grid;
  grid-template-columns: minmax(220px, 260px) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.editorial-sidebar {
  position: sticky;
  top: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.editorial-main {
  min-width: 0;
}

.toc-card,
.trust-panel {
  background: rgba(255, 255, 255, 0.94);
  border: var(--card-border);
  border-radius: 16px;
  padding: 18px;
  box-shadow: var(--shadow-card);
}

.toc-kicker {
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 14px;
}

.toc-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toc-links a {
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  line-height: 1.4;
}

.trust-points {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--muted);
}

.trust-points div {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.trust-disclaimer {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.92rem;
}

.merchant-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 18px;
}

.merchant-highlights span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  background: #f9faf5;
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.store-logo-large {
  width: 110px;
  height: 110px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--text);
  border: 0;
  overflow: hidden;
}

.category-icon-card {
  background: linear-gradient(145deg, #fffef4 0%, #eef5d8 100%);
  border: 2px solid var(--black);
  box-shadow: var(--shadow-card);
  color: var(--primary-ink);
  font-size: 2.6rem;
}

.store-info h1 {
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  max-width: none;
  margin-bottom: 10px;
  line-height: 1.02;
}

.store-info {
  min-width: 0;
  width: 100%;
}

.store-description {
  max-width: none;
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.68;
}

.store-rating-copy {
  color: var(--muted);
  font-weight: 600;
}

.rating-row,
.store-meta-stats,
.coupon-meta,
.coupon-right,
.social-icons,
.brands-list {
  display: flex;
  flex-wrap: wrap;
}

.rating-row {
  align-items: center;
  gap: 14px 18px;
  margin-bottom: 14px;
}

.stars {
  color: var(--black);
  letter-spacing: 2px;
}

.visit-btn {
  padding: 8px 24px;
  border-radius: 40px;
  display: inline-block;
}

.store-meta-stats {
  gap: 14px 24px;
  margin-top: 12px;
  color: var(--muted);
  font-weight: 500;
}

.store-meta-stats .fa-check-circle {
  color: var(--primary-dark);
}

.store-last-updated {
  margin-top: 14px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 24px 0 30px;
}

.stat-card {
  padding: 22px 18px;
  text-align: center;
}

.stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary-dark);
}

.section-title {
  margin: 40px 0 20px;
}

.coupon-row {
  border-radius: 20px;
  padding: 20px 28px;
  margin-bottom: 18px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: stretch;
  gap: 20px 24px;
}

.coupon-trustline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.coupon-editorial-note {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.92rem;
}

.coupon-left {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  align-items: stretch;
  gap: 24px;
  min-width: 0;
}

.coupon-discount {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at top right, rgba(210, 236, 174, 0.14), transparent 34%),
    radial-gradient(circle at bottom left, rgba(237, 247, 221, 0.12), transparent 38%),
    linear-gradient(160deg, #191917 0%, #111111 58%, #171715 100%);
  color: white;
  font-weight: 800;
  min-height: 100%;
  padding: 18px 14px;
  border-radius: 22px;
  border: 1px solid rgba(234, 244, 217, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 10px 24px rgba(17, 17, 17, 0.12);
  font-size: 1.18rem;
  line-height: 1;
  letter-spacing: -0.02em;
  width: 112px;
  aspect-ratio: 1 / 1;
  max-width: 100%;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}

.coupon-discount.accent-dark {
  background: var(--primary-dark);
  color: var(--primary-ink);
}

.coupon-discount::before,
.coupon-discount::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.coupon-discount::before {
  opacity: 0.4;
  background:
    linear-gradient(140deg, transparent 0 52%, rgba(226, 241, 198, 0.14) 52% 58%, transparent 58% 100%),
    radial-gradient(circle at 26% 24%, rgba(233, 245, 214, 0.26) 0, rgba(233, 245, 214, 0.26) 10px, transparent 10px),
    radial-gradient(circle at 76% 78%, rgba(216, 236, 184, 0.18) 0, rgba(216, 236, 184, 0.18) 16px, transparent 16px);
}

.coupon-discount::after {
  inset: 10px;
  border-radius: 16px;
  border: 1px solid rgba(236, 245, 219, 0.12);
}

.coupon-row:nth-of-type(4n + 2) .coupon-discount::before {
  background:
    repeating-linear-gradient(135deg, transparent 0 12px, rgba(232, 245, 212, 0.1) 12px 15px),
    radial-gradient(circle at 76% 20%, rgba(215, 237, 184, 0.16) 0, rgba(215, 237, 184, 0.16) 12px, transparent 12px),
    linear-gradient(0deg, transparent 0 66%, rgba(233, 245, 215, 0.1) 66% 70%, transparent 70% 100%);
}

.coupon-row:nth-of-type(4n + 3) .coupon-discount::before {
  background:
    linear-gradient(90deg, transparent 0 62%, rgba(229, 243, 206, 0.12) 62% 67%, transparent 67% 100%),
    linear-gradient(0deg, transparent 0 34%, rgba(213, 236, 178, 0.12) 34% 38%, transparent 38% 100%),
    radial-gradient(circle at 28% 72%, rgba(236, 245, 219, 0.14) 0, rgba(236, 245, 219, 0.14) 11px, transparent 11px);
}

.coupon-row:nth-of-type(4n) .coupon-discount::before {
  background:
    repeating-linear-gradient(45deg, transparent 0 13px, rgba(227, 243, 203, 0.09) 13px 14px),
    repeating-linear-gradient(-45deg, transparent 0 13px, rgba(212, 236, 177, 0.09) 13px 14px),
    radial-gradient(circle at 50% 50%, rgba(235, 245, 217, 0.12) 0, rgba(235, 245, 217, 0.12) 18px, transparent 18px);
}

.coupon-details h4 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 4px;
  line-height: 1.2;
}

.coupon-description {
  color: var(--muted);
  font-size: 0.98rem;
  margin: 8px 0 0;
  line-height: 1.6;
}

.coupon-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--muted);
  font-size: 0.85rem;
  margin-top: 10px;
}

.coupon-right {
  display: grid;
  grid-auto-flow: row;
  align-content: center;
  justify-items: end;
  gap: 12px;
  min-width: 176px;
}

.verified-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-ink);
  background: var(--surface-soft);
  min-height: 40px;
  padding: 6px 14px;
  font-size: 0.9rem;
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  white-space: nowrap;
}

.btn-deal-row {
  min-width: 168px;
  justify-content: center;
  padding: 12px 24px;
  white-space: nowrap;
}

.text-link-right {
  margin: 20px 0 30px;
  text-align: right;
}

.brands-strip {
  margin: 30px 0;
}

.brands-strip h2 {
  margin-bottom: 16px;
}

.brands-list {
  gap: 20px;
}

.brands-list span {
  background: linear-gradient(180deg, #fff 0%, var(--surface-soft) 100%);
  padding: 8px 24px;
  border-radius: 40px;
  border: 1px solid var(--border-soft);
  box-shadow: 0 8px 18px rgba(19, 33, 15, 0.07);
}

.info-box {
  padding: 32px 30px;
  margin: 40px 0;
}

.info-box h2 {
  font-size: 1.9rem;
  margin-bottom: 14px;
  line-height: 1.14;
  letter-spacing: -0.02em;
  max-width: none;
}

.info-box-faqs h2 {
  margin: 0 0 14px;
}

.info-box p {
  margin-bottom: 20px;
  max-width: 74ch;
  line-height: 1.72;
}

.info-box-editorial {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.info-box-prose > :first-child {
  margin-top: 0;
}

.info-box-prose > :last-child {
  margin-bottom: 0;
}

.info-box-prose h2,
.info-box-prose h3,
.info-box-editorial h2,
.extension-cta h2 {
  color: var(--text);
  line-height: 1.14;
  letter-spacing: -0.02em;
}

.info-box-prose h2,
.info-box-prose h3,
.info-box-editorial h2,
.extension-cta h2 {
  font-size: 1.9rem;
  margin: 30px 0 14px;
  max-width: none;
}

.info-box-prose p,
.info-box-prose li {
  color: var(--muted);
  line-height: 1.72;
}

.info-box-prose p {
  margin: 0 0 16px;
}

.info-box-prose ul,
.info-box-prose ol {
  margin: 0 0 18px 22px;
}

.info-box-prose li + li {
  margin-top: 10px;
}

.editorial-block {
  padding-top: 28px;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
}

.editorial-block-first {
  padding-top: 0;
  border-top: 0;
}

.info-box-editorial p,
.info-box-editorial ul {
  margin: 0;
}

.info-box-editorial p + p {
  margin-top: 16px;
}

.info-box-editorial p + .editorial-list,
.info-box-editorial .editorial-list + p {
  margin-top: 18px;
}

.editorial-intro {
  font-size: 1.05rem;
  color: var(--muted);
}

.editorial-list {
  padding-left: 22px;
  color: var(--muted);
  line-height: 1.7;
  margin-top: 8px;
}

.editorial-list li + li {
  margin-top: 12px;
}

.faq-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.faq-grid-shell {
  gap: 22px;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.faq-card {
  background: rgba(255, 255, 255, 0.97);
  border: var(--card-border);
  border-radius: 16px;
  padding: 22px 20px;
  box-shadow: var(--shadow-card);
}

.faq-accordion-item {
  padding: 0;
  overflow: hidden;
}

.faq-accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 22px;
  border: 0;
  background: transparent;
  color: var(--text);
  font: inherit;
  font-size: 1.02rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.faq-accordion-trigger i {
  flex-shrink: 0;
  font-size: 0.95rem;
  transition: transform 0.2s ease;
}

.faq-accordion-item.is-open .faq-accordion-trigger i {
  transform: rotate(45deg);
}

.faq-accordion-panel {
  padding: 14px 22px 24px;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
}

.faq-accordion-panel p {
  margin: 0;
  line-height: 1.7;
}

.home-faq-header h2 {
  max-width: none;
}

.home-faq-accordion {
  gap: 20px;
}

.home-faq-accordion .faq-card {
  border-radius: 20px;
}

.home-faq-accordion .faq-accordion-trigger {
  padding: 24px 22px;
  font-size: 1.08rem;
  line-height: 1.4;
}

.home-faq-accordion .faq-accordion-panel {
  padding: 14px 22px 26px;
}

.home-faq-accordion .faq-accordion-panel p {
  max-width: 88ch;
  color: var(--muted);
  line-height: 1.72;
  margin: 0;
}

.faq-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--text);
  font-size: 1.02rem;
}

.faq-card p {
  color: var(--muted);
  line-height: 1.6;
}

.coupon-card-trust {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
}

.faq-grid > div,
.stacked-info > div {
  color: #2e445e;
  line-height: 1.6;
}

.stacked-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-highlight {
  background: linear-gradient(145deg, #f7f6f2 0%, #e8f2c8 100%);
  border-radius: 14px;
  padding: 20px;
  margin-top: 24px;
  border: 1px solid var(--border-soft);
}

.info-highlight i {
  color: #c44536;
}

.promo-table-box h3 {
  max-width: none;
}

.promo-table-description {
  max-width: 72ch;
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.7;
}

.promo-table-wrap {
  margin-top: 18px;
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-card);
}

.promo-table {
  width: 100%;
  border-collapse: collapse;
}

.promo-table thead {
  background: linear-gradient(180deg, #f3f8e3 0%, #e5f2bd 100%);
}

.promo-table th,
.promo-table td {
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  vertical-align: top;
}

.promo-table th {
  color: var(--primary-ink);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.promo-table td {
  color: var(--muted);
  line-height: 1.6;
  background: rgba(255, 255, 255, 0.95);
}

.promo-table tbody tr:last-child td {
  border-bottom: 0;
}

.promo-table tbody tr:nth-child(even) td {
  background: #fbfcf7;
}

.reddit-line {
  margin-top: 24px;
}

.extension-cta {
  background: linear-gradient(135deg, #f7f6f2 0%, #ceff72 50%, #eef5ce 100%);
  padding: 36px;
  margin: 40px 0;
  text-align: center;
  border: 2px solid var(--black);
  box-shadow: var(--shadow-card);
}

.extension-cta p {
  margin: 16px 0;
}

.extension-btn {
  padding: 16px 40px;
  font-size: 1.2rem;
}

.coupon-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(17, 17, 17, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 1000;
}

.coupon-modal-backdrop[hidden] {
  display: none;
}

.coupon-modal {
  position: relative;
  width: min(520px, 100%);
  background: #fffdf5;
  border: 3px solid var(--black);
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.coupon-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 42px;
  height: 42px;
  border: 2px solid var(--black);
  border-radius: 999px;
  background: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}

.coupon-modal-kicker {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.coupon-modal h3 {
  font-size: 1.8rem;
  line-height: 1.08;
  margin-bottom: 10px;
}

.coupon-modal-copy {
  color: var(--muted);
  margin-bottom: 18px;
}

.coupon-modal-code-row {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.coupon-modal-code {
  display: inline-flex;
  align-items: center;
  min-height: 50px;
  padding: 0 16px;
  border: 2px dashed var(--black);
  border-radius: 14px;
  background: #fff;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.08em;
}

.coupon-modal-actions {
  display: flex;
  justify-content: flex-start;
}

.coupon-modal-copy-btn {
  min-width: 132px;
}

body.modal-open {
  overflow: hidden;
}

.footer {
  background: linear-gradient(145deg, #1a1a18 0%, #111111 100%);
  color: #eef3f9;
  padding: 42px 0 28px;
  margin-top: 30px;
  border-radius: 14px 14px 0 0;
  border-top: 3px solid var(--black);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.5fr;
  gap: 28px;
}

.footer-grid > div {
  min-width: 0;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: white;
  margin-bottom: 12px;
}

.footer-logo .logo-word {
  font-size: 1.5rem;
}

.footer-logo .logo-tag {
  color: rgba(198, 216, 195, 0.78);
}

.footer-desc {
  font-size: 0.95rem;
  line-height: 1.65;
  max-width: 32ch;
  margin-bottom: 18px;
}

.footer h4 {
  color: white;
  font-weight: 700;
  margin-bottom: 14px;
  font-size: 1rem;
}

.footer ul {
  list-style: none;
}

.footer li {
  margin-bottom: 10px;
  line-height: 1.45;
}

.footer a {
  text-decoration: none;
  font-size: 0.95rem;
  display: inline-block;
  line-height: 1.45;
}

.social-icons {
  gap: 14px;
  margin-top: 14px;
  color: #bdf47e;
  font-size: 1.2rem;
}

.footer-muted {
  display: block;
  margin-bottom: 12px;
  line-height: 1.45;
}

.footer-rating {
  margin-top: 16px;
}

.pill-rating {
  background: var(--primary);
  color: #1e1f2a;
  padding: 4px 10px;
  border: 2px solid var(--black);
  box-shadow: 0 8px 18px rgba(19, 33, 15, 0.07);
}

.copyright {
  text-align: center;
  margin-top: 36px;
  font-size: 0.9rem;
  border-top: 2px solid #253a4e;
  padding-top: 22px;
}

.cookie-btn {
  background: #2a4b6e;
  border: none;
  color: white;
  padding: 5px 16px;
  border-radius: 30px;
  margin-left: 8px;
}

@media (max-width: 800px) {
  .navbar,
  .site-header-inner,
  .coupon-row {
    flex-direction: column;
  }

  .navbar-clean {
    align-items: flex-start;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    max-width: none;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .nav-actions {
    justify-content: flex-start;
  }

  .footer-grid,
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .filter-sidebar {
    width: 100%;
    display: none;
    position: static;
  }

  .editorial-layout,
  .summary-strip,
  .store-header {
    grid-template-columns: 1fr;
  }

  .editorial-sidebar {
    position: static;
  }

  .hero h1,
  .policy-container h1 {
    font-size: 2.2rem;
  }

  .submit-cta,
  .newsletter-box,
  .stores-hero-panel {
    text-align: center;
  }

  .section-header,
  .results-info {
    flex-direction: column;
    align-items: flex-start;
  }

  .listing-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .coupon-listing-area .coupon-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }

  .section-shell {
    padding: 0;
  }

  .coupon-right {
    width: 100%;
    min-width: 0;
    grid-auto-flow: row;
    justify-content: stretch;
  }

  .coupon-left {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .coupon-discount {
    width: 104px;
    min-height: 104px;
    max-width: 104px;
    font-size: 1rem;
    border-radius: 20px;
  }

  .coupon-card-actions {
    grid-template-columns: 1fr;
  }

  .coupon-card-actions .verified-badge {
    justify-self: start;
  }

  .stores-hero-panel {
    flex-direction: column;
    align-items: flex-start;
  }

  .policy-container {
    padding: 32px 24px;
  }

  .logo-tag {
    display: none;
  }
}

@media (max-width: 550px) {
  .container {
    padding: 0 16px;
  }

  .hero-panel-card,
  .hero-metric,
  .coupon-card-editorial {
    padding: 18px;
  }

  .hero-feature-brand {
    grid-template-columns: 1fr;
  }

  .hero-feature-logo {
    width: 76px;
    height: 76px;
  }

  .promo-table-wrap {
    overflow-x: auto;
  }

  .promo-table {
    min-width: 640px;
  }

  .footer-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .search-wrapper {
    flex-wrap: wrap;
    border-radius: 30px;
  }

  .listing-search {
    min-width: 100%;
  }

  .search-wrapper i {
    padding: 16px 0 0 20px;
  }

  .search-wrapper input {
    padding: 16px 12px;
  }

  .search-wrapper button,
  .listing-search button {
    width: 100%;
    padding: 16px;
    border-left: 0;
    border-top: 2px solid var(--black);
    border-radius: 0 0 30px 30px;
  }

  .search-header input {
    width: 140px;
  }

  .newsletter-form,
  .footer-subscribe {
    width: 100%;
  }

  .newsletter-form input,
  .footer-subscribe input {
    min-width: 0;
  }

  .coupon-discount {
    min-width: auto;
    padding: 6px 16px;
    font-size: 1.1rem;
  }

  .coupon-modal {
    padding: 22px 18px;
  }

  .coupon-modal-code-row {
    flex-direction: column;
    align-items: stretch;
  }

  .filter-toggle,
  .sort-select {
    width: 100%;
    justify-content: center;
  }

  .results-info {
    padding: 14px 16px;
  }
}
