/* =============================================
   TOPACHADOS - CSS COMPLETO
   ============================================= */

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', sans-serif; color: #1a1a2e; background: #f8f9fa; line-height: 1.6; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* === CSS VARIABLES === */
:root {
  --orange: #FF6B35;
  --orange-dark: #e55a26;
  --orange-light: #ff8c5a;
  --navy: #1a1a2e;
  --navy-light: #16213e;
  --gold: #FFD700;
  --green: #28a745;
  --red: #dc3545;
  --white: #ffffff;
  --gray-50: #f8f9fa;
  --gray-100: #f1f3f5;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-500: #adb5bd;
  --gray-600: #6c757d;
  --gray-800: #343a40;
  --gradient: linear-gradient(135deg, #FF6B35, #FF416C);
  --gradient-dark: linear-gradient(135deg, #1a1a2e, #16213e);
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow: 0 4px 20px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.15);
  --shadow-orange: 0 8px 30px rgba(255,107,53,0.30);
  --transition: all 0.3s ease;
  --container: 1200px;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5 { font-family: 'Poppins', sans-serif; font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.2rem; }
p { color: var(--gray-600); }

/* === LAYOUT === */
.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.section-gray { background: var(--gray-50); }

/* === SECTION HEADERS === */
.section-head { text-align: center; margin-bottom: 48px; }
.section-tag {
  display: inline-block; background: var(--gradient);
  color: white; font-size: 0.8rem; font-weight: 600; letter-spacing: 1px;
  text-transform: uppercase; padding: 5px 14px; border-radius: 50px; margin-bottom: 12px;
}
.section-head h2 { color: var(--navy); margin-bottom: 10px; }
.section-head p { color: var(--gray-600); max-width: 500px; margin: 0 auto; }

/* === BUTTONS === */
.btn {
  display: inline-flex; align-items: center; gap: 8px; padding: 12px 28px;
  border-radius: var(--radius-xl); font-weight: 600; font-size: 0.95rem;
  transition: var(--transition); cursor: pointer; border: 2px solid transparent;
}
.btn-primary {
  background: var(--gradient); color: white;
  box-shadow: var(--shadow-orange);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(255,107,53,0.4); }
.btn-outline {
  background: transparent; color: white; border-color: rgba(255,255,255,0.7);
}
.btn-outline:hover { background: rgba(255,255,255,0.15); border-color: white; }
.btn-secondary {
  background: var(--navy); color: white;
}
.btn-secondary:hover { background: var(--navy-light); transform: translateY(-2px); }
.btn-success {
  background: var(--green); color: white;
}
.btn-full { width: 100%; justify-content: center; }
.btn-lg { padding: 15px 36px; font-size: 1rem; }
.btn-sm { padding: 8px 18px; font-size: 0.85rem; }

/* === HIGHLIGHT TEXT === */
.highlight { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* =============================================
   HEADER
   ============================================= */
#header {
  position: sticky; top: 0; z-index: 1000;
  background: white; box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
#header.scrolled { box-shadow: var(--shadow); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; gap: 20px; }

.logo { display: flex; align-items: center; gap: 10px; font-family: 'Poppins', sans-serif; font-size: 1.4rem; color: var(--navy); }
.logo-icon { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; font-size: 1.5rem; }
.logo strong { color: var(--orange); }
.logo-light { color: white; }
.logo-light strong { color: var(--gold); }
.logo-light .logo-icon { -webkit-text-fill-color: var(--gold); }

.nav-desktop { display: flex; gap: 8px; }
.nav-desktop a {
  padding: 8px 16px; border-radius: var(--radius-xl); color: var(--gray-600);
  font-weight: 500; font-size: 0.9rem; transition: var(--transition);
}
.nav-desktop a:hover { color: var(--orange); background: rgba(255,107,53,0.08); }

.header-right { display: flex; align-items: center; gap: 12px; }
.search-wrap { display: flex; border: 2px solid var(--gray-200); border-radius: var(--radius-xl); overflow: hidden; transition: var(--transition); }
.search-wrap:focus-within { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(255,107,53,0.12); }
.search-wrap input { border: none; outline: none; padding: 9px 16px; font-size: 0.9rem; width: 220px; background: transparent; }
.search-btn { background: var(--gradient); color: white; padding: 9px 16px; transition: var(--transition); }
.search-btn:hover { opacity: 0.9; }

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 6px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: var(--transition); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none; flex-direction: column; background: white;
  border-top: 1px solid var(--gray-200); padding: 16px 20px 20px; gap: 4px;
  box-shadow: var(--shadow);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 12px 16px; border-radius: var(--radius-sm); color: var(--gray-800);
  font-weight: 500; display: flex; align-items: center; gap: 10px; transition: var(--transition);
}
.mobile-nav a:hover { background: var(--gray-50); color: var(--orange); }
.mobile-search { display: flex; border: 2px solid var(--gray-200); border-radius: var(--radius-xl); overflow: hidden; margin-bottom: 12px; }
.mobile-search input { border: none; outline: none; padding: 10px 16px; flex: 1; font-size: 0.9rem; }
.mobile-search button { background: var(--gradient); color: white; padding: 10px 16px; }

/* =============================================
   HERO
   ============================================= */
#hero {
  position: relative; overflow: hidden;
  background: var(--gradient-dark);
  padding: 80px 0 100px;
  min-height: 85vh; display: flex; align-items: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(255,107,53,0.15) 0%, transparent 70%),
              radial-gradient(ellipse at 20% 20%, rgba(255,65,108,0.1) 0%, transparent 60%);
}
.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,107,53,0.2); color: var(--orange-light); border: 1px solid rgba(255,107,53,0.3);
  padding: 8px 16px; border-radius: 50px; font-size: 0.85rem; font-weight: 600;
  margin-bottom: 20px;
}
.hero-text h1 { color: white; margin-bottom: 16px; }
.hero-text p { color: rgba(255,255,255,0.75); font-size: 1.1rem; margin-bottom: 32px; max-width: 480px; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats { display: flex; align-items: center; gap: 20px; }
.stat-item strong { display: block; color: white; font-family: 'Poppins', sans-serif; font-size: 1.5rem; font-weight: 700; }
.stat-item span { color: rgba(255,255,255,0.6); font-size: 0.8rem; }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.2); }

