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

:root {
  --bg:      #ffffff;
  --bg2:     #f8f9fc;
  --bg3:     #f1f3f8;
  --card:    #ffffff;
  --border:  #e5e8f0;
  --border2: #d0d5e8;
  --text:    #0f1117;
  --text2:   #5a6175;
  --text3:   #9aa0b4;
  --accent:  #6c63ff;
  --accent2: #895af6;
  --accent3: #3b82f6;
  --green:   #16a34a;
  --red:     #dc2626;
  --gold:    #d97706;
  --radius:  16px;
  --radius-sm: 10px;
  --shadow:  0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.12);
  --transition: all 0.25s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  max-width: 100vw;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
input, textarea { outline: none; border: none; font-family: inherit; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg3); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }

/* ===== GRADIENT TEXT ===== */
.gradient-text {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: white; border: none; padding: 14px 28px;
  border-radius: 50px; font-size: 15px; font-weight: 600;
  cursor: pointer; transition: var(--transition);
  box-shadow: 0 4px 16px rgba(108,99,255,0.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(108,99,255,0.45); }
.btn-primary.full-width { width: 100%; justify-content: center; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--text);
  border: 1.5px solid var(--border2); padding: 14px 28px;
  border-radius: 50px; font-size: 15px; font-weight: 500;
  cursor: pointer; transition: var(--transition);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); background: rgba(108,99,255,0.04); }
.mt-16 { margin-top: 16px !important; }

/* ===== SECTION COMMON ===== */
.section-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-tag {
  display: inline-block; background: rgba(108,99,255,0.08);
  color: var(--accent); border: 1px solid rgba(108,99,255,0.2);
  padding: 6px 18px; border-radius: 50px; font-size: 12px;
  font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 16px;
}
.section-title { font-size: clamp(26px, 4vw, 40px); font-weight: 800; margin-bottom: 12px; color: var(--text); }
.section-sub { color: var(--text2); font-size: 16px; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 14px 0;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.navbar.scrolled { padding: 10px 0; box-shadow: var(--shadow); }
.nav-container {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo-img { height: 60px; max-height: 52px; width: 80px; object-fit: contain; display: block; }
.nav-brand-name { font-size: 13px; font-weight: 600; color: var(--text-muted, #666); letter-spacing: 0.3px; white-space: nowrap; }
.logo-text { font-size: 20px; font-weight: 800; letter-spacing: -0.5px; color: var(--text); font-family: 'Inter', sans-serif; }
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a { color: var(--text2); font-size: 14px; font-weight: 500; transition: var(--transition); }
.nav-links a:hover { color: var(--accent); }
.nav-actions { display: flex; align-items: center; gap: 10px; }

/* Login/Register nav buttons */
.nav-btn-login {
  background: transparent; border: 1.5px solid var(--border2);
  color: var(--text); padding: 8px 18px; border-radius: 50px;
  font-size: 13px; font-weight: 600; cursor: pointer; transition: var(--transition);
}
.nav-btn-login:hover { border-color: var(--accent); color: var(--accent); }
.nav-btn-register {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  border: none; color: white; padding: 8px 18px; border-radius: 50px;
  font-size: 13px; font-weight: 600; cursor: pointer; transition: var(--transition);
}
.nav-btn-register:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(108,99,255,0.4); }

.cart-btn {
  position: relative; background: var(--bg3); border: 1px solid var(--border);
  color: var(--text); width: 42px; height: 42px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: var(--transition); font-size: 16px;
}
.cart-btn:hover { border-color: var(--accent); color: var(--accent); background: rgba(108,99,255,0.06); }
.cart-count {
  position: absolute; top: -6px; right: -6px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: white; width: 20px; height: 20px; border-radius: 50%;
  font-size: 11px; font-weight: 700; display: flex; align-items: center; justify-content: center;
}
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: var(--transition); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh; display: flex; flex-direction: column;
  justify-content: center; padding: 120px 24px 80px;
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, #fafbff 0%, #f0f2ff 50%, #fafbff 100%);
}
.hero-bg-orbs { position: absolute; inset: 0; pointer-events: none; }
.orb { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.12; }
.orb1 { width: 500px; height: 500px; background: var(--accent); top: -100px; right: -80px; animation: orbFloat 8s ease-in-out infinite; }
.orb2 { width: 400px; height: 400px; background: var(--accent3); bottom: -100px; left: -80px; animation: orbFloat 10s ease-in-out infinite reverse; }
.orb3 { width: 300px; height: 300px; background: var(--accent2); top: 50%; left: 40%; animation: orbFloat 12s ease-in-out infinite; }
.hero-content {
  max-width: 1200px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(108,99,255,0.08); border: 1px solid rgba(108,99,255,0.25);
  color: var(--accent); padding: 6px 16px; border-radius: 50px;
  font-size: 13px; font-weight: 600; margin-bottom: 24px;
}
.hero-title { font-size: clamp(36px, 5.5vw, 62px); font-weight: 900; line-height: 1.06; letter-spacing: -2px; margin-bottom: 20px; color: var(--text); }
.hero-subtitle { color: var(--text2); font-size: 17px; margin-bottom: 32px; max-width: 440px; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats { display: flex; align-items: center; gap: 24px; }
.stat { display: flex; flex-direction: column; }
.stat-num { font-size: 16px; font-weight: 800; color: var(--text); }
.stat-label { font-size: 12px; color: var(--text2); }
.stat-divider { width: 1px; height: 40px; background: var(--border); }
.hero-visual { display: flex; justify-content: center; align-items: center; }
.hero-img-wrapper { position: relative; }
.hero-glow { position: absolute; inset: -20%; border-radius: 50%; background: radial-gradient(circle, rgba(108,99,255,0.15), transparent 70%); animation: glowPulse 3s ease-in-out infinite; }
@keyframes glowPulse { 0%,100% { opacity: 0.6; transform: scale(1); } 50% { opacity: 1; transform: scale(1.1); } }
.hero-img { width: 440px; max-width: 100%; position: relative; z-index: 1; animation: heroFloat 4s ease-in-out infinite; filter: drop-shadow(0 20px 40px rgba(108,99,255,0.2)); }
@keyframes heroFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-18px); } }
.floating-badge {
  position: absolute; background: white; border: 1px solid var(--border);
  box-shadow: var(--shadow); color: var(--text); padding: 10px 16px; border-radius: 14px;
  font-size: 13px; font-weight: 600; display: flex; align-items: center; gap: 8px;
  z-index: 2; white-space: nowrap;
}
.fb1 { top: 60px; left: -20px; animation: heroFloat 5s ease-in-out infinite; }
.fb2 { bottom: 80px; right: -20px; animation: heroFloat 4s ease-in-out infinite 1s; }
.fb1 i, .fb2 i { color: var(--accent); }
.scroll-indicator { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); width: 24px; height: 40px; border: 2px solid var(--border2); border-radius: 12px; display: flex; justify-content: center; padding-top: 6px; }
.scroll-dot { width: 4px; height: 8px; background: var(--accent); border-radius: 2px; animation: scrollAnim 2s infinite; }
@keyframes scrollAnim { 0% { transform: translateY(0); opacity: 1; } 100% { transform: translateY(16px); opacity: 0; } }

