/* ===========================
   RM SOLUCIÓN – styles.css
   Brand palette:
   --blue:    #4AB8EA
   --yellow:  #F5C842
   --gray:    #A8B3BE
   --navy:    #2D3B4E
   --dark:    #080F1A
   =========================== */

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

:root {
  --blue:   #4AB8EA;
  --blue2:  #2196c8;
  --yellow: #F5C842;
  --gray:   #9ca3af;
  --navy:   #2D3B4E;
  --dark:   #0a0a0c;
  --darker: #050505;
  --dark2:  #080F1E;
  --dark3:  #0D1830;
  --surface: #0E1F35;
  --surface2: #142740;
  --text:   #E8EDF2;
  --text2:  #8FA0B3;
  --coffee: #C6934B;
  --coffee-dark: #6F4E37;
  --cream: #F5E6CC;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 4px 30px rgba(74,184,234,0.12);
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  --white: #ffffff;
  --glass: rgba(255, 255, 255, 0.03);
  --border: rgba(255, 255, 255, 0.1);
  --grad: linear-gradient(135deg, #4AB8EA, #1e3a8a);
  --font: 'Outfit', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; font-family: var(--font); }

html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--dark);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ======== CONTAINER ======== */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ======== NAVBAR ======== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
  backdrop-filter: blur(0px);
}
.navbar.scrolled {
  background: rgba(5,13,26,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(74,184,234,0.1);
  padding: 12px 0;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; align-items: center; }
.logo-img {
  height: 56px;
  width: auto;
  object-fit: contain;
  /* logo has white background - use mix-blend-mode to make it fit dark nav */
  filter: drop-shadow(0 2px 8px rgba(74,184,234,0.2));
}
.footer-logo-img {
  height: 64px;
  /* lighten slightly in dark footer */
  filter: brightness(1.1) drop-shadow(0 2px 8px rgba(74,184,234,0.2));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-link {
  padding: 8px 16px;
  border-radius: 100px;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text2);
  transition: var(--transition);
  position: relative;
}
.nav-link:hover, .nav-link.active {
  color: var(--blue);
  background: rgba(74,184,234,0.08);
}

.nav-actions { display: flex; align-items: center; gap: 12px; }

.btn-cart {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  border-radius: 12px;
  background: rgba(74,184,234,0.1);
  color: var(--blue);
  transition: var(--transition);
}
.btn-cart:hover { background: rgba(74,184,234,0.2); transform: scale(1.05); }
.btn-cart svg { width: 20px; height: 20px; }
.cart-count {
  position: absolute;
  top: -6px; right: -6px;
  background: var(--yellow);
  color: var(--navy);
  font-size: 0.65rem;
  font-weight: 800;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 4px;
  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); }

/* ======== CART DRAWER ======== */
.cart-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  z-index: 1100;
  opacity: 0; pointer-events: none;
  transition: var(--transition);
}
.cart-overlay.open { opacity: 1; pointer-events: all; }

.cart-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 380px;
  background: var(--surface);
  z-index: 1200;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  display: flex; flex-direction: column;
  border-left: 1px solid rgba(74,184,234,0.1);
}
.cart-drawer.open { transform: translateX(0); }
.cart-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.cart-header h3 { font-size: 1.2rem; font-weight: 700; }
.cart-close { font-size: 1.2rem; color: var(--text2); padding: 4px 8px; border-radius: 8px; transition: var(--transition); }
.cart-close:hover { background: rgba(255,255,255,0.05); color: var(--text); }
.cart-clear {
  font-size: 0.8rem;
  font-weight: 600;
  color: #ff4d6d;
  background: rgba(255, 77, 109, 0.1);
  padding: 6px 12px;
  border-radius: 8px;
  transition: var(--transition);
}
.cart-clear:hover {
  background: #ff4d6d;
  color: white;
  transform: scale(1.05);
}
.cart-items { flex: 1; overflow-y: auto; padding: 16px; }
.cart-empty { display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100%; gap: 12px; color: var(--text2); }
.cart-item {
  display: flex; gap: 12px; align-items: center;
  padding: 12px;
  background: var(--surface2);
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
}
.cart-item-img {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--dark);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cart-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cart-item-info { flex: 1; }
.cart-item-name { font-weight: 600; font-size: 0.9rem; }
.cart-item-price { color: var(--yellow); font-weight: 700; font-size: 0.95rem; }
.cart-item-qty { display: flex; align-items: center; gap: 8px; }
.qty-btn { width: 24px; height: 24px; border-radius: 6px; background: rgba(74,184,234,0.1); color: var(--blue); font-size: 1rem; display: flex; align-items: center; justify-content: center; }
.cart-item-remove { 
  color: #ff4d6d; 
  font-size: 1rem; 
  cursor: pointer; 
  transition: var(--transition);
}
.cart-item-remove:hover {
  transform: scale(1.2);
}
.cart-footer { padding: 16px 24px; border-top: 1px solid rgba(255,255,255,0.05); }
.cart-total { display: flex; justify-content: space-between; font-size: 1.1rem; font-weight: 700; margin-bottom: 16px; }
#cart-total-price { color: var(--yellow); }

