/* ============================================
   The Cashback Guide — Purple & Orange Energetic Theme
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Space+Mono:wght@400;700&display=swap');

/* --- CSS Variables --- */
:root {
  --purple-900: #2d1b69;
  --purple-800: #3b2080;
  --purple-700: #4c2899;
  --purple-600: #6233b5;
  --purple-500: #7c3aed;
  --purple-400: #9b6cf0;
  --purple-300: #b794f6;
  --purple-200: #d6bcfa;
  --purple-100: #ede9fe;
  --purple-50: #f5f3ff;

  --orange-600: #ea580c;
  --orange-500: #f97316;
  --orange-400: #fb923c;
  --orange-300: #fdba74;
  --orange-200: #fed7aa;
  --orange-100: #ffedd5;

  --green-500: #22c55e;
  --green-400: #4ade80;
  --green-100: #dcfce7;

  --red-500: #ef4444;
  --red-100: #fef2f2;

  --grey-900: #111827;
  --grey-800: #1f2937;
  --grey-700: #374151;
  --grey-600: #4b5563;
  --grey-500: #6b7280;
  --grey-400: #9ca3af;
  --grey-300: #d1d5db;
  --grey-200: #e5e7eb;
  --grey-100: #f3f4f6;
  --grey-50: #f9fafb;

  --bg-primary: #faf8ff;
  --bg-card: #ffffff;
  --bg-dark: var(--purple-900);
  --text-primary: var(--grey-900);
  --text-secondary: var(--grey-600);
  --text-muted: var(--grey-400);

  --accent: var(--purple-500);
  --accent-hover: var(--purple-600);
  --accent-light: var(--purple-100);
  --highlight: var(--orange-500);
  --highlight-hover: var(--orange-600);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --shadow-sm: 0 1px 3px rgba(45, 27, 105, 0.06);
  --shadow-md: 0 4px 12px rgba(45, 27, 105, 0.08);
  --shadow-lg: 0 8px 30px rgba(45, 27, 105, 0.12);
  --shadow-xl: 0 16px 50px rgba(45, 27, 105, 0.15);
  --shadow-glow: 0 0 40px rgba(124, 58, 237, 0.15);

  --font-display: 'Outfit', sans-serif;
  --font-mono: 'Space Mono', monospace;

  --container: 1200px;
  --header-height: 72px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-display);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--accent-hover); }

img { max-width: 100%; height: auto; }

/* --- Container --- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Header --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--grey-200);
  height: var(--header-height);
  transition: box-shadow 0.3s;
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--purple-900);
  letter-spacing: -0.5px;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--purple-500), var(--orange-500));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
  font-weight: 900;
}

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

.site-nav a {
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--grey-700);
  transition: all 0.2s;
}

.site-nav a:hover {
  background: var(--purple-100);
  color: var(--purple-700);
}

.site-nav a.active {
  background: var(--purple-500);
  color: white;
}

/* Mobile menu */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  align-items: center;
  justify-content: center;
  color: var(--grey-700);
}

.menu-toggle svg { width: 24px; height: 24px; }

/* --- Hero Section --- */
.hero {
  padding: 80px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 140%;
  height: 200%;
  background: radial-gradient(ellipse at 30% 20%, rgba(124, 58, 237, 0.08) 0%, transparent 50%),
              radial-gradient(ellipse at 70% 80%, rgba(249, 115, 22, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content { position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: var(--purple-100);
  color: var(--purple-700);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
  animation: fadeInUp 0.6s ease;
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange-500);
  animation: pulse 2s infinite;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
  animation: fadeInUp 0.6s ease 0.1s both;
}

.hero h1 .gradient-text {
  background: linear-gradient(135deg, var(--purple-500), var(--orange-500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 32px;
  animation: fadeInUp 0.6s ease 0.2s both;
}

.hero-cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.6s ease 0.3s both;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.95rem;
  font-family: var(--font-display);
  cursor: pointer;
  border: none;
  transition: all 0.25s;
}

.btn-primary {
  background: linear-gradient(135deg, var(--purple-500), var(--purple-600));
  color: white;
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(124, 58, 237, 0.4);
  color: white;
}

.btn-secondary {
  background: white;
  color: var(--purple-700);
  border: 2px solid var(--purple-200);
}

.btn-secondary:hover {
  border-color: var(--purple-400);
  background: var(--purple-50);
  color: var(--purple-700);
}

.btn-orange {
  background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
  color: white;
  box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

.btn-orange:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(249, 115, 22, 0.4);
  color: white;
}

.btn-sm { padding: 8px 18px; font-size: 0.85rem; }

/* --- Stats Bar --- */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  padding: 40px 0;
  margin-bottom: 20px;
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
  transition: all 0.3s;
}

.stat-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--purple-200);
}

.stat-number {
  font-size: 2rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--purple-500), var(--orange-500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 500;
  margin-top: 4px;
}

/* --- Section Titles --- */
.section-title {
  text-align: center;
  margin-bottom: 48px;
}

.section-title h2 {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}

.section-title p {
  color: var(--text-secondary);
  max-width: 550px;
  margin: 0 auto;
}

.section-label {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--orange-500);
  margin-bottom: 8px;
}

/* --- Cashback Site Cards --- */
.sites-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 24px;
  margin-bottom: 60px;
}

.site-card {
  background: var(--bg-card);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.site-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--purple-500), var(--orange-500));
  opacity: 0;
  transition: opacity 0.3s;
}

.site-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: var(--purple-200);
}

.site-card:hover::before { opacity: 1; }

.site-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.site-card-logo {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.3rem;
  color: white;
}

.site-card-badge {
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
}

.badge-best { background: var(--green-100); color: #16a34a; }
.badge-popular { background: var(--purple-100); color: var(--purple-700); }
.badge-unique { background: var(--orange-100); color: var(--orange-600); }
.badge-grocery { background: #fef3c7; color: #b45309; }

.site-card-name {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.site-card-type {
  font-size: 0.82rem;
  color: var(--text-secondary);
  font-weight: 500;
  margin-bottom: 16px;
}

.site-card-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.rating-bar {
  flex: 1;
  height: 8px;
  background: var(--grey-200);
  border-radius: 100px;
  overflow: hidden;
}

.rating-fill {
  height: 100%;
  border-radius: 100px;
  background: linear-gradient(90deg, var(--purple-500), var(--orange-400));
  transition: width 1s ease;
}

.rating-score {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--purple-700);
  min-width: 35px;
}

.site-card-features {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.feature-tag {
  padding: 4px 10px;
  background: var(--grey-100);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--grey-700);
}

.site-card-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--grey-200);
  margin-bottom: 16px;
}

.meta-item { }

.meta-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  font-weight: 600;
}

.meta-value {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-primary);
}

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

.site-card-actions .btn { flex: 1; justify-content: center; font-size: 0.85rem; padding: 10px 16px; }

/* --- Pros & Cons --- */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 16px 0;
}

.pro-item, .con-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.85rem;
  line-height: 1.4;
}

.pro-icon { color: var(--green-500); font-weight: 700; flex-shrink: 0; }
.con-icon { color: var(--red-500); font-weight: 700; flex-shrink: 0; }

/* --- Comparison Table --- */
.comparison-section {
  padding: 60px 0;
}

.comparison-table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--grey-200);
  box-shadow: var(--shadow-md);
  background: var(--bg-card);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.comparison-table thead {
  background: linear-gradient(135deg, var(--purple-900), var(--purple-700));
  color: white;
}

.comparison-table th {
  padding: 16px 20px;
  text-align: left;
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.comparison-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--grey-100);
  vertical-align: middle;
}

.comparison-table tbody tr { transition: background 0.2s; }
.comparison-table tbody tr:hover { background: var(--purple-50); }
.comparison-table tbody tr:last-child td { border-bottom: none; }

.table-site-name { font-weight: 700; color: var(--purple-900); }
.table-check { color: var(--green-500); font-weight: 700; }
.table-cross { color: var(--grey-300); }
.table-rating { font-family: var(--font-mono); font-weight: 700; color: var(--purple-600); }

/* --- Best For Section --- */
.best-for-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 60px;
}

.best-for-card {
  background: var(--bg-card);
  border: 2px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
  transition: all 0.3s;
}

.best-for-card:hover {
  border-color: var(--purple-300);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.best-for-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.best-for-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--orange-500);
  font-weight: 700;
  margin-bottom: 4px;
}

.best-for-name {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.best-for-reason {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* --- Amazon Deals Section --- */
.deals-section {
  padding: 60px 0;
  background: linear-gradient(180deg, var(--purple-50), var(--bg-primary));
  border-top: 1px solid var(--purple-100);
}

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

.deal-card {
  background: var(--bg-card);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: all 0.3s;
}

.deal-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.deal-category {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--orange-500);
  font-weight: 700;
  margin-bottom: 10px;
}

.deal-title {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 10px;
  line-height: 1.3;
}

.deal-tip {
  font-size: 0.82rem;
  color: var(--text-secondary);
  margin-bottom: 14px;
  padding: 10px 12px;
  background: var(--green-100);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--green-500);
}

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

/* --- Guides / Tips --- */
.guides-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
  margin-bottom: 60px;
}

.guide-card {
  background: var(--bg-card);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s;
}

.guide-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.guide-card-accent {
  height: 6px;
  background: linear-gradient(90deg, var(--purple-500), var(--orange-400));
}

