/* ==========================================================================
   1. VARIABLES DE DISEÑO
   ========================================================================== */
:root {
    --color-fondo: #0a0e17; 
    --color-texto: #f0f4f8; 
    --color-acento: #38bdf8; 
    --color-tarjeta: #131a28; 
    --color-vinted: #008282;
    --color-vinted-hover: #005f5f;
    --fuente-principal: 'Outfit', sans-serif;
}

/* ==========================================================================
   HONEYPOT ANTI-SPAM (campo oculto para bots)
   ========================================================================== */
.hp-field {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    height: 0;
    width: 0;
    z-index: -1;
    overflow: hidden;
}

/* ==========================================================================
   2. RESETEO GLOBAL Y NORMALIZACIÓN
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent; 
}

html, body {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* Compensa la altura de la navbar sticky al hacer scroll a una sección */
#catalogo, #nosotros, #faq, #contacto-form, #form-newsletter {
    scroll-margin-top: 90px;
}

body {
    font-family: var(--fuente-principal);
    background-color: var(--color-fondo);
    color: var(--color-texto);
    line-height: 1.6;
}

/* ==========================================================================
   3. HEADER & NAVBAR
   ========================================================================== */
#menu-principal {
    position: sticky; 
    top: 0;           
    background-color: rgba(10, 14, 23, 0.95); 
    backdrop-filter: blur(5px); 
    z-index: 1000; 
    box-shadow: 0 2px 10px rgba(0,0,0,0.5); 
    padding: 15px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo img {
    height: 55px;
    width: auto;
    display: block;
    border-radius: 8px;
    transition: opacity 0.2s ease;
}

.logo:hover img {
    opacity: 0.85;
}

.nav-links {
    display: flex;
}

.nav-links a {
    text-decoration: none;
    color: var(--color-texto);
    margin-left: 20px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.nav-activo {
    color: var(--color-acento);
}

#menu-principal.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.menu-toggle, 
.menu-icon {
    display: none;
}

/* ==========================================================================
   4. HERO SECTION (BANNER Y TEXTO HUECO)
   ========================================================================== */
.hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
    background: radial-gradient(circle at center, #131a28 0%, #0a0e17 100%);
    position: relative;
    z-index: 20;
}

.hero h1 {
    font-weight: 900;
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    margin-bottom: 15px;
    letter-spacing: -2px;
    color: var(--color-acento);
    word-break: break-word;
}

.texto-hueco {
    color: transparent;
    -webkit-text-stroke: 2px var(--color-acento);
    filter: drop-shadow(0 0 15px rgba(56, 189, 248, 0.4));
}

.hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 30px auto;
    color: #a0aec0;
}

.btn-principal {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--color-acento);
    color: #000;
    text-decoration: none;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 30px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: var(--fuente-principal);
}

.btn-principal:hover {
    background-color: #fff;
    box-shadow: 0 0 15px var(--color-acento);
    transform: translateY(-2px);
}

.ancho-completo {
    width: 100%;
    margin-top: 10px;
}

/* ==========================================================================
   5. MARQUEE (CINTA ANIMADA)
   ========================================================================== */
.cinta-texto {
    background-color: var(--color-acento);
    color: #000;
    padding: 15px 0;
    overflow: hidden;
    white-space: nowrap;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1.2rem;
    width: 110%;
    position: relative;
    left: -5%;
    transform: rotate(-1.5deg);
    margin-top: 40px;
    margin-bottom: 80px;
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.4);
    z-index: 10;
}

.cinta-contenido {
    display: flex;
    width: max-content;
    animation: moverCinta 25s linear infinite;
}

@keyframes moverCinta {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); }
}

/* ==========================================================================
   6. CATÁLOGO Y PRODUCTOS
   ========================================================================== */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 15;
}