/* ======== CHECKOUT MODAL ======== */
.checkout-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(5px);
  z-index: 1300;
  opacity: 0; pointer-events: none;
  transition: var(--transition);
}
.checkout-overlay.open { opacity: 1; pointer-events: all; }

.checkout-modal {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -45%);
  width: 90%; max-width: 460px;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid rgba(74,184,234,0.15);
  box-shadow: 0 30px 60px rgba(0,0,0,0.6);
  z-index: 1400;
  opacity: 0; pointer-events: none;
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
  display: flex; flex-direction: column;
}
.checkout-modal.open { transform: translate(-50%, -50%); opacity: 1; pointer-events: all; }

.checkout-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.checkout-header h3 { font-size: 1.25rem; font-weight: 800; color: var(--text); }
.checkout-close { font-size: 1.5rem; color: var(--text2); padding: 4px; line-height: 1; transition: var(--transition); }
.checkout-close:hover { color: #ff4d6d; }

.checkout-body { padding: 24px; }
.checkout-total-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px; background: rgba(74,184,234,0.05);
  border-radius: 12px; margin-bottom: 24px;
}
.checkout-total-row span { color: var(--text2); }
.checkout-total-row strong { font-size: 1.4rem; color: var(--yellow); }

.payment-methods {
  display: flex; gap: 12px; margin-bottom: 24px;
}
.payment-method {
  flex: 1;
  padding: 14px;
  text-align: center;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1);
  background: var(--surface2);
  cursor: pointer;
  transition: var(--transition);
  font-weight: 600;
}
.payment-method:hover { background: rgba(255,255,255,0.05); }
.payment-method.active {
  border-color: var(--blue);
  background: rgba(74,184,234,0.1);
}

/* ======== PRODUCT MODAL (AMAZON STYLE) ======== */
.product-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(5px);
  z-index: 1300;
  opacity: 0; pointer-events: none;
  transition: var(--transition);
}
.product-overlay.open { opacity: 1; pointer-events: all; }

.product-modal {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -45%);
  width: 95%; max-width: 1000px; max-height: 90vh;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid rgba(74,184,234,0.15);
  box-shadow: 0 30px 60px rgba(0,0,0,0.6);
  z-index: 1400;
  opacity: 0; pointer-events: none;
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
  overflow-y: auto;
  color: var(--text);
  padding: 32px;
}
.product-modal.open { transform: translate(-50%, -50%); opacity: 1; pointer-events: all; overflow-x: hidden; }

