/* ═══════════════════════════════════════════════════════════════
   Deal Drops — Premium Design System
   Primary: #5B21B6  |  Accent/CTA: #EF4444  |  Green: #10B981
═══════════════════════════════════════════════════════════════ */

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

:root {
  --primary:       #6D28D9;
  --primary-dark:  #5B21B6;
  --primary-soft:  #F5F3FF;
  --accent:        #F43F5E;
  --accent-dark:   #E11D48;
  --accent-soft:   #FFF1F2;
  --green:         #059669;
  --green-dark:    #047857;
  --green-soft:    #ECFDF5;
  --gold:          #F59E0B;
  --gold-soft:     #FFFBEB;
  --text:          #1E293B;
  --text-muted:    #64748B;
  --bg:            #F8FAFC;
  --white:         #ffffff;
  --card-bg:       #ffffff;
  --border:        #E2E8F0;
  --shadow-sm:     0 1px 2px rgba(0,0,0,0.05);
  --shadow:        0 4px 12px rgba(0,0,0,0.06), 0 1px 3px rgba(0,0,0,0.04);
  --shadow-lg:     0 12px 32px rgba(0,0,0,0.08), 0 4px 8px rgba(0,0,0,0.04);
  --shadow-glow:   0 0 0 3px rgba(109,40,217,0.1);
  --radius:        12px;
  --radius-sm:     8px;
  --radius-lg:     16px;
  --font: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --transition:    0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }
ul, ol { list-style: none; }

/* ── Utilities ────────────────────────────────────────────────── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 1rem; }
.container--narrow { max-width: 780px; margin: 0 auto; padding: 0 1rem; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ── Announcement Bar ────────────────────────────────────────── */
.announcement-bar {
  background: var(--accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  text-align: center;
  padding: 0.4rem 1rem;
}
.announcement-bar .container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.announcement-bar a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ── Header ───────────────────────────────────────────────────── */
.site-header {
  background: linear-gradient(135deg, var(--primary) 0%, #4C1D95 50%, #3B0764 100%);
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 2px 20px rgba(109,40,217,0.25);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 62px;
}
.site-logo {
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.04em;
  flex-shrink: 0;
}
.site-logo span { color: var(--accent); }

/* Desktop nav */
.nav-links {
  display: none;
  gap: 0.25rem;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: all 0.15s;
}
.nav-links a:hover,
.nav-links a.active { background: rgba(255,255,255,0.18); color: #fff; transform: translateY(-1px); }

/* Hamburger */
.nav-toggle {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  padding: 0.25rem;
  display: flex;
  align-items: center;
}

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  background: var(--primary-dark);
  border-top: 1px solid rgba(255,255,255,0.1);
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  color: rgba(255,255,255,0.88);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.mobile-nav a:hover { background: rgba(255,255,255,0.08); color: #fff; }

/* ── Hero ─────────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(160deg, #1E0A3C 0%, #4C1D95 35%, var(--primary) 60%, #8B5CF6 100%);
  color: #fff;
  padding: 3.5rem 1rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at 20% 40%, rgba(239,68,68,0.12) 0%, transparent 50%),
              radial-gradient(circle at 80% 60%, rgba(245,158,11,0.08) 0%, transparent 50%),
              radial-gradient(ellipse at 50% 0%, rgba(124,58,237,0.3) 0%, transparent 60%);
  pointer-events: none;
}
.hero > * { position: relative; z-index: 1; }
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}
.hero__title {
  font-size: clamp(2rem, 6vw, 3.2rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 0.75rem;
}
.hero__title span { color: var(--accent); }
.hero__tagline {
  font-size: 1rem;
  opacity: 0.85;
  max-width: 440px;
  margin: 0 auto 1.5rem;
}
.hero__cta-group {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero__stats {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.hero__stat { text-align: center; }
.hero__stat strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 900;
}
.hero__stat span {
  font-size: 0.75rem;
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ── How It Works ─────────────────────────────────────────────── */
.how-it-works {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 1.5rem;
}
.how-step {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: transform 0.2s;
}
.how-step:hover { transform: translateY(-4px); }
.how-step__icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.how-step h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text);
}
.how-step p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}
@media (max-width: 768px) {
  .how-it-works { grid-template-columns: 1fr; }
}

/* ── Buttons ──────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.7rem 1.4rem;
  border-radius: var(--radius);
  border: none;
  transition: all 0.2s;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
}
.btn--primary {
  background: linear-gradient(135deg, var(--accent) 0%, #FB7185 100%);
  color: #fff;
  box-shadow: 0 4px 14px rgba(244,63,94,0.3);
}
.btn--primary:hover { background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent) 100%); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(244,63,94,0.4); }
.btn--secondary { background: rgba(255,255,255,0.15); color: #fff; border: 1.5px solid rgba(255,255,255,0.3); }
.btn--secondary:hover { background: rgba(255,255,255,0.22); }
.btn--outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn--outline:hover { background: var(--primary); color: #fff; }
.btn--deal {
  width: 100%;
  background: linear-gradient(135deg, var(--accent) 0%, #FB923C 100%);
  color: #fff;
  font-size: 1.05rem;
  font-weight: 800;
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  border: none;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  box-shadow: 0 4px 16px rgba(244,63,94,0.3);
}
.btn--deal:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(244,63,94,0.4); }
.btn--whatsapp { background: #25D366; color: #fff; }
.btn--whatsapp:hover { background: #1da851; }
.btn--sm { padding: 0.45rem 0.9rem; font-size: 0.8rem; }

/* ── Section ──────────────────────────────────────────────────── */
.section { padding: 2rem 0; }
.section--white { background: var(--white); }
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.section-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.section-title::before {
  content: '';
  width: 4px;
  height: 1.2em;
  background: var(--accent);
  border-radius: 4px;
  flex-shrink: 0;
}
.section-title span {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  vertical-align: middle;
  margin-left: 0.5rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.view-all { font-size: 0.82rem; font-weight: 600; color: var(--accent); }
.view-all:hover { text-decoration: underline; }

/* ── Deal Card Grid ───────────────────────────────────────────── */
.deals-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

/* ── Deal Card ────────────────────────────────────────────────── */
.deal-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.deal-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(109,40,217,0.3); }

.deal-card__badge {
  position: absolute;
  top: 12px;
  left: -4px;
  z-index: 2;
  background: var(--accent);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 0.3rem 0.75rem 0.3rem 0.65rem;
  border-radius: 0 6px 6px 0;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 2px 6px rgba(244,63,94,0.3);
}
.deal-card__badge::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-top: 4px solid var(--accent-dark);
}
.deal-card__badge--cashback { background: var(--green); box-shadow: 0 2px 6px rgba(5,150,105,0.3); }
.deal-card__badge--cashback::before { border-top-color: var(--green-dark); }
.deal-card__badge--hot { background: linear-gradient(135deg, var(--accent) 0%, #FB923C 100%); }

.deal-card__image-wrap {
  aspect-ratio: 16/9;
  background: var(--bg);
  overflow: hidden;
  position: relative;
}
.deal-card__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.75rem;
  transition: transform 0.3s;
}
.deal-card:hover .deal-card__image-wrap img { transform: scale(1.04); }

/* Placeholder when no image */
.deal-card__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  background: var(--bg);
}

