
/* ==========================================================================
ESTILOS SECUNDARIOS - Below the fold
========================================================================== */

/* OVERLAY Y MENÚ LATERAL */
.overlay { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; background: rgba(0, 0, 0, 0.5); z-index: 1998; opacity: 0; visibility: hidden; pointer-events: none; transition: opacity 0.3s ease, visibility 0.3s ease; backdrop-filter: blur(2px); }
.overlay.active { opacity: 1; visibility: visible; pointer-events: auto; }
.nav-menu { position: fixed; top: 0; right: -100%; width: min(92vw, 380px); height: 100vh; background: var(--bg-primary); box-shadow: var(--shadow-lg); display: flex; flex-direction: column; overflow-y: auto; transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1); z-index: 1999; border-left: 1px solid var(--border-light); }
.nav-menu.active { right: 0; }
.nav-header { padding: 20px; border-bottom: 1px solid var(--border-light); display: flex; justify-content: space-between; align-items: center; background: var(--bg-primary); position: sticky; top: 0; z-index: 10; }
.nav-logo-container { display: flex; flex-direction: column; }
.nav-logo { font-size: 1.5rem; font-weight: 600; letter-spacing: 1px; color: #000; text-transform: uppercase; margin-bottom: 2px; }
.nav-subtitle { font-size: 0.75rem; letter-spacing: 2px; color: var(--text-tertiary); font-weight: 300; }
.close-menu-btn { background: none; border: none; font-size: 1.5rem; color: var(--accent); cursor: pointer; padding: 5px; display: flex; align-items: center; justify-content: center; transition: transform 0.2s; width: 44px; height: 44px; }
.close-menu-btn:hover { transform: scale(1.1); }
.nav-menu > ul { list-style: none; margin: 0; padding: 10px 0; overflow-y: auto; flex: 1; }
.nav-menu li { margin: 0; border-bottom: 1px solid var(--border-light); }
.nav-menu li:last-child { border-bottom: none; }
.nav-menu a, .nav-menu .submenu-toggle { display: flex; align-items: center; justify-content: space-between; width: 100%; padding: 16px 20px; color: var(--text-primary); font-size: 0.9rem; font-weight: 400; letter-spacing: 0.5px; text-transform: uppercase; cursor: pointer; background: transparent; border: 0; transition: background 0.2s; min-height: 48px; }
.nav-menu a:hover, .nav-menu .submenu-toggle:hover { background: var(--bg-secondary); }
.submenu-indicator { font-size: 0.8rem; color: var(--text-tertiary); transition: transform 0.3s; }
.submenu-toggle[aria-expanded="true"] .submenu-indicator { transform: rotate(180deg); color: var(--accent); }
.submenu { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; background: var(--bg-secondary); margin: 0; }
.submenu.active { max-height: 500px; }
.submenu a { padding: 14px 20px 14px 40px; font-size: 0.85rem; text-transform: none; font-weight: 300; color: var(--text-secondary); position: relative; }
.submenu a::before { content: "—"; position: absolute; left: 20px; color: var(--text-tertiary); font-size: 0.8rem; }
.nav-footer { padding: 20px; text-align: center; border-top: 1px solid var(--border-light); background: var(--bg-secondary); }
.nav-footer p { font-size: 0.75rem; color: var(--text-tertiary); font-weight: 300; }
.search-form { padding: 15px 20px; border-bottom: 1px solid var(--border-light); }
.search-wrapper { position: relative; }
#live-search-input { width: 100%; padding: 12px 15px 12px 40px; border: 1px solid var(--border-light); background: var(--bg-secondary); font-size: 0.9rem; transition: var(--transition-fast); font-family: var(--font-sans); border-radius: 4px; }
#live-search-input:focus { outline: none; border-color: var(--accent); background: var(--bg-primary); box-shadow: 0 0 0 3px rgba(138, 21, 56, 0.1); }
.search-icon { position: absolute; left: 15px; top: 50%; transform: translateY(-50%); color: var(--text-tertiary); font-size: 0.9rem; pointer-events: none; }
.mobile-user-area a { color: var(--accent); font-weight: 500; }

/* BREADCRUMBS */
.breadcrumb { padding: 1rem 5%; background: var(--bg-primary); border-bottom: 1px solid var(--border-light); }
.breadcrumb-container { max-width: 1400px; margin: 0 auto; }
.breadcrumb-list { display: flex; list-style: none; font-size: 0.8rem; color: var(--text-tertiary); gap: 0.5rem; margin: 0; padding: 0; }
.breadcrumb-list li:last-child { color: var(--text-primary); font-weight: 500; }
.breadcrumb-list a { color: var(--text-tertiary); }
.breadcrumb-list a:hover { color: var(--accent); }
.separator { color: var(--border-medium); }

/* PRODUCTOS GRID MEJORADO */
.collection-section { padding: 4rem 5%; max-width: 1400px; margin: 0 auto; background-color: #ffffff; text-align: center; }
.section-subtitle { font-size: clamp(1.2rem, 3vw, 1.8rem); font-weight: 300; text-transform: uppercase; letter-spacing: 2px; color: #000; margin-bottom: 1rem; text-align: center; }
.section-info { font-size: 0.9rem; color: #666; font-weight: 300; text-align: center; margin-bottom: 3rem; }
.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; margin: 3rem 0; }
.product-card { text-decoration: none; color: #222; display: block; transition: transform 0.3s ease, box-shadow 0.3s ease; border-radius: 8px; overflow: hidden; }
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.product-image-container { position: relative; width: 100%; aspect-ratio: 2 / 3; background-color: #f8f8f8; overflow: hidden; border-radius: 8px; }
.product-image-container img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.product-card:hover .product-image-container img { transform: scale(1.05); }
.product-card-title { font-size: 0.9rem; font-weight: 500; margin: 1rem 0 0.5rem; letter-spacing: 0.5px; color: #333; }
.product-card-price { font-size: 1.1rem; font-weight: 700; color: var(--accent); margin: 0; }
.product-card-price small { font-size: 0.75rem; font-weight: 400; color: #555; margin-left: 2px; }

/* BADGES DE STOCK */
.stock-badge { position: absolute; bottom: 12px; left: 12px; background-color: rgba(255, 255, 255, 0.95); color: #000; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.3px; padding: 6px 10px; border-radius: 4px; backdrop-filter: blur(4px); display: flex; align-items: center; gap: 5px; box-shadow: 0 2px 8px rgba(0,0,0,0.1); }
.stock-badge.urgent { background-color: var(--accent); color: white; animation: pulse-badge 2s infinite; }
.stock-badge.low { color: #d97706; }
.stock-badge.new { background-color: #000; color: white; }
.stock-badge.bestseller { background-color: #ffc107; color: #000; }
@keyframes pulse-badge { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.05); } }

.collection-footer { text-align: center; margin-top: 3rem; padding-top: 2rem; border-top: 1px solid #eee; }
.cta-secondary { display: inline-flex; align-items: center; gap: 0.5rem; color: #000; text-decoration: none; font-weight: 500; padding: 1rem 2rem; border: 1px solid #000; transition: all 0.3s; }
.cta-secondary:hover { background: #000; color: #fff; }

/* SECCIÓN VALOR */
.value-proposition { background: var(--bg-secondary); }
.value-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.value-item { text-align: center; padding: 2rem 1rem; }
.value-icon { font-size: 3rem; margin-bottom: 1rem; display: block; }
.value-item h3 { font-size: 1rem; font-weight: 600; margin-bottom: 0.5rem; text-transform: uppercase; letter-spacing: 1px; }
.value-item p { font-size: 0.9rem; color: #666; line-height: 1.6; }

/* MARCAS */
.brands-section { padding: 4rem 5%; max-width: 1400px; margin: 0 auto; text-align: center; background-color: #ffffff; }
.brands-grid { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 3rem; margin-top: 3rem; }
.brands-grid img { max-width: 120px; max-height: 50px; width: auto; height: auto; opacity: 0.6; filter: grayscale(1); transition: all 0.3s ease; }
.brands-grid img:hover { opacity: 1; filter: grayscale(0); }

/* TESTIMONIOS */
.testimonials-section { padding: 5rem 5%; max-width: 1200px; margin: 0 auto; background-color: #ffffff; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem; margin-top: 3rem; }
.testimonial-card { padding: 2rem; border: 1px solid #eee; border-radius: 8px; text-align: center; transition: box-shadow 0.3s; }
.testimonial-card:hover { box-shadow: var(--shadow-md); }
.testimonial-stars { color: #ffc107; font-size: 0.9rem; margin-bottom: 1rem; letter-spacing: 2px; }
.testimonial-text { font-size: 1rem; font-weight: 300; line-height: 1.6; color: #333; margin-bottom: 1.5rem; font-style: italic; }
.testimonial-author { font-size: 0.9rem; font-weight: 500; color: #000; font-style: normal; }

/* TECNOLOGÍA */
.technology-section { padding: 5rem 5%; max-width: 1200px; margin: 0 auto; background-color: #ffffff; }
.technology-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.technology-tag { display: inline-block; font-size: 0.75rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); margin-bottom: 1rem; border-bottom: 2px solid var(--accent); padding-bottom: 0.25rem; }
.technology-title { font-size: clamp(1.5rem, 4vw, 2.2rem); font-weight: 300; line-height: 1.2; margin-bottom: 1.5rem; color: #000; }
.technology-title em { font-weight: 700; font-style: normal; color: var(--accent); }
.technology-text { font-size: 1rem; font-weight: 300; line-height: 1.8; color: #555; margin-bottom: 2rem; max-width: 450px; }
.technology-link { display: inline-flex; align-items: center; gap: 0.5rem; color: #000; text-decoration: none; font-weight: 500; border-bottom: 2px solid #000; padding-bottom: 2px; transition: gap 0.3s; }
.technology-link:hover { gap: 0.8rem; color: var(--accent); border-color: var(--accent); }
.technology-image img { width: 100%; height: auto; display: block; border-radius: 8px; }

/* CTA FINAL */
.final-cta { padding: 6rem 5%; background-color: #ffffff; border-top: 1px solid #eee; border-bottom: 1px solid #eee; text-align: center; }
.cta-container { max-width: 800px; margin: 0 auto; }
.cta-title { font-size: clamp(1.5rem, 4vw, 2.5rem); font-weight: 300; margin-bottom: 2rem; color: #000; line-height: 1.3; }
.cta-zara { display: inline-block; padding: 1.2rem 3rem; border: 2px solid #000; background: #000; color: #fff; text-transform: uppercase; letter-spacing: 2px; font-size: 1rem; font-weight: 600; text-decoration: none; transition: all 0.3s ease; border-radius: 4px; }
.cta-zara:hover { background: transparent; color: #000; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.15); }
.cta-guarantee { margin-top: 2rem; font-size: 0.9rem; color: #666; display: flex; align-items: center; justify-content: center; gap: 0.5rem; }

/* FAQ MEJORADO */
.home-faq { max-width: 820px; margin: 0 auto; padding: 100px 20px; }
.home-faq h2 { font-weight: 300; font-size: 28px; margin-bottom: 60px; text-align: center; letter-spacing: 0.5px; }
.faq-item { padding: 1.5rem 0; border-bottom: 1px solid #eaeaea; }
.faq-item summary { font-weight: 600; font-size: 1.1rem; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq-item summary::after { content: '+'; font-size: 1.5rem; color: var(--accent); transition: transform 0.3s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { font-size: 1rem; line-height: 1.8; color: #555; margin-top: 1rem; padding-left: 1rem; border-left: 3px solid var(--accent); }
.faq-item a { text-decoration: underline; color: var(--accent); font-weight: 500; }

/* SEO */
.seo-section { padding: 5rem 5%; background: #ffffff; }
.seo-container { max-width: 900px; margin: 0 auto; }
.seo-title { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 300; margin-bottom: 2rem; color: #000; }
.seo-subtitle { font-size: 1.2rem; font-weight: 600; margin-top: 2rem; margin-bottom: 1rem; color: #000; }
.seo-section p { font-size: 1rem; font-weight: 300; line-height: 1.8; color: #555; margin-bottom: 1.5rem; }

/* FOOTER */
.footer { background-color: #ffffff; border-top: 1px solid #eee; padding: 4rem 5% 2rem; font-family: 'Montserrat', sans-serif; }
.footer-container { max-width: 1200px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.5fr; gap: 3rem; margin-bottom: 3rem; }
.footer-col h3 { font-size: 0.85rem; font-weight: 700; letter-spacing: 1px; margin: 0 0 1.5rem 0; color: #000; text-transform: uppercase; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 0.75rem; }
.footer-col a { color: #666; text-decoration: none; font-size: 0.9rem; font-weight: 400; transition: color 0.2s; display: inline-flex; align-items: center; gap: 0.5rem; }
.footer-col a:hover { color: var(--accent); }
.footer-logo { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.footer-logo img { width: 48px; height: 48px; display: block; }
.footer-brand-name { font-size: 1.2rem; font-weight: 700; letter-spacing: 0.5px; color: #000; }
.footer-description { font-size: 0.9rem; font-weight: 300; line-height: 1.6; color: #666; margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: 1rem; }
.footer-social a { color: #999; font-size: 1.3rem; transition: color 0.2s; width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; border-radius: 50%; }
.footer-social a:hover { color: var(--accent); background: var(--accent-light); }
.footer-contact i { width: 20px; color: #999; font-size: 1rem; }
.footer-wa { color: #25d366 !important; font-weight: 600 !important; }
.footer-wa:hover { color: #128C7E !important; }
.footer-hours { display: flex; flex-direction: column; font-size: 0.85rem; color: #666; font-weight: 300; margin-top: 0.5rem; gap: 0.25rem; }
.footer-club { margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid #eee; }
.footer-club h3 { margin-bottom: 0.5rem; }
.footer-club p { font-size: 0.85rem; color: #666; font-weight: 300; margin-bottom: 1rem; line-height: 1.5; }
.footer-club-btn { display: inline-block; background-color: transparent; color: #000; border: 1px solid #000; padding: 0.75rem 1.5rem; font-size: 0.85rem; font-weight: 500; text-decoration: none; transition: all 0.3s; text-transform: uppercase; letter-spacing: 1px; }
.footer-club-btn:hover { background-color: #000; color: #fff; }
.footer-middle { display: flex; justify-content: space-between; align-items: center; padding: 1.5rem 0; border-top: 1px solid #eee; border-bottom: 1px solid #eee; margin-bottom: 1.5rem; flex-wrap: wrap; gap: 1rem; }
.footer-location-link { color: #666; text-decoration: none; font-size: 0.9rem; font-weight: 400; display: flex; align-items: center; gap: 0.5rem; }
.footer-location-link:hover { color: var(--accent); }
.footer-payment { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; font-size: 0.85rem; color: #666; }
.footer-payment i { font-size: 1.8rem; color: #999; transition: color 0.2s; }
.footer-payment i:hover { color: #000; }
.footer-payment img { height: 24px; width: auto; opacity: 0.8; transition: opacity 0.2s; }
.footer-payment img:hover { opacity: 1; }
.footer-bottom { text-align: center; padding-top: 1.5rem; }
.footer-bottom p { font-size: 0.8rem; color: #999; font-weight: 300; margin: 0.25rem 0; }
.footer-credit { font-size: 0.75rem; opacity: 0.7; }

/* BOTONES FLOTANTES */
  .tallas-float{
position:fixed;
left:24px;
bottom:18px;
width:46px;
height:46px;
background:#000;
color:#fff;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
box-shadow:0 8px 24px rgba(0,0,0,.15);
transition:all .25s ease;
z-index:1000;
}

.tallas-float:hover{
transform:translateY(-3px);
box-shadow:0 12px 30px rgba(0,0,0,.2);
}

.tallas-float i{
font-size:18px;
}
    .whatsapp-float{
position:fixed;
right:24px;
bottom:18px;
width:46px;
height:46px;
background:#111;
color:#fff;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
box-shadow:0 10px 30px rgba(0,0,0,.18);
transition:all .25s ease;
z-index:1000;
}

.whatsapp-float:hover{
transform:translateY(-4px);
box-shadow:0 14px 40px rgba(0,0,0,.25);
}

.whatsapp-float i{
font-size:22px;
}
/* UTILIDADES */
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

/* RESPONSIVE */
@media (max-width: 992px) {
    .products-grid { grid-template-columns: repeat(3, 1fr); }
    .value-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .technology-grid { grid-template-columns: 1fr; gap: 2rem; }
    .technology-content { order: 2; }
    .technology-image { order: 1; }
}

@media (max-width: 768px) {
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .value-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-middle { flex-direction: column; align-items: flex-start; }
    .brands-grid { gap: 2rem; }
    .collection-section { padding: 3rem 4%; }
}

@media (max-width: 480px) {
    .products-grid { gap: 0.75rem; }
    .product-card-title { font-size: 0.8rem; }
    .product-card-price { font-size: 1rem; }
    .hero-cta { padding: 1rem 2rem; font-size: 0.85rem; }
}

