/*
Theme Name: DealSpot
Theme URI: https://dealspot.com
Author: DealSpot
Author URI: https://dealspot.com
Description: Amazon affiliate marketing theme for Clothes, Beauty and Shoes.
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: dealspot
*/

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

/* ─── CSS Variables ─── */
:root {
  --primary: #FF9900;
  --primary-dark: #e68a00;
  --primary-light: rgba(255,153,0,0.12);
  --secondary: #0f1a35;
  --secondary-mid: #1a2744;
  --foreground: #1a202c;
  --muted-foreground: #718096;
  --border: #e2e8f0;
  --background: #F9FAFB;
  --white: #ffffff;
  --card: #ffffff;
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-2xl: 24px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
}

/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--background);
  color: var(--foreground);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; font-family: var(--font-body); border: none; background: none; }
input, select, textarea { font-family: var(--font-body); }

/* ─── Utilities ─── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.font-display { font-family: var(--font-display); }
.text-primary { color: var(--primary); }
.text-muted { color: var(--muted-foreground); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ─── HEADER ─── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  height: 64px;
  gap: 24px;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-icon {
  width: 34px; height: 34px;
  background: var(--primary);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-size: 18px;
}
.logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  color: var(--foreground);
  letter-spacing: -0.5px;
}
.site-nav { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.site-nav a {
  font-size: 14px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: var(--radius);
  color: var(--muted-foreground);
  transition: all 0.15s;
}
.site-nav a:hover { color: var(--foreground); background: var(--background); }
.site-nav a.active {
  background: var(--primary);
  color: white;
}
.nav-toggle {
  display: none;
  padding: 8px;
  border-radius: var(--radius);
  color: var(--foreground);
  font-size: 20px;
  margin-left: auto;
}
@media (max-width: 768px) {
  .site-nav { display: none; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: white; border-bottom: 1px solid var(--border); padding: 12px 16px; gap: 4px; }
  .site-nav.open { display: flex; }
  .nav-toggle { display: flex; align-items: center; }
}

/* ─── FOOTER ─── */
.site-footer {
  background: var(--secondary);
  color: rgba(255,255,255,0.75);
  margin-top: 80px;
}
.footer-inner { padding: 56px 0 0; }
.footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo .logo-icon { background: var(--primary); }
.footer-logo .logo-text { color: white; }
.footer-desc { font-size: 14px; line-height: 1.7; max-width: 260px; }
.footer-heading { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: white; margin-bottom: 16px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 14px; transition: color 0.15s; }
.footer-links a:hover { color: white; }
.footer-disclosure { font-size: 13px; line-height: 1.7; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 40px;
  padding: 20px 0;
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 600; font-size: 15px; border-radius: var(--radius-xl);
  transition: all 0.15s; cursor: pointer; border: none;
  text-decoration: none; padding: 14px 28px;
}
.btn-primary { background: var(--primary); color: white; box-shadow: 0 4px 14px rgba(255,153,0,0.3); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-1px); }
.btn-outline { background: rgba(255,255,255,0.1); color: white; border: 1px solid rgba(255,255,255,0.2); }
.btn-outline:hover { background: rgba(255,255,255,0.18); }
.btn-sm { padding: 10px 20px; font-size: 13px; border-radius: var(--radius); }