.deal-card__body { padding: 1rem; flex: 1; display: flex; flex-direction: column; gap: 0.6rem; }

.deal-card__store {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.deal-card__store-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}

.deal-card__title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.deal-card__prices {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.deal-card__price {
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--green);
}
.deal-card__mrp {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-decoration: line-through;
}
.deal-card__discount {
  font-size: 0.78rem;
  font-weight: 800;
  background: var(--accent-soft);
  color: var(--accent);
  padding: 0.2rem 0.55rem;
  border-radius: 6px;
  white-space: nowrap;
  border: 1px solid rgba(244,63,94,0.15);
}

.deal-card__verified {
  font-size: 0.72rem;
  color: var(--green);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  background: var(--green-soft);
  padding: 0.2rem 0.5rem;
  border-radius: 100px;
  border: 1px solid rgba(0,182,122,0.2);
  width: fit-content;
}

.deal-card__savings-callout {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--green);
  background: var(--green-soft);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  display: inline-block;
  width: fit-content;
}

.deal-card__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  text-align: center;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  margin-top: auto;
  transition: all var(--transition);
  letter-spacing: 0.02em;
}
.deal-card__cta:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(91,33,182,0.3);
}

/* ── Price Box (deal page) ────────────────────────────────────── */
.price-box {
  background: var(--white);
  border: 2px solid var(--border);
  border-left: 4px solid var(--green);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.price-box__deal-price {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
  margin-bottom: 0.35rem;
}
.price-box__mrp {
  font-size: 1rem;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-bottom: 0.35rem;
}
.price-box__savings {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--green-soft);
  color: var(--green);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
}
.price-box__row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.price-box__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.3rem 0.7rem;
  border-radius: 100px;
  border: 1px solid rgba(108,43,217,0.2);
}
.price-box__trust {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
}