/* Hero Visual */
.hero-visual { display: flex; justify-content: center; align-items: center; position: relative; }
.hero-card-wrap { position: relative; width: 280px; height: 380px; }
.floating-badge {
  position: absolute; background: white; padding: 10px 16px; border-radius: var(--radius);
  font-size: 0.8rem; font-weight: 600; color: var(--navy); box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 8px; z-index: 2; white-space: nowrap;
  animation: float 3s ease-in-out infinite;
}
.floating-badge i { color: var(--orange); }
.badge-1 { top: 0; left: -40px; animation-delay: 0s; }
.badge-2 { top: 50%; right: -50px; animation-delay: 1s; }
.badge-3 { bottom: 20px; left: -30px; animation-delay: 2s; }

.hero-phone-mockup {
  width: 220px; height: 380px;
  background: linear-gradient(135deg, #2a2a3e, #1a1a2e);
  border-radius: 30px; border: 3px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg), 0 0 0 8px rgba(255,255,255,0.05);
  overflow: hidden; margin: 0 auto;
}
.phone-screen { width: 100%; padding: 20px; }
.phone-product { background: rgba(255,255,255,0.08); border-radius: var(--radius); padding: 16px; }
.phone-img-placeholder {
  background: var(--gradient); border-radius: var(--radius-sm);
  height: 140px; display: flex; align-items: center; justify-content: center;
  font-size: 3rem; color: white; margin-bottom: 12px;
}
.phone-info { text-align: center; }
.phone-stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 4px; }
.phone-price { color: white; font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 1.2rem; margin-bottom: 10px; }
.phone-btn {
  background: var(--gradient); color: white; padding: 8px; border-radius: var(--radius-xl);
  font-size: 0.8rem; font-weight: 600; text-align: center;
}

@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* =============================================
   TICKER BAR
   ============================================= */
.ticker-bar {
  background: var(--gradient); overflow: hidden; padding: 12px 0; white-space: nowrap;
}
.ticker-track {
  display: inline-flex; gap: 60px;
  animation: ticker 30s linear infinite;
}
.ticker-track span { color: white; font-weight: 600; font-size: 0.9rem; flex-shrink: 0; }
.ticker-track span::before { content: '•'; margin-right: 20px; opacity: 0.7; }
.ticker-track span:first-child::before { content: ''; margin: 0; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* =============================================
   CATEGORIES
   ============================================= */
.categories-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.cat-card {
  background: white; border-radius: var(--radius-lg); padding: 32px 24px;
  text-align: center; cursor: pointer; transition: var(--transition);
  border: 2px solid var(--gray-200); position: relative; overflow: hidden;
}
.cat-card::before {
  content: ''; position: absolute; inset: 0;
  background: var(--gradient); opacity: 0; transition: var(--transition);
}
.cat-card:hover::before, .cat-card.active::before { opacity: 1; }
.cat-card:hover *, .cat-card.active * { position: relative; z-index: 1; color: white !important; }
.cat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-orange); border-color: var(--orange); }
.cat-card.active { border-color: var(--orange); box-shadow: var(--shadow-orange); }
.cat-icon { font-size: 2.5rem; margin-bottom: 12px; }
.cat-card h3 { font-size: 1.1rem; color: var(--navy); margin-bottom: 6px; transition: var(--transition); }
.cat-card p { font-size: 0.85rem; color: var(--gray-600); margin-bottom: 12px; transition: var(--transition); }
.cat-count {
  display: inline-block; background: var(--gray-100); color: var(--gray-600);
  padding: 3px 10px; border-radius: 50px; font-size: 0.8rem; font-weight: 600; transition: var(--transition);
}
.cat-card:hover .cat-count, .cat-card.active .cat-count { background: rgba(255,255,255,0.25); color: white; }

/* =============================================
   FILTER BUTTONS
   ============================================= */
.filter-row { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; justify-content: center; }
.filter-btn {
  padding: 10px 24px; border-radius: 50px; font-weight: 600; font-size: 0.9rem;
  border: 2px solid var(--gray-200); color: var(--gray-600); background: white;
  transition: var(--transition); cursor: pointer;
}
.filter-btn:hover { border-color: var(--orange); color: var(--orange); background: rgba(255,107,53,0.05); }
.filter-btn.active { background: var(--gradient); color: white; border-color: transparent; box-shadow: var(--shadow-orange); }

/* =============================================
   PRODUCT CARDS
   ============================================= */
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

.product-card {
  background: white; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: var(--transition);
  border: 1px solid var(--gray-200); display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }

.card-img-wrap { position: relative; overflow: hidden; height: 220px; background: var(--gray-100); }
.card-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.product-card:hover .card-img-wrap img { transform: scale(1.05); }

.card-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--gradient); color: white; padding: 4px 12px;
  border-radius: 50px; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px;
}
.card-discount {
  position: absolute; top: 12px; right: 12px;
  background: var(--red); color: white; padding: 4px 10px;
  border-radius: 50px; font-size: 0.8rem; font-weight: 700;
}
.card-category-badge {
  position: absolute; bottom: 12px; left: 12px;
  background: rgba(0,0,0,0.65); color: white; padding: 3px 10px;
  border-radius: 50px; font-size: 0.75rem; font-weight: 600; backdrop-filter: blur(4px);
}

.card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.card-body h3 { font-size: 1rem; color: var(--navy); margin-bottom: 10px; line-height: 1.4; }