.titulo-seccion {
    font-weight: 900;
    font-size: clamp(2rem, 5vw, 2.5rem);
    text-align: center;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.filtros {
    text-align: center;
    margin-bottom: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.btn-filtro {
    background-color: transparent;
    color: var(--color-texto);
    border: 2px solid var(--color-acento);
    padding: 8px 20px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 700;
    transition: all 0.3s;
    font-family: var(--fuente-principal);
}

.btn-filtro:hover, 
.btn-filtro.activo {
    background-color: var(--color-acento);
    color: #000;
}

.catalogo-ropa {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.prenda {
    background: var(--color-tarjeta);
    border: 1px solid #1e293b;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.prenda:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(56, 189, 248, 0.1);
}

.imagen-prenda {
    width: 100%;
    height: 350px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 15px;
    position: relative;
    cursor: zoom-in;
}

.imagen-prenda img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.prenda:hover .imagen-prenda img {
    transform: scale(1.1);
}

.prenda-info {
    text-align: center;
}

.prenda-info h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    font-weight: 700;
}

.precio {
    font-weight: 900;
    color: var(--color-acento);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.btn-vinted {
    display: block;
    background-color: var(--color-vinted);
    color: white;
    text-decoration: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: 700;
    transition: background-color 0.3s;
}

.btn-vinted:hover {
    background-color: var(--color-vinted-hover);
}

/* ==========================================================================
   7. ANIMACIONES SCROLL REVEAL
   ========================================================================== */
.oculto {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.mostrar {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   8. FAQ / PREGUNTAS FRECUENTES (Acordeón)
   ========================================================================== */
.seccion-faq {
    max-width: 800px;
    margin: 80px auto 0 auto;
    padding: 0 20px;
}

.acordeon {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.item-faq {
    background: var(--color-tarjeta);
    border: 1px solid #1e293b;
    border-radius: 10px;
    overflow: hidden;
}

.pregunta-faq {
    width: 100%;
    text-align: left;
    padding: 20px;
    background: transparent;
    border: none;
    color: var(--color-texto);
    font-family: var(--fuente-principal);
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.pregunta-faq:hover {
    background: rgba(56, 189, 248, 0.05);
}

.pregunta-faq i {
    color: var(--color-acento);
    transition: transform 0.4s ease;
}

.respuesta-faq {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    background: #0a0e17;
}

.respuesta-faq p {
    padding: 0 20px 20px 20px;
    color: #a0aec0;
}

/* ==========================================================================
   9. FORMULARIO DE CONTACTO
   ========================================================================== */
.seccion-contacto {
    max-width: 800px;
    margin: 80px auto 0 auto;
    padding: 0 20px;
}

.contacto-contenedor {
    background: var(--color-tarjeta);
    border: 1px solid #1e293b;
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.contacto-contenedor p {
    color: #a0aec0;
    margin-bottom: 30px;
}

.formulario-estilo {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: left;
}

.grupo-input {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.grupo-input label {
    font-weight: 700;
    color: var(--color-texto);
    font-size: 0.95rem;
}

.grupo-input input, 
.grupo-input textarea {
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #2d3748;
    background-color: #0a0e17;
    color: var(--color-texto);
    font-family: var(--fuente-principal);
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s;
}

.grupo-input input:focus, 
.grupo-input textarea:focus {
    border-color: var(--color-acento);
}

/* ==========================================================================
   10. FOOTER
   ========================================================================== */
.footer-profesional {
    background-color: #05070a;
    padding: 60px 20px 20px 20px;
    margin-top: 80px;
    border-top: 1px solid #1e293b;
}

.footer-contenedor {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-columna h3 {
    color: var(--color-texto);
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 900;
    text-transform: uppercase;
}

.footer-columna p {
    color: #a0aec0;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.footer-columna.links a {
    display: block;
    color: #a0aec0;
    text-decoration: none;
    margin-bottom: 10px;
    transition: all 0.3s;
}

.footer-columna.links a:hover {
    color: var(--color-acento);
    padding-left: 5px;
}

.redes-iconos {
    display: flex;
    gap: 15px;
}

.redes-iconos a {
    color: #a0aec0;
    font-size: 1.5rem;
    transition: all 0.3s;
}

.redes-iconos a:hover {
    color: var(--color-acento);
    transform: translateY(-3px);
}

#form-newsletter {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#form-newsletter input {
    padding: 10px 15px;
    border-radius: 5px;
    border: 1px solid #1e293b;
    background-color: var(--color-tarjeta);
    color: var(--color-texto);
    font-family: var(--fuente-principal);
    outline: none;
    font-size: 16px;
}

#form-newsletter input:focus {
    border-color: var(--color-acento);
}

.btn-news {
    padding: 10px;
    background-color: var(--color-acento);
    color: #000;
    border: none;
    border-radius: 5px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    font-family: var(--fuente-principal);
    text-transform: uppercase;
}

.btn-news:hover {
    background-color: #fff;
    box-shadow: 0 0 10px var(--color-acento);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #1e293b;
    color: #64748b;
    font-size: 0.85rem;
}

/* ==========================================================================
   11. RESPONSIVE DESIGN (Móviles)
   ========================================================================== */
@media (max-width: 768px) {
    #menu-principal {
        padding: 15px 20px;
    }
    
    .menu-icon {
        display: block;
        font-size: 1.8rem;
        cursor: pointer;
        color: var(--color-texto);
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #0a0e17;
        flex-direction: column;
        text-align: center;
        border-top: 1px solid #1e293b;
        box-shadow: 0 10px 15px rgba(0,0,0,0.5);
    }
    
    .nav-links a {
        padding: 15px 0;
        margin: 0;
        border-bottom: 1px solid #1e293b;
    }
    
    .menu-toggle:checked ~ .nav-links {
        display: flex;
    }
    
    .hero {
        min-height: 50vh;
        padding-bottom: 80px;
    }
    
    .cinta-texto {
        transform: rotate(-2.5deg);
        margin-top: 20px;
        margin-bottom: 50px;
    }
    
    .contacto-contenedor {
        padding: 25px 15px;
    }
}

/* ==========================================================================
   12. SCROLLBAR & SELECCIÓN DE TEXTO
   ========================================================================== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--color-fondo);
}

::-webkit-scrollbar-thumb {
    background: #1e293b;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-acento);
}

::selection {
    background-color: var(--color-acento);
    color: #000;
}

::-moz-selection {
    background-color: var(--color-acento);
    color: #000;
}

/* ==========================================================================
   13. PANTALLA DE CARGA (PRELOADER)
   ========================================================================== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--color-fondo);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader-contenido {
    text-align: center;
}

.preloader-contenido img {
    height: 80px;
    border-radius: 10px;
    margin-bottom: 20px;
    animation: latido 1.5s infinite alternate;
}

.loader-linea {
    width: 100px;
    height: 4px;
    background-color: #1e293b;
    border-radius: 2px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.loader-linea::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 40px;
    background-color: var(--color-acento);
    border-radius: 2px;
    animation: cargar 1.5s infinite ease-in-out;
}

@keyframes latido {
    0% { 
        transform: scale(1); 
        opacity: 0.8; 
    }
    100% { 
        transform: scale(1.05); 
        opacity: 1; 
    }
}

@keyframes cargar {
    0% { 
        left: -40px; 
    }
    100% { 
        left: 100%; 
    }
}

/* ==========================================================================
   14. LIGHTBOX (GALERÍA DE FOTOS PANTALLA COMPLETA)
   ========================================================================== */
.lightbox-contenedor {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(10, 14, 23, 0.95);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.lightbox-contenedor.activo {
    opacity: 1;
    pointer-events: all;
}

.lightbox-contenedor img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
    box-shadow: 0 0 40px rgba(0,0,0,0.5);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.lightbox-contenedor.activo img {
    transform: scale(1);
}

.lightbox-cerrar {
    position: absolute;
    top: 30px;
    right: 40px;
    color: var(--color-texto);
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.lightbox-cerrar:hover {
    color: var(--color-acento);
}

/* ==========================================================================
   NEWSLETTER - ESTILO EXPANDIDO
   ========================================================================== */
.form-diseno {
    margin-top: 20px;
    width: 100%;
}

.input-wrapper {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

#email-news {
    width: 100%;
    padding: 15px;
    background-color: #0f172a;
    border: 1px solid #1e293b;
    border-radius: 8px;
    color: #ffffff;
    font-family: var(--fuente-principal);
    font-size: 16px;
    outline: none;
    transition: all 0.3s ease;
}

#email-news:focus {
    border-color: var(--color-acento);
    box-shadow: 0 0 15px rgba(56, 189, 248, 0.15);
}

.btn-news {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
    background-color: var(--color-acento);
    color: #000000;
    border: none;
    border-radius: 8px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-news:hover {
    background-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(56, 189, 248, 0.3);
}

.btn-news:active {
    transform: translateY(0);
}

/* Animación de carga para el botón */
.loader-news {
    display: none;
    width: 22px;
    height: 22px;
    border: 3px solid rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    border-top-color: #000000;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Estado de carga activo */
.loading .txt-btn {
    display: none;
}

.loading .loader-news {
    display: inline-block;
}

/* Mensajes de feedback */
.status-msg {
    margin-top: 15px;
    font-size: 0.9rem;
    font-weight: 700;
    min-height: 24px;
    text-align: center;
    transition: opacity 0.3s ease;
}

.status-msg.success {
    color: #10b981;
}

.status-msg.error {
    color: #ef4444;
}

/* ==========================================================================
   SECCIÓN CUENTA ATRÁS DROP
   ========================================================================== */
.seccion-drop {
    padding: 100px 24px;
    text-align: center;
    background: linear-gradient(180deg, var(--color-fondo) 0%, #0d1422 100%);
    position: relative;
    overflow: hidden;
}

.seccion-drop::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.drop-contenedor {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.drop-tag {
    color: var(--color-acento);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.drop-titulo {
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 16px;
    color: var(--color-texto);
}

.drop-subtitulo {
    color: #94a3b8;
    font-size: 1rem;
    margin-bottom: 48px;
    line-height: 1.6;
}

.countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.countdown-bloque {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--color-tarjeta);
    border: 1px solid #1e293b;
    border-radius: 12px;
    padding: 20px 24px;
    min-width: 90px;
}

.countdown-num {
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 900;
    color: var(--color-acento);
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.countdown-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #475569;
    margin-top: 6px;
}

.countdown-separador {
    font-size: 2rem;
    font-weight: 900;
    color: #1e293b;
    margin-bottom: 20px;
}

@media (max-width: 480px) {
    .countdown-bloque {
        min-width: 70px;
        padding: 16px 12px;
    }

    .countdown-separador {
        font-size: 1.5rem;
    }
}

/* ==========================================================================
   PLACEHOLDER IMÁGENES CATÁLOGO
   ========================================================================== */
.placeholder-img {
    width: 100%;
    aspect-ratio: 3 / 4;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-radius: 8px;
    border: 1px dashed #1e3a5f;
}

.placeholder-img i {
    font-size: 3rem;
    color: #1e3a5f;
}

.placeholder-img span {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #334155;
}

/* ==========================================================================
   15. POPUP NEWSLETTER
   ========================================================================== */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(6px);
    z-index: 9000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.popup-overlay.activo {
    opacity: 1;
    pointer-events: all;
}

.popup-contenido {
    background-color: var(--color-tarjeta);
    border: 1px solid #1e293b;
    border-radius: 16px;
    padding: 40px 36px;
    max-width: 420px;
    width: 90%;
    position: relative;
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.popup-overlay.activo .popup-contenido {
    transform: translateY(0);
}

.popup-cerrar {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    color: #666;
    font-size: 1.2rem;
    cursor: pointer;
    transition: color 0.2s ease;
    line-height: 1;
}

.popup-cerrar:hover {
    color: var(--color-texto);
}

.popup-tag {
    color: var(--color-acento);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.popup-contenido h2 {
    font-size: 1.8rem;
    color: var(--color-texto);
    margin-bottom: 10px;
    line-height: 1.2;
}

.popup-subtitulo {
    color: #94a3b8;
    font-size: 0.95rem;
    margin-bottom: 4px;
    line-height: 1.5;
}

.popup-legal {
    color: #475569;
    font-size: 0.78rem;
    margin-top: 14px;
}

#email-popup {
    width: 100%;
    padding: 15px;
    background-color: #0f172a;
    border: 1px solid #1e293b;
    border-radius: 8px;
    color: #ffffff;
    font-family: var(--fuente-principal);
    font-size: 16px;
    outline: none;
    transition: all 0.3s ease;
}

#email-popup:focus {
    border-color: var(--color-acento);
    box-shadow: 0 0 15px rgba(56, 189, 248, 0.15);
}

/* ==========================================================================
   16. BANNER COOKIES
   ========================================================================== */
.banner-cookies {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #0f172a;
    border-top: 1px solid #1e293b;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    z-index: 8000;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    flex-wrap: wrap;
}

.banner-cookies.activo {
    transform: translateY(0);
}

.banner-cookies p {
    color: #94a3b8;
    font-size: 0.85rem;
    line-height: 1.5;
    flex: 1;
    min-width: 200px;
}

.banner-cookies a {
    color: var(--color-acento);
}

.cookies-botones {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.btn-cookies-aceptar {
    padding: 10px 20px;
    background-color: var(--color-acento);
    color: #000;
    border: none;
    border-radius: 6px;
    font-family: var(--fuente-principal);
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.btn-cookies-aceptar:hover {
    background-color: #ffffff;
}

.btn-cookies-rechazar {
    padding: 10px 20px;
    background-color: transparent;
    color: #94a3b8;
    border: 1px solid #1e293b;
    border-radius: 6px;
    font-family: var(--fuente-principal);
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-cookies-rechazar:hover {
    border-color: #94a3b8;
    color: var(--color-texto);
}

@media (max-width: 768px) {
    .popup-contenido {
        padding: 32px 24px;
    }

    .popup-contenido h2 {
        font-size: 1.5rem;
    }

    .banner-cookies {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 16px;
    }

    .cookies-botones {
        width: 100%;
    }

    .btn-cookies-aceptar,
    .btn-cookies-rechazar {
        flex: 1;
        text-align: center;
    }
}

/* ==========================================================================
   17. CÓMO FUNCIONA
   ========================================================================== */
.seccion-como-funciona {
    padding: 60px 20px;
    background: linear-gradient(180deg, #0d1422 0%, var(--color-fondo) 100%);
    border-bottom: 1px solid #1e293b;
    margin-bottom: 80px;
}

.como-contenedor {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.como-paso {
    flex: 1;
    min-width: 180px;
    max-width: 240px;
    text-align: center;
    padding: 32px 20px;
    background: var(--color-tarjeta);
    border: 1px solid #1e293b;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.como-paso:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(56, 189, 248, 0.08);
}

.como-icono {
    width: 56px;
    height: 56px;
    background: rgba(56, 189, 248, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px auto;
}

.como-icono i {
    font-size: 1.4rem;
    color: var(--color-acento);
}

.como-paso h3 {
    font-size: 1rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-texto);
    margin-bottom: 10px;
}

.como-paso p {
    font-size: 0.88rem;
    color: #94a3b8;
    line-height: 1.6;
}

.como-flecha {
    color: #1e293b;
    font-size: 1.5rem;
    flex-shrink: 0;
}

@media (max-width: 640px) {
    .como-flecha {
        display: none;
    }

    .como-contenedor {
        gap: 12px;
    }

    .como-paso {
        min-width: 140px;
        padding: 24px 16px;
    }
}

/* ==========================================================================
   18. BADGE VENDIDO
   Para marcar una prenda como agotada, añade la clase "vendida" al <article>:
   <article class="prenda oculto vendida" data-categoria="...">
   ========================================================================== */
.prenda.vendida {
    opacity: 0.6;
    pointer-events: none;
}

.prenda.vendida .imagen-prenda {
    position: relative;
}

.prenda.vendida .imagen-prenda::after {
    content: 'VENDIDA';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-15deg);
    background-color: rgba(239, 68, 68, 0.9);
    color: #fff;
    font-weight: 900;
    font-size: 1.4rem;
    letter-spacing: 3px;
    padding: 10px 24px;
    border-radius: 4px;
    pointer-events: none;
}

.prenda.vendida .btn-vinted {
    background-color: #1e293b;
    cursor: not-allowed;
}

/* ==========================================================================
   19. CTA VER TODO EN VINTED
   ========================================================================== */
.catalogo-cta {
    text-align: center;
    margin-top: 48px;
    padding-bottom: 20px;
}

/* ==========================================================================
   20. ANIMACIÓN ESCALONADA PRENDAS
   Cada prenda aparece con un pequeño delay respecto a la anterior
   ========================================================================== */
.catalogo-ropa .prenda:nth-child(1) { transition-delay: 0s; }
.catalogo-ropa .prenda:nth-child(2) { transition-delay: 0.12s; }
.catalogo-ropa .prenda:nth-child(3) { transition-delay: 0.24s; }
.catalogo-ropa .prenda:nth-child(4) { transition-delay: 0.36s; }
.catalogo-ropa .prenda:nth-child(5) { transition-delay: 0.48s; }
.catalogo-ropa .prenda:nth-child(6) { transition-delay: 0.60s; }

/* ==========================================================================
   21. BADGES TALLA Y ESTADO
   Uso: <div class="prenda-badges"><span class="badge-talla">M</span><span class="badge-estado">Muy bueno</span></div>
   ========================================================================== */
.prenda-badges {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.badge-talla,
.badge-estado {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 20px;
    line-height: 1.4;
}

.badge-talla {
    background-color: rgba(56, 189, 248, 0.12);
    color: var(--color-acento);
    border: 1px solid rgba(56, 189, 248, 0.3);
}

.badge-estado {
    background-color: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.25);
}

/* ==========================================================================
   22. QUIÉNES SOMOS
   ========================================================================== */
.seccion-nosotros {
    padding: 100px 20px;
    background: linear-gradient(180deg, var(--color-fondo) 0%, #0d1422 50%, var(--color-fondo) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.seccion-nosotros::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.nosotros-contenedor {
    max-width: 720px;
    margin: 0 auto;
    position: relative;
}

.nosotros-tag {
    color: var(--color-acento);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.seccion-nosotros h2 {
    font-size: clamp(2rem, 6vw, 3.2rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 32px;
    color: var(--color-texto);
}

.nosotros-texto {
    color: #94a3b8;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: left;
}

.nosotros-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-top: 56px;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.stat-num {
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-weight: 900;
    color: var(--color-acento);
    line-height: 1;
}

.stat-label {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #475569;
}

@media (max-width: 600px) {
    .nosotros-stats {
        gap: 32px;
    }

    .nosotros-texto {
        font-size: 0.95rem;
    }
}