/*
Theme Name: DeerRun Affiliate
Theme URI: https://example.com/deerrun
Author: DeerRun Affiliate
Description: DeerRun Coupons & Affiliate Landing Page Theme - Full Functionality
Version: 2.0.0
License: GNU General Public License v2 or later
Text Domain: deerrun
*/

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

:root {
  --ink: #1a1512;
  --ink-soft: #3a322c;
  --cream: #faf6f1;
  --cream-deep: #f2ebe0;
  --rose-gold: #c89b7b;
  --rose-gold-deep: #a67852;
  --blush: #f4dad0;
  --blush-deep: #e8b9a8;
  --coral: #d97757;
  --coral-hot: #e85d3a;
  --sage: #8a9a7b;
  --gold: #c9a96e;
  --success: #3d9970;
  --alert: #d9534f;
  --line: rgba(26, 21, 18, 0.12);
  --shadow-sm: 0 2px 8px rgba(26,21,18,.06);
  --shadow-md: 0 10px 40px rgba(26,21,18,.08);
  --shadow-lg: 0 20px 60px rgba(26,21,18,.12);
  --shadow-xl: 0 30px 80px rgba(26,21,18,.18);
}

body {
  font-family: 'Manrope', sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: 'Fraunces', serif; font-weight: 400; letter-spacing: -0.02em; line-height: 1.05; }
.mono { font-family: 'JetBrains Mono', monospace; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* URGENCY BAR */
.urgency-bar {
  background: linear-gradient(90deg, var(--coral-hot), var(--coral), var(--coral-hot));
  background-size: 200% 100%;
  animation: shimmer 3s linear infinite;
  color: #fff;
  padding: 12px 20px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
@keyframes shimmer { 0% { background-position: 0% 50%; } 100% { background-position: 200% 50%; } }
.urgency-bar .pulse-dot { width: 8px; height: 8px; background: #fff; border-radius: 50%; animation: pulseDot 1.5s infinite; }
@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(255,255,255,0.7); }
  70% { opacity: 1; box-shadow: 0 0 0 8px rgba(255,255,255,0); }
}

/* NAV */
nav {
  background: rgba(250, 246, 241, 0.95);
  backdrop-filter: blur(20px);
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 100;
}
nav .container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-family: 'Fraunces', serif; font-size: 26px; font-weight: 500; letter-spacing: -0.02em; }
.logo span { font-style: italic; color: var(--rose-gold-deep); }
.nav-links { display: flex; gap: 32px; font-size: 14px; font-weight: 500; }
.nav-links a { transition: color 0.3s; cursor: pointer; }
.nav-links a:hover { color: var(--rose-gold-deep); }
.nav-cta {
  background: var(--coral-hot);
  color: #fff;
  padding: 11px 22px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: all 0.3s;
  box-shadow: 0 4px 14px rgba(232, 93, 58, 0.35);
  cursor: pointer;
  border: none;
  font-family: 'Manrope', sans-serif;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232, 93, 58, 0.5); }