/* ─── BADGES ─── */
.badge {
  display: inline-block; font-size: 11px; font-weight: 700;
  padding: 4px 10px; border-radius: 999px;
}
.badge-seller { background: #F59E0B; color: white; }
.badge-deal { background: #EF4444; color: white; }
.badge-rated { background: #10B981; color: white; }
.badge-pick { background: #2563EB; color: white; }
.badge-discount { background: #FEE2E2; color: #DC2626; }

/* ─── STARS ─── */
.stars { display: inline-flex; align-items: center; gap: 2px; }
.star { font-size: 14px; color: #D1D5DB; }
.star.filled { color: #FBBF24; }
.star-count { font-size: 13px; color: var(--muted-foreground); margin-left: 4px; }

/* ─── PRODUCT CARD ─── */
.product-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}
.product-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }

/* تحسين حاوية الصورة لجعل العرض ثابتاً ومستقراً */
.card-image-wrap {
  position: relative; 
  background: #ffffff;
  overflow: hidden;
  width: 100%;
  height: 280px; /* الارتفاع المثالي لكروت المتاجر الاحترافية */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
}

/* الكود السحري المدمج لمنع تمطيط الميديا المرفوعة ولزيادة حدة الحواف للبكسلات */
.card-image-wrap img {
  width: 100% !important; 
  height: 100% !important; 
  object-fit: contain !important; /* يحافظ على أبعاد المنتجات الحقيقية تماماً كملف 61EKqKcGmsL._AC_SY741_.jpg */
  transition: transform 0.5s ease;
  
  /* خوارزميات رندر الحواف الحادة لمنع الضبابية (Anti-Blurring) */
  image-rendering: -webkit-optimize-contrast !important;
  image-rendering: crisp-edges !important;
}
.product-card:hover .card-image-wrap img { transform: scale(1.03); }

.card-badges { position: absolute; top: 12px; left: 12px; display: flex; flex-direction: column; gap: 6px; z-index: 2; }
.card-discount { position: absolute; top: 12px; right: 12px; z-index: 2; }
.card-body { padding: 16px; flex: 1; display: flex; flex-direction: column; }
.card-category { font-size: 11px; font-weight: 600; color: var(--primary); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 6px; }
.card-title { font-weight: 600; font-size: 14px; line-height: 1.4; color: var(--foreground); margin-bottom: 8px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.card-rating { margin-bottom: 12px; display: flex; align-items: center; }
.card-price { display: flex; align-items: baseline; gap: 8px; margin-bottom: 14px; margin-top: auto; }
.price-current { font-size: 22px; font-weight: 800; color: var(--foreground); }
.price-original { font-size: 14px; color: var(--muted-foreground); text-decoration: line-through; }
.card-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; background: var(--primary); color: white;
  font-weight: 700; font-size: 14px; padding: 12px;
  border-radius: var(--radius-lg); border: none; cursor: pointer;
  transition: all 0.15s; text-decoration: none;
}
.card-btn:hover { background: var(--primary-dark); }
.card-btn:active { transform: scale(0.98); }

/* ─── PRODUCT GRID ─── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 1100px) { .product-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .product-grid { grid-template-columns: 1fr; } }

/* ─── SECTIONS ─── */
.section { padding: 64px 0; }
.section-sm { padding: 40px 0; }
.section-header { margin-bottom: 40px; }
.section-header h2 { font-family: var(--font-display); font-weight: 800; font-size: clamp(24px, 4vw, 36px); color: var(--foreground); margin-bottom: 8px; }
.section-header p { color: var(--muted-foreground); font-size: 15px; }
.section-header-row { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 32px; }
.section-link { font-size: 14px; color: var(--primary); font-weight: 500; }
.section-link:hover { text-decoration: underline; }

/* ─── HOME: HERO ─── */
.hero {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-mid) 100%);
  padding: 96px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before, .hero::after {
  content: ''; position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: 0.12; pointer-events: none;
}
.hero::before { width: 400px; height: 400px; background: var(--primary); top: -80px; left: -80px; }
.hero::after { width: 500px; height: 500px; background: #7C3AED; bottom: -100px; right: -100px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,153,0,0.18); border: 1px solid rgba(255,153,0,0.3);
  color: var(--primary); padding: 6px 18px; border-radius: 999px;
  font-size: 13px; font-weight: 600; margin-bottom: 32px;
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(40px, 7vw, 72px);
  color: white;
  line-height: 1.1;
  margin-bottom: 24px;
}
.hero h1 span { color: var(--primary); }
.hero p {
  color: rgba(255,255,255,0.7);
  font-size: clamp(16px, 2vw, 19px);
  max-width: 580px;
  margin: 0 auto 40px;
  line-height: 1.6;
}
.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ─── HOME: STATS ─── */
.stats-bar { background: white; border-bottom: 1px solid var(--border); padding: 24px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
@media (max-width: 640px) { .stats-grid { grid-template-columns: repeat(2,1fr); } }
.stat-value { font-family: var(--font-display); font-weight: 900; font-size: 30px; color: var(--primary); }
.stat-label { font-size: 13px; color: var(--muted-foreground); margin-top: 2px; }

/* ─── HOME: BENEFITS ─── */
.benefits-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
@media (max-width: 1024px) { .benefits-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 580px) { .benefits-grid { grid-template-columns: 1fr; } }
.benefit-card {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 24px;
  transition: all 0.3s;
}
.benefit-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.benefit-icon {
  width: 44px; height: 44px; background: var(--primary-light);
  border-radius: var(--radius); display: flex; align-items: center; justify-content: center;
  font-size: 20px; margin-bottom: 16px;
}
.benefit-card h3 { font-family: var(--font-display); font-weight: 700; font-size: 16px; margin-bottom: 8px; }
.benefit-card p { font-size: 14px; color: var(--muted-foreground); line-height: 1.6; }

/* ─── HOME: CATEGORIES ─── */
.categories-section { background: white; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.category-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
@media (max-width: 640px) { .category-grid { grid-template-columns: 1fr; } }
.category-card {
  border-radius: var(--radius-2xl); padding: 32px;
  color: white; text-decoration: none;
  transition: transform 0.2s; display: block;
}
.category-card:hover { transform: scale(1.02); }
.category-card.clothes { background: linear-gradient(135deg, #8B5CF6, #6D28D9); }
.category-card.beauty { background: linear-gradient(135deg, #F472B6, #DB2777); }
.category-card.shoes { background: linear-gradient(135deg, #FBBF24, #F59E0B); }
.category-card h3 { font-family: var(--font-display); font-weight: 900; font-size: 28px; margin-bottom: 4px; }
.category-card p { font-size: 13px; opacity: 0.75; margin-bottom: 20px; }
.category-card-footer { display: flex; justify-content: space-between; align-items: center; }
.category-count { font-size: 12px; opacity: 0.8; font-weight: 500; }
.category-arrow { font-size: 16px; opacity: 0.7; }

/* ─── HOME: HOW IT WORKS ─── */
.how-section { background: white; border-top: 1px solid var(--border); }
.how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; text-align: center; }
@media (max-width: 640px) { .how-grid { grid-template-columns: 1fr; } }
.how-step-num { font-family: var(--font-display); font-weight: 900; font-size: 64px; color: #E2E8F0; line-height: 1; margin-bottom: 12px; }
.how-step h3 { font-family: var(--font-display); font-weight: 700; font-size: 18px; margin-bottom: 8px; }
.how-step p { font-size: 14px; color: var(--muted-foreground); line-height: 1.6; }

/* ─── HOME: TESTIMONIALS ─── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
@media (max-width: 768px) { .testimonials-grid { grid-template-columns: 1fr; } }
.testimonial-card { background: white; border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 24px; }
.testimonial-stars { display: flex; gap: 2px; margin-bottom: 16px; }
.testimonial-quote { font-size: 14px; color: var(--muted-foreground); font-style: italic; line-height: 1.7; margin-bottom: 16px; }
.testimonial-name { font-weight: 600; font-size: 14px; }

/* ─── HOME: CTA BANNER ─── */
.cta-banner {
  background: linear-gradient(135deg, var(--secondary), var(--secondary-mid));
  border-radius: var(--radius-2xl); padding: 64px 40px;
  text-align: center; color: white;
}
.cta-banner-icon { font-size: 40px; margin-bottom: 16px; }
.cta-banner h2 { font-family: var(--font-display); font-weight: 800; font-size: clamp(22px, 4vw, 32px); margin-bottom: 12px; }
.cta-banner p { color: rgba(255,255,255,0.7); font-size: 16px; max-width: 420px; margin: 0 auto 32px; }

/* ─── STORE PAGE ─── */
.store-header { margin-bottom: 32px; }
.store-header h1 { font-family: var(--font-display); font-weight: 900; font-size: clamp(28px, 5vw, 42px); margin-bottom: 6px; }
.store-header p { color: var(--muted-foreground); }

.store-controls { display: flex; gap: 12px; margin-bottom: 20px; flex-wrap: wrap; }
.search-wrap { position: relative; flex: 1; min-width: 240px; }
.search-wrap input {
  width: 100%; padding: 12px 16px 12px 44px;
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  font-size: 14px; background: white; outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.search-wrap input:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(255,153,0,0.12); }
.search-icon { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--muted-foreground); pointer-events: none; }
.sort-select {
  padding: 12px 16px; border: 1px solid var(--border);
  border-radius: var(--radius-lg); font-size: 14px; background: white;
  outline: none; cursor: pointer; min-width: 180px;
}
.sort-select:focus { border-color: var(--primary); }
.filter-btn {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 18px; border: 1px solid var(--border);
  border-radius: var(--radius-lg); font-size: 14px; font-weight: 500;
  background: white; transition: all 0.15s;
}
.filter-btn:hover, .filter-btn.active { background: var(--primary); color: white; border-color: var(--primary); }

.category-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.pill {
  padding: 6px 18px; border: 1px solid var(--border);
  border-radius: 999px; font-size: 14px; font-weight: 500;
  background: white; cursor: pointer; transition: all 0.15s;
  color: var(--muted-foreground);
}
.pill:hover { border-color: var(--primary); color: var(--primary); }
.pill.active { background: var(--primary); color: white; border-color: var(--primary); }

.filter-panel {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 24px;
  margin-bottom: 24px; display: none;
  grid-template-columns: repeat(3,1fr); gap: 24px;
}
.filter-panel.open { display: grid; }
@media (max-width: 640px) { .filter-panel { grid-template-columns: 1fr; } }
.filter-group h4 { font-size: 14px; font-weight: 600; margin-bottom: 12px; }
.filter-group-cats { display: flex; flex-direction: column; gap: 6px; }
.filter-cat-btn {
  text-align: left; font-size: 14px; padding: 8px 12px;
  border-radius: var(--radius); transition: all 0.15s;
  color: var(--muted-foreground);
}
.filter-cat-btn:hover { background: var(--background); color: var(--foreground); }
.filter-cat-btn.active { background: var(--primary); color: white; font-weight: 600; }
.price-inputs { display: flex; align-items: center; gap: 8px; }
.price-input-wrap { position: relative; flex: 1; }
.price-prefix { position: absolute; left: 10px; top: 50%; transform: translateY(-50%); color: var(--muted-foreground); font-size: 14px; }
.price-inputs input {
  width: 100%; padding: 8px 8px 8px 26px;
  border: 1px solid var(--border); border-radius: var(--radius);
  font-size: 14px; outline: none;
}
.price-inputs input:focus { border-color: var(--primary); }
.price-presets { display: flex; gap: 6px; margin-top: 10px; flex-wrap: wrap; }
.price-preset {
  font-size: 12px; padding: 4px 10px; border: 1px solid var(--border);
  border-radius: var(--radius); cursor: pointer; transition: all 0.15s;
}
.price-preset:hover { background: var(--primary-light); border-color: var(--primary); color: var(--primary); }
.clear-btn { font-size: 13px; color: #EF4444; cursor: pointer; display: flex; align-items: center; gap: 4px; }
.clear-btn:hover { text-decoration: underline; }

.results-count { font-size: 14px; color: var(--muted-foreground); margin-bottom: 20px; }
.results-count strong { color: var(--foreground); }

.no-results { text-align: center; padding: 80px 0; color: var(--muted-foreground); }
.no-results-icon { font-size: 48px; margin-bottom: 16px; opacity: 0.3; }
.no-results h3 { font-size: 18px; font-weight: 600; color: var(--foreground); margin-bottom: 8px; }

/* ─── NOTIFY PAGE ─── */
.notify-hero { background: linear-gradient(135deg, var(--secondary), var(--secondary-mid)); padding: 72px 24px; text-align: center; }
.notify-icon-wrap { width: 72px; height: 72px; background: rgba(255,153,0,0.15); border: 1px solid rgba(255,153,0,0.3); border-radius: 18px; display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; font-size: 32px; }
.notify-hero h1 { font-family: var(--font-display); font-weight: 900; font-size: clamp(36px, 6vw, 56px); color: white; line-height: 1.1; margin-bottom: 16px; }
.notify-hero h1 span { color: var(--primary); }
.notify-hero p { color: rgba(255,255,255,0.7); font-size: 17px; max-width: 480px; margin: 0 auto; }

.trust-bar { background: white; border-bottom: 1px solid var(--border); padding: 20px; }
.trust-items { display: flex; justify-content: center; flex-wrap: wrap; gap: 32px; }
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--muted-foreground); }
.trust-item-check { color: #10B981; font-weight: bold; }

.notify-form-wrap { max-width: 620px; margin: 0 auto; padding: 56px 24px; }
.form-card { background: white; border: 1px solid var(--border); border-radius: var(--radius-2xl); box-shadow: var(--shadow-md); overflow: hidden; }
.form-card-inner { padding: 40px; }
.form-card h2 { font-family: var(--font-display); font-weight: 800; font-size: 24px; margin-bottom: 6px; }
.form-card > .form-card-inner > p { color: var(--muted-foreground); font-size: 14px; margin-bottom: 32px; }

.form-field { margin-bottom: 28px; }
.form-label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 8px; }
.form-input {
  width: 100%; padding: 13px 16px;
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  font-size: 14px; outline: none; transition: all 0.15s;
}
.form-input:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(255,153,0,0.12); }
.form-input.error { border-color: #EF4444; }

.cat-options { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
@media (max-width: 480px) { .cat-options { grid-template-columns: 1fr; } }
.cat-option {
  position: relative; padding: 16px; border: 2px solid var(--border);
  border-radius: var(--radius-xl); cursor: pointer; transition: all 0.15s;
  text-align: left;
}
.cat-option:hover { border-color: rgba(255,153,0,0.5); }
.cat-option.selected { border-color: var(--primary); background: var(--primary-light); }
.cat-check {
  position: absolute; top: 12px; right: 12px; width: 20px; height: 20px;
  background: var(--primary); border-radius: 50%;
  display: none; align-items: center; justify-content: center;
  color: white; font-size: 11px; font-weight: bold;
}
.cat-option.selected .cat-check { display: flex; }
.cat-icon-wrap {
  width: 36px; height: 36px; border-radius: var(--radius);
  background: var(--background); display: flex; align-items: center;
  justify-content: center; font-size: 18px; margin-bottom: 10px;
}
.cat-option.selected .cat-icon-wrap { background: var(--primary-light); }
.cat-label { font-weight: 600; font-size: 13px; margin-bottom: 2px; }
.cat-sublabel { font-size: 11px; color: var(--muted-foreground); line-height: 1.4; }

.freq-options { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
@media (max-width: 480px) { .freq-options { grid-template-columns: 1fr; } }
.freq-option {
  padding: 14px; border: 2px solid var(--border);
  border-radius: var(--radius-xl); cursor: pointer; transition: all 0.15s;
  text-align: left;
}
.freq-option:hover { border-color: rgba(255,153,0,0.5); }
.freq-option.selected { border-color: var(--primary); background: var(--primary-light); }
.freq-label { font-weight: 600; font-size: 13px; margin-bottom: 2px; }
.freq-sublabel { font-size: 11px; color: var(--muted-foreground); }

.form-error { font-size: 13px; color: #EF4444; margin-bottom: 12px; display: none; }
.form-error.show { display: block; }

.form-submit-btn {
  width: 100%; background: var(--primary); color: white;
  font-weight: 700; font-size: 16px; padding: 16px;
  border-radius: var(--radius-xl); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  transition: all 0.15s; box-shadow: 0 4px 14px rgba(255,153,0,0.3);
}
.form-submit-btn:hover { background: var(--primary-dark); transform: translateY(-1px); }
.form-submit-btn:active { transform: scale(0.98); }
.form-disclaimer { text-align: center; font-size: 12px; color: var(--muted-foreground); margin-top: 16px; }

.how-mini { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 32px; text-align: center; }
@media (max-width: 480px) { .how-mini { grid-template-columns: 1fr; } }
.how-mini-num { width: 36px; height: 36px; background: var(--primary-light); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 800; font-size: 14px; color: var(--primary); margin: 0 auto 8px; }
.how-mini p { font-size: 12px; color: var(--muted-foreground); line-height: 1.4; }

/* ─── SUCCESS STATE ─── */
.success-wrap { text-align: center; padding: 80px 24px; max-width: 480px; margin: 0 auto; }
.success-icon { width: 80px; height: 80px; background: #D1FAE5; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; font-size: 36px; }
.success-wrap h1 { font-family: var(--font-display); font-weight: 900; font-size: 32px; margin-bottom: 12px; }
.success-wrap p { color: var(--muted-foreground); margin-bottom: 6px; }
.success-email { font-weight: 700; font-size: 18px; }
.success-prefs { background: white; border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 20px; text-align: left; margin: 24px 0; }
.success-prefs h4 { font-size: 14px; font-weight: 600; margin-bottom: 12px; }
.success-pref { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--muted-foreground); margin-bottom: 6px; }
.success-pref-check { color: #10B981; }

/* ─── RESPONSIVE ─── */
@media (max-width: 480px) {
  .hero { padding: 64px 0; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .section { padding: 48px 0; }
}

.cat-option input[type="checkbox"],
.freq-option input[type="radio"] {
  position: absolute !important;
  opacity: 0 !important;
  width: 0 !important;
  height: 0 !important;
  pointer-events: none !important;
}
/* Store Container Layout */
.store-container { max-width: 1200px; margin: 40px auto; padding: 0 20px; font-family: system-ui, -apple-system, sans-serif; }

/* Grid System */
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 30px; }

@media (max-width: 480px) {
    .products-grid { grid-template-columns: 1fr; }
}

/* Product Card */
.product-card { background: #fff; border: 1px solid #eef0f2; border-radius: 16px; overflow: hidden; display: flex; flex-direction: column; transition: transform 0.2s, box-shadow 0.2s; }
.product-card:hover { transform: translateY(-4px); box-shadow: 0 12px 24px rgba(0,0,0,0.06); }

/* Image Wrapper */
.product-image-wrapper { width: 100%; aspect-ratio: 1 / 1; display: flex; align-items: center; justify-content: center; position: relative; background: #fff; padding: 15px; }

