/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #7c3aed;
  --primary-dark: #6d28d9;
  --accent: #06b6d4;
  --accent-dark: #0891b2;
  --green: #16a34a;
  --green-dark: #15803d;
  --whatsapp: #25d366;
  --whatsapp-dark: #128c7e;
  --dark: #0f172a;
  --dark-2: #1e293b;
  --gray: #64748b;
  --light-gray: #f1f5f9;
  --white: #ffffff;
  --border: #e2e8f0;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.12);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
  --transition: all 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a { text-decoration: none; color: inherit; }

ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }

/* ===== PROMO BAR ===== */
.promo-bar {
  background: var(--primary);
  color: var(--white);
  padding: 8px 0;
  font-size: 13px;
  font-weight: 500;
  overflow: hidden;
}
.promo-bar-inner {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.promo-bar-inner span {
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.promo-bar-inner i { color: var(--accent); }

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.navbar.scrolled {
  box-shadow: var(--shadow-md);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links a {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  color: var(--dark-2);
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--primary);
  background: rgba(124,58,237,0.07);
}
.btn-whatsapp-nav {
  background: var(--whatsapp) !important;
  color: var(--white) !important;
  border-radius: 8px;
  padding: 9px 18px !important;
  font-weight: 600 !important;
  display: flex !important;
  align-items: center;
  gap: 6px;
}
.btn-whatsapp-nav:hover {
  background: var(--whatsapp-dark) !important;
  color: var(--white) !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,23,42,0.88) 0%, rgba(15,23,42,0.65) 60%, rgba(124,58,237,0.3) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  padding: 80px 20px;
  max-width: 720px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent);
  color: var(--dark);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
.hero-content h1 .highlight {
  color: var(--accent);
}
.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 30px;
  line-height: 1.7;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.stat { text-align: center; }
.stat strong { display: block; font-size: 26px; font-weight: 800; color: var(--accent); }
.stat span { font-size: 13px; color: rgba(255,255,255,0.7); }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.2); }
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.bounce {
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
}
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
}
.btn-whatsapp:hover { background: var(--whatsapp-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,0.35); }

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover { background: var(--primary); color: var(--white); transform: translateY(-2px); }

.btn-white-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  background: var(--white);
  color: var(--whatsapp-dark);
  transition: var(--transition);
}
.btn-white-wa:hover { background: var(--whatsapp); color: var(--white); transform: translateY(-2px); }

.btn-white-maps {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  background: var(--white);
  color: var(--primary-dark);
  transition: var(--transition);
}
.btn-white-maps:hover { background: var(--primary); color: var(--white); transform: translateY(-2px); }

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
  box-shadow: var(--shadow);
}
.trust-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.trust-item > i {
  font-size: 28px;
  color: var(--primary);
  flex-shrink: 0;
}
.trust-item strong { display: block; font-size: 14px; font-weight: 700; }
.trust-item p { font-size: 13px; color: var(--gray); margin: 0; }

/* ===== SECTION ===== */
.section {
  padding: 80px 0;
}
.section-header {
  text-align: center;
  margin-bottom: 52px;
}
.section-tag {
  display: inline-block;
  background: rgba(124,58,237,0.08);
  color: var(--primary);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}
.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 12px;
  line-height: 1.2;
}
.section-header p {
  font-size: 17px;
  color: var(--gray);
  max-width: 560px;
  margin: 0 auto;
}

/* ===== PRODUCTS GRID ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}
.product-card.featured {
  border: 2px solid var(--primary);
  box-shadow: 0 0 0 4px rgba(124,58,237,0.06);
}
.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--accent);
  color: var(--dark);
  font-size: 11px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 50px;
  z-index: 1;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.product-badge.best {
  background: var(--primary);
  color: var(--white);
}
.product-img-wrap {
  height: 200px;
  overflow: hidden;
  background: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
  background: var(--light-gray);
  transition: transform 0.4s ease;
}
.product-card:hover .product-img-wrap img {
  transform: scale(1.04);
}
.product-info {
  padding: 20px;
}
.brand-tag {
  display: inline-block;
  background: var(--light-gray);
  color: var(--gray);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}
.product-info h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
  line-height: 1.3;
}
.specs {
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.price-block {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-bottom: 16px;
}
.old-price {
  font-size: 13px;
  color: var(--gray);
  text-decoration: line-through;
}
.new-price {
  font-size: 22px;
  font-weight: 800;
  color: #e53e3e;
}
.btn-buy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px;
  background: var(--whatsapp);
  color: var(--white);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition);
}
.btn-buy:hover { background: var(--whatsapp-dark); transform: translateY(-1px); }

/* ===== WHY US ===== */
.why-us { background: var(--light-gray); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.why-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid var(--border);
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.why-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.why-icon i { font-size: 24px; color: var(--white); }
.why-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.why-card p { font-size: 14px; color: var(--gray); line-height: 1.6; }

/* ===== URGENCY SECTION ===== */
.urgency-section {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  color: var(--white);
  padding: 60px 0;
}
.urgency-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.urgency-text h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.2;
}
.urgency-text h2 i { color: var(--accent); }
.urgency-text p { color: rgba(255,255,255,0.75); margin-bottom: 20px; line-height: 1.7; }
.urgency-list { margin-bottom: 28px; }
.urgency-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  font-size: 15px;
  color: rgba(255,255,255,0.85);
}
.urgency-list i { color: var(--whatsapp); }
.counter-box {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
}
.counter-title {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}
.countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
}
.cd-unit { text-align: center; }
.cd-unit span {
  display: block;
  font-size: 52px;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.cd-unit label { font-size: 11px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 1px; }
.cd-sep { font-size: 40px; font-weight: 800; color: var(--accent); line-height: 1; margin-bottom: 20px; }
.counter-note { font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 16px; }
.stock-bar {
  background: rgba(255,255,255,0.1);
  border-radius: 50px;
  height: 8px;
  overflow: hidden;
  margin-bottom: 8px;
}
.stock-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), #ef4444);
  border-radius: 50px;
}
.stock-label { font-size: 12px; color: rgba(255,255,255,0.5); }