/* NBC BANNER */
.nbc-banner {
  background: linear-gradient(135deg, #0a0612 0%, #1a0830 50%, #2a1050 100%);
  padding: 0;
  position: relative;
  overflow: hidden;
}
.nbc-banner-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  padding: 40px 0;
  position: relative;
  z-index: 2;
}
.nbc-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at bottom, rgba(140, 80, 200, 0.3) 0%, transparent 70%);
}
.nbc-banner-text { color: #fff; padding-left: 20px; }
.nbc-logo-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.nbc-deerrun-logo {
  background: #e8253e;
  color: #fff;
  padding: 6px 12px;
  border-radius: 6px;
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.nbc-divider { width: 1px; height: 30px; background: rgba(255,255,255,0.3); }
.nbc-news-logo {
  background: #fff;
  color: #000;
  padding: 6px 14px;
  border-radius: 4px;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.05em;
}
.nbc-news-logo span { color: #0089d0; }
.nbc-banner h3 {
  color: #fff;
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 500;
  line-height: 1.2;
  margin: 0;
}
.nbc-banner h3 em { color: #e8253e; font-style: normal; font-weight: 600; }
.nbc-banner-image {
  position: relative;
  height: 100%;
  min-height: 200px;
}
.nbc-banner-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right center;
}

/* HERO */
.hero {
  position: relative;
  padding: 60px 0 80px;
  background: linear-gradient(135deg, #fef1e8 0%, #faf6f1 50%, #f4dad0 100%);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(217,119,87,0.25) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}
.live-dot { width: 8px; height: 8px; background: var(--coral-hot); border-radius: 50%; animation: pulseDot 1.5s infinite; }
.hero h1 { font-size: clamp(42px, 5.5vw, 72px); margin-bottom: 20px; letter-spacing: -0.03em; }
.hero h1 em { font-style: italic; color: var(--coral-hot); font-weight: 400; }
.hero h1 .strike { position: relative; display: inline-block; color: var(--ink-soft); font-style: italic; }
.hero h1 .strike::after { content: ''; position: absolute; top: 50%; left: -5%; width: 110%; height: 6px; background: var(--coral-hot); transform: rotate(-3deg); }
.hero-sub { font-size: 17px; color: var(--ink-soft); margin-bottom: 32px; max-width: 520px; }

/* Giant Hero Coupon */
.hero-coupon {
  background: #fff;
  border-radius: 20px;
  padding: 0;
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
  border: 2px solid var(--ink);
  max-width: 520px;
}
.hero-coupon-top {
  background: var(--ink);
  color: var(--cream);
  padding: 14px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
}
.hero-coupon-top .verified-tag {
  display: flex; align-items: center; gap: 6px; color: var(--blush);
}
.hero-coupon-top .verified-tag::before {
  content: '✓';
  background: var(--success);
  color: #fff;
  width: 16px; height: 16px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 900;
}
.hero-coupon-body { padding: 36px 32px; }
.hero-coupon-discount {
  font-family: 'Fraunces', serif;
  font-size: clamp(72px, 10vw, 120px);
  font-weight: 500;
  line-height: 0.9;
  color: var(--ink);
  letter-spacing: -0.04em;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.hero-coupon-discount .dollar { font-size: 0.4em; margin-top: 0.3em; color: var(--coral-hot); font-weight: 600; }
.hero-coupon-discount .off { font-size: 0.25em; font-weight: 700; font-family: 'Manrope', sans-serif; letter-spacing: 0.1em; margin-top: 1.2em; color: var(--coral-hot); }
.hero-coupon-desc { font-size: 15px; color: var(--ink-soft); margin: 12px 0 24px; line-height: 1.5; }
.hero-coupon-desc strong { color: var(--ink); }
.hero-coupon-code-box {
  display: flex;
  border: 2.5px dashed var(--ink);
  border-radius: 12px;
  overflow: hidden;
  background: var(--cream);
  margin-bottom: 16px;
}
.hero-coupon-code {
  flex: 1;
  padding: 18px 20px;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.15em;
  color: var(--ink);
  display: flex;
  align-items: center;
  background: repeating-linear-gradient(135deg, transparent, transparent 8px, rgba(200,155,123,0.05) 8px, rgba(200,155,123,0.05) 16px);
}
.hero-coupon-btn {
  background: var(--coral-hot);
  color: #fff;
  border: none;
  padding: 0 28px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: uppercase;
  white-space: nowrap;
  font-family: 'Manrope', sans-serif;
}
.hero-coupon-btn:hover { background: var(--ink); }
.hero-coupon-btn.copied { background: var(--success); }
.hero-coupon-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--ink-soft);
  padding-top: 12px;
  border-top: 1px solid var(--line);
}
.hero-coupon-meta .used-count { display: flex; align-items: center; gap: 6px; font-weight: 600; color: var(--success); }
.savings-widget {
  position: absolute;
  right: -30px;
  bottom: 40px;
  background: var(--ink);
  color: var(--cream);
  padding: 20px 24px;
  border-radius: 16px;
  box-shadow: var(--shadow-xl);
  transform: rotate(4deg);
  animation: wiggle 6s ease-in-out infinite;
  z-index: 3;
}
@keyframes wiggle {
  0%, 100% { transform: rotate(4deg) translateY(0); }
  50% { transform: rotate(4deg) translateY(-10px); }
}
.savings-widget-label { font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--blush); font-weight: 700; margin-bottom: 4px; }
.savings-widget-amount { font-family: 'Fraunces', serif; font-size: 32px; font-weight: 500; color: var(--blush); }
.savings-widget-amount .small { font-size: 16px; margin-right: 4px; }

/* Activity feed */
.activity-feed {
  position: fixed;
  bottom: 24px;
  left: 24px;
  background: #fff;
  padding: 14px 18px;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 99;
  max-width: 340px;
  transform: translateX(-400px);
  transition: transform 0.5s cubic-bezier(.34,1.56,.64,1);
  border: 1px solid var(--line);
}
.activity-feed.show { transform: translateX(0); }
.activity-feed-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose-gold), var(--rose-gold-deep));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: 'Fraunces', serif;
  font-size: 16px;
  flex-shrink: 0;
}
.activity-feed-text { font-size: 13px; line-height: 1.4; }
.activity-feed-text strong { font-weight: 700; }
.activity-feed-text .time { color: var(--ink-soft); font-size: 11px; display: block; margin-top: 2px; }
.activity-feed-close { background: none; border: none; color: var(--ink-soft); cursor: pointer; font-size: 18px; padding: 4px; line-height: 1; }