/* ── Coupon Code Box ──────────────────────────────────────────── */
.coupon-box {
  border: 2.5px dashed var(--accent);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}
.coupon-box__label {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.2rem;
}
.coupon-box__code {
  font-family: 'Courier New', Courier, monospace;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 0.06em;
  user-select: all;
}
.coupon-box__copy {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  padding: 0.6rem 1.1rem;
  font-size: 0.85rem;
  font-weight: 700;
  transition: background 0.15s;
  white-space: nowrap;
  flex-shrink: 0;
}
.coupon-box__copy:hover { background: var(--accent-dark); }
.coupon-box__copy.copied { background: var(--green); }

/* ── Deal Steps ───────────────────────────────────────────────── */
.steps {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}
.step {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.9rem 1rem;
}
.step__num {
  width: 28px;
  height: 28px;
  background: var(--primary);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.step__text { font-size: 0.9rem; color: var(--text); padding-top: 0.2rem; }

/* ── Share Buttons ────────────────────────────────────────────── */
.share-buttons {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 1.5rem;
}
.share-buttons__label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 600;
  border: none;
  transition: opacity 0.15s, transform 0.15s;
  cursor: pointer;
  text-decoration: none;
}
.share-btn:hover { opacity: 0.88; transform: translateY(-1px); }
.share-btn--wa { background: #25D366; color: #fff; }
.share-btn--tw { background: #1DA1F2; color: #fff; }
.share-btn--copy { background: var(--bg); color: var(--text); border: 1.5px solid var(--border); }
.share-btn--copy.copied { background: var(--green-soft); color: var(--green); border-color: var(--green); }

/* ── Sticky CTA (deal page mobile) ───────────────────────────── */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 1.5px solid var(--border);
  padding: 0.75rem 1rem;
  z-index: 150;
  display: none;
  gap: 0.75rem;
  align-items: center;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.1);
}
@media (max-width: 599px) {
  .sticky-cta { display: flex; }
}
.sticky-cta__price { flex: 1; min-width: 0; }
.sticky-cta__price .price { font-size: 1.1rem; font-weight: 800; color: var(--green); }
.sticky-cta__price .mrp { font-size: 0.75rem; color: var(--text-muted); text-decoration: line-through; }
.sticky-cta .btn--deal { width: auto; flex-shrink: 0; font-size: 0.9rem; padding: 0.7rem 1.2rem; }

/* ── Category Quick Links ─────────────────────────────────────── */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
.cat-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.2s;
}
.cat-card:hover { border-color: var(--primary); box-shadow: var(--shadow); transform: translateY(-2px); background: var(--primary-soft); }
.cat-card__emoji { font-size: 1.5rem; line-height: 1; flex-shrink: 0; }
.cat-card__name { font-size: 0.9rem; font-weight: 700; color: var(--text); }
.cat-card__sub { font-size: 0.75rem; color: var(--text-muted); }

/* ── Store Badges ─────────────────────────────────────────────── */
.store-grid {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.5rem 0.9rem;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.15s;
}
.store-badge:hover { border-color: var(--primary); color: var(--primary); }
.store-badge__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── Social CTAs ──────────────────────────────────────────────── */
.social-ctas {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1rem;
}
.social-card {
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.social-card--wa { background: linear-gradient(135deg, #075E54, #25D366); color: #fff; }
.social-card--ig { background: linear-gradient(135deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D); color: #fff; }
.social-card__icon { font-size: 2.2rem; flex-shrink: 0; }
.social-card__text h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.25rem; }
.social-card__text p { font-size: 0.82rem; opacity: 0.88; margin-bottom: 0.75rem; }
.social-card .btn { background: rgba(255,255,255,0.22); color: #fff; border: 1.5px solid rgba(255,255,255,0.4); }
.social-card .btn:hover { background: rgba(255,255,255,0.32); }

/* ── Deal Page Layout ─────────────────────────────────────────── */
.deal-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  padding: 1.5rem 0 5rem;
}
.deal-image-wrap {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1;
  max-width: 400px;
  margin: 0 auto;
  width: 100%;
}
.deal-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1.5rem;
}
.deal-meta__breadcrumb {
  font-size: 0.78rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
}
.deal-meta__breadcrumb a { color: var(--accent); }
.deal-meta__breadcrumb a:hover { text-decoration: underline; }
.deal-meta__title {
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
}
.deal-meta__tags { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 1rem; }
.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text-muted);
}
.tag--store { background: var(--primary-soft); color: var(--primary); border-color: rgba(108,43,217,0.2); }
.tag--category { background: var(--accent-soft); color: var(--accent-dark); border-color: rgba(255,61,87,0.2); }
.tag--verified { background: var(--green-soft); color: var(--green-dark); border-color: rgba(0,182,122,0.2); }