.product-close { position: absolute; top: 16px; right: 24px; font-size: 2rem; color: var(--text2); background: none; border: none; cursor: pointer; transition: color 0.2s; z-index: 10; }
.product-close:hover { color: #ff4d6d; }

.product-modal-grid {
  display: grid;
  grid-template-columns: 3fr 4fr 3fr;
  gap: 24px;
}

@media (max-width: 900px) {
  .product-modal-grid { grid-template-columns: 1fr; }
  .pm-buybox { margin-top: 16px; }
}

/* Left Gallery */
.pm-gallery { display: flex; align-items: center; justify-content: center; background: transparent; border-radius: 12px; overflow: hidden; padding: 0; }
.pm-img-main { width: 100%; height: auto; max-height: 500px; object-fit: contain; border-radius: 12px; }

/* Center Details */
.pm-brand-link { font-size: 0.9rem; color: #007185; margin-bottom: 4px; }
.pm-brand-link a { color: #007185; text-decoration: none; }
.pm-brand-link a:hover { text-decoration: underline; }
.pm-title { font-size: 1.5rem; font-weight: 600; line-height: 1.3; margin-bottom: 12px; }
.pm-divider { border-top: 1px solid rgba(255,255,255,0.1); margin: 16px 0; }

.pm-price-label { font-size: 0.9rem; color: var(--text2); }
.pm-price-currency { font-size: 1rem; position: relative; top: -0.5em; color: var(--yellow); }
.pm-price-amount { font-size: 2rem; font-weight: 500; color: var(--yellow); }

.pm-option-group { margin-bottom: 20px; }
.pm-option-label { font-size: 0.95rem; margin-bottom: 8px; color: var(--text); }
.pm-storage-options { display: flex; gap: 10px; flex-wrap: wrap; }

.amazon-option-btn {
  background: transparent;
  border: 1px solid var(--text2);
  color: var(--text);
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.95rem;
  transition: all 0.2s;
  font-family: inherit;
}
.amazon-option-btn:hover { background: rgba(255,255,255,0.05); }
.amazon-option-btn.active { border: 2px solid #e77600; background: rgba(231,118,0,0.1); margin: -1px; } /* Offset border width */

.pm-color-options { display: flex; gap: 12px; flex-wrap: wrap; }
.amazon-color-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--text2);
  cursor: pointer;
  background-size: cover;
  background-position: center;
  transition: all 0.2s;
}
.amazon-color-btn.active { border: 2px solid #e77600; box-shadow: 0 0 0 2px rgba(231,118,0,0.5); transform: scale(1.1); }

.pm-ul { list-style: disc; padding-left: 20px; font-size: 0.9rem; color: var(--text); line-height: 1.5; }
.pm-ul li { margin-bottom: 6px; }

/* Right BuyBox */
.pm-buybox {
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  padding: 16px;
  background: var(--surface2);
  height: fit-content;
}
.buybox-price { font-size: 1.4rem; font-weight: 600; color: var(--yellow); margin-bottom: 12px; }
.buybox-stock { font-size: 1.1rem; color: #007600; font-weight: 500; margin-bottom: 12px; }
.buybox-delivery { font-size: 0.9rem; margin-bottom: 16px; display: flex; align-items: center; color: var(--text); }
.buybox-seller-info { font-size: 0.85rem; color: var(--text2); margin-bottom: 16px; line-height: 1.4; }
.buybox-qty { display: flex; align-items: center; gap: 8px; padding: 6px 12px; background: rgba(255,255,255,0.05); border-radius: 6px; margin-bottom: 16px; border: 1px solid rgba(255,255,255,0.2); width: fit-content; }
.pm-select { background: transparent; color: var(--text); border: none; font-size: 1rem; outline: none; cursor: pointer; }
.pm-select option { color: black; }

.btn-amazon-yellow { background: #ffd814; color: #0f1111; border: 1px solid #fcd200; border-radius: 20px; font-weight: 500; margin-bottom: 8px; }
.btn-amazon-yellow:hover { background: #f7ca00; }
.btn-amazon-orange { background: #ffa41c; color: #0f1111; border: 1px solid #ff8f00; border-radius: 20px; font-weight: 500; }
.btn-amazon-orange:hover { background: #ff9900; }

.pm-secure-tx { display: flex; align-items: center; font-size: 0.85rem; color: #007185; margin-top: 16px; }

/* ======== BUTTONS ======== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 100px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  white-space: nowrap;
}
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-block { width: 100%; justify-content: center; border-radius: 12px; }

.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--blue2));
  color: white;
  box-shadow: 0 4px 24px rgba(74,184,234,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(74,184,234,0.5);
  background: linear-gradient(135deg, #5ecef7, #1a8fc4);
}
.btn-primary:active { transform: translateY(0); }

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white;
  box-shadow: 0 4px 24px rgba(37,211,102,0.3);
}
.btn-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(37,211,102,0.5); }

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

/* ======== HERO ======== */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
}
.hero-bg {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero-img-bg {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.35;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(110deg, rgba(5,13,26,0.92) 0%, rgba(5,13,26,0.6) 55%, rgba(5,13,26,0.3) 100%);
}
.particles {
  position: absolute; inset: 0;
  overflow: hidden;
}
.particle {
  position: absolute;
  border-radius: 50%;
  animation: floatParticle linear infinite;
  opacity: 0.4;
}

@keyframes floatParticle {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 0.4; }
  90% { opacity: 0.4; }
  100% { transform: translateY(-100px) rotate(720deg); opacity: 0; }
}

.btn-service {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background: rgba(74, 184, 234, 0.1);
  color: var(--blue);
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  text-decoration: none;
  border: 1px solid rgba(74, 184, 234, 0.2);
  text-align: center;
}

.btn-service:hover {
  background: var(--blue);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(74, 184, 234, 0.3);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding-top: 40px;
  padding-bottom: 60px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(74,184,234,0.12);
  border: 1px solid rgba(74,184,234,0.3);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 24px;
  animation: fadeInUp 0.6s ease both;
}
.pulse-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--blue);
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(74,184,234,0.5); }
  50% { opacity: 0.8; transform: scale(1.1); box-shadow: 0 0 0 6px rgba(74,184,234,0); }
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  animation: fadeInUp 0.7s 0.1s ease both;
}
.gradient-text {
  background: linear-gradient(135deg, var(--blue), var(--yellow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text2);
  margin-bottom: 36px;
  animation: fadeInUp 0.7s 0.2s ease both;
  max-width: 520px;
}
.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  animation: fadeInUp 0.7s 0.3s ease both;
}
.hero-stats {
  display: flex;
  gap: 0;
  animation: fadeInUp 0.7s 0.4s ease both;
}
.stat {
  display: flex;
  flex-direction: column;
  padding: 0 24px 0 0;
}
.stat:first-child { padding-left: 0; }
.stat-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--blue);
  line-height: 1;
}
.stat-label {
  font-size: 0.8rem;
  color: var(--text2);
  margin-top: 4px;
  font-weight: 500;
}
.stat-divider {
  width: 1px;
  background: rgba(255,255,255,0.1);
  margin: 0 24px 0 0;
  align-self: stretch;
}

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-arrow {
  width: 24px; height: 24px;
  border-right: 2px solid var(--blue);
  border-bottom: 2px solid var(--blue);
  transform: rotate(45deg);
  animation: scrollBounce 1.5s ease infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: rotate(45deg) translateY(0); opacity: 1; }
  50% { transform: rotate(45deg) translateY(6px); opacity: 0.5; }
}

/* ======== BRANDS BAR ======== */
.brands-bar {
  background: var(--surface);
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  overflow: hidden;
}
.brands-bar .container { display: flex; align-items: center; gap: 24px; }
.brands-label { font-size: 0.78rem; font-weight: 600; color: var(--text2); white-space: nowrap; letter-spacing: 0.08em; text-transform: uppercase; }
.brands-track { flex: 1; overflow: hidden; }
.brands-slide {
  display: flex;
  gap: 40px;
  animation: brandScroll 18s linear infinite;
  width: max-content;
}
@keyframes brandScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.brand-name {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text2);
  letter-spacing: 0.04em;
  opacity: 0.6;
  transition: var(--transition);
  white-space: nowrap;
}
.brand-name:hover { opacity: 1; color: var(--blue); }

/* ======== SECTIONS ======== */
.section { padding: 100px 0; }
.section-dark { background: var(--surface); }
.section-header { text-align: center; margin-bottom: 56px; }
.section-tag {
  display: inline-block;
  background: rgba(74,184,234,0.1);
  border: 1px solid rgba(74,184,234,0.2);
  color: var(--blue);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.2;
}
.section-sub { color: var(--text2); font-size: 1.05rem; max-width: 520px; margin: 0 auto; }

/* ======== FILTER TABS ======== */
.filter-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.filter-btn {
  padding: 10px 22px;
  border-radius: 100px;
  background: var(--surface2);
  color: var(--text2);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.05);
}
.filter-btn:hover, .filter-btn.active {
  background: linear-gradient(135deg, var(--blue), var(--blue2));
  color: white;
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(74,184,234,0.3);
}