/* Social strip */
.social-strip {
  background: var(--ink);
  color: var(--cream);
  padding: 30px 0;
  overflow: hidden;
  border-top: 1px solid rgba(250,246,241,0.1);
  border-bottom: 1px solid rgba(250,246,241,0.1);
}
.social-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}
.social-stat-num { font-family: 'Fraunces', serif; font-size: 42px; font-weight: 500; color: var(--blush); }
.social-stat-label { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(250,246,241,0.7); margin-top: 4px; }

section { padding: 80px 0; }
.section-label {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--coral-hot);
  font-weight: 700;
  margin-bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.section-label::before { content: ''; width: 24px; height: 2px; background: var(--coral-hot); }
.section-title { font-size: clamp(36px, 4.5vw, 56px); margin-bottom: 16px; max-width: 800px; }
.section-title em { font-style: italic; color: var(--coral-hot); font-weight: 300; }
.section-subtitle { font-size: 17px; color: var(--ink-soft); max-width: 640px; margin-bottom: 48px; }

/* Coupons */
.coupons-mega { background: var(--cream-deep); position: relative; }
.filter-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  padding: 6px;
  background: #fff;
  border-radius: 100px;
  width: fit-content;
  border: 1px solid var(--line);
}
.filter-tab {
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  background: transparent;
  color: var(--ink-soft);
  transition: all 0.3s;
  font-family: 'Manrope', sans-serif;
}
.filter-tab.active { background: var(--ink); color: var(--cream); }
.filter-tab:hover:not(.active) { background: var(--cream); }
.coupons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
}
.coupon {
  background: #fff;
  border-radius: 20px;
  position: relative;
  transition: all 0.4s cubic-bezier(.34,1.56,.64,1);
  overflow: hidden;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}