/* ===== REVIEWS ===== */
.reviews { background: var(--light-gray); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
  border: 1px solid var(--border);
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.stars { color: var(--accent); font-size: 18px; margin-bottom: 12px; }
.review-card p { font-size: 14px; color: var(--gray); line-height: 1.7; margin-bottom: 18px; font-style: italic; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  flex-shrink: 0;
}
.reviewer strong { display: block; font-size: 14px; }
.reviewer span { font-size: 12px; color: var(--gray); }
.trust-score {
  text-align: center;
  margin-top: 48px;
  padding: 32px;
  background: var(--white);
  border-radius: var(--radius-lg);
  display: inline-block;
  width: 100%;
  border: 1px solid var(--border);
}
.score-number { font-size: 56px; font-weight: 900; color: var(--dark); line-height: 1; }
.score-stars { font-size: 28px; color: var(--accent); margin: 8px 0; }
.score-text { font-size: 15px; color: var(--gray); }

/* ===== CTA DOUBLE ===== */
.cta-double { padding: 60px 0; }
.cta-double-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.cta-card {
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  text-align: center;
  color: var(--white);
}
.cta-whatsapp { background: linear-gradient(135deg, #128c7e, #25d366); }
.cta-maps { background: linear-gradient(135deg, var(--primary-dark), var(--primary)); }
.cta-icon { font-size: 48px; margin-bottom: 20px; display: block; }
.cta-card h3 { font-size: 1.4rem; font-weight: 800; margin-bottom: 12px; }
.cta-card p { font-size: 15px; color: rgba(255,255,255,0.85); margin-bottom: 24px; line-height: 1.6; }

/* ===== BLOG PREVIEW ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  display: block;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.blog-img { height: 200px; overflow: hidden; }
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.blog-card:hover .blog-img img { transform: scale(1.06); }
.blog-body { padding: 20px; }
.blog-cat {
  display: inline-block;
  background: rgba(124,58,237,0.08);
  color: var(--primary);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.blog-body h3 { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 8px; line-height: 1.4; }
.blog-body p { font-size: 13px; color: var(--gray); margin-bottom: 14px; line-height: 1.6; }
.read-more { font-size: 13px; color: var(--primary); font-weight: 600; display: flex; align-items: center; gap: 6px; }

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding-top: 60px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand img { height: 48px; width: auto; margin-bottom: 16px; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 14px; line-height: 1.7; margin-bottom: 20px; }
.social-links { display: flex; gap: 12px; }
.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 16px;
  transition: var(--transition);
}
.social-links a:hover { background: var(--primary); transform: translateY(-2px); }
.footer-col h4 {
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 13px;
}
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--white); padding-left: 4px; }
.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  margin-bottom: 10px;
}
.contact-list i { color: var(--primary); margin-top: 3px; flex-shrink: 0; }
.footer-bottom {
  padding: 20px 0;
  text-align: center;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.35); margin-bottom: 4px; }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  background: var(--whatsapp);
  color: var(--white);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 6px 24px rgba(37,211,102,0.5);
  transition: var(--transition);
  overflow: hidden;
}
.whatsapp-float .float-label {
  display: none;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 600;
  margin-left: 6px;
}
.whatsapp-float:hover {
  width: auto;
  border-radius: 50px;
  padding: 0 20px 0 16px;
  background: var(--whatsapp-dark);
}
.whatsapp-float:hover .float-label { display: block; }
.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 3px solid var(--whatsapp);
  animation: ripple 2s infinite;
  opacity: 0;
}
@keyframes ripple {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.8); opacity: 0; }
}

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

/* ===== PAGE INNER HERO ===== */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  color: var(--white);
  padding: 80px 0 60px;
  text-align: center;
}
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: 12px;
}
.page-hero p { font-size: 17px; color: rgba(255,255,255,0.7); max-width: 560px; margin: 0 auto; }

/* ===== FILTER TABS ===== */
.filter-tabs {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.filter-tab {
  padding: 10px 22px;
  border-radius: 50px;
  border: 2px solid var(--border);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  background: var(--white);
  color: var(--gray);
}
.filter-tab.active, .filter-tab:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.contact-info-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.contact-info-box h2 { font-size: 1.6rem; font-weight: 800; margin-bottom: 24px; }
.info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.info-item:last-of-type { border-bottom: none; }
.info-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(124,58,237,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.info-icon i { font-size: 18px; color: var(--primary); }
.info-icon.wa i { color: var(--whatsapp-dark); }
.info-icon.wa { background: rgba(37,211,102,0.1); }
.info-text strong { display: block; font-size: 14px; font-weight: 700; margin-bottom: 3px; }
.info-text span, .info-text a { font-size: 15px; color: var(--gray); }
.info-text a:hover { color: var(--primary); }
.map-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  height: 420px;
}
.map-frame iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
.cta-contact-btns {
  display: flex;
  gap: 14px;
  margin-top: 24px;
  flex-wrap: wrap;
}

/* ===== ABOUT PAGE ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-img-block { border-radius: var(--radius-lg); overflow: hidden; }
.about-img-block img { width: 100%; height: 400px; object-fit: cover; }
.about-text h2 { font-size: 2rem; font-weight: 800; margin-bottom: 16px; }
.about-text p { color: var(--gray); line-height: 1.8; margin-bottom: 14px; }
.about-numbers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.about-num {
  text-align: center;
  background: var(--light-gray);
  border-radius: var(--radius);
  padding: 20px;
}
.about-num strong { display: block; font-size: 2rem; font-weight: 900; color: var(--primary); }
.about-num span { font-size: 13px; color: var(--gray); }

/* ===== BLOG PAGE ===== */
.blog-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.blog-card-big {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  display: block;
}
.blog-card-big:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blog-card-big .blog-img { height: 240px; }
.blog-card-big .blog-body { padding: 24px; }
.blog-card-big h3 { font-size: 18px; }
.blog-meta { font-size: 12px; color: var(--gray); margin-bottom: 12px; }

/* ===== ARTICLE PAGE ===== */
.article-content {
  max-width: 780px;
  margin: 0 auto;
}
.article-content h1 { font-size: 2.2rem; font-weight: 900; margin-bottom: 12px; line-height: 1.2; }
.article-meta { font-size: 13px; color: var(--gray); margin-bottom: 28px; }
.article-content img { width: 100%; border-radius: var(--radius); margin: 24px 0; }
.article-content h2 { font-size: 1.4rem; font-weight: 700; margin: 32px 0 12px; color: var(--dark); }
.article-content p { color: var(--gray); line-height: 1.8; margin-bottom: 16px; }
.article-content ul { margin: 16px 0 16px 24px; }
.article-content ul li { color: var(--gray); line-height: 1.8; margin-bottom: 6px; list-style: disc; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .trust-bar-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    gap: 4px;
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 16px; border-radius: 8px; }
  .promo-bar { padding: 6px 0; }
  .promo-bar-inner {
    flex-wrap: nowrap;
    gap: 52px;
    padding: 0 0 0 20px;
    width: max-content;
    justify-content: flex-start;
    animation: ticker 22s linear infinite;
  }
  .promo-bar:hover .promo-bar-inner { animation-play-state: paused; }
  .hero-content { padding: 60px 20px; }
  .hero-stats { gap: 14px; }
  .stat-divider { display: none; }
  .hero-cta { flex-direction: column; }

  /* ---- PRODUITS : 2 colonnes × 2 lignes = 4 cartes visibles par écran ---- */
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .product-img-wrap {
    height: 100px;
  }
  .product-img-wrap img {
    object-fit: contain;
    padding: 6px;
    background: var(--light-gray);
  }
  .product-info {
    padding: 8px;
  }
  .product-info h3 {
    font-size: 12px;
    margin-bottom: 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .specs {
    font-size: 10px;
    margin-bottom: 5px;
  }
  .price-block {
    margin-bottom: 7px;
    gap: 2px;
  }
  .old-price { font-size: 10px; }
  .new-price { font-size: 15px; }
  .btn-buy { padding: 7px 6px; font-size: 11px; gap: 4px; }
  .brand-tag { font-size: 9px; padding: 2px 6px; margin-bottom: 3px; }
  .product-badge { font-size: 9px; padding: 3px 7px; top: 6px; left: 6px; }
  .section-header { margin-bottom: 16px; }
  .section-header h2 { font-size: 1.25rem; }
  .section-header p { font-size: 13px; }
  /* -------------------------------------------------------------------------- */

  .trust-bar-grid { grid-template-columns: 1fr; gap: 12px; }
  .why-grid { grid-template-columns: 1fr; }
  .urgency-inner { grid-template-columns: 1fr; gap: 32px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .cta-double-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .blog-list { grid-template-columns: 1fr; }
  .about-numbers { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .section { padding: 50px 0; }
  .whatsapp-float { bottom: 18px; right: 18px; width: 52px; height: 52px; font-size: 24px; }
  .whatsapp-float:hover { width: 52px; border-radius: 50%; padding: 0; }
  .whatsapp-float:hover .float-label { display: none; }
}

/* Extra-petit (téléphones < 380px) : encore plus compact */
@media (max-width: 380px) {
  .products-grid { gap: 8px; }
  .product-img-wrap { height: 85px; }
  .product-info h3 { font-size: 11px; }
  .new-price { font-size: 13px; }
  .btn-buy, .btn-detail { font-size: 10px; padding: 6px 5px; }
}

/* ===== BTN DETAIL — bouton "Plus de détails" catalogue ===== */
.btn-detail {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px;
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition);
  text-align: center;
}
.btn-detail:hover { background: var(--primary-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); }

/* ===== PAGE FICHE PRODUIT ===== */
.product-detail-section { padding: 60px 0; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--primary); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb i { font-size: 10px; opacity: 0.5; }

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: start;
}
.product-detail-img-col { position: sticky; top: 88px; }
.product-detail-img-wrap {
  background: var(--light-gray);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}
.product-detail-img-wrap img { max-height: 300px; width: 100%; object-fit: contain; }

.product-trust-badges { display: flex; gap: 10px; margin-top: 14px; flex-wrap: wrap; }
.badge-trust {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  flex: 1;
  justify-content: center;
  border: 1px solid transparent;
}
.badge-trust.green { background: rgba(22,163,74,0.08); color: var(--green); border-color: rgba(22,163,74,0.2); }
.badge-trust.blue  { background: rgba(124,58,237,0.08);  color: var(--primary); border-color: rgba(124,58,237,0.2); }

.product-detail-info h1 {
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: 10px;
}

.price-block-detail { margin: 20px 0 24px; }
.price-block-detail .old-price-lg {
  font-size: 16px;
  color: var(--gray);
  text-decoration: line-through;
  display: block;
  margin-bottom: 4px;
}
.price-block-detail .new-price-lg {
  font-size: 38px;
  font-weight: 900;
  color: #e53e3e;
  display: block;
  line-height: 1;
}
.price-block-detail .discount-tag {
  display: inline-block;
  background: #e53e3e;
  color: white;
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  margin-top: 8px;
}

.product-description-text {
  color: var(--gray);
  line-height: 1.8;
  font-size: 15px;
  margin-bottom: 28px;
}

/* ===== FORMULAIRE DE COMMANDE ===== */
.order-form-box {
  background: var(--light-gray);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.order-form-box h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}
.form-group input {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-size: 15px;
  font-family: inherit;
  color: var(--dark);
  background: var(--white);
  transition: var(--transition);
}
.form-group input:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(124,58,237,0.1); }

.btn-commander {
  width: 100%;
  padding: 16px;
  background: #e53e3e;
  color: white;
  border: none;
  border-radius: var(--radius);
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: inherit;
  margin-top: 4px;
}
.btn-commander:hover { background: #c53030; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(229,62,62,0.4); }
.btn-commander:active { transform: translateY(0); }

/* ===== SECTION PRODUITS SIMILAIRES ===== */
.similar-section { padding: 60px 0; background: var(--light-gray); }
.similar-section .section-header { margin-bottom: 36px; }

/* ===== RESPONSIVE FICHE PRODUIT ===== */
@media (max-width: 768px) {
  .product-detail-grid { grid-template-columns: 1fr; gap: 24px; }
  .product-detail-img-col { position: static; }
  .price-block-detail .new-price-lg { font-size: 28px; }
  .btn-detail { padding: 9px 8px; font-size: 12px; gap: 4px; }
}
@media (max-width: 380px) {
  .btn-detail { font-size: 11px; padding: 8px 6px; }
}

/* ===== HOME BANNER — bannière d'accueil (dégradé couleurs du logo) ===== */
.home-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: white;
  padding: 36px 0 40px;
}
.home-banner-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
}
.home-banner-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.18);
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 14px;
}
.home-banner-text h1 {
  font-size: clamp(1.5rem, 4vw, 2.4rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}
.home-banner-text p {
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 20px;
}
.home-banner-stats {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.home-banner-stat strong { display: block; font-size: 22px; font-weight: 900; }
.home-banner-stat span { font-size: 12px; opacity: 0.75; }
.home-banner-btns { display: flex; flex-direction: column; gap: 10px; }
.btn-banner-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  background: white;
  color: var(--primary);
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 700;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-banner-primary:hover { opacity: 0.9; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-banner-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.6);
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-banner-secondary:hover { background: rgba(255,255,255,0.12); }

@media (max-width: 768px) {
  .home-banner { padding: 18px 0 22px; }
  .home-banner-inner { gap: 16px; }
  .home-banner-btns { display: none; }
  .home-banner-stats { gap: 16px; }
  .home-banner-stat strong { font-size: 17px; }
  .home-banner-tag { font-size: 12px; margin-bottom: 10px; }
}