.guide-card-body { padding: 24px; }

.guide-card-category {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--purple-500);
  font-weight: 700;
  margin-bottom: 10px;
}

.guide-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.guide-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.guide-card .read-more {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--purple-600);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.guide-card .read-more:hover { gap: 8px; }

/* --- Single Content Pages --- */
.page-header {
  padding: 50px 0 30px;
  text-align: center;
}

.page-header h1 {
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}

.page-header .subtitle {
  color: var(--text-secondary);
  font-size: 1.1rem;
}

.content-body {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px 60px;
}

.content-body h2 {
  font-size: 1.5rem;
  font-weight: 800;
  margin: 40px 0 16px;
  letter-spacing: -0.3px;
}

.content-body h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 30px 0 12px;
}

.content-body p {
  margin-bottom: 16px;
  color: var(--grey-700);
}

.content-body ul, .content-body ol {
  margin-bottom: 16px;
  padding-left: 24px;
}

.content-body li {
  margin-bottom: 8px;
  color: var(--grey-700);
}

/* Affiliate disclosure */
.affiliate-notice {
  padding: 14px 18px;
  background: var(--orange-100);
  border-left: 4px solid var(--orange-500);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.82rem;
  color: var(--grey-700);
  margin-bottom: 30px;
}

/* --- Site Detail Page --- */
.site-detail-header {
  padding: 50px 0 30px;
  background: linear-gradient(180deg, var(--purple-50), var(--bg-primary));
}

.site-detail-top {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.site-detail-logo {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.8rem;
  color: white;
}

.site-detail-info h1 {
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.5px;
}

.site-detail-type {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.site-detail-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.detail-stat {
  background: var(--bg-card);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-md);
  padding: 16px;
  text-align: center;
}

.detail-stat-value {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--purple-600);
}

.detail-stat-label {
  font-size: 0.75rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* --- Footer --- */
.site-footer {
  background: var(--purple-900);
  color: white;
  padding: 60px 0 30px;
  margin-top: 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .site-logo { color: white; margin-bottom: 12px; }

.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.88rem;
  line-height: 1.6;
}

.footer-col h4 {
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  color: var(--purple-300);
}

.footer-col a {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.88rem;
  padding: 4px 0;
  transition: color 0.2s;
}

.footer-col a:hover { color: white; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-disclaimer {
  max-width: 600px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
  line-height: 1.6;
  margin-top: 16px;
}

/* --- Ad Placeholder --- */
.ad-slot {
  background: var(--grey-100);
  border: 2px dashed var(--grey-300);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  color: var(--grey-400);
  font-size: 0.82rem;
  margin: 30px 0;
}

/* --- Newsletter --- */
.newsletter-section {
  padding: 60px 0;
  text-align: center;
}

.newsletter-box {
  background: linear-gradient(135deg, var(--purple-900), var(--purple-700));
  border-radius: var(--radius-xl);
  padding: 48px;
  color: white;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.newsletter-box::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.3) 0%, transparent 70%);
  pointer-events: none;
}

.newsletter-box h3 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 10px;
  position: relative;
}

.newsletter-box p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 24px;
  position: relative;
}

/* --- Animations --- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

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

.fade-in {
  animation: fadeInUp 0.5s ease both;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .hero { padding: 50px 0 40px; }
  .hero h1 { font-size: 2rem; }

  .sites-grid { grid-template-columns: 1fr; }
  .guides-grid { grid-template-columns: 1fr; }
  .deals-grid { grid-template-columns: 1fr; }
  .best-for-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }

  .site-nav { display: none; }
  .site-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: white;
    padding: 16px;
    border-bottom: 1px solid var(--grey-200);
    box-shadow: var(--shadow-lg);
  }

  .menu-toggle { display: flex; }

  .pros-cons { grid-template-columns: 1fr; }

  .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }

  .newsletter-box { padding: 32px 24px; }

  .comparison-table th,
  .comparison-table td { padding: 10px 12px; font-size: 0.8rem; }
}

@media (max-width: 480px) {
  .best-for-grid { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: 1fr 1fr; }
  .site-card-actions { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* --- Shortcode: Product Box --- */
.product-box {
  background: var(--bg-card);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin: 24px 0;
  transition: all 0.3s;
}

.product-box:hover {
  box-shadow: var(--shadow-md);
}

.product-box-title {
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.product-box-price {
  font-family: var(--font-mono);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--purple-600);
  margin-bottom: 8px;
}

.product-box-cashback-tip {
  font-size: 0.82rem;
  color: var(--text-secondary);
  padding: 8px 12px;
  background: var(--green-100);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  border-left: 3px solid var(--green-500);
}

/* --- List pages --- */
.list-page { padding: 40px 0 60px; }