.coupon.hidden { display: none; }
.coupon:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); border-color: var(--coral); }
.coupon.hot {
  background: linear-gradient(135deg, var(--ink) 0%, #2a2220 100%);
  color: var(--cream);
  border: none;
}
.coupon.featured-big {
  grid-column: span 2;
  background: linear-gradient(135deg, var(--coral-hot) 0%, var(--coral) 50%, var(--rose-gold-deep) 100%);
  color: #fff;
  border: none;
  padding: 0;
}
.coupon-ribbon {
  position: absolute;
  top: 20px;
  right: -32px;
  background: var(--coral-hot);
  color: #fff;
  padding: 6px 40px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transform: rotate(45deg);
  z-index: 2;
}
.coupon.hot .coupon-ribbon { background: var(--blush); color: var(--ink); }
.coupon-category {
  padding: 8px 16px;
  background: var(--blush);
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: inline-block;
  border-radius: 0 0 12px 0;
  margin-bottom: 20px;
  width: fit-content;
}
.coupon.hot .coupon-category { background: var(--coral-hot); color: #fff; }
.coupon.featured-big .coupon-category { background: rgba(0,0,0,0.25); color: #fff; backdrop-filter: blur(10px); }
.coupon-body { padding: 0 28px 28px; flex: 1; display: flex; flex-direction: column; }
.coupon.featured-big .coupon-body { padding: 40px; display: grid; grid-template-columns: 1.2fr 1fr; gap: 32px; align-items: center; }
.coupon-discount {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.03em;
  display: flex;
  align-items: flex-start;
  margin-bottom: 12px;
}
.coupon-discount .big { font-size: 72px; }
.coupon-discount .dollar { font-size: 28px; margin-top: 12px; color: var(--coral-hot); font-weight: 600; }
.coupon-discount .off { font-size: 16px; font-weight: 700; font-family: 'Manrope', sans-serif; letter-spacing: 0.1em; margin-top: 28px; margin-left: 6px; color: var(--coral-hot); }
.coupon.hot .coupon-discount .dollar, .coupon.hot .coupon-discount .off { color: var(--blush); }
.coupon.featured-big .coupon-discount .big { font-size: 120px; line-height: 0.85; }
.coupon.featured-big .coupon-discount .dollar { font-size: 42px; color: rgba(255,255,255,0.95); }
.coupon.featured-big .coupon-discount .off { color: rgba(255,255,255,0.95); font-size: 20px; margin-top: 50px; }
.coupon-title { font-family: 'Fraunces', serif; font-size: 22px; font-weight: 500; margin-bottom: 8px; }
.coupon.featured-big .coupon-title { font-size: 36px; }
.coupon-desc { font-size: 14px; color: var(--ink-soft); margin-bottom: 20px; flex: 1; }
.coupon.hot .coupon-desc { color: rgba(250,246,241,0.75); }
.coupon.featured-big .coupon-desc { color: rgba(255,255,255,0.85); font-size: 16px; }
.coupon-code-reveal {
  display: flex;
  border: 2.5px dashed var(--ink);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 14px;
  background: var(--cream);
}
.coupon.hot .coupon-code-reveal { border-color: var(--blush); background: rgba(244,218,208,0.1); }
.coupon.featured-big .coupon-code-reveal { border-color: #fff; background: rgba(255,255,255,0.15); backdrop-filter: blur(10px); }
.coupon-code {
  flex: 1;
  padding: 14px 16px;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.15em;
  color: var(--ink);
  display: flex;
  align-items: center;
}
.coupon.hot .coupon-code { color: var(--blush); }
.coupon.featured-big .coupon-code { color: #fff; font-size: 20px; }
.coupon-copy {
  background: var(--ink);
  color: #fff;
  border: none;
  padding: 12px 22px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  letter-spacing: 0.08em;
  transition: all 0.3s;
  text-transform: uppercase;
  white-space: nowrap;
  font-family: 'Manrope', sans-serif;
}
.coupon.hot .coupon-copy { background: var(--blush); color: var(--ink); }
.coupon.featured-big .coupon-copy { background: #fff; color: var(--coral-hot); }
.coupon-copy:hover { background: var(--coral-hot); color: #fff; }
.coupon-copy.copied { background: var(--success) !important; color: #fff !important; }
.coupon-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  padding-top: 12px;
  border-top: 1px solid var(--line);
}
.coupon.hot .coupon-footer { border-top-color: rgba(250,246,241,0.15); color: rgba(250,246,241,0.7); }
.coupon.featured-big .coupon-footer { border-top-color: rgba(255,255,255,0.3); color: rgba(255,255,255,0.9); }
.coupon-footer-item { display: flex; align-items: center; gap: 5px; }
.verified-check {
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--success); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 9px; font-weight: 900;
}
.coupon-timer { color: var(--coral-hot); font-weight: 700; }
.coupon.hot .coupon-timer { color: var(--blush); }

/* Price compare */
.price-compare-section { background: var(--cream); }
.compare-card {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  border: 1px solid var(--line);
  margin-bottom: 16px;
  display: grid;
  grid-template-columns: 100px 1fr 1fr 1fr auto;
  gap: 24px;
  align-items: center;
  transition: all 0.3s;
}
.compare-card:hover { border-color: var(--coral); box-shadow: var(--shadow-md); }
.compare-product-img {
  width: 100px; height: 100px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--cream-deep);
  padding: 8px;
}
.compare-product-img img { width: 100%; height: 100%; object-fit: contain; }
.compare-product-name { font-family: 'Fraunces', serif; font-size: 18px; font-weight: 500; margin-bottom: 4px; }
.compare-product-sub { font-size: 12px; color: var(--ink-soft); }
.price-col { text-align: center; }
.price-col-label { font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; font-weight: 700; margin-bottom: 6px; }
.price-col-value { font-family: 'Fraunces', serif; font-size: 24px; font-weight: 500; }
.price-col.strike .price-col-value { text-decoration: line-through; color: var(--ink-soft); }
.price-col.best-label { color: var(--success); }
.price-col.best .price-col-value { color: var(--success); font-size: 28px; }
.compare-btn {
  background: var(--coral-hot);
  color: #fff;
  padding: 14px 24px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: all 0.3s;
  white-space: nowrap;
  text-transform: uppercase;
  display: inline-block;
  cursor: pointer;
  border: none;
  font-family: 'Manrope', sans-serif;
}
.compare-btn:hover { background: var(--ink); transform: translateY(-2px); }

/* Products */
.products-section { background: var(--cream-deep); }
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.product-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(.34,1.56,.64,1);
  border: 1px solid var(--line);
  position: relative;
}
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }
.product-image {
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
  background: var(--cream);
  padding: 16px;
}
.product-image img { width: 100%; height: 100%; object-fit: contain; transition: transform 0.6s; }
.product-card:hover .product-image img { transform: scale(1.05); }
.product-save-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--coral-hot);
  color: #fff;
  padding: 8px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(232, 93, 58, 0.4);
}
.product-tag-2 {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--ink);
  color: var(--cream);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 2;
}
.product-info { padding: 24px; }
.product-category { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--coral-hot); font-weight: 700; margin-bottom: 8px; }
.product-name { font-family: 'Fraunces', serif; font-size: 22px; font-weight: 500; margin-bottom: 6px; }
.product-feat { font-size: 13px; color: var(--ink-soft); margin-bottom: 16px; line-height: 1.5; min-height: 38px; }
.product-price-stack { display: flex; align-items: baseline; gap: 10px; margin-bottom: 8px; }
.product-price-now { font-family: 'Fraunces', serif; font-size: 32px; font-weight: 500; color: var(--ink); }
.product-price-was { font-size: 16px; color: var(--ink-soft); text-decoration: line-through; }
.product-with-code {
  background: var(--cream);
  border: 1px dashed var(--coral-hot);
  border-radius: 8px;
  padding: 10px 12px;
  margin-bottom: 16px;
  font-size: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.product-with-code-label { color: var(--ink-soft); }
.product-with-code-value { font-weight: 700; color: var(--coral-hot); font-family: 'JetBrains Mono', monospace; }
.product-cta {
  display: block;
  width: 100%;
  background: var(--ink);
  color: var(--cream);
  padding: 14px;
  border-radius: 100px;
  text-align: center;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
  font-family: 'Manrope', sans-serif;
}
.product-cta:hover { background: var(--coral-hot); }

/* How it works */
.how-it-works { background: var(--cream); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 16%;
  right: 16%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--coral) 0, var(--coral) 6px, transparent 6px, transparent 12px);
  z-index: 0;
}
.step { text-align: center; position: relative; z-index: 1; }
.step-num {
  width: 80px; height: 80px;
  margin: 0 auto 20px;
  background: var(--coral-hot);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', serif;
  font-size: 36px;
  font-weight: 500;
  box-shadow: 0 8px 24px rgba(232, 93, 58, 0.3);
}
.step-title { font-family: 'Fraunces', serif; font-size: 22px; font-weight: 500; margin-bottom: 8px; }
.step-desc { font-size: 14px; color: var(--ink-soft); line-height: 1.6; max-width: 280px; margin: 0 auto; }

