* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; }
body { background: #fafafa; color: #111; scroll-behavior: smooth; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* 1. HEADER & SUB-ANNOUNCEMENT BAR */
header { background: rgba(255,255,255,0.98); backdrop-filter: blur(10px); border-bottom: 1px solid #e2e8f0; position: fixed; top: 0; width: 100%; z-index: 1000; display: flex; flex-direction: column; }
.header-spacer { height: 160px; }
.header-flex { display: flex; justify-content: space-between; align-items: center; width: 100%; gap: 14px; height: 75px; }

/* Sub-announcement bar (reubicada debajo del header, más grande y centrada) */
.sub-announcement-bar { border-top: 1px solid #e2e8f0; background: linear-gradient(180deg, #f8fafc 0%, #ffffff 50%, #f8fafc 100%); padding: 10px 16px; font-size: 12px; font-weight: 600; color: #475569; width: 100%; box-shadow: 0 1px 3px rgba(0,0,0,0.03); }
.sub-announcement-centered { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; text-align: center; }
.sub-rollo-box { display: flex; justify-content: center; width: 100%; }
.badge-rollo-large { display: inline-flex; align-items: center; justify-content: center; gap: 8px; background: #fef2f2; color: #b91c1c; border: 2px solid #fca5a5; padding: 6px 18px; border-radius: 12px; font-weight: 900; font-size: 13px; letter-spacing: 0.5px; box-shadow: 0 1px 3px rgba(185, 28, 28, 0.1); }
.pulse-dot { width: 8px; height: 8px; border-radius: 50%; background: #dc2626; display: inline-block; flex-shrink: 0; }
.sub-details-centered { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; width: 100%; }
.sub-benefits-row { display: flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: wrap; font-size: 12px; font-weight: 700; color: #1e293b; }
.sub-benefit { display: inline-flex; align-items: center; gap: 5px; }
.sub-socials-row { display: flex; align-items: center; justify-content: center; gap: 8px; flex-wrap: wrap; font-size: 11px; }
.sub-social-pill { display: inline-flex; align-items: center; gap: 5px; background: #f1f5f9; border: 1px solid #cbd5e1; padding: 4px 10px; border-radius: 8px; text-decoration: none; font-weight: 700; color: #334155; transition: all 0.15s; }
.sub-social-pill:hover { background: #e2e8f0; color: #0f172a; }
.sub-hours-pill { display: inline-flex; align-items: center; gap: 5px; background: #f1f5f9; border: 1px solid #e2e8f0; padding: 4px 10px; border-radius: 8px; font-size: 11px; font-weight: 600; color: #475569; }
.sub-sep { color: #cbd5e1; }
.text-amber { color: #f59e0b; }
.text-pink { color: #ec4899; }
.text-emerald { color: #10b981; }
@media (max-width: 640px) {
  .header-spacer { height: 175px; }
  .badge-rollo-large { font-size: 11.5px; padding: 5px 12px; }
  .sub-benefits-row { font-size: 11px; gap: 6px; }
  .sub-socials-row { font-size: 10.5px; gap: 6px; }
}
.header-left { display: flex; align-items: center; gap: 12px; }
.logo { font-size: 24px; font-weight: 900; text-transform: uppercase; font-family: 'Space Grotesk', sans-serif; position: relative; color: #000; letter-spacing: -0.5px; display: inline-flex; align-items: center; }
.logo-dots { display: inline-flex; gap: 3px; vertical-align: top; margin-left: 4px; }
.dot { background: #dc2626; color: #fff; width: 17px; height: 17px; border-radius: 50%; font-size: 9px; display: flex; align-items: center; justify-content: center; font-weight: 800; }

/* DROPDOWN MENU NEXT TO CENDATEX */
.dropdown-container { position: relative; }
.btn-dropdown-trigger { display: inline-flex; align-items: center; gap: 7px; background: #0f172a; border: 1px solid #0f172a; padding: 8px 14px; border-radius: 12px; font-size: 13px; font-weight: 800; color: #ffffff; cursor: pointer; transition: all 0.15s ease; min-height: 42px; box-shadow: 0 2px 4px rgba(15,23,42,0.15); }
.btn-dropdown-trigger:hover { background: #1e293b; border-color: #1e293b; }
.btn-dropdown-trigger.active { background: #dc2626; color: #ffffff; border-color: #dc2626; }
.btn-dropdown-trigger.active .chevron-icon { transform: rotate(180deg); }
.chevron-icon { font-size: 10px; transition: transform 0.2s; color: #94a3b8; }
.btn-dropdown-trigger.active .chevron-icon { color: #ffffff; }

.dropdown-popover { position: absolute; top: calc(100% + 8px); left: 0; width: 340px; max-width: calc(100vw - 20px); background: #ffffff; border: 1px solid #e2e8f0; border-radius: 18px; box-shadow: 0 20px 30px -10px rgba(0,0,0,0.2), 0 4px 6px -2px rgba(0,0,0,0.05); z-index: 2500; display: none; overflow: hidden; animation: popIn 0.2s ease-out; }
.dropdown-popover.open { display: block; }
@keyframes popIn { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 640px) {
  .dropdown-popover { position: fixed; top: 70px; left: 10px; right: 10px; width: auto; max-width: calc(100vw - 20px); max-height: 82vh; border-radius: 20px; box-shadow: 0 25px 40px -10px rgba(0,0,0,0.35); }
  .btn-dropdown-trigger { padding: 8px 12px; min-height: 40px; }
  .dropdown-btn-text { display: inline !important; }
}

.dropdown-header { background: #0f172a; color: #ffffff; padding: 14px 16px; display: flex; justify-content: space-between; align-items: center; }
.dropdown-title { font-size: 13px; font-weight: 800; }
.dropdown-subtitle { font-size: 11px; color: #94a3b8; }
.dropdown-close-btn { background: #1e293b; color: #cbd5e1; border: none; width: 26px; height: 26px; border-radius: 6px; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 12px; }
.dropdown-close-btn:hover { background: #334155; color: #ffffff; }

.dropdown-body { max-height: 72vh; overflow-y: auto; padding: 12px; }
.dropdown-group { margin-bottom: 12px; }
.dropdown-group-label { font-size: 10px; font-weight: 800; color: #94a3b8; text-transform: uppercase; letter-spacing: 0.8px; padding: 4px 8px; }
.dropdown-item { display: flex; align-items: center; gap: 10px; padding: 8px 10px; border-radius: 10px; color: #1e293b; text-decoration: none; transition: background 0.15s; font-size: 13px; border: none; background: transparent; width: 100%; cursor: pointer; }
.dropdown-item:hover { background: #f1f5f9; }
.dropdown-item i { width: 18px; text-align: center; color: #64748b; font-size: 13px; }
.dropdown-item:hover i { color: #dc2626; }
.item-title { font-weight: 700; line-height: 1.2; }
.item-desc { font-size: 10px; color: #64748b; }

.dropdown-footer-box { background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 12px; padding: 10px; margin-top: 8px; }
.dropdown-hours-text { font-size: 11px; font-weight: 700; color: #047857; margin-bottom: 8px; display: flex; align-items: center; gap: 6px; }
.dropdown-wa-cta { display: flex; align-items: center; justify-content: center; gap: 6px; background: #10b981; color: #ffffff; text-decoration: none; font-size: 12px; font-weight: 800; padding: 8px; border-radius: 8px; }
.dropdown-wa-cta:hover { background: #059669; }

/* BUSCADOR */
.header-center { flex: 1; max-width: 460px; margin: 0 10px; }
.search-box { background: #f1f5f9; padding: 6px 12px; border-radius: 10px; display: flex; align-items: center; border: 1px solid #e2e8f0; gap: 8px; }
.search-box input { border: none; background: transparent; outline: none; width: 100%; font-size: 13px; color: #1e293b; }
.search-box i { color: #94a3b8; font-size: 13px; }
.btn-search-go { background: #0f172a; color: #fff; border: none; padding: 4px 10px; border-radius: 6px; font-size: 11px; font-weight: 700; cursor: pointer; }
.btn-search-go:hover { background: #dc2626; }

/* HEADER RIGHT & CARRITO DE COMPRAS */
.header-right { display: flex; align-items: center; gap: 10px; }
.header-social-shortcuts { display: flex; align-items: center; gap: 6px; }
.btn-social-shortcut { display: inline-flex; align-items: center; gap: 5px; background: #f1f5f9; border: 1px solid #e2e8f0; padding: 8px 10px; border-radius: 10px; font-size: 11px; font-weight: 700; text-decoration: none; color: #334155; transition: all 0.15s; }
.btn-social-shortcut.btn-instagram:hover { background: #fdf2f8; border-color: #f472b6; color: #be185d; }
.btn-social-shortcut.btn-instagram i { color: #e1306c; }
.btn-social-shortcut.btn-tiktok:hover { background: #f8fafc; border-color: #94a3b8; color: #0f172a; }
.btn-social-shortcut.btn-tiktok i { color: #0f172a; }
.btn-wa-header { display: inline-flex; align-items: center; gap: 6px; background: #ecfdf5; color: #047857; border: 1px solid #a7f3d0; padding: 8px 12px; border-radius: 10px; font-size: 12px; font-weight: 700; text-decoration: none; white-space: nowrap; }
.btn-wa-header:hover { background: #d1fae5; }
.cart-btn { background: #0a0a0a; color: #fff; border: none; padding: 8px 14px; border-radius: 12px; font-size: 13px; cursor: pointer; position: relative; display: flex; align-items: center; gap: 8px; font-weight: 700; transition: background 0.2s; white-space: nowrap; min-height: 40px; }
.cart-btn:hover { background: #1e293b; }
#cartCount { background: #dc2626; color: #fff; font-size: 11px; padding: 2px 7px; border-radius: 12px; font-weight: 800; min-width: 20px; text-align: center; }

@media (max-width: 1024px) {
  .header-social-shortcuts { display: none; }
}
@media (max-width: 900px) {
  .dropdown-btn-text { display: none; }
  .wa-header-label { display: none; }
}
@media (max-width: 640px) {
  .header-center { display: none; } /* En móvil simplificamos o usamos el botón del catálogo */
  .cart-btn-label { display: none; }
  .cart-btn { padding: 8px 12px; }
}

/* 3. HERO */
.hero { min-height: 500px; background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.85)), url('https://images.unsplash.com/photo-1558235081-183b5536443b?auto=format&fit=crop&w=1600') center/cover; display: flex; align-items: center; justify-content: center; color: #fff; text-align: center; position: relative; padding: 60px 20px; }
.hero-content { max-width: 800px; }
.hero-tag { display: inline-block; background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.25); border-radius: 20px; padding: 4px 14px; font-size: 11px; font-weight: 700; letter-spacing: 1px; margin-bottom: 15px; }
.hero h1 { font-size: 46px; font-weight: 900; font-family: 'Space Grotesk', sans-serif; letter-spacing: -1px; line-height: 1.1; margin-bottom: 15px; }
.hero p { font-size: 16px; color: #cbd5e1; max-width: 650px; margin: 0 auto 25px; line-height: 1.6; }
.hero-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn-primary { background: #dc2626; color: #fff; padding: 13px 26px; text-decoration: none; font-weight: 800; font-size: 13px; border-radius: 10px; letter-spacing: 0.5px; transition: 0.2s; display: inline-flex; align-items: center; justify-content: center; gap: 8px; }
.btn-primary:hover { background: #b91c1c; }
.btn-secondary { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.3); color: #fff; padding: 13px 22px; text-decoration: none; font-weight: 700; font-size: 13px; border-radius: 10px; transition: 0.2s; }
.btn-secondary:hover { background: rgba(255,255,255,0.2); }

/* 4. PASOS */
.steps { padding: 60px 0; background: #fff; border-bottom: 1px solid #e2e8f0; }
.section-header { text-align: center; margin-bottom: 35px; }
.section-header .tag { font-size: 11px; font-weight: 800; color: #dc2626; letter-spacing: 1px; text-transform: uppercase; }
.section-header h2, .section-header h3 { font-size: 28px; font-weight: 900; font-family: 'Space Grotesk', sans-serif; margin-top: 4px; }
.section-header p { font-size: 13px; color: #64748b; margin-top: 5px; }
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.step { background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 16px; padding: 25px; }
.step-num { font-size: 38px; font-weight: 900; color: #cbd5e1; display: block; margin-bottom: 10px; font-family: 'Space Grotesk', sans-serif; }
.step h4 { font-size: 16px; font-weight: 800; margin-bottom: 8px; }
.step p { font-size: 13px; color: #64748b; line-height: 1.5; }

/* 5. CALCULADORA */
.calculator-section { padding: 50px 0; background: #f1f5f9; border-bottom: 1px solid #e2e8f0; }
.calc-box { background: #fff; border-radius: 20px; border: 1px solid #e2e8f0; padding: 35px; box-shadow: 0 4px 6px -1px rgba(0,0,0,0.03); }
.calc-header h3 { font-size: 22px; font-weight: 800; font-family: 'Space Grotesk', sans-serif; }
.calc-header p { font-size: 13px; color: #64748b; margin-top: 4px; margin-bottom: 25px; }
.calc-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 30px; }
@media (max-width: 768px) { .calc-grid { grid-template-columns: 1fr; } }
.calc-controls label { display: block; font-size: 12px; font-weight: 700; text-transform: uppercase; color: #334155; margin-bottom: 6px; }
.calc-controls select { width: 100%; padding: 10px 12px; border-radius: 10px; border: 1px solid #cbd5e1; font-size: 13px; margin-bottom: 15px; }
.calc-stepper { display: flex; align-items: center; gap: 8px; margin-bottom: 15px; }
.calc-stepper button { width: 36px; height: 36px; border-radius: 8px; border: 1px solid #cbd5e1; background: #f8fafc; font-weight: bold; cursor: pointer; }
.calc-stepper input { width: 60px; height: 36px; text-align: center; border-radius: 8px; border: 1px solid #cbd5e1; font-weight: bold; }
.calc-garments { display: flex; gap: 8px; flex-wrap: wrap; }
.btn-garment { padding: 8px 14px; border-radius: 8px; border: 1px solid #cbd5e1; background: #f8fafc; font-size: 12px; font-weight: 700; cursor: pointer; }
.btn-garment.active { background: #0a0a0a; color: #fff; border-color: #0a0a0a; }

.calc-result { background: #0a0a0a; color: #fff; border-radius: 16px; padding: 25px; display: flex; flex-direction: column; justify-content: center; }
.result-tag { font-size: 10px; font-weight: 800; letter-spacing: 1px; color: #f59e0b; }
.result-number { font-size: 42px; font-weight: 900; font-family: 'Space Grotesk', sans-serif; margin: 5px 0 15px; }
.result-number small { font-size: 16px; font-weight: 600; color: #94a3b8; }
.result-line { display: flex; justify-content: space-between; font-size: 12px; color: #cbd5e1; margin-bottom: 6px; }
.result-highlight { display: flex; justify-content: space-between; font-size: 14px; color: #34d399; font-weight: 800; border-top: 1px solid #262626; padding-top: 10px; margin-top: 6px; }

/* 6. PRODUCTS GRID */
.main-title { text-align: center; font-size: 32px; font-weight: 900; font-family: 'Space Grotesk', sans-serif; text-transform: uppercase; }
.category-filters { display: flex; justify-content: center; gap: 8px; margin-bottom: 35px; flex-wrap: wrap; }
.filter-btn { padding: 10px 18px; border: 1px solid #cbd5e1; background: #fff; border-radius: 10px; cursor: pointer; font-weight: 700; font-size: 12px; transition: 0.2s; }
.filter-btn.active { background: #0a0a0a; color: #fff; border-color: #0a0a0a; }

.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 24px; margin-bottom: 80px; }
.product-card { background: #fff; border: 1px solid #e2e8f0; border-radius: 16px; overflow: hidden; display: flex; flex-direction: column; transition: 0.25s ease; }
.product-card:hover { transform: translateY(-4px); box-shadow: 0 12px 20px -5px rgba(0,0,0,0.06); border-color: #cbd5e1; }
.product-card.search-highlight { outline: 4px solid #dc2626 !important; transform: scale(1.03) !important; box-shadow: 0 20px 25px -5px rgba(220, 38, 38, 0.3) !important; z-index: 10; }

.product-img { height: 260px; background: #f8fafc; position: relative; overflow: hidden; }
.product-img img { width: 100%; height: 100%; object-fit: cover; }
.badge-cat { position: absolute; top: 10px; left: 10px; background: rgba(0,0,0,0.75); color: #fff; font-size: 10px; font-weight: 800; padding: 3px 8px; border-radius: 6px; text-transform: uppercase; }
.badge-tag { position: absolute; top: 35px; left: 10px; background: #dc2626; color: #fff; font-size: 10px; font-weight: 800; padding: 3px 8px; border-radius: 6px; text-transform: uppercase; }

.product-info { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.product-info h4 { font-size: 16px; font-weight: 800; margin-bottom: 4px; }
.specs { font-size: 11px; color: #64748b; font-weight: 700; margin-bottom: 12px; text-transform: uppercase; }
.price-box { background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 10px; padding: 10px 12px; margin-bottom: 12px; }
.price { font-size: 22px; font-weight: 900; font-family: 'Space Grotesk', sans-serif; display: block; }
.price small { font-size: 12px; color: #64748b; font-weight: 600; }
.roll-est { font-size: 11px; color: #475569; display: block; margin-top: 2px; }

.color-options { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 6px; }
.color-dot { width: 20px; height: 20px; border-radius: 50%; cursor: pointer; border: 1px solid #cbd5e1; transition: 0.15s; }
.color-dot.active { outline: 2px solid #0a0a0a; outline-offset: 2px; transform: scale(1.1); }
.color-name { font-size: 11px; color: #64748b; margin-bottom: 14px; }

.qty-row { display: flex; align-items: center; justify-content: space-between; font-size: 12px; font-weight: 700; margin-bottom: 12px; background: #f8fafc; padding: 8px 10px; border-radius: 8px; }
.qty-stepper { display: flex; align-items: center; gap: 6px; }
.qty-stepper button { width: 26px; height: 26px; border-radius: 6px; border: 1px solid #cbd5e1; background: #fff; cursor: pointer; font-weight: bold; }
.qty-input { width: 36px; height: 26px; text-align: center; border: 1px solid #cbd5e1; border-radius: 6px; font-weight: bold; }

/* BOTÓN AGREGAR AL CARRITO */
.btn-add { background: #0a0a0a; color: #fff; border: none; padding: 12px; font-weight: 800; font-size: 12px; border-radius: 10px; cursor: pointer; margin-top: auto; letter-spacing: 0.5px; transition: 0.2s; display: flex; align-items: center; justify-content: center; gap: 8px; }
.btn-add:hover { background: #dc2626; }

/* CUADRO PARA SUBIR ARTÍCULO */
.card-add-product { border: 2px dashed #cbd5e1 !important; background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%) !important; min-height: 520px; cursor: pointer; position: relative; }
.card-add-product:hover { border-color: #dc2626 !important; background: #fff5f5 !important; transform: translateY(-4px); box-shadow: 0 12px 20px -5px rgba(220,38,38,0.1) !important; }
.add-product-inner { padding: 24px; display: flex; flex-direction: column; justify-content: space-between; height: 100%; width: 100%; box-sizing: border-box; text-align: center; }
.add-product-top { display: flex; justify-content: space-between; align-items: center; width: 100%; }
.badge-new { background: #fef3c7; color: #92400e; border: 1px solid #fde68a; font-size: 10px; font-weight: 800; padding: 3px 8px; border-radius: 6px; text-transform: uppercase; }
.add-product-center { display: flex; flex-direction: column; align-items: center; justify-content: center; margin: 30px 0; }
.add-product-plus-icon { width: 80px; height: 80px; border-radius: 50%; background: #f1f5f9; border: 2px solid #e2e8f0; display: flex; align-items: center; justify-content: center; font-size: 32px; color: #94a3b8; transition: all 0.3s ease; margin-bottom: 18px; }
.card-add-product:hover .add-product-plus-icon { background: #dc2626; color: #fff; border-color: #dc2626; transform: scale(1.1); box-shadow: 0 8px 16px rgba(220,38,38,0.3); }
.add-product-title { font-size: 20px; font-weight: 900; font-family: 'Space Grotesk', sans-serif; color: #0a0a0a; margin-bottom: 8px; transition: color 0.2s; }
.card-add-product:hover .add-product-title { color: #dc2626; }
.add-product-desc { font-size: 12px; color: #64748b; line-height: 1.5; max-width: 220px; margin-bottom: 12px; }
.add-product-tags { display: flex; gap: 6px; flex-wrap: wrap; justify-content: center; }
.add-product-tags span { background: #f1f5f9; border: 1px solid #e2e8f0; font-size: 10px; font-weight: 700; color: #475569; padding: 3px 8px; border-radius: 6px; }
.btn-upload-trigger { width: 100%; margin-top: 15px; }
.card-add-product:hover .btn-upload-trigger { background: #dc2626; }

/* 7. SECCIÓN TE RECOMENDAMOS */
.recommended-section { padding: 60px 0; background: #f8fafc; border-top: 1px solid #e2e8f0; border-bottom: 1px solid #e2e8f0; }
.recommended-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 30px; flex-wrap: wrap; gap: 15px; }
.recommended-badge { font-size: 11px; font-weight: 800; color: #d97706; text-transform: uppercase; letter-spacing: 1px; display: inline-flex; align-items: center; gap: 5px; }
.recommended-title { font-size: 26px; font-weight: 900; font-family: 'Space Grotesk', sans-serif; margin-top: 4px; color: #0f172a; }
.recommended-subtitle { font-size: 13px; color: #64748b; margin-top: 4px; }
.btn-shuffle { background: #ffffff; border: 1px solid #cbd5e1; padding: 8px 16px; border-radius: 10px; font-size: 12px; font-weight: 700; color: #334155; cursor: pointer; display: inline-flex; align-items: center; gap: 6px; transition: all 0.15s; }
.btn-shuffle:hover { background: #f1f5f9; color: #0f172a; border-color: #94a3b8; }

.recommended-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.rec-card { background: #ffffff; border: 1px solid #e2e8f0; border-radius: 18px; overflow: hidden; display: flex; flex-direction: column; transition: transform 0.2s, box-shadow 0.2s; }
.rec-card:hover { transform: translateY(-3px); box-shadow: 0 10px 25px -5px rgba(0,0,0,0.06); }
.rec-img-box { height: 190px; position: relative; overflow: hidden; background: #f1f5f9; }
.rec-img-box img { width: 100%; height: 100%; object-fit: cover; }
.rec-body { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.rec-name { font-size: 15px; font-weight: 800; color: #0f172a; margin-bottom: 4px; }
.rec-specs { font-size: 11px; color: #64748b; font-weight: 600; margin-bottom: 10px; }
.rec-price-row { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 12px; }
.rec-price { font-size: 18px; font-weight: 900; font-family: 'Space Grotesk', sans-serif; color: #0f172a; }
.rec-roll { font-size: 11px; color: #64748b; }
.rec-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: auto; }
.btn-rec-view { background: #f1f5f9; color: #0f172a; border: 1px solid #cbd5e1; padding: 9px; border-radius: 8px; font-size: 11px; font-weight: 700; cursor: pointer; text-align: center; text-decoration: none; }
.btn-rec-view:hover { background: #e2e8f0; }
.btn-rec-cart { background: #0f172a; color: #ffffff; border: none; padding: 9px; border-radius: 8px; font-size: 11px; font-weight: 700; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 5px; }
.btn-rec-cart:hover { background: #dc2626; }

/* 8. FAQ */
.faq { background: #ffffff; padding: 60px 0; }
.faq-list { max-width: 750px; margin: 25px auto 0; }
.faq-item { background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 12px; margin-bottom: 10px; overflow: hidden; cursor: pointer; }
.faq-q { padding: 18px 20px; font-weight: 700; font-size: 14px; display: flex; justify-content: space-between; align-items: center; }
.faq-a { padding: 0 20px 18px; display: none; color: #64748b; font-size: 13px; line-height: 1.6; border-top: 1px solid #e2e8f0; padding-top: 12px; }
.faq-item.active .faq-a { display: block; }
.faq-item.active .faq-q i { transform: rotate(180deg); color: #dc2626; }

/* 9. FOOTER */
footer { background: #0a0a0a; color: #fff; padding: 50px 0 30px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 35px; }
footer h4 { font-size: 13px; font-weight: 800; letter-spacing: 1px; margin-bottom: 12px; color: #cbd5e1; }
footer p { font-size: 13px; color: #94a3b8; line-height: 1.6; margin-bottom: 6px; }
.footer-social-links { display: flex; flex-direction: column; gap: 8px; margin-top: 8px; }
.footer-social-btn { display: flex; align-items: center; justify-content: space-between; padding: 8px 12px; background: #171717; border: 1px solid #262626; border-radius: 12px; color: #e5e5e5; text-decoration: none; transition: all 0.15s; }
.footer-social-btn:hover { background: #262626; color: #fff; }
.footer-social-btn.ig-btn:hover { border-color: rgba(225,48,108,0.6); }
.footer-social-btn.tt-btn:hover { border-color: rgba(0,242,254,0.6); }
.footer-social-btn i { font-size: 16px; margin-right: 10px; }
.footer-social-btn.ig-btn i { color: #f472b6; }
.footer-social-btn.tt-btn i { color: #22d3ee; }
.footer-social-btn div { flex: 1; display: flex; flex-direction: column; }
.footer-social-btn strong { font-size: 12px; }
.footer-social-btn small { font-size: 10px; color: #94a3b8; }
.footer-social-btn .social-tag { font-size: 10px; font-weight: 800; text-transform: uppercase; background: rgba(255,255,255,0.1); padding: 2px 8px; border-radius: 6px; }

/* 9b. BOTONES FLOTANTES: SUBIR Y BAJAR */
.floating-scroll-controls {
  position: fixed;
  right: 18px;
  bottom: 125px;
  z-index: 1500;
  display: flex;
  flex-direction: column;
  gap: 8px;
  pointer-events: auto;
}
.floating-scroll-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.92);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 20px -4px rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 15px;
  transition: all 0.2s cubic-bezier(0.2, 0.8, 0.2, 1);
  backdrop-filter: blur(4px);
}
.floating-scroll-btn:hover {
  background: #000000;
  transform: translateY(-2px);
  box-shadow: 0 14px 24px -4px rgba(0, 0, 0, 0.5);
}
.floating-scroll-btn:active {
  transform: scale(0.92);
}
@media (max-width: 640px) {
  .floating-scroll-controls {
    right: 12px;
    bottom: 110px;
    gap: 6px;
  }
  .floating-scroll-btn {
    width: 36px;
    height: 36px;
    font-size: 13px;
  }
}

/* 10. BOTÓN FLOTANTE DE WHATSAPP: SUBE Y BAJA CON LA PÁGINA */
.floating-wa-wrapper {
  position: fixed;
  right: 18px;
  bottom: 22px;
  z-index: 1500;
  pointer-events: auto;
  will-change: transform;
  transition: transform 0.15s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.floating-wa-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #10b981;
  color: #ffffff;
  padding: 10px 16px;
  border-radius: 9999px;
  text-decoration: none;
  box-shadow: 0 14px 28px -4px rgba(16, 185, 129, 0.45), 0 4px 10px rgba(0,0,0,0.1);
  border: 1px solid rgba(255,255,255,0.3);
  animation: waBobbing 3s ease-in-out infinite;
  transition: background 0.2s, transform 0.15s;
}
.floating-wa-pill:hover {
  background: #059669;
  transform: scale(1.05);
}
@keyframes waBobbing {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-7px); }
}

.wa-icon-pulse-wrapper {
  position: relative;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}
.wa-ping-ring {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #6ee7b7;
  opacity: 0.75;
  animation: pingRing 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}
.wa-ping-dot {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #10b981;
}
@keyframes pingRing {
  75%, 100% { transform: scale(2); opacity: 0; }
}

.wa-text-box { display: flex; flex-direction: column; text-align: left; }
.wa-subtext { font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.5px; color: #d1fae5; line-height: 1; }
.wa-maintext { font-size: 12px; font-weight: 800; color: #ffffff; line-height: 1.2; margin-top: 2px; }
.wa-mobile-label { display: none; font-size: 12px; font-weight: 800; }

@media (max-width: 640px) {
  .floating-wa-wrapper { right: 12px; bottom: 16px; }
  .floating-wa-pill { padding: 8px 12px; }
  .wa-text-box { display: none; }
  .wa-mobile-label { display: inline-block; }
}

/* 7b. SECCIÓN QUIÉNES SOMOS */
.about-section {
  padding: 70px 0;
  background: radial-gradient(circle at 50% 0%, #171717 0%, #0a0a0a 100%);
  color: #fff;
  border-top: 1px solid #262626;
  border-bottom: 1px solid #262626;
}
.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.35);
  color: #f87171;
  padding: 6px 14px;
  border-radius: 9999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.about-main-title {
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -0.5px;
  line-height: 1.2;
  margin-bottom: 16px;
  font-family: 'Space Grotesk', sans-serif;
}
.about-main-title span { color: #ef4444; }
.about-quote {
  font-style: italic;
  color: #cbd5e1;
  font-size: 15px;
  max-width: 720px;
  margin-bottom: 36px;
  line-height: 1.6;
}
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 36px;
  align-items: start;
}
.about-text-col p {
  color: #94a3b8;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 16px;
}
.about-text-col strong { color: #f8fafc; }
.about-text-col em { color: #f59e0b; font-style: normal; font-weight: 700; }
.about-actions { margin-top: 24px; }
.btn-about-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #10b981;
  color: #fff;
  padding: 12px 20px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  transition: background 0.2s;
}
.btn-about-wa:hover { background: #059669; }
.about-cards-col { display: flex; flex-direction: column; gap: 12px; }
.about-pillar-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #171717;
  border: 1px solid #262626;
  border-radius: 14px;
  padding: 14px 18px;
}
.pillar-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  color: #ef4444;
  flex-shrink: 0;
}
.about-pillar-card h4 { font-size: 13px; font-weight: 800; color: #fff; margin-bottom: 2px; }
.about-pillar-card p { font-size: 11px; color: #94a3b8; line-height: 1.4; margin: 0; }
.about-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 8px;
}
.about-stat-box {
  background: #171717;
  border: 1px solid #262626;
  border-radius: 12px;
  padding: 12px 8px;
  text-align: center;
}
.stat-num { display: block; font-size: 20px; font-weight: 900; color: #f59e0b; font-family: 'Space Grotesk', sans-serif; }
.stat-lbl { font-size: 9px; font-weight: 800; color: #94a3b8; text-transform: uppercase; }

@media (max-width: 860px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-main-title { font-size: 24px; }
}

/* 10b. CONTADOR FLOTANTE DE CARRITO */
.floating-cart-wrapper {
  position: fixed;
  left: 18px;
  bottom: 22px;
  z-index: 1500;
  pointer-events: auto;
}
.floating-cart-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  color: #0f172a;
  padding: 8px 16px;
  border-radius: 9999px;
  border: 1px solid #cbd5e1;
  box-shadow: 0 14px 28px -4px rgba(15, 23, 42, 0.25), 0 4px 10px rgba(0,0,0,0.06);
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}
.floating-cart-pill:hover {
  transform: scale(1.05);
  box-shadow: 0 16px 32px -4px rgba(15, 23, 42, 0.35);
}
.floating-cart-pill.has-items {
  background: #0a0a0a;
  color: #ffffff;
  border-color: rgba(239, 68, 68, 0.5);
  box-shadow: 0 14px 28px -4px rgba(239, 68, 68, 0.25), 0 4px 10px rgba(0,0,0,0.3);
}
.cart-floating-icon-box {
  position: relative;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #dc2626;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}
.floating-cart-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 9999px;
  background: #f59e0b;
  color: #0a0a0a;
  font-size: 10px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
.floating-cart-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}
.floating-cart-subtext {
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #64748b;
  line-height: 1;
}
.floating-cart-pill.has-items .floating-cart-subtext {
  color: #cbd5e1;
}
.floating-cart-maintext {
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  margin-top: 2px;
}

@media (max-width: 640px) {
  .floating-cart-wrapper { left: 12px; bottom: 16px; }
  .floating-cart-pill { padding: 8px 12px; }
}

/* 11. MODAL: CARRITO DE COMPRAS */
.cart-modal { position: fixed; top: 0; right: -100%; width: 100%; max-width: 420px; height: 100%; background: #fff; z-index: 3000; transition: 0.3s cubic-bezier(0.16, 1, 0.3, 1); display: flex; flex-direction: column; box-shadow: -10px 0 25px rgba(0,0,0,0.1); }
.cart-modal.active { right: 0; }
.cart-content { display: flex; flex-direction: column; height: 100%; }
.cart-header { background: #0a0a0a; color: #fff; padding: 20px; display: flex; justify-content: space-between; align-items: center; }
.cart-header h3 { font-size: 15px; font-weight: 800; letter-spacing: 0.5px; display: flex; align-items: center; gap: 8px; }

.cart-client-box { padding: 12px 20px; background: #f8fafc; border-bottom: 1px solid #e2e8f0; display: flex; flex-direction: column; gap: 8px; }
.cart-client-box input { padding: 9px 12px; border-radius: 8px; border: 1px solid #cbd5e1; font-size: 12px; outline: none; }

#cartItemsContainer { flex: 1; overflow-y: auto; padding: 15px 20px; }
.cart-footer { padding: 15px 20px; border-top: 1px solid #e2e8f0; background: #fff; display: flex; flex-direction: column; gap: 8px; }
.btn-wa { background: #10b981; color: #fff; width: 100%; border: none; padding: 14px; font-weight: 800; font-size: 13px; border-radius: 12px; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px; transition: background 0.2s; }
.btn-wa:hover { background: #059669; }
.btn-clear-cart { background: #450a0a; color: #fca5a5; border: 1px solid #7f1d1d; padding: 5px 10px; border-radius: 8px; font-size: 11px; font-weight: 800; cursor: pointer; display: flex; align-items: center; gap: 5px; transition: all 0.2s; }
.btn-clear-cart:hover { background: #7f1d1d; color: #ffffff; }
.btn-clear-cart-full { background: #fef2f2; color: #dc2626; border: 1px solid #fecaca; width: 100%; padding: 10px; font-weight: 800; font-size: 12px; border-radius: 10px; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 6px; transition: all 0.2s; }
.btn-clear-cart-full:hover { background: #fee2e2; border-color: #f87171; }