.card-rating { display: flex; align-items: center; gap: 6px; margin-bottom: 10px; }
.stars { color: var(--gold); font-size: 0.85rem; }
.rating-num { font-weight: 700; font-size: 0.9rem; color: var(--navy); }
.review-count { font-size: 0.8rem; color: var(--gray-500); }

.card-review { font-size: 0.875rem; color: var(--gray-600); line-height: 1.6; margin-bottom: 12px; flex: 1; }

.card-pros-cons { margin-bottom: 14px; }
.pros-title { font-size: 0.75rem; font-weight: 700; color: var(--green); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 4px; }
.pros-list { display: flex; flex-wrap: wrap; gap: 4px; }
.pro-tag {
  background: rgba(40,167,69,0.1); color: var(--green);
  padding: 2px 8px; border-radius: 50px; font-size: 0.75rem; font-weight: 500;
}

.card-price-row { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.card-price { font-family: 'Poppins', sans-serif; font-size: 1.4rem; font-weight: 700; color: var(--orange); }
.card-original-price { font-size: 0.85rem; color: var(--gray-500); text-decoration: line-through; }

.card-actions { display: flex; gap: 8px; }
.card-actions .btn { flex: 1; justify-content: center; }
.btn-video {
  background: var(--navy); color: white; border-radius: var(--radius-xl);
  padding: 10px 14px; font-size: 0.85rem; font-weight: 600;
  display: flex; align-items: center; gap: 6px; transition: var(--transition);
  flex-shrink: 0;
}
.btn-video:hover { background: #2a2a4e; }
.btn-ml {
  background: var(--gradient); color: white; border-radius: var(--radius-xl);
  padding: 10px 16px; font-size: 0.85rem; font-weight: 600;
  display: flex; align-items: center; gap: 6px; transition: var(--transition);
  flex: 1; justify-content: center;
}
.btn-ml:hover { transform: translateY(-1px); box-shadow: var(--shadow-orange); }

.empty-state { text-align: center; padding: 80px 20px; }
.empty-state i { font-size: 3rem; color: var(--gray-300); margin-bottom: 16px; display: block; }
.empty-state h3 { color: var(--gray-800); margin-bottom: 8px; }
.empty-state p { margin-bottom: 24px; }

/* =============================================
   COUPONS
   ============================================= */
.coupons-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.coupon-card {
  background: white; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid var(--gray-200); transition: var(--transition);
  display: flex; flex-direction: column;
}
.coupon-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.coupon-header { padding: 20px 24px; display: flex; justify-content: space-between; align-items: flex-start; }
.coupon-discount-big { font-family: 'Poppins', sans-serif; font-size: 2.5rem; font-weight: 800; line-height: 1; }
.coupon-label { font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; opacity: 0.8; }
.coupon-icon { font-size: 2.5rem; opacity: 0.3; }

.coupon-body { padding: 0 24px 20px; flex: 1; }
.coupon-name { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 1rem; color: var(--navy); margin-bottom: 4px; }
.coupon-desc { font-size: 0.85rem; color: var(--gray-600); margin-bottom: 12px; }
.coupon-meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.coupon-expiry { font-size: 0.8rem; color: var(--gray-500); }
.coupon-expiry.expiring { color: var(--red); font-weight: 600; }
.coupon-uses { font-size: 0.8rem; color: var(--gray-500); }

.coupon-code-row { display: flex; gap: 8px; align-items: center; }
.coupon-code {
  flex: 1; background: var(--gray-100); border: 2px dashed var(--gray-300);
  border-radius: var(--radius-sm); padding: 10px 14px;
  font-family: 'Courier New', monospace; font-weight: 700; font-size: 1rem;
  color: var(--navy); text-align: center; letter-spacing: 2px;
}
.btn-copy {
  background: var(--gradient); color: white; padding: 10px 16px;
  border-radius: var(--radius-sm); font-weight: 600; font-size: 0.85rem;
  transition: var(--transition); white-space: nowrap; display: flex; align-items: center; gap: 6px;
}
.btn-copy:hover { transform: translateY(-1px); box-shadow: var(--shadow-orange); }
.btn-copy.copied { background: var(--green); }

/* Coupon Colors */
.coupon-card.orange .coupon-header { background: linear-gradient(135deg, #FF6B35, #FF416C); color: white; }
.coupon-card.navy .coupon-header { background: var(--gradient-dark); color: white; }
.coupon-card.green .coupon-header { background: linear-gradient(135deg, #28a745, #20c997); color: white; }
.coupon-card.purple .coupon-header { background: linear-gradient(135deg, #6f42c1, #e83e8c); color: white; }
.coupon-card.teal .coupon-header { background: linear-gradient(135deg, #17a2b8, #0056b3); color: white; }
.coupon-card.gold .coupon-header { background: linear-gradient(135deg, #FFD700, #FFA500); color: var(--navy); }

/* =============================================
   NEWSLETTER
   ============================================= */
.newsletter-section {
  background: var(--gradient-dark); position: relative; overflow: hidden;
}
.newsletter-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(255,107,53,0.15) 0%, transparent 60%);
}
.newsletter-wrap {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.nl-text .section-tag { margin-bottom: 16px; }
.nl-text h2 { color: white; margin-bottom: 16px; }
.nl-text > p { color: rgba(255,255,255,0.75); margin-bottom: 24px; font-size: 1rem; }
.nl-benefits { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.nl-benefits li { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.85); font-size: 0.9rem; }
.nl-benefits i { color: var(--gold); flex-shrink: 0; }
.nl-social { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.nl-social span { color: rgba(255,255,255,0.6); font-size: 0.85rem; }
.social-link {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.1); color: white;
  display: flex; align-items: center; justify-content: center; font-size: 1rem;
  transition: var(--transition); border: 1px solid rgba(255,255,255,0.2);
}
.social-link:hover { background: var(--orange); border-color: var(--orange); transform: translateY(-2px); }
.social-link.whatsapp:hover { background: #25d366; border-color: #25d366; }

.nl-form-box {
  background: white; border-radius: var(--radius-lg);
  padding: 36px; box-shadow: var(--shadow-lg);
}
.nl-form-header { text-align: center; margin-bottom: 24px; }
.nl-form-header i { font-size: 2.5rem; color: var(--orange); margin-bottom: 10px; display: block; }
.nl-form-header h3 { color: var(--navy); margin-bottom: 4px; }
.nl-form-header p { font-size: 0.85rem; color: var(--gray-600); }

.form-row { margin-bottom: 16px; }
.form-row label { display: flex; align-items: center; gap: 6px; font-size: 0.85rem; font-weight: 600; color: var(--gray-800); margin-bottom: 6px; }
.form-row label i { color: var(--orange); }
.form-row input[type="text"], .form-row input[type="email"] {
  width: 100%; padding: 11px 16px; border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm); font-size: 0.9rem; transition: var(--transition); outline: none;
}
.form-row input:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(255,107,53,0.12); }
.check-group { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.check-item {
  display: flex; align-items: center; gap: 8px; padding: 9px 12px;
  border: 2px solid var(--gray-200); border-radius: var(--radius-sm); cursor: pointer;
  font-size: 0.85rem; font-weight: 500; color: var(--gray-800); transition: var(--transition);
}
.check-item:hover { border-color: var(--orange); background: rgba(255,107,53,0.04); }
.check-item input { accent-color: var(--orange); }
.form-note { font-size: 0.78rem; color: var(--gray-500); text-align: center; margin-top: 12px; }

/* =============================================
   FOOTER
   ============================================= */
#footer { background: #0d0d1a; padding: 70px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; margin-bottom: 50px; }
.footer-about .logo { margin-bottom: 16px; }
.footer-about p { color: rgba(255,255,255,0.55); font-size: 0.9rem; line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.7);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition); border: 1px solid rgba(255,255,255,0.1);
}
.footer-social a:hover { background: var(--orange); color: white; border-color: var(--orange); }
.footer-col h4 { color: white; font-size: 1rem; margin-bottom: 16px; font-family: 'Poppins', sans-serif; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul a { color: rgba(255,255,255,0.55); font-size: 0.9rem; transition: var(--transition); }
.footer-col ul a:hover { color: var(--orange); padding-left: 4px; }
.footer-col p { color: rgba(255,255,255,0.55); font-size: 0.9rem; display: flex; align-items: flex-start; gap: 8px; margin-bottom: 8px; }
.footer-col p i { color: var(--orange); margin-top: 2px; flex-shrink: 0; }
.affiliate-disclaimer {
  background: rgba(255,107,53,0.1); border: 1px solid rgba(255,107,53,0.2);
  border-radius: var(--radius-sm); padding: 12px; margin-top: 16px;
  display: flex; gap: 8px; align-items: flex-start;
}
.affiliate-disclaimer i { color: var(--orange); margin-top: 2px; flex-shrink: 0; }
.affiliate-disclaimer p { color: rgba(255,255,255,0.55) !important; font-size: 0.8rem !important; margin: 0 !important; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08); padding: 24px 0;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px;
}
.footer-bottom p { color: rgba(255,255,255,0.4); font-size: 0.85rem; }

/* =============================================
   VIDEO MODAL
   ============================================= */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.85); z-index: 9999;
  display: none; align-items: center; justify-content: center; padding: 20px;
  backdrop-filter: blur(4px);
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: var(--navy); border-radius: var(--radius-lg); max-width: 900px; width: 100%;
  position: relative; overflow: hidden; box-shadow: 0 20px 80px rgba(0,0,0,0.5);
}
.modal-close {
  position: absolute; top: 12px; right: 12px; z-index: 10;
  background: rgba(255,255,255,0.15); color: white; width: 36px; height: 36px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1rem; transition: var(--transition);
}
.modal-close:hover { background: var(--red); }
.video-wrap { position: relative; padding-top: 56.25%; }
.video-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; }

/* =============================================
   TOAST
   ============================================= */
.toast {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(100px);
  background: var(--navy); color: white; padding: 12px 24px; border-radius: var(--radius);
  font-size: 0.9rem; font-weight: 600; box-shadow: var(--shadow-lg);
  z-index: 9998; transition: transform 0.3s ease; pointer-events: none;
  display: flex; align-items: center; gap: 8px;
}
.toast.show { transform: translateX(-50%) translateY(0); }
.toast.success { background: var(--green); }
.toast.error { background: var(--red); }

/* =============================================
   BACK TO TOP
   ============================================= */
.back-top {
  position: fixed; bottom: 24px; right: 24px; z-index: 997;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--gradient); color: white; font-size: 1rem;
  box-shadow: var(--shadow-orange); transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transform: translateY(20px);
}
.back-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-top:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(255,107,53,0.5); }

/* =============================================
   SCROLL ANIMATIONS
   ============================================= */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .coupons-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-inner { gap: 40px; }
  .search-wrap input { width: 180px; }
}

@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .nav-desktop { display: none; }
  .hamburger { display: flex; }
  .search-wrap { display: none; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-ctas { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { display: none; }
  .categories-row { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: 1fr; }
  .coupons-grid { grid-template-columns: 1fr; }
  .newsletter-wrap { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-text h1 { font-size: 2rem; }
  .filter-row { gap: 8px; }
  .filter-btn { padding: 8px 16px; font-size: 0.85rem; }
}

@media (max-width: 480px) {
  .categories-row { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-ctas .btn { width: 100%; max-width: 280px; justify-content: center; }
  .check-group { grid-template-columns: 1fr; }
  .card-actions { flex-direction: column; }
  .footer-about, .footer-col { grid-column: auto; }
}