.deal-content h2 { font-size: 1.05rem; font-weight: 700; color: var(--primary); margin: 1.5rem 0 0.75rem; }
.deal-content p { font-size: 0.93rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 0.75rem; }
.deal-content ul { padding-left: 1.25rem; list-style: disc; margin-bottom: 0.75rem; }
.deal-content ul li { font-size: 0.93rem; color: var(--text-muted); line-height: 1.75; }

.last-updated { font-size: 0.75rem; color: var(--text-muted); margin-bottom: 1rem; }

/* ── Breadcrumb ───────────────────────────────────────────────── */
.breadcrumb {
  padding: 0.75rem 0;
  font-size: 0.78rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--accent); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb__sep { opacity: 0.4; }

/* ── Category Page ────────────────────────────────────────────── */
.category-hero {
  background: linear-gradient(135deg, var(--primary) 0%, #4C1D95 100%);
  color: #fff;
  padding: 2rem 1rem 1.75rem;
}
.category-hero__emoji { font-size: 2.5rem; margin-bottom: 0.5rem; }
.category-hero__title {
  font-size: clamp(1.4rem, 4vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 0.4rem;
}
.category-hero__desc { font-size: 0.9rem; opacity: 0.82; max-width: 540px; }

/* ── Store Page ───────────────────────────────────────────────── */
.store-hero {
  padding: 2rem 1rem 1.75rem;
  border-bottom: 1px solid var(--border);
  background: var(--white);
}
.store-hero__icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 1rem;
}
.store-hero__title {
  font-size: clamp(1.3rem, 3.5vw, 1.8rem);
  font-weight: 800;
  margin-bottom: 0.4rem;
}
.store-hero__desc { font-size: 0.9rem; color: var(--text-muted); max-width: 540px; }

/* ── Sort Bar ─────────────────────────────────────────────────── */
.sort-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1.25rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.sort-btn {
  white-space: nowrap;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
  background: var(--white);
  border: 1.5px solid var(--border);
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.15s;
}
.sort-btn.active, .sort-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

/* ── Blog ─────────────────────────────────────────────────────── */
.blog-hero {
  background: linear-gradient(135deg, var(--primary) 0%, #4C1D95 100%);
  color: #fff;
  padding: 2rem 1rem;
}
.blog-hero__label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; opacity: 0.7; margin-bottom: 0.5rem; }
.blog-hero__title { font-size: clamp(1.4rem, 4vw, 2rem); font-weight: 800; letter-spacing: -0.03em; margin-bottom: 0.5rem; }
.blog-hero__meta { font-size: 0.82rem; opacity: 0.75; }

.post-body { font-size: 0.95rem; line-height: 1.8; color: var(--text); }
.post-body h2 { font-size: 1.15rem; font-weight: 700; color: var(--primary); margin: 2rem 0 0.75rem; padding-top: 1rem; border-top: 1px solid var(--border); }
.post-body h3 { font-size: 1rem; font-weight: 700; color: var(--text); margin: 1.5rem 0 0.5rem; }
.post-body p { margin-bottom: 1rem; }
.post-body ul, .post-body ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.post-body ul { list-style: disc; }
.post-body ol { list-style: decimal; }
.post-body li { margin-bottom: 0.35rem; }
.post-body strong { font-weight: 700; color: var(--text); }
.post-body a { color: var(--accent); text-decoration: underline; }
.post-body table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; font-size: 0.88rem; }
.post-body th { background: var(--primary); color: #fff; padding: 0.65rem 0.85rem; text-align: left; font-weight: 600; }
.post-body td { padding: 0.65rem 0.85rem; border-bottom: 1px solid var(--border); }
.post-body tr:hover td { background: var(--bg); }
.post-body blockquote {
  border-left: 3px solid var(--accent);
  background: var(--accent-soft);
  padding: 0.75rem 1rem;
  margin: 1.25rem 0;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  color: var(--text-muted);
}

/* Inline affiliate CTA block */
.affiliate-cta {
  background: var(--primary-soft);
  border: 1.5px solid rgba(108,43,217,0.2);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 1.5rem 0;
  flex-wrap: wrap;
}
.affiliate-cta__text { font-size: 0.9rem; font-weight: 600; color: var(--primary); }
.affiliate-cta__sub { font-size: 0.78rem; color: var(--text-muted); }

/* TOC */
.toc {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
}
.toc__title { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 0.6rem; }
.toc__list { display: flex; flex-direction: column; gap: 0.3rem; }
.toc__list a { font-size: 0.85rem; color: var(--accent); }
.toc__list a:hover { text-decoration: underline; }

/* ── About Page ───────────────────────────────────────────────── */
.about-hero { background: linear-gradient(135deg, var(--primary) 0%, #4C1D95 100%); color: #fff; padding: 3rem 1rem 2.5rem; text-align: center; }
.about-hero h1 { font-size: clamp(1.6rem, 4vw, 2.2rem); font-weight: 800; margin-bottom: 0.6rem; }
.about-hero p { opacity: 0.82; max-width: 480px; margin: 0 auto; }
.about-content { max-width: 680px; margin: 0 auto; padding: 2rem 1rem; }
.about-content h2 { font-size: 1.1rem; font-weight: 700; color: var(--primary); margin: 1.75rem 0 0.6rem; }
.about-content p { font-size: 0.93rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 0.75rem; }
.about-content .disclosure {
  background: var(--gold-soft);
  border: 1.5px solid var(--gold);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  font-size: 0.85rem;
  color: #7a5c00;
  margin-top: 2rem;
}

/* ── Generic Info Pages (Privacy, Contact, etc.) ─────────────── */
.page-hero { background: linear-gradient(135deg, var(--primary) 0%, #4C1D95 100%); color: #fff; padding: 3rem 1rem 2.5rem; text-align: center; }
.page-hero h1 { font-size: clamp(1.6rem, 4vw, 2.2rem); font-weight: 800; margin-bottom: 0.6rem; }
.page-hero p { opacity: 0.82; max-width: 480px; margin: 0 auto; }
.page-content { max-width: 680px; margin: 0 auto; padding: 2rem 1rem; }
.page-content h2 { font-size: 1.1rem; font-weight: 700; color: var(--primary); margin: 1.75rem 0 0.6rem; }
.page-content h3 { font-size: 1rem; font-weight: 600; color: var(--heading); margin: 1.25rem 0 0.4rem; }
.page-content p { font-size: 0.93rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 0.75rem; }
.page-content ul { list-style: disc; padding-left: 1.5rem; color: var(--text-muted); font-size: 0.93rem; line-height: 1.9; margin-bottom: 0.75rem; }
.page-content a { color: var(--accent); font-weight: 600; }
.page-content .disclosure {
  background: var(--gold-soft);
  border: 1.5px solid var(--gold);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  font-size: 0.85rem;
  color: #7a5c00;
  margin-top: 1.5rem;
}
.page-content .info-box {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  margin: 1.5rem 0;
}
.page-content .contact-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 1rem 0;
}

/* ── Footer ───────────────────────────────────────────────────── */
.site-footer {
  background: linear-gradient(180deg, #1E1B4B 0%, #0F172A 100%);
  color: rgba(255,255,255,0.75);
  padding: 2.5rem 1rem 1.5rem;
  margin-top: 3rem;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
.footer-trust {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
  padding-bottom: 1.5rem;
  margin-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
}
.footer-brand { }
.footer-logo { font-size: 1.2rem; font-weight: 800; color: #fff; letter-spacing: -0.04em; margin-bottom: 0.4rem; }
.footer-logo span { color: var(--accent); }
.footer-tagline { font-size: 0.82rem; opacity: 0.6; }
.footer-cols { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 480px) { .footer-cols { grid-template-columns: 1fr 1fr; } }
.footer-col h4 { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: #fff; margin-bottom: 0.75rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.4rem; }
.footer-col a { font-size: 0.82rem; color: rgba(255,255,255,0.65); }
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.25rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

/* ── Empty State ──────────────────────────────────────────────── */
.empty-state {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--text-muted);
}
.empty-state__icon { font-size: 3rem; margin-bottom: 0.75rem; }
.empty-state p { font-size: 0.9rem; }

/* ── Responsive: Tablet+ (600px) ─────────────────────────────── */
@media (min-width: 600px) {
  .deals-grid { grid-template-columns: repeat(2, 1fr); }
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .social-ctas { grid-template-columns: repeat(2, 1fr); }
  .deal-layout { grid-template-columns: 1fr 1fr; }
  .footer-cols { grid-template-columns: repeat(3, 1fr); }
}

/* ── Responsive: Desktop (900px) ─────────────────────────────── */
@media (min-width: 900px) {
  .deals-grid { grid-template-columns: repeat(3, 1fr); }
  .nav-links { display: flex; }
  .nav-toggle { display: none; }
  .deal-layout { grid-template-columns: 420px 1fr; }
  .cat-grid { grid-template-columns: repeat(5, 1fr); }
}

/* ── Responsive: Wide (1100px) ───────────────────────────────── */
@media (min-width: 1100px) {
  .deals-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ── Animations ───────────────────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-in { animation: fadeInUp 0.5s cubic-bezier(0.4, 0, 0.2, 1) both; }

/* Staggered card animations */
.deals-grid .deal-card { opacity: 0; animation: fadeInUp 0.4s cubic-bezier(0.4, 0, 0.2, 1) both; }
.deals-grid .deal-card:nth-child(1) { animation-delay: 0.05s; }
.deals-grid .deal-card:nth-child(2) { animation-delay: 0.1s; }
.deals-grid .deal-card:nth-child(3) { animation-delay: 0.15s; }
.deals-grid .deal-card:nth-child(4) { animation-delay: 0.2s; }
.deals-grid .deal-card:nth-child(5) { animation-delay: 0.25s; }
.deals-grid .deal-card:nth-child(6) { animation-delay: 0.3s; }
.deals-grid .deal-card:nth-child(7) { animation-delay: 0.35s; }
.deals-grid .deal-card:nth-child(8) { animation-delay: 0.4s; }

/* Respect reduced motion & ensure cards are visible if animation fails */
@media (prefers-reduced-motion: reduce) {
  .deals-grid .deal-card { opacity: 1; animation: none; }
  .fade-in { animation: none; }
  .how-step:hover, .cat-card:hover, .deal-card:hover { transform: none; }
}

/* Premium image background */
.deal-card__image-wrap { background: linear-gradient(135deg, #FAFAFA 0%, #F1F5F9 100%); }

/* Smoother category cards */
.cat-card { transition: all var(--transition); }
.how-step { transition: all var(--transition); background: var(--white); }

/* ── FAQ Section (AEO/GEO Optimization) ── */
.faq-list { display: flex; flex-direction: column; gap: 0.5rem; }
.faq-item {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-question {
  padding: 0.85rem 1rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  list-style: none;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::before { content: "▸ "; color: var(--accent); font-weight: 700; }
details[open] .faq-question::before { content: "▾ "; }
.faq-answer {
  padding: 0 1rem 0.85rem;
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── Search Bar ── */
.search-toggle {
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  padding: 0.3rem 0.5rem;
  border-radius: 6px;
  transition: background 0.2s;
}
.search-toggle:hover { background: rgba(255,255,255,0.15); }
.search-bar {
  padding: 0.75rem 0 0.5rem;
  position: relative;
}
.search-bar input {
  width: 100%;
  padding: 0.65rem 1rem;
  border: 2px solid var(--border);
  border-radius: 8px;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
  background: var(--white);
  color: var(--text);
}
.search-bar input:focus { border-color: var(--accent); }
.search-results {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  z-index: 1000;
  max-height: 400px;
  overflow-y: auto;
}
.search-results:empty { display: none; }
.search-result-item {
  display: block;
  padding: 0.75rem 1rem;
  text-decoration: none;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}
.search-result-item:last-child { border-bottom: none; }
.search-result-item:hover { background: #f8f7ff; }
.search-result-title {
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 0.25rem;
}
.search-result-meta { display: flex; gap: 0.5rem; align-items: center; }
.search-result-price { font-size: 0.82rem; font-weight: 700; color: #00B67A; }
.search-result-discount {
  font-size: 0.72rem;
  font-weight: 700;
  color: #fff;
  background: #FF3D57;
  padding: 1px 6px;
  border-radius: 4px;
}
.search-result-cat { font-size: 0.72rem; color: var(--text-muted); }
.search-no-results {
  padding: 1rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* ── Affiliate Disclosure Badge ──────────────────────────────── */
.affiliate-badge {
  display: inline-block;
  font-size: 0.65rem;
  color: var(--text-muted);
  text-transform: lowercase;
  letter-spacing: 0.03em;
  margin-top: 0.35rem;
}