/* ===== TRUST BAR ===== */
.trust-bar { background: var(--bg3); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 16px 24px; }
.trust-container { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-around; flex-wrap: wrap; gap: 20px; }
.trust-item { display: flex; align-items: center; gap: 8px; color: var(--text2); font-size: 13px; font-weight: 500; }
.trust-item i { color: var(--accent); font-size: 16px; }
/* ===== PRODUCTS ===== */
.productos { padding: 100px 0; background: var(--bg); }
.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.product-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: var(--transition); position: relative;
  box-shadow: var(--shadow); cursor: pointer;
}
.product-card:hover { transform: translateY(-6px); border-color: rgba(108,99,255,0.3); box-shadow: var(--shadow-lg); }
.product-card.featured { border-color: rgba(108,99,255,0.35); }
.card-badge { position: absolute; top: 12px; left: 12px; z-index: 4; background: linear-gradient(135deg, var(--accent), var(--accent2)); color: white; padding: 4px 12px; border-radius: 50px; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }

/* ── Wrap de imágenes ── */
.card-img-wrap { position: relative; overflow: hidden; background: #1a1a1a; height: 220px; }
.card-img-wrap img,
.card-video { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; opacity: 0; transition: opacity .6s ease; }
.card-img-wrap img.active-slide,
.card-video.active-slide { opacity: 1; }

/* Overlay con botón Ver detalle */
.card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.6) 0%, transparent 60%); display: flex; align-items: flex-end; justify-content: center; padding-bottom: 14px; z-index: 3; opacity: 0; transition: opacity .3s ease; }
.product-card:hover .card-overlay { opacity: 1; }
.quick-view { background: white; color: var(--text); border: none; padding: 9px 22px; border-radius: 50px; font-size: 13px; font-weight: 700; cursor: pointer; box-shadow: 0 4px 16px rgba(0,0,0,.3); transition: var(--transition); }
.quick-view:hover { background: var(--accent); color: white; }

/* Dots slideshow */
.slide-dots { position: absolute; bottom: 52px; left: 50%; transform: translateX(-50%); display: flex; gap: 5px; z-index: 4; }
.slide-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,.5); border: none; padding: 0; cursor: pointer; transition: .2s; }
.slide-dot.active { background: white; width: 18px; border-radius: 3px; }

.card-body { padding: 20px; }
.card-tag { font-size: 10px; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
.card-title { font-size: 17px; font-weight: 800; margin-bottom: 8px; color: var(--text); }
.card-desc { color: var(--text2); font-size: 13px; line-height: 1.6; margin-bottom: 14px; }
.card-specs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; padding: 10px; background: var(--bg3); border-radius: 8px; }
.card-specs span { font-size: 11px; color: var(--text2); display: flex; align-items: center; gap: 4px; }
.card-specs i { color: var(--accent); }
.card-footer { display: flex; align-items: center; justify-content: space-between; }
.price-wrap { display: flex; flex-direction: column; }
.price-old { font-size: 12px; color: var(--text3); text-decoration: line-through; }
.price { font-size: 22px; font-weight: 900; color: var(--text); }
.add-cart-btn { background: linear-gradient(135deg, var(--accent), var(--accent2)); color: white; border: none; padding: 10px 16px; border-radius: 10px; font-size: 13px; font-weight: 600; cursor: pointer; transition: var(--transition); display: flex; align-items: center; gap: 6px; }
.add-cart-btn:hover { transform: scale(1.04); box-shadow: 0 6px 20px rgba(108,99,255,0.4); }