/* FAQ */
.faq-section { background: var(--cream-deep); }
.faq-list { max-width: 800px; }
.faq-item {
  background: #fff;
  border-radius: 14px;
  margin-bottom: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  transition: all 0.3s;
}
.faq-item:hover { border-color: var(--coral); }
.faq-q {
  padding: 20px 24px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}
.faq-q::after { content: '+'; font-size: 24px; color: var(--coral-hot); font-weight: 300; transition: transform 0.3s; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  padding: 0 24px;
  transition: all 0.3s ease;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.7;
}
.faq-item.open .faq-a { max-height: 200px; padding: 0 24px 20px; }

/* Final CTA */
.final-cta {
  background: linear-gradient(135deg, var(--ink) 0%, #2a2220 100%);
  color: var(--cream);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 80%, rgba(217,119,87,0.25), transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(200,155,123,0.2), transparent 50%);
}
.final-cta-inner { position: relative; z-index: 2; max-width: 720px; margin: 0 auto; }
.final-cta h2 { font-size: clamp(40px, 5vw, 68px); margin-bottom: 20px; color: var(--cream); }
.final-cta h2 em { font-style: italic; color: var(--blush); font-weight: 300; }
.final-cta p { font-size: 18px; color: rgba(250,246,241,0.75); margin-bottom: 36px; }
.final-cta-btn {
  background: var(--coral-hot);
  color: #fff;
  padding: 18px 40px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.05em;
  display: inline-block;
  transition: all 0.3s;
  text-transform: uppercase;
  box-shadow: 0 10px 30px rgba(232, 93, 58, 0.4);
  cursor: pointer;
  border: none;
  font-family: 'Manrope', sans-serif;
}
.final-cta-btn:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(232, 93, 58, 0.6); }