/* ======== PRODUCTS GRID ======== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.product-card {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
}
.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(74,184,234,0.3);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 0 1px rgba(74,184,234,0.1);
}
.product-card.hidden { display: none; }
.product-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--yellow);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: 0.05em;
}
.product-badge.new-badge { background: var(--blue); color: white; }
.product-thumb {
  background: linear-gradient(135deg, #0D1830, #142740);
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  position: relative;
  overflow: hidden;
}
.product-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
  position: relative;
  z-index: 1;
  transition: transform 0.4s ease;
}
.product-card:hover .product-img {
  transform: scale(1.06);
}
.product-emoji {
  font-size: 5rem;
  position: relative;
  z-index: 1;
}
.product-thumb::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(74,184,234,0.08), transparent 70%);
}
.product-info { padding: 20px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.product-brand {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.product-name { font-size: 1.05rem; font-weight: 700; color: var(--text); }
.product-specs { font-size: 0.8rem; color: var(--text2); margin-top: 2px; }
.product-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.product-price { font-size: 1.25rem; font-weight: 800; color: var(--yellow); }
.product-old-price { font-size: 0.8rem; color: var(--text2); text-decoration: line-through; }
.add-to-cart {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(74,184,234,0.1);
  color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  transition: var(--transition);
  font-family: inherit;
}
.add-to-cart:hover {
  background: var(--blue);
  color: white;
  transform: scale(1.1);
  box-shadow: 0 4px 16px rgba(74,184,234,0.4);
}

/* ======== CATEGORIES GRID ======== */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
}
.category-card {
  background: var(--dark3);
  border-radius: var(--radius);
  padding: 36px 28px;
  border: 1px solid rgba(255,255,255,0.05);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.category-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
}
.cat-phones::before { background: linear-gradient(90deg, var(--blue), var(--blue2)); }
.cat-used::before  { background: linear-gradient(90deg, var(--yellow), #e5b020); }
.cat-acc::before   { background: linear-gradient(90deg, #a855f7, #7c3aed); }
.cat-repair::before{ background: linear-gradient(90deg, #f97316, #ea580c); }
.cat-unlock::before{ background: linear-gradient(90deg, #22c55e, #16a34a); }
.cat-laptops::before { background: linear-gradient(90deg, #3b82f6, #1d4ed8); }
.cat-laptop-repair::before { background: linear-gradient(90deg, #10b981, #059669); }
.cat-drones::before { background: linear-gradient(90deg, #f59e0b, #d97706); }

.category-card:hover {
  transform: translateY(-4px);
  border-color: rgba(74,184,234,0.2);
}
.cat-icon { font-size: 2.5rem; margin-bottom: 16px; }
.category-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 8px; }
.category-card p { font-size: 0.9rem; color: var(--text2); margin-bottom: 20px; }
.cat-link { font-size: 0.9rem; font-weight: 700; color: var(--blue); }
.cat-link:hover { text-decoration: underline; }

/* ======== PROMO BANNER ======== */
.promo-banner {
  background: linear-gradient(135deg, var(--navy) 0%, #1a2f4a 50%, var(--dark3) 100%);
  border-top: 1px solid rgba(74,184,234,0.15);
  border-bottom: 1px solid rgba(74,184,234,0.15);
  padding: 80px 24px;
  overflow: hidden;
}
.promo-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}
.promo-tag {
  display: inline-block;
  background: rgba(245,200,66,0.15);
  border: 1px solid rgba(245,200,66,0.3);
  color: var(--yellow);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.promo-text h2 { font-size: clamp(1.8rem,3vw,2.8rem); font-weight: 900; margin-bottom: 12px; }
.promo-text p { color: var(--text2); margin-bottom: 28px; font-size: 1.05rem; }
.promo-visual { flex-shrink: 0; }
.promo-phone-stack {
  position: relative;
  width: 200px;
  height: 240px;
}
.phone-card {
  position: absolute;
  width: 100px; height: 180px;
  background: linear-gradient(160deg, #1a2f4a, #0d1830);
  border-radius: 16px;
  border: 1px solid rgba(74,184,234,0.2);
  display: flex; align-items: center; justify-content: center;
}
.phone-screen {
  width: 76px; height: 140px;
  background: linear-gradient(160deg, var(--surface2), var(--dark3));
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.phone-screen::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(74,184,234,0.1), transparent);
}
.p1 { left: 0; top: 30px; transform: rotate(-8deg); z-index: 1; }
.p2 { left: 50%; transform: translateX(-50%); top: 0; z-index: 3; border-color: rgba(74,184,234,0.4); box-shadow: 0 0 40px rgba(74,184,234,0.2); }
.p3 { right: 0; top: 30px; transform: rotate(8deg); z-index: 1; }

/* ======== SERVICES ======== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 48px;
}
.service-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 32px 24px;
  border: 1px solid rgba(255,255,255,0.05);
  transition: var(--transition);
}
.service-card:hover {
  border-color: rgba(74,184,234,0.25);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.service-icon {
  width: 64px; height: 64px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.service-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.service-card p { color: var(--text2); font-size: 0.9rem; margin-bottom: 16px; line-height: 1.6; }
.service-price { font-weight: 700; color: var(--yellow); font-size: 0.95rem; }

.repair-banner {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  height: 300px;
}
.repair-img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.5;
}
.repair-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(5,13,26,0.92), rgba(5,13,26,0.4));
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px;
}
.repair-overlay h3 { font-size: 2rem; font-weight: 800; margin-bottom: 10px; }
.repair-overlay p { color: var(--text2); margin-bottom: 24px; font-size: 1.05rem; }

/* ======== TESTIMONIALS ======== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.testimonial-card {
  background: var(--dark3);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid rgba(255,255,255,0.05);
  transition: var(--transition);
}
.featured-testimonial {
  border-color: rgba(74,184,234,0.25);
  background: linear-gradient(135deg, rgba(74,184,234,0.05), var(--dark3));
  transform: scale(1.02);
}
.testimonial-card:hover { transform: translateY(-4px); }
.featured-testimonial:hover { transform: scale(1.02) translateY(-4px); }
.stars { color: var(--yellow); font-size: 1.1rem; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-card p { color: var(--text2); font-size: 0.95rem; margin-bottom: 20px; font-style: italic; line-height: 1.7; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue2));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 0.9rem; }
.testimonial-author span { font-size: 0.78rem; color: var(--text2); }

/* ======== REVIEW FORM ======== */
.review-form-container {
  background: var(--surface2);
  border-radius: var(--radius);
  padding: 32px;
  max-width: 600px;
  margin: 0 auto 48px auto;
  border: 1px solid rgba(74,184,234,0.15);
}
.review-form-header { text-align: center; margin-bottom: 24px; }
.review-form-header h3 { font-size: 1.4rem; font-weight: 800; margin-bottom: 8px; color: var(--text); }
.review-form-header p { font-size: 0.9rem; color: var(--text2); }
.review-form { display: flex; flex-direction: column; gap: 16px; }
.star-rating-input {
  display: flex; gap: 8px; justify-content: center;
  font-size: 2.2rem; margin-bottom: 8px;
  cursor: pointer;
  color: var(--dark3); /* Unselected color */
  text-shadow: 0 0 1px rgba(255,255,255,0.2);
}
.star-rating-input span { transition: color 0.2s; }
.star-rating-input span.active, .star-rating-input span.hover { color: var(--yellow); }

/* ======== WHY US ======== */
.why-us { background: var(--dark2); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 24px;
  text-align: center;
}
.why-item {
  padding: 32px 20px;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.04);
  transition: var(--transition);
}
.why-item:hover { border-color: rgba(74,184,234,0.2); transform: translateY(-4px); }
.why-icon { font-size: 2.2rem; margin-bottom: 14px; }
.why-item h4 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.why-item p { font-size: 0.85rem; color: var(--text2); }

/* ======== COFFEE SECTION ======== */
.section-coffee {
  background: radial-gradient(circle at top right, #1a1a1a, var(--dark2));
  position: relative;
  overflow: hidden;
}
.section-coffee::after {
  content: '☕';
  position: absolute;
  top: 10%; right: -50px;
  font-size: 20rem;
  opacity: 0.03;
  filter: blur(5px);
  pointer-events: none;
}
.coffee-tag {
  background: rgba(198, 147, 75, 0.1);
  border-color: rgba(198, 147, 75, 0.3);
  color: var(--coffee);
}
.coffee-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}
.coffee-menu-visual {
  position: relative;
}
.menu-frame {
  background: var(--surface2);
  padding: 12px;
  border-radius: var(--radius);
  border: 1px solid rgba(198, 147, 75, 0.2);
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
  transition: var(--transition);
}
.menu-frame:hover {
  transform: scale(1.02);
  border-color: var(--coffee);
}
.menu-image {
  width: 100%;
  border-radius: calc(var(--radius) - 4px);
  display: block;
}
.coffee-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.coffee-card-mini {
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius);
  padding: 32px;
  border-left: 4px solid var(--coffee);
}
.coffee-card-mini h3 {
  font-size: 1.4rem;
  margin-bottom: 24px;
  color: var(--coffee);
}
.coffee-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.coffee-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.coffee-item-name {
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
}
.coffee-item-line {
  flex: 1;
  border-bottom: 1px dotted rgba(255,255,255,0.1);
}
.coffee-item-price {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: var(--coffee);
}
.coffee-promo {
  display: flex;
  gap: 20px;
  align-items: center;
  background: linear-gradient(135deg, rgba(198, 147, 75, 0.15), rgba(111, 78, 55, 0.1));
  padding: 24px;
  border-radius: var(--radius);
  border: 1px dashed var(--coffee);
}
.promo-icon {
  font-size: 2.2rem;
}
.promo-info h4 {
  font-size: 1.1rem;
  color: var(--coffee);
  margin-bottom: 4px;
}
.promo-info p {
  font-size: 0.9rem;
  color: var(--text2);
}

@media (max-width: 991px) {
  .coffee-grid { grid-template-columns: 1fr; }
  .coffee-menu-visual { order: 2; }
  .coffee-details { order: 1; }
}

/* ======== CONTACT ======== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 8px; }
.contact-item {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: var(--dark3);
  border-radius: var(--radius-sm);
  align-items: flex-start;
  margin-bottom: 4px;
}
.contact-icon { font-size: 1.5rem; flex-shrink: 0; }
.contact-item h4 { font-size: 0.9rem; font-weight: 700; margin-bottom: 4px; color: var(--blue); }
.contact-item p { font-size: 0.9rem; color: var(--text2); line-height: 1.6; }
.contact-item a { color: var(--text2); transition: var(--transition); }
.contact-item a:hover { color: var(--blue); }

.social-links { display: flex; gap: 12px; padding: 8px 0; }
.social-btn {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,0.05);
  color: var(--text2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  transition: var(--transition);
}
.social-btn:hover { background: rgba(74,184,234,0.1); color: var(--blue); border-color: rgba(74,184,234,0.3); transform: translateY(-2px); }
.social-btn.wa:hover { background: rgba(37,211,102,0.1); color: #25D366; border-color: rgba(37,211,102,0.3); }

/* ======== FORM ======== */
.contact-form {
  background: var(--dark3);
  border-radius: var(--radius);
  padding: 36px;
  border: 1px solid rgba(255,255,255,0.05);
}
.contact-form h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 28px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 8px; color: var(--text2); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(74,184,234,0.12);
}
.form-group select { cursor: pointer; }
.form-group select option { background: var(--surface); }
.form-group textarea { resize: vertical; min-height: 110px; }

/* ======== FOOTER ======== */
.footer {
  background: var(--surface);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 64px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.footer-brand { display: flex; flex-direction: column; gap: 16px; }
.footer-brand p { color: var(--text2); font-size: 0.9rem; max-width: 280px; line-height: 1.7; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links h4 { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text2); margin-bottom: 8px; }
.footer-links a { font-size: 0.9rem; color: var(--text2); transition: var(--transition); }
.footer-links a:hover { color: var(--blue); padding-left: 4px; }
.footer-bottom {
  text-align: center;
  padding: 20px;
  font-size: 0.8rem;
  color: var(--text2);
}

/* ======== WHATSAPP FLOAT ======== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 999;
  box-shadow: 0 4px 24px rgba(37,211,102,0.4);
  transition: var(--transition);
  animation: waBounce 3s ease infinite;
}
.whatsapp-float:hover { transform: scale(1.1) translateY(-2px); box-shadow: 0 8px 32px rgba(37,211,102,0.6); }
@keyframes waBounce {
  0%, 100% { box-shadow: 0 4px 24px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 40px rgba(37,211,102,0.7), 0 0 0 8px rgba(37,211,102,0.1); }
}

/* ======== TOAST ======== */
.toast {
  position: fixed;
  bottom: 100px; right: 28px;
  background: var(--surface);
  border: 1px solid rgba(74,184,234,0.3);
  border-radius: 12px;
  padding: 14px 20px;
  font-size: 0.9rem;
  font-weight: 600;
  z-index: 9999;
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  max-width: 280px;
}
.toast.show { opacity: 1; transform: translateY(0); }

/* ======== MODALS (PRODUCT & REPAIR) ======== */
.product-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(10px);
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.product-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.product-modal {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -46%) scale(0.96);
  width: 92%;
  max-width: 600px;
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 28px;
  z-index: 2001;
  opacity: 0;
  pointer-events: none;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  padding: 40px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.8);
}
.product-modal.open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}

.product-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.05);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  z-index: 10;
  transition: all 0.3s;
}
.product-close:hover { background: var(--red); transform: rotate(90deg); }

/* ======== ANIMATIONS ======*/
/* ======== REPAIR QUOTE MODAL ======== */
.repair-step { animation: fadeIn 0.4s ease-out; }
.btn-back {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  color: #fff;
  cursor: pointer;
  font-size: 0.85rem;
  padding: 6px 12px;
  border-radius: 20px;
  margin-bottom: 20px;
  transition: all 0.2s;
}
.btn-back:hover { background: var(--blue); border-color: var(--blue); transform: translateX(-3px); }

.repair-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
  margin-bottom: 20px;
}

.repair-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 50px; /* Estilo píldora/botón profesional */
  padding: 14px 20px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
}

.repair-item:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(74,184,234,0.3);
}

.repair-item span {
  font-size: 0.95rem;
}

.result-icon {
  font-size: 3rem;
  margin-bottom: 15px;
  color: var(--blue);
  background: rgba(74,184,234,0.1);
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-left: auto;
  margin-right: auto;
}

#repair-summary {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 10px;
  font-weight: 600;
}

#repair-final-price-container {
  font-size: 2rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 20px;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.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) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: rgba(5,13,26,0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 24px;
    gap: 4px;
    border-bottom: 1px solid rgba(74,184,234,0.1);
    transform: translateY(-120%);
    transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
    z-index: 999;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-link { width: 100%; text-align: center; padding: 12px; }
  .hamburger { display: flex; }
  .promo-inner { flex-direction: column; text-align: center; }
  .promo-visual { display: none; }
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
  .hero-stats { gap: 0; }
  .stat { padding: 0 16px 0 0; }
  .stat-divider { margin: 0 16px 0 0; }
  .cart-drawer { width: 100%; max-width: 380px; }
}

@media (max-width: 480px) {
  .section { padding: 64px 0; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .hero-stats { flex-wrap: wrap; gap: 16px; }
  .stat-divider { display: none; }
  .categories-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
}
/* ======== FAQ SECTION ======== */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}
.faq-item {
  background: var(--surface);
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid rgba(74,184,234,0.1);
  transition: var(--transition);
}
.faq-item:hover {
  border-color: var(--blue);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.faq-question {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--blue);
  margin-bottom: 12px;
}
.faq-answer {
  color: var(--text2);
  font-size: 0.95rem;
  line-height: 1.6;
}

.faq-cta {
  background: linear-gradient(135deg, rgba(74,184,234,0.1), rgba(13,24,48,0.4));
  border: 1px solid rgba(74,184,234,0.2);
  border-radius: 24px;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
}
.faq-cta h3 {
  font-size: 1.8rem;
  margin-bottom: 8px;
}
.faq-cta p {
  color: var(--text2);
}
.faq-wa-btn {
  background: #25D366;
  color: #fff;
  padding: 16px 32px;
  border-radius: 100px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 24px rgba(37,211,102,0.3);
  transition: var(--transition);
}
.faq-wa-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 32px rgba(37,211,102,0.4);
}

@media (max-width: 768px) {
  .faq-cta {
    text-align: center;
    justify-content: center;
    padding: 30px 20px;
  }
}