/* ===== COMPARISON ===== */
.comparison { padding: 80px 0; background: var(--bg3); }
.table-wrap { overflow-x: auto; border-radius: 16px; border: 1px solid var(--border); box-shadow: var(--shadow); }
.comp-table { width: 100%; border-collapse: collapse; font-size: 14px; background: var(--card); }
.comp-table th, .comp-table td { padding: 14px 20px; border-bottom: 1px solid var(--border); text-align: center; }
.comp-table thead tr { background: linear-gradient(135deg, var(--accent), var(--accent2)); }
.comp-table th { font-weight: 700; color: #fff; border-bottom: none; }
.comp-table th:first-child { text-align: left; }
.comp-table tbody tr:last-child td { border-bottom: none; }
/* highlight-col removido — todas las columnas usan el mismo estilo */
.comp-table td:first-child { text-align: left; font-weight: 500; color: var(--text); }
.green { color: var(--green); }
.red { color: var(--red); }

/* ===== NOSOTROS ===== */
.nosotros { padding: 100px 0; background: var(--bg); }
.nosotros-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.nosotros-img img { border-radius: var(--radius); box-shadow: var(--shadow-lg); width: 100%; }
.nosotros-text h2 { font-size: clamp(28px, 4vw, 42px); font-weight: 800; margin-bottom: 16px; }
.nosotros-text p { color: var(--text2); line-height: 1.8; margin-bottom: 24px; }
.nosotros-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.nosotros-list li { display: flex; align-items: center; gap: 12px; font-size: 15px; font-weight: 500; }
.nosotros-list li i { color: var(--accent); font-size: 18px; }
.garantia-note { display: flex; align-items: flex-start; gap: 12px; background: rgba(108,99,255,0.06); border: 1px solid rgba(108,99,255,0.2); border-radius: 12px; padding: 14px 18px; font-size: 14px; color: var(--text2); }
.garantia-note i { color: var(--accent); font-size: 16px; margin-top: 2px; flex-shrink: 0; }

/* Redes sociales (footer y general) */
.social-label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text2); margin-bottom: 12px; }
.social-links { display: flex; gap: 10px; }
.social-btn { width: 42px; height: 42px; border-radius: 12px; border: 1.5px solid var(--border2); display: flex; align-items: center; justify-content: center; font-size: 18px; color: var(--text2); transition: var(--transition); }
.social-btn:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }

/* ===== FOOTER ===== */
.footer { background: #0a0b0f; color: #e2e5f0; }
.footer-top { padding: 60px 0 48px; }
.footer-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: 1.8fr 1fr 1.2fr; gap: 40px; }
.footer-brand .logo-text { color: white; }
.footer-brand .logo-icon { background: linear-gradient(135deg, var(--accent), var(--accent2)); }
.footer-logo-img { height: 44px; width: auto; object-fit: contain; display: block; }
.footer-brand-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-brand-name { font-size: 20px; font-weight: 800; letter-spacing: -0.5px; color: white; font-family: 'Inter', sans-serif; }
.footer-desc { color: #8b90a0; font-size: 14px; margin-top: 14px; line-height: 1.7; }
.footer-contact-list { list-style: none; margin: 16px 0 0; display: flex; flex-direction: column; gap: 8px; }
.footer-contact-list li { font-size: 13px; color: #8b90a0; display: flex; align-items: center; gap: 8px; }
.footer-contact-list li i { color: #25d366; width: 14px; }
.footer-contact-list li .fa-envelope { color: var(--accent); }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social-btn { width: 36px; height: 36px; border-radius: 10px; background: #1a1d2e; border: 1px solid #2a2d3e; display: flex; align-items: center; justify-content: center; font-size: 16px; color: #8b90a0; transition: var(--transition); text-decoration: none; }
.footer-social-btn:hover { background: var(--accent); border-color: var(--accent); color: #fff; transform: translateY(-2px); }
.footer-links h5 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 18px; color: white; }
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-links ul a { color: #8b90a0; font-size: 14px; transition: var(--transition); text-decoration: none; display: flex; align-items: center; gap: 8px; }
.footer-links ul a:hover { color: white; padding-left: 4px; }
.payment-icons { display: flex; align-items: center; gap: 10px; font-size: 26px; color: #6b7080; flex-wrap: wrap; }
.payment-icons img { height: 22px; opacity: .6; filter: brightness(0) invert(1); }
.wompi-badge { display: inline-flex; align-items: center; padding: 3px 10px; border-radius: 6px; font-size: 11px; font-weight: 700; background: #1e2030; border: 1px solid #2a2d3e; color: #8b90a0; letter-spacing: .3px; }
.wompi-badge.nequi { color: #c084fc; border-color: #6d28d9; }
.wompi-badge.bancol { color: #fbbf24; border-color: #92400e; }
.footer-bottom { border-top: 1px solid #1a1d2e; padding: 20px 24px; display: flex; align-items: center; justify-content: space-between; max-width: 1200px; margin: 0 auto; }
.footer-bottom p { color: #6b7080; font-size: 13px; text-align: center; }
.footer-bottom i.fa-heart { color: #e55; }

/* ===== MODAL POLÍTICAS ===== */
.policy-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.55); z-index: 1200; opacity: 0; pointer-events: none; transition: var(--transition); }
.policy-modal { position: fixed; top: 50%; left: 50%; transform: translate(-50%,-50%) scale(.96); z-index: 1200; background: var(--card); border: 1.5px solid var(--border); border-radius: 20px; width: 90%; max-width: 640px; max-height: 80vh; display: flex; flex-direction: column; opacity: 0; pointer-events: none; transition: all .25s ease; box-shadow: 0 24px 80px rgba(0,0,0,.25); }
.policy-modal.active { opacity: 1; pointer-events: all; transform: translate(-50%,-50%) scale(1); }
.policy-modal-header { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; border-bottom: 1px solid var(--border); flex-shrink: 0; }
.policy-modal-header h3 { font-size: 17px; font-weight: 800; color: var(--text); }
.policy-modal-body { padding: 24px; overflow-y: auto; flex: 1; font-size: 14px; color: var(--text2); line-height: 1.75; }
.policy-modal-body h4 { font-size: 14px; font-weight: 700; color: var(--text); margin: 20px 0 6px; }
.policy-modal-body h4:first-child { margin-top: 0; }
.policy-modal-body p { margin-bottom: 12px; }
.policy-modal-body ul { padding-left: 18px; margin-bottom: 12px; }
.policy-modal-body ul li { margin-bottom: 6px; }
.policy-modal-body .policy-table { width: 100%; border-collapse: collapse; margin-bottom: 14px; font-size: 13px; }
.policy-modal-body .policy-table th { background: var(--bg3); padding: 8px 12px; text-align: left; font-weight: 700; color: var(--text); border: 1px solid var(--border); }
.policy-modal-body .policy-table td { padding: 8px 12px; border: 1px solid var(--border); color: var(--text2); }
.policy-highlight { background: var(--bg3); border-left: 3px solid var(--accent); border-radius: 8px; padding: 12px 16px; margin-bottom: 14px; font-size: 13px; color: var(--text2); }
.policy-highlight strong { color: #d97706; }

/* ===== CART SIDEBAR ===== */
.cart-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.4); z-index: 1100; opacity: 0; pointer-events: none; transition: var(--transition); }
.cart-overlay.active { opacity: 1; pointer-events: all; }
.cart-sidebar { position: fixed; top: 0; right: -420px; width: 400px; max-width: 100vw; height: 100vh; background: var(--card); z-index: 1200; box-shadow: var(--shadow-lg); transition: right 0.35s cubic-bezier(0.4,0,0.2,1); display: flex; flex-direction: column; }
.cart-sidebar.open { right: 0; }
.cart-header { padding: 20px 24px; border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; }
.cart-header h3 { font-size: 18px; font-weight: 800; display: flex; align-items: center; gap: 10px; }
.cart-header button { background: none; border: none; font-size: 18px; cursor: pointer; color: var(--text2); padding: 4px; }
.cart-items { flex: 1; overflow-y: auto; padding: 16px; }
.cart-empty { display: flex; flex-direction: column; align-items: center; justify-content: center; height: 200px; gap: 12px; color: var(--text3); font-size: 14px; }
.cart-empty i { font-size: 40px; }
.cart-item { display: flex; align-items: center; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--border); }
.cart-item img { width: 64px; height: 64px; object-fit: cover; background: var(--bg3); border-radius: 10px; border: 1px solid var(--border); flex-shrink: 0; }
.cart-item-info { flex: 1; }
.cart-item-info h4 { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.cart-item-info p { font-size: 13px; color: var(--text2); margin-bottom: 8px; }
.cart-item-qty { display: flex; align-items: center; gap: 10px; }
.qty-btn { width: 28px; height: 28px; border-radius: 8px; border: 1.5px solid var(--border2); background: var(--bg3); cursor: pointer; font-size: 16px; font-weight: 700; display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.qty-btn:hover { border-color: var(--accent); color: var(--accent); }
.qty-num { font-size: 15px; font-weight: 700; min-width: 20px; text-align: center; }
.remove-item { background: none; border: none; color: var(--text3); cursor: pointer; font-size: 14px; padding: 4px; transition: var(--transition); }
.remove-item:hover { color: var(--red); }
.cart-footer { padding: 20px 24px; border-top: 1px solid var(--border); }
.cart-total { display: flex; justify-content: space-between; font-size: 18px; font-weight: 800; margin-bottom: 16px; }

/* ===== MODALS ===== */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 1300; opacity: 0; pointer-events: none; transition: var(--transition); backdrop-filter: blur(4px); }
.modal-overlay.active { opacity: 1; pointer-events: all; }
.modal { position: fixed; top: 50%; left: 50%; transform: translate(-50%,-60%) scale(0.95); z-index: 1400; background: var(--card); border-radius: 20px; padding: 32px; width: 560px; max-width: calc(100vw - 32px); max-height: 90vh; overflow-y: auto; box-shadow: var(--shadow-lg); opacity: 0; pointer-events: none; transition: all 0.3s cubic-bezier(0.4,0,0.2,1); }
.modal.active { opacity: 1; pointer-events: all; transform: translate(-50%,-50%) scale(1); }
.modal-close { position: absolute; top: 16px; right: 16px; background: var(--bg3); border: none; width: 36px; height: 36px; border-radius: 50%; cursor: pointer; font-size: 14px; color: var(--text2); display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.modal-close:hover { background: var(--red); color: white; }
.modal-img { width: 220px; height: 220px; object-fit: contain; margin: 0 auto 20px; background: linear-gradient(135deg, #f8f9ff, #eef0ff); border-radius: 16px; padding: 16px; display: block; }
.modal-content h2 { font-size: 24px; font-weight: 800; margin-bottom: 8px; }
.modal-content .price { font-size: 28px; font-weight: 900; color: var(--accent); margin-bottom: 16px; display: block; }
.modal-content .desc { color: var(--text2); font-size: 14px; line-height: 1.7; margin-bottom: 20px; }
.modal-specs-list { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 24px; }
.modal-spec { background: var(--bg3); border-radius: 10px; padding: 10px 14px; display: flex; justify-content: space-between; align-items: center; }
.modal-spec label { font-size: 12px; color: var(--text2); font-weight: 600; }
.modal-spec span { font-size: 13px; font-weight: 700; color: var(--text); }

/* ===== CHECKOUT ===== */
.checkout-modal { position: fixed; top: 50%; left: 50%; transform: translate(-50%,-60%) scale(0.95); z-index: 1400; background: var(--card); border-radius: 20px; padding: 32px; width: 560px; max-width: calc(100vw - 32px); max-height: 90vh; overflow-y: auto; box-shadow: var(--shadow-lg); opacity: 0; pointer-events: none; transition: all 0.3s cubic-bezier(0.4,0,0.2,1); }
.checkout-modal.active { opacity: 1; pointer-events: all; transform: translate(-50%,-50%) scale(1); }
.checkout-steps { display: flex; align-items: center; margin-bottom: 28px; }
.step { flex: 1; text-align: center; font-size: 13px; font-weight: 600; color: var(--text3); padding: 8px; border-radius: 8px; transition: var(--transition); }
.step.active { color: var(--accent); background: rgba(108,99,255,0.08); }
.step.done { color: var(--green); }
.step-divider { width: 20px; height: 2px; background: var(--border); }
.checkout-step h3 { font-size: 18px; font-weight: 800; margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.checkout-step input { width: 100%; padding: 13px 16px; border: 1.5px solid var(--border); border-radius: 10px; font-size: 14px; font-family: inherit; background: var(--bg); color: var(--text); margin-bottom: 12px; transition: var(--transition); }
.checkout-step input:focus { border-color: var(--accent); outline: none; }
.mp-info-box { background: var(--bg3); border-radius: 12px; padding: 20px; margin-bottom: 20px; border: 1px solid var(--border); }
.mp-logo { font-size: 15px; font-weight: 700; margin-bottom: 12px; }
.mp-methods { display: flex; gap: 12px; font-size: 22px; flex-wrap: wrap; color: var(--text2); margin-bottom: 12px; }
.mp-desc { font-size: 13px; color: var(--text2); }
.order-summary { background: var(--bg3); border-radius: 12px; padding: 16px; border: 1px solid var(--border); }
.order-summary-item { display: flex; justify-content: space-between; font-size: 14px; padding: 6px 0; border-bottom: 1px solid var(--border); }
.order-summary-item:last-child { border-bottom: none; font-weight: 700; }
.success-step { text-align: center; padding: 20px 0; }
.success-icon i { font-size: 60px; color: var(--green); margin-bottom: 16px; }
.success-step h3 { font-size: 24px; font-weight: 800; margin-bottom: 12px; }

/* ===== AUTH MODAL ===== */
.auth-modal { position: fixed; top: 50%; left: 50%; transform: translate(-50%,-60%) scale(0.95); z-index: 1400; background: var(--card); border-radius: 24px; padding: 40px; width: 440px; max-width: calc(100vw - 32px); max-height: 90vh; overflow-y: auto; box-shadow: 0 24px 64px rgba(0,0,0,0.15); opacity: 0; pointer-events: none; transition: all 0.3s cubic-bezier(0.4,0,0.2,1); }
.auth-modal.active { opacity: 1; pointer-events: all; transform: translate(-50%,-50%) scale(1); }
.auth-panel { display: flex; flex-direction: column; align-items: center; }
.auth-logo { margin-bottom: 20px; }
.auth-logo .logo-icon { width: 56px; height: 56px; border-radius: 16px; font-size: 22px; }
.auth-panel h3 { font-size: 24px; font-weight: 800; margin-bottom: 6px; text-align: center; }
.auth-sub { color: var(--text2); font-size: 14px; margin-bottom: 28px; text-align: center; }
.auth-panel form { width: 100%; display: flex; flex-direction: column; gap: 14px; margin-bottom: 20px; }
.auth-field { position: relative; }
.auth-field i { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); color: var(--text3); font-size: 14px; }
.auth-field input { width: 100%; padding: 13px 16px 13px 44px; border: 1.5px solid var(--border); border-radius: 12px; font-size: 14px; font-family: inherit; background: var(--bg); color: var(--text); transition: var(--transition); }
.auth-field input:focus { border-color: var(--accent); outline: none; box-shadow: 0 0 0 3px rgba(108,99,255,0.1); }
.auth-switch { font-size: 14px; color: var(--text2); text-align: center; }
.auth-switch a { color: var(--accent); font-weight: 600; cursor: pointer; }
.auth-switch a:hover { text-decoration: underline; }
.profile-info { width: 100%; background: var(--bg3); border-radius: 12px; padding: 16px; margin: 8px 0; display: flex; flex-direction: column; gap: 10px; }
.profile-row { display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--text2); }
.profile-row i { color: var(--accent); width: 16px; text-align: center; }

/* ===== TOAST ===== */
.toast { position: fixed; bottom: 100px; right: 24px; background: #1a1b26; color: white; padding: 14px 22px; border-radius: 12px; font-size: 14px; font-weight: 600; z-index: 9999; opacity: 0; transform: translateY(20px); transition: all 0.3s ease; pointer-events: none; box-shadow: var(--shadow-lg); }
.toast.show { opacity: 1; transform: translateY(0); }
.toast.success { background: linear-gradient(135deg, #16a34a, #22c55e); }
.toast.error { background: linear-gradient(135deg, #dc2626, #ef4444); }

/* ===== MOBILE MENU ===== */
@media (max-width: 768px) {
  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; background: white; border-bottom: 1px solid var(--border); flex-direction: column; padding: 16px 24px; gap: 16px; box-shadow: var(--shadow); }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
}

/* ===== RESPONSIVE TABLET ===== */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-container { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: 14px; text-align: center; }
}

/* ══════════════════════════════════════════════════
   PRODUCT DETAIL MODAL — Estilo Shopify profesional
══════════════════════════════════════════════════ */
.modal { width: 900px; max-width: calc(100vw - 24px); padding: 0; overflow: hidden; }
.product-detail { display: grid; grid-template-columns: 1fr 1fr; min-height: 500px; }

/* Galería */
.pd-gallery { padding: 28px 20px 28px 28px; background: #f8f9ff; display: flex; flex-direction: column; gap: 12px; }
.pd-main-img-wrap { position: relative; background: #1a1a1a; border-radius: 16px; overflow: hidden; aspect-ratio: 1; }
.pd-main-img-wrap img,
.pd-main-img-wrap video { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform .3s ease; display: block; }
.pd-main-img-wrap:hover img { transform: scale(1.04); }
.pd-badge { position: absolute; top: 12px; left: 12px; padding: 4px 12px; border-radius: 50px; font-size: 11px; font-weight: 700; color: #fff; text-transform: uppercase; }
.pd-discount-badge { position: absolute; top: 12px; right: 12px; background: #dc2626; color: #fff; padding: 4px 10px; border-radius: 50px; font-size: 11px; font-weight: 800; }
.pd-thumbs { display: flex; gap: 8px; flex-wrap: wrap; }
.gallery-thumb { width: 64px; height: 64px; border-radius: 10px; border: 2px solid transparent; overflow: hidden; cursor: pointer; background: #1a1a1a; transition: .2s; flex-shrink: 0; padding: 0; }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.gallery-thumb.active { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(108,99,255,.15); }
.gallery-thumb:hover { border-color: var(--accent2); }

/* Info */
.pd-info { padding: 28px 28px 20px 20px; overflow-y: auto; max-height: 80vh; display: flex; flex-direction: column; gap: 14px; }
.pd-tag { font-size: 11px; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: 1px; }
.pd-title { font-size: 22px; font-weight: 900; color: var(--text); line-height: 1.2; }
.pd-price-row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.pd-price { font-size: 28px; font-weight: 900; color: var(--text); }
.pd-old-price { font-size: 16px; color: var(--text3); text-decoration: line-through; }
.pd-save-badge { background: #dcfce7; color: #16a34a; font-size: 12px; font-weight: 700; padding: 3px 10px; border-radius: 20px; border: 1px solid #86efac; }
.pd-stock { font-size: 13px; font-weight: 600; color: #16a34a; display: flex; align-items: center; gap: 6px; }
.pd-desc { color: var(--text2); font-size: 14px; line-height: 1.7; }
.pd-features { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.pd-features li { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text); }
.pd-features li i { color: var(--green); font-size: 13px; flex-shrink: 0; }

/* Cantidad */
.pd-qty-row { display: flex; align-items: center; gap: 12px; background: var(--bg3); border-radius: 12px; padding: 12px 16px; }
.pd-qty-label { font-size: 13px; font-weight: 600; color: var(--text2); }
.pd-qty-ctrl { display: flex; align-items: center; gap: 12px; }
.pd-qty-btn { width: 32px; height: 32px; border-radius: 8px; border: 1.5px solid var(--border2); background: #fff; font-size: 18px; font-weight: 700; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: .15s; color: var(--text); }
.pd-qty-btn:hover { border-color: var(--accent); color: var(--accent); }
.pd-qty-ctrl span { font-size: 16px; font-weight: 800; min-width: 24px; text-align: center; }
.pd-qty-total { margin-left: auto; font-size: 16px; font-weight: 800; color: var(--accent); }

/* Botones */
.pd-btns { display: flex; flex-direction: column; gap: 10px; }
.pd-btn-cart { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 14px; border-radius: 12px; font-size: 15px; font-weight: 700; cursor: pointer; transition: .2s; border: 2px solid var(--accent); background: transparent; color: var(--accent); font-family: inherit; }
.pd-btn-cart:hover { background: rgba(108,99,255,.06); }
.pd-btn-buy { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 14px; border-radius: 12px; font-size: 15px; font-weight: 700; cursor: pointer; transition: .2s; border: none; background: linear-gradient(135deg,var(--accent),var(--accent2)); color: #fff; font-family: inherit; box-shadow: 0 4px 16px rgba(108,99,255,.35); }
.pd-btn-buy:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(108,99,255,.45); }

/* Trust */
.pd-trust { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.pd-trust-item { display: flex; align-items: center; gap: 7px; font-size: 12px; color: var(--text2); background: var(--bg3); border-radius: 8px; padding: 8px 10px; }
.pd-trust-item i { color: var(--accent); font-size: 13px; }

/* Specs accordion */
.pd-specs-details { border: 1px solid var(--border); border-radius: 10px; overflow: hidden; }
.pd-specs-details summary { padding: 12px 16px; font-size: 13px; font-weight: 700; color: var(--text); cursor: pointer; list-style: none; display: flex; align-items: center; justify-content: space-between; }
.pd-specs-details summary::after { content: '+'; font-size: 18px; color: var(--accent); }
.pd-specs-details[open] summary::after { content: '−'; }
.pd-specs-details .modal-specs-list { padding: 12px 16px; }

/* Sticky bar (oculto en desktop, visible en móvil) */
.pd-sticky-bar { display: none; }

/* ══════════════════════════════════════════════════
   RESPONSIVE MOBILE — Completo y profesional
══════════════════════════════════════════════════ */
@media (max-width: 768px) {
  html, body { overflow-x: hidden; width: 100%; }

  /* ── Navbar ── */
  .nav-container { padding: 0 14px; gap: 8px; }
  .nav-logo-img { height: 40px; }
  .logo-text { font-size: 17px; }
  /* Mostrar ambos botones auth en móvil, compactos */
  .nav-btn-login {
    padding: 9px 13px; font-size: 12px;
    min-height: 38px; border-radius: 50px;
  }
  .nav-btn-register {
    display: inline-flex; align-items: center;
    padding: 9px 13px; font-size: 12px;
    min-height: 38px; border-radius: 50px;
  }
  .nav-actions { gap: 6px; flex-wrap: nowrap; }
  .cart-btn { width: 38px; height: 38px; font-size: 14px; border-radius: 10px; }
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: white; border-bottom: 1px solid var(--border);
    flex-direction: column; padding: 16px 20px; gap: 14px;
    box-shadow: var(--shadow); z-index: 999;
  }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }

  /* ── Hero ── */
  .hero { padding: 84px 16px 48px; min-height: auto; }
  .hero-content {
    grid-template-columns: 1fr; gap: 24px;
    text-align: center; width: 100%; max-width: 100%;
  }
  .hero-visual { display: none; }
  .floating-badge { display: none; }
  .hero-glow { display: none; }
  .hero-badge {
    display: inline-flex; justify-content: center;
    margin-left: auto; margin-right: auto;
  }
  .hero-title {
    font-size: clamp(26px, 7vw, 36px);
    letter-spacing: -0.5px; line-height: 1.15;
    word-break: break-word;
  }
  .hero-subtitle { font-size: 14px; max-width: 100%; margin-left: auto; margin-right: auto; }
  .hero-btns {
    justify-content: center; flex-direction: column;
    gap: 10px; align-items: center;
  }
  .hero-btns .btn-primary,
  .hero-btns .btn-ghost {
    width: 100%; max-width: 320px; justify-content: center;
    padding: 14px 20px; font-size: 15px; min-height: 48px;
  }
  .hero-stats { justify-content: center; gap: 16px; }
  .stat-num { font-size: 18px; }
  .stat-label { font-size: 11px; }

  /* ── Trust bar — 2×2 grid centrado ── */
  .trust-bar { padding: 16px 16px; }
  .trust-container {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 10px; width: 100%;
    /* cancelar propiedades flex del desktop */
    flex-wrap: unset; align-items: unset; justify-content: unset;
  }
  .trust-item {
    background: var(--bg2); border: 1px solid var(--border);
    border-radius: 10px; padding: 10px 12px;
    font-size: 12px; font-weight: 600; gap: 7px;
    justify-content: flex-start; white-space: normal;
  }
  .trust-item i { font-size: 14px; flex-shrink: 0; }

  /* ── Productos — 2 columnas ── */
  .productos { padding: 48px 0; }
  .section-container { padding: 0 14px; width: 100%; }
  .section-header { margin-bottom: 24px; }
  .section-title { font-size: clamp(22px, 5.5vw, 28px); }
  .section-sub { font-size: 13px; }
  .products-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .card-img-wrap { height: 170px; }
  .card-overlay { opacity: 1 !important; }
  .quick-view { font-size: 11px; padding: 7px 12px; }
  .card-body { padding: 12px; }
  .card-tag { font-size: 9px; }
  .card-title { font-size: 14px; margin-bottom: 4px; }
  .card-desc { display: none; }
  .card-specs { display: none; }
  .card-footer { flex-direction: column; gap: 6px; align-items: stretch; }
  .price-old { font-size: 11px; }
  .price { font-size: 17px; }
  .add-cart-btn {
    width: 100%; justify-content: center;
    padding: 10px; font-size: 13px; border-radius: 8px;
    min-height: 44px;
  }

  /* ── Tabla comparativa — scroll horizontal ── */
  .comparison { padding: 40px 0; }
  .table-wrap {
    overflow-x: auto; -webkit-overflow-scrolling: touch;
    border: 1px solid var(--border); border-radius: 12px;
  }
  .comp-table { font-size: 12px; min-width: 520px; }
  .comp-table th,
  .comp-table td { padding: 10px 10px; }
  .comp-table th { font-size: 12px; white-space: nowrap; }
  .comp-table td:first-child { font-size: 12px; font-weight: 600; min-width: 130px; white-space: nowrap; }

  /* ── Nosotros ── */
  .nosotros { padding: 48px 0; }
  .nosotros-grid { grid-template-columns: 1fr; gap: 24px; }
  .nosotros-img { display: block; }
  .nosotros-text h2 { font-size: clamp(22px, 6vw, 28px); }
  .nosotros-text p { font-size: 14px; }
  .nosotros-list li { font-size: 14px; }

  /* ── Contacto ── */
  .contacto { padding: 48px 0; }
  .contact-grid-new { grid-template-columns: 1fr; gap: 28px; }
  .form-row-2 { grid-template-columns: 1fr; }

  /* ── Footer ── */
  .footer-top { padding: 40px 0 32px; }
  .footer-container {
    grid-template-columns: 1fr 1fr; gap: 20px;
    padding: 0 16px 0;
  }
  .footer-brand { grid-column: 1/-1; }
  .footer-links h5 { font-size: 12px; margin-bottom: 12px; }
  .footer-links ul { gap: 10px; }
  .footer-links ul a { font-size: 13px; }
  .footer-bottom {
    flex-direction: column; gap: 10px;
    text-align: center; padding: 18px 16px;
  }
  .footer-bottom p { font-size: 12px; }
  .payment-icons { justify-content: center; }
  .footer-desc { font-size: 13px; }

  /* ── Cart sidebar ── */
  .cart-sidebar { width: 100%; max-width: 100%; right: -100vw; }

  /* ── Modals — bottom sheet ── */
  .modal {
    border-radius: 20px 20px 0 0;
    top: auto; bottom: 0; left: 0; right: 0;
    transform: translateY(100%); width: 100%; max-width: 100%;
    max-height: 92vh; overflow-y: auto;
    -webkit-overflow-scrolling: touch; padding: 0;
  }
  .modal.active { transform: translateY(0); }
  .checkout-modal {
    border-radius: 20px 20px 0 0;
    top: auto; bottom: 0; left: 0; right: 0;
    transform: translateY(100%); width: 100%; max-width: 100%;
    max-height: 92vh; overflow-y: auto; padding: 24px 16px;
  }
  .checkout-modal.active { transform: translateY(0); }
  .auth-modal {
    border-radius: 20px 20px 0 0;
    top: auto; bottom: 0; left: 0; right: 0;
    transform: translateY(100%); width: 100%; max-width: 100%;
    max-height: 92vh; overflow-y: auto; padding: 28px 18px;
  }
  .auth-modal.active { transform: translateY(0); }
  .form-row { grid-template-columns: 1fr; }
  .modal-specs-list { grid-template-columns: 1fr; }

  /* ── Product detail modal ── */
  .product-detail { grid-template-columns: 1fr; min-height: auto; }
  .pd-gallery { padding: 14px; background: #111; }
  .pd-main-img-wrap { aspect-ratio: 4/3; border-radius: 12px; }
  .pd-thumbs {
    gap: 6px; overflow-x: auto; flex-wrap: nowrap;
    padding-bottom: 4px; -webkit-overflow-scrolling: touch;
  }
  .gallery-thumb { width: 52px; height: 52px; flex-shrink: 0; border-radius: 8px; }
  .pd-info { padding: 16px; max-height: none; gap: 10px; overflow-y: visible; }
  .pd-title { font-size: 18px; }
  .pd-price { font-size: 22px; }
  .pd-trust { grid-template-columns: 1fr 1fr; }
  .pd-desc { display: block !important; font-size: 13px; }
  .pd-features { display: flex !important; }
  .pd-specs-details { display: block !important; }
  .pd-sticky-bar {
    display: flex; align-items: center; justify-content: space-between;
    gap: 10px; padding: 12px 16px; background: #fff;
    border-top: 1px solid var(--border); position: sticky; bottom: 0;
    z-index: 10; box-shadow: 0 -4px 20px rgba(0,0,0,.1);
  }
  .pd-sticky-info { display: flex; flex-direction: column; }
  .pd-sticky-name { font-size: 13px; font-weight: 700; color: var(--text); }
  .pd-sticky-price { font-size: 15px; font-weight: 900; color: var(--accent); }
  .pd-sticky-bar .pd-btn-buy {
    padding: 11px 18px; font-size: 13px; white-space: nowrap;
    border-radius: 10px; min-height: 44px;
  }

  /* ── Toast ── */
  .toast { bottom: 80px; right: 12px; left: 12px; text-align: center; }

  /* ── WhatsApp ── */
  .whatsapp-float { bottom: 14px; right: 14px; }
  .whatsapp-btn { width: 50px; height: 50px; font-size: 24px; }

  /* ── Botones touch — mínimo 44px ── */
  .btn-primary, .btn-ghost { min-height: 44px; }
  .qty-btn { width: 36px; height: 36px; }
}

/* ── Móvil pequeño ── */
@media (max-width: 480px) {
  /* Navbar — apilar logo y acciones */
  .nav-container { padding: 0 12px; }
  .nav-logo-img { height: 36px; }
  .logo-text { font-size: 16px; }
  /* Ocultar botón Registrarse para ganar espacio, mantener Ingresar */
  .nav-btn-register { display: none; }
  .nav-btn-login { padding: 8px 12px; font-size: 12px; }

  /* Hero */
  .hero { padding: 80px 14px 40px; }
  .hero-title { font-size: clamp(24px, 7.5vw, 30px); }
  .hero-subtitle { font-size: 13px; }
  .hero-btns .btn-primary,
  .hero-btns .btn-ghost { font-size: 14px; }

  /* Trust bar — mantener 2×2 */
  .trust-container { grid-template-columns: 1fr 1fr; gap: 8px; }
  .trust-item { font-size: 11px; padding: 9px 10px; }

  /* Productos — 2 cols en 480px, 1 col solo en muy pequeño */
  .products-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .card-img-wrap { height: 150px; }
  .card-title { font-size: 13px; }
  .price { font-size: 15px; }
  .add-cart-btn { font-size: 12px; padding: 9px 8px; }

  /* Tabla */
  .comp-table { min-width: 460px; font-size: 11px; }

  /* Nosotros */
  .nosotros-text h2 { font-size: clamp(20px, 6.5vw, 26px); }

  /* Footer — 1 columna en 480px */
  .footer-container { grid-template-columns: 1fr; }
  .footer-links { text-align: left; }

  /* Secciones */
  .section-container { padding: 0 12px; }
  .section-title { font-size: clamp(20px, 6vw, 24px); }
}

/* ── Móvil muy pequeño (< 360px) ── */
@media (max-width: 360px) {
  .products-grid { grid-template-columns: 1fr; }
  .trust-container { grid-template-columns: 1fr; }
  .pd-trust { grid-template-columns: 1fr; }
  .hero-title { font-size: 22px; }
  .nav-btn-login { display: none; }
}