/* Footer */
footer { background: var(--ink); color: rgba(250,246,241,0.6); padding: 50px 0 24px; border-top: 1px solid rgba(250,246,241,0.08); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 32px; }
.footer-logo { font-family: 'Fraunces', serif; font-size: 26px; color: var(--cream); margin-bottom: 14px; }
.footer-logo span { font-style: italic; color: var(--blush); }
footer p { font-size: 14px; max-width: 400px; line-height: 1.6; }
footer h4 { color: var(--cream); font-family: 'Manrope', sans-serif; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 14px; }
footer ul { list-style: none; }
footer ul li { margin-bottom: 8px; font-size: 13px; cursor: pointer; }
footer ul li:hover { color: var(--blush); }
.footer-bottom { border-top: 1px solid rgba(250,246,241,0.1); padding-top: 20px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 12px; color: rgba(250,246,241,0.4); }
.disclosure {
  background: rgba(250,246,241,0.04);
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 11px;
  line-height: 1.6;
  margin-top: 16px;
  border-left: 3px solid var(--blush);
  color: rgba(250,246,241,0.6);
}

/* Sticky coupon */
.sticky-coupon {
  position: fixed;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ink);
  color: #fff;
  padding: 14px 24px;
  border-radius: 100px;
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 98;
  transition: bottom 0.5s cubic-bezier(.34,1.56,.64,1);
  max-width: calc(100% - 48px);
}
.sticky-coupon.show { bottom: 24px; }
.sticky-coupon-text { font-size: 13px; font-weight: 600; }
.sticky-coupon-text .big-save { color: var(--blush); font-family: 'Fraunces', serif; font-size: 20px; font-weight: 500; display: block; }
.sticky-coupon-code {
  background: var(--blush);
  color: var(--ink);
  padding: 10px 16px;
  border-radius: 100px;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  letter-spacing: 0.1em;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
  border: none;
}
.sticky-coupon-code:hover { background: #fff; }

/* Redirect toast */
.redirect-toast {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  background: #fff;
  padding: 32px 40px;
  border-radius: 20px;
  box-shadow: var(--shadow-xl);
  z-index: 9999;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s cubic-bezier(.34,1.56,.64,1);
  border: 2px solid var(--ink);
  min-width: 320px;
}
.redirect-toast.show {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  pointer-events: auto;
}
.redirect-toast-icon {
  width: 64px; height: 64px;
  background: var(--success);
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 32px;
  font-weight: 900;
}
.redirect-toast-title { font-family: 'Fraunces', serif; font-size: 24px; margin-bottom: 8px; }
.redirect-toast-code {
  background: var(--cream);
  padding: 10px 16px;
  border-radius: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.1em;
  display: inline-block;
  margin: 8px 0;
  border: 1px dashed var(--ink);
}
.redirect-toast-desc { color: var(--ink-soft); font-size: 13px; margin-bottom: 16px; }
.redirect-toast-loader {
  width: 30px; height: 30px;
  border: 3px solid var(--cream-deep);
  border-top-color: var(--coral-hot);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto;
}
@keyframes spin { to { transform: rotate(360deg); } }
.redirect-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 21, 18, 0.5);
  backdrop-filter: blur(4px);
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.redirect-overlay.show { opacity: 1; pointer-events: auto; }

/* Responsive */
@media (max-width: 900px) {
  .hero { padding: 40px 0 60px; }
  .hero-grid, .steps-grid, .social-strip-grid, .nbc-banner-inner { grid-template-columns: 1fr; gap: 32px; }
  .social-strip-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .nav-links { display: none; }
  section { padding: 60px 0; }
  .compare-card { grid-template-columns: 1fr; text-align: center; }
  .coupon.featured-big { grid-column: span 1; }
  .coupon.featured-big .coupon-body { grid-template-columns: 1fr; gap: 24px; padding: 28px; }
  .coupon.featured-big .coupon-discount .big { font-size: 84px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .steps-grid::before { display: none; }
  .activity-feed { left: 12px; right: 12px; max-width: calc(100% - 24px); }
  .savings-widget { right: 10px; bottom: 20px; padding: 14px 18px; }
  .savings-widget-amount { font-size: 24px; }
  .hero-coupon-discount { font-size: 80px; }
  .sticky-coupon { padding: 12px 16px; gap: 10px; }
  .sticky-coupon-text { font-size: 12px; }
  .nbc-banner-text { padding-left: 20px; padding-right: 20px; text-align: center; }
  .nbc-logo-row { justify-content: center; }
  .nbc-banner-image { padding: 0 20px; }
  .nbc-banner-inner { padding: 30px 0; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-live-badge, .hero h1, .hero-sub, .hero-coupon {
  animation: fadeUp 0.8s ease-out backwards;
}
.hero h1 { animation-delay: 0.1s; }
.hero-sub { animation-delay: 0.2s; }
.hero-coupon { animation-delay: 0.3s; }
