/*
 Theme Name:   Uniko Generate Child
 Description:  Child Theme para UNIKO - Edición Puro Código (GP)
 Author:       Uniko Dev
 Template:     generatepress
 Version:      1.0.0
*/

/* --- VARIABLES UNIKO --- */
:root {
    --neon-amarillo: #DFFF00;
    --neon: #DFFF00;
    --neon-azul: #00F3FF;
    --blanco-roto: #cfcbca;
    --negro: #000000;
    --gris: #1A1A1A;
    --oswald: 'Oswald', sans-serif;
    --inter: 'Inter', sans-serif;
}

/* --- RESET & BASE --- */
body {
    background-color: var(--negro);
    color: #ffffff;
    font-family: var(--inter);
    overflow-x: hidden;
}

/* --- FONDO DE MARCA PARA TODO WOOCOMMERCE --- */
body.woocommerce,
body.woocommerce-page {
    background-color: var(--negro);
    background-image: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)),
        url('imgs/Uniko-by-Nauzet-Trujillo-background.webp');
    background-attachment: fixed;
    background-size: 100% auto;
    background-position: center center;
    background-repeat: no-repeat;
}

body.woocommerce-page .site-content,
body.woocommerce-page .inside-article,
body.woocommerce .site-content,
body.woocommerce .inside-article {
    background-color: transparent !important;
}

/* --- UNIFICACIÓN RADICAL 1400PX (Estructura Base) --- */
body .grid-container,
body .site-content,
body .inside-header,
body .uniko-header-container,
body .uniko-footer-container,
body .uniko-category-grid {
    max-width: 1400px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    width: 100%;
}

.site-main {
    padding: 0 !important;
}

/* --- EL HEADER --- */
.uniko-main-header {
    background-color: var(--negro);
    width: 100%;
}

.uniko-header-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
}

.uniko-contact-info {
    display: flex;
    gap: 20px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
}

.uniko-contact-info a {
    color: var(--neon-amarillo) !important;
    text-decoration: none;
    transition: 0.3s;
}

.uniko-contact-info a:hover {
    color: #ffffff;
    text-shadow: 0 0 10px var(--neon-amarillo);
}

.uniko-header-container {
    padding: 1px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* --- LOGO UNIKO CON FOCO --- */
.uniko-logo {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 0;
    overflow: visible !important;
}

.uniko-logo::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 750px;
    height: 200px;
    background: radial-gradient(ellipse at center,
            rgba(235, 235, 235, 0.85) 0%,
            rgba(207, 203, 202, 0.4) 50%,
            rgba(0, 0, 0, 0) 95%);
    border-radius: 50%;
    filter: blur(35px);
    z-index: 1;
}

.uniko-logo img {
    position: relative;
    z-index: 2;
    height: 150px;
    width: auto;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.5));
    transition: 0.3s;
}

.uniko-logo img:hover {
    filter: drop-shadow(0px 0px 12px #DFFF00);
}

/* --- NAVEGACIÓN & TOOLS --- */
.uniko-nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.uniko-nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    transition: 0.3s;
}

.uniko-nav a:hover {
    color: var(--neon-amarillo);
}

.uniko-nav-tools-wrapper {
    display: flex;
    align-items: center;
    gap: 35px;
}

.uniko-header-tools {
    display: flex;
    align-items: center;
    gap: 22px;
}

.uniko-tool-icon {
    position: relative;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    text-decoration: none;
}

.uniko-tool-icon:hover {
    color: var(--neon-amarillo);
    filter: drop-shadow(0 0 8px var(--neon-amarillo));
    transform: scale(1.1);
}

.uniko-cart-badge {
    position: absolute;
    top: -8px;
    right: -10px;
    background-color: var(--neon-amarillo);
    color: var(--negro);
    font-family: var(--oswald);
    font-weight: 900;
    font-size: 11px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    box-shadow: 0 0 8px var(--neon-amarillo);
}

/* --- HERO REVEAL --- */
.uniko-hero-reveal {
    display: flex;
    gap: 5px;
    padding: 40px 0;
    background-color: #000000 !important;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.uniko-hero-reveal.in-view {
    opacity: 1;
    transform: translateY(0);
}

.uniko-hero-reveal .hero-column {
    flex: 1;
    overflow: hidden;
}

.uniko-hero-reveal .hero-column img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    filter: grayscale(100%);
    transition: filter 0.6s ease, transform 0.6s ease;
}

/* --- ANIMACIÓN CÍCLICA INFINITA (IZQUIERDA A DERECHA) --- */
@keyframes unikoCycle {

    0%,
    15%,
    85%,
    100% {
        filter: grayscale(100%);
    }

    30%,
    70% {
        filter: grayscale(0%);
    }
}

/* Ciclo automático: disparo inmediato SIN depender del JS/.in-view */
.uniko-hero-reveal .hero-column:nth-child(1) img {
    animation: unikoCycle 7s ease-in-out infinite;
    animation-delay: 0s;
}

.uniko-hero-reveal .hero-column:nth-child(2) img {
    animation: unikoCycle 7s ease-in-out infinite;
    animation-delay: 0.6s;
}

.uniko-hero-reveal .hero-column:nth-child(3) img {
    animation: unikoCycle 7s ease-in-out infinite;
    animation-delay: 1.2s;
}

/* Hover: fuerza color (pausa visual del ciclo) */
.uniko-hero-reveal .hero-column img:hover {
    animation-play-state: paused;
    filter: grayscale(0%);
}

/* BLOQUE MOSAICO CATEGORÍAS --- */
/* --- MOSAICO CATEGORÍAS (TAMAÑO IMPACTO TRIPLICADO) --- */
.uniko-category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* Subimos la base a 450px para que las secundarias tengan altura real */
    grid-auto-rows: 450px;
    gap: 20px;
    /* Un poco más de aire entre fotos potentes */
    padding: 20px 0;
    max-width: 1400px;
    margin: 0 auto;
}

.category-card {
    position: relative;
    overflow: hidden;
    background-color: #111;
}

/* La 'Large' ahora será gigantesca (900px + gap), ideal para la imagen principal */
.category-card.item-large {
    grid-column: span 2;
    grid-row: span 2;
}

/* Las secundarias ('Medium') ahora miden 450px de alto (Triplicado vs los 150px de antes) */
.category-card.item-medium {
    grid-column: span 2;
    grid-row: span 1;
}

/* Las pequeñas ahora son cuadrículas de 450px, ya no se ven cortadas */
.category-card.item-small {
    grid-column: span 1;
    grid-row: span 1;
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Importante: Mantenemos el foco arriba para que no se corten cabezas */
    object-position: top center;
    transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 50%);
    z-index: 2;
    display: flex;
    align-items: flex-end;
    padding: 30px;
}

.category-info h3 {
    color: var(--neon-amarillo);
    font-family: var(--oswald);
    font-size: 2.5rem;
    /* Aumentamos el texto para que acompañe el nuevo tamaño */
    font-weight: 900;
    text-transform: uppercase;
    margin: 0;
    line-height: 1;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

/* END BLOQUE MOSAICO */

.category-info .view-more {
    display: inline-block;
    margin-top: 15px;
    padding: 5px 15px;
    border: 1px solid var(--neon);
    color: var(--neon-amarillo);
    font-weight: 700;
    opacity: 0;
    transform: translateY(10px);
    transition: 0.4s;
}

.category-card:hover img {
    transform: scale(1.05);
}

.category-card:hover .view-more {
    opacity: 1;
    transform: translateY(0);
}

/* --- FUNDIDO A NEGRO CONTENIDO GP --- */
.site-content,
.inside-article,
.separate-containers .inside-article {
    background-color: var(--negro) !important;
    padding: 0 !important;
}

/* --- FOOTER --- */
.uniko-main-footer {
    background-color: var(--gris);
    color: #fff;
    padding: 60px 5% 20px;
    border-top: 1px solid rgba(223, 255, 0, 0.15);
    margin-top: 60px;
}

.uniko-footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-legal-col {
    order: 1 !important;
}

.footer-contact-col {
    order: 2 !important;
}

.footer-map {
    order: 3 !important;
}

.footer-brand {
    order: 4 !important;
}

.footer-title {
    color: var(--neon-amarillo);
    font-family: var(--oswald);
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 25px;
}

/* Listas en columnas del footer (Legal y Contacto) */
.footer-links,
.footer-links-vertical {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 14px;
    color: var(--blanco-roto);
}

.footer-links li,
.footer-links-vertical li {
    line-height: 1.5;
}

.footer-links a,
.footer-links-vertical a {
    color: var(--blanco-roto);
    text-decoration: none;
    transition: 0.3s;
    display: inline-block;
}

.footer-links a:hover,
.footer-links-vertical a:hover {
    color: var(--neon-amarillo);
    transform: translateX(4px);
}

.footer-social .instagram-link {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 25px;
    border: 2px solid var(--neon-amarillo);
    color: var(--neon-amarillo);
    font-weight: 900;
    text-decoration: none;
    transition: 0.4s;
}

.footer-social .instagram-link:hover {
    background-color: var(--neon-amarillo);
    color: #000;
    box-shadow: 0 0 20px var(--neon-amarillo);
}

.map-wrapper {
    filter: grayscale(1) invert(0.9) contrast(1.2);
    border: 1px solid #333;
    transition: 0.5s;
}

.map-wrapper:hover {
    filter: grayscale(0) invert(0) contrast(1);
}

.footer-logo-wrap {
    position: relative;
    display: inline-flex;
    padding: 20px 30px;
}

.footer-logo-wrap::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 240px;
    height: 110px;
    background: radial-gradient(ellipse, rgba(255, 255, 255, 0.7) 0%, rgba(207, 203, 202, 0.4) 40%, rgba(0, 0, 0, 0) 80%);
    border-radius: 50%;
    filter: blur(25px);
    z-index: 1;
}

.footer-logo {
    position: relative;
    z-index: 2;
    height: 160px;
    width: auto;
}

.brand-tagline {
    position: relative;
    z-index: 3;
    color: var(--neon-amarillo);
    font-size: 0.85rem;
    font-family: var(--oswald);
    letter-spacing: 0.5px;
    margin-top: 15px;
}

/* Barra inferior del footer (Legal & Copyright) */
.uniko-footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #2a2a2a;
}

.footer-bottom-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-align: center;
}

.footer-links-horizontal {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

.footer-links-horizontal li a {
    color: var(--blanco-roto);
    text-decoration: none;
    font-size: 13px;
    text-transform: uppercase;
    transition: 0.3s;
}

.footer-links-horizontal li a:hover {
    color: var(--neon-amarillo);
}

.footer-bottom-copy {
    color: #888888;
    font-size: 12px;
    margin: 0;
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .uniko-logo {
        padding: 20px 20px !important;
    }

    .uniko-logo::before {
        width: 80vw !important;
        height: 140px !important;
    }

    .uniko-logo img {
        height: 80px !important;
    }

    .uniko-header-container {
        flex-direction: column !important;
        gap: 15px !important;
    }

    .uniko-nav-tools-wrapper {
        flex-direction: column !important;
        gap: 15px !important;
    }

    .uniko-nav ul {
        gap: 12px !important;
        justify-content: center !important;
        flex-wrap: wrap !important;
    }

    .uniko-header-info {
        align-items: center !important;
        width: 100% !important;
    }

    .uniko-contact-info {
        justify-content: center !important;
        width: 100% !important;
        padding: 0 15px !important;
    }

    .uniko-top-bar {
        justify-content: center;
        font-size: 10px;
    }

    .uniko-category-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 500px;
    }

    .category-card.item-large,
    .category-card.item-medium {
        grid-column: span 2;
    }

    /* Evitar que el filtro lateral encoja los productos en horizontal */
    .site-content {
        flex-direction: column !important;
    }

    .content-area,
    .sidebar {
        width: 100% !important;
        float: none !important;
    }

    /* Padding lateral general en WooCommerce para evitar que toquen los bordes */
    body.woocommerce-page .site-content,
    body.woocommerce .site-content,
    .woocommerce div.product .entry-summary,
    .woocommerce div.product .woocommerce-tabs,
    .woocommerce div.product .related.products,
    .woocommerce div.product .upsells.products,
    .woocommerce-cart .site-content,
    .woocommerce-checkout .site-content {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    /* Títulos en tablets / móvil horizontal */
    .category-info h3 {
        font-size: 1.7rem !important;
    }

    h1,
    .entry-title,
    .woocommerce div.product .product_title {
        font-size: 1.9rem !important;
    }
}

@media (max-width: 768px) {
    .uniko-footer-container {
        grid-template-columns: 1fr !important;
        text-align: center;
    }

    .footer-logo-wrap::before {
        width: 180px !important;
        height: 80px !important;
    }

    .footer-logo {
        height: 120px !important;
    }

    /* Altura del mosaico de categorías en móvil vertical */
    .uniko-category-grid {
        grid-auto-rows: 250px !important;
    }

    /* Títulos en móvil vertical */
    .category-info h3 {
        font-size: 1.4rem !important;
    }

    h1,
    .entry-title,
    .woocommerce div.product .product_title {
        font-size: 1.6rem !important;
    }

    h2 {
        font-size: 1.4rem !important;
    }

    h3 {
        font-size: 1.1rem !important;
    }

    /* Pestañas de producto responsivas apiladas */
    .woocommerce-tabs ul.tabs {
        flex-direction: column !important;
        gap: 0 !important;
    }

    .woocommerce-tabs ul.tabs li {
        width: 100% !important;
        border-bottom: 1px solid #333 !important;
    }

    .woocommerce-tabs ul.tabs li.active {
        border-bottom: 1px solid var(--neon-amarillo) !important;
    }

    .woocommerce-tabs ul.tabs li a {
        display: block !important;
        width: 100% !important;
        box-sizing: border-box;
        padding: 12px 15px !important;
        font-size: 12px !important;
        text-align: center;
    }

    .uniko-hero-reveal {
        flex-direction: column;
        display: none !important;
    }
}

@media (max-width: 600px) {
    .uniko-hero-reveal {
        flex-direction: column;
        display: none !important;
    }
}

/* --- WOOCOMMERCE PRODUCT GRID (ESTILO UNIKO CAMPEÓN) --- */

/* 1. Limpieza de interfaz */
.term-description {
    display: none !important;
}

/* 2. Reestructuración Nuclear Grid 4 Columnas */
.woocommerce ul.products {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 40px 25px !important;
    margin: 40px 0 !important;
    padding: 0 !important;
}

/* Eliminamos los clearfixes de WC que rompen el grid */
.woocommerce ul.products::before,
.woocommerce ul.products::after {
    display: none !important;
}

/* 3. Tarjeta de Producto (Forzar 100% de celda) */
.woocommerce ul.products li.product {
    width: 100% !important;
    float: none !important;
    margin: 0 !important;
    clear: none !important;
    background: transparent;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    overflow: hidden;
    display: flex !important;
    flex-direction: column !important;
}

/* Contenedor e Imagen Maximizado */
.woocommerce ul.products li.product a {
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
}

.woocommerce ul.products li.product a img {
    width: 100% !important;
    height: auto !important;
    display: block !important;
    object-fit: cover !important;
    margin: 0 !important;
    transition: transform 0.6s ease;
}

/* 4. Caja de Título (Estilo Neón) */
.woocommerce ul.products li.product .woocommerce-loop-product__title {
    background-color: #2A2A2A;
    /* Gris Industrial */
    color: var(--neon-amarillo);
    padding: 20px 10px;
    margin: 0 !important;
    font-family: var(--oswald);
    font-size: 1.1rem;
    font-weight: 900;
    text-transform: uppercase;
    text-align: center;
    line-height: 1.2;
    min-height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
    transition: all 0.4s ease;
}

/* 5. Efectos HOVER */

/* Brillo y borde neón en la tarjeta */
.woocommerce ul.products li.product:hover {
    border-color: var(--neon-amarillo);
    box-shadow: 0 0 25px rgba(223, 255, 0, 0.4);
    transform: translateY(-5px);
}

/* Zoom de imagen contenido */
.woocommerce ul.products li.product:hover a img {
    transform: scale(1.08);
}

/* Cambio de caja a Negro y Texto Blanco */
.woocommerce ul.products li.product:hover .woocommerce-loop-product__title {
    background-color: var(--negro);
    color: #ffffff;
}

/* Iconos de Campeón (Izquierda y Derecha) */
.woocommerce ul.products li.product:hover .woocommerce-loop-product__title::before,
.woocommerce ul.products li.product:hover .woocommerce-loop-product__title::after {
    content: '';
    display: inline-block;
    width: 25px;
    height: 25px;
    background-image: url('imgs/Uniko-campeon-icono.webp');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin: 0 10px;
}

/* Botones Streetwear (Loop) */
.woocommerce ul.products li.product .button {
    background-color: var(--neon-amarillo) !important;
    color: var(--negro) !important;
    font-family: var(--oswald);
    font-weight: 900;
    text-transform: uppercase;
    border-radius: 0px;
    padding: 15px 20px;
    margin: 10px 0 0 0 !important;
    transition: all 0.3s ease;
    display: block;
    text-align: center;
}

.woocommerce ul.products li.product .button:hover {
    background-color: #ffffff !important;
    box-shadow: 0 0 15px var(--neon-amarillo);
}

/* Estilo Global para Botones WC */
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
    background-color: var(--neon-amarillo) !important;
    color: var(--negro) !important;
    font-family: var(--oswald) !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    border-radius: 0px !important;
    transition: all 0.3s ease !important;
}

.woocommerce a.button:hover {
    background-color: #ffffff !important;
    box-shadow: 0 0 15px var(--neon-amarillo);
}

/* Mensajes de Éxito Personalizados */
.woocommerce-message {
    border-top-color: var(--neon-amarillo) !important;
    background-color: var(--gris) !important;
    color: #fff !important;
}

.woocommerce-message::before {
    content: "" !important;
    display: inline-block;
    width: 25px;
    height: 25px;
    background-image: url('imgs/Uniko-campeon-icono.webp');
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 15px;
    vertical-align: middle;
}

/* --- SIDEBAR & WIDGETS (UNIKO STYLE) --- */
.sidebar .widget {
    background-color: #1a1a1a !important;
    padding: 25px !important;
    margin-bottom: 20px !important;
    border: 1px solid #2a2a2a;
}

.sidebar .widget-title {
    color: var(--neon-amarillo) !important;
    font-family: var(--oswald) !important;
    text-transform: uppercase;
    font-size: 1.2rem;
    border-bottom: 2px solid var(--neon-amarillo);
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.sidebar ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sidebar ul li {
    padding: 8px 0;
    border-bottom: 1px solid #2a2a2a;
}

.sidebar ul li a {
    color: #ffffff;
    text-decoration: none;
    transition: 0.3s;
}

.sidebar ul li a:hover {
    color: var(--neon-amarillo);
    padding-left: 5px;
}

/* Ajustes de Layout para Sidebar */
.content-area {
    float: left;
    width: 75%;
}

.sidebar {
    float: right;
    width: 25%;
}

/* --- 5.1 SECCIÓN MANIFIESTO: SOBRE UNIKO --- */
#hablemos-de-uniko.sobre-uniko {
    background-image: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)),
        url('imgs/Uniko-by-Nauzet-Trujillo-background.webp');
    background-size: 100% 100%;
    background-position: center;
    background-attachment: scroll;
    padding: 120px 40px;
    text-align: center;
    border-top: 1px solid var(--gris);
    border-bottom: 1px solid var(--gris);
    margin: 60px auto;
    position: relative;
    overflow: hidden;
    font-family: var(--inter);
    font-size: 20px;
    line-height: 1.8;
    color: var(--blanco-roto);
    white-space: pre-line;
}

#hablemos-de-uniko.sobre-uniko::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 2px;
    background: var(--neon-amarillo);
    box-shadow: 0 0 15px var(--neon-amarillo);
}

#hablemos-de-uniko.sobre-uniko strong {
    color: #ffffff;
    font-family: var(--oswald);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- 6.1 WOOCOMMERCE: SINGLE PRODUCT CUSTOMIZATION --- */

/* Precio: Máximo impacto en Neón */
.woocommerce div.product p.price,
.woocommerce div.product span.price,
.woocommerce-variation-price .price {
    color: var(--neon-amarillo) !important;
    font-family: var(--oswald);
    font-weight: 900;
    font-size: 1.8rem;
}

/* Etiquetas de Variaciones (Color, Talla, etc) */
.woocommerce div.product table.variations th.label label {
    color: #ffffff !important;
    font-family: var(--oswald);
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

/* Selectores de Variaciones (Dropdowns) */
.woocommerce div.product table.variations td.value select {
    background-color: var(--gris) !important;
    color: #ffffff !important;
    border: 1px solid #333 !important;
    padding: 10px !important;
    border-radius: 2px;
    width: 100%;
    font-family: var(--inter);
    cursor: pointer;
    transition: 0.3s;
}

.woocommerce div.product table.variations td.value select:focus {
    border-color: var(--neon-amarillo) !important;
    outline: none;
    box-shadow: 0 0 5px rgba(223, 255, 0, 0.3);
}

/* Texto de Disponibilidad / Stock */
.woocommerce-variation-availability,
.stock {
    color: var(--neon-amarillo) !important;
    font-weight: 700;
    font-family: var(--inter);
    margin-top: 15px;
    text-transform: uppercase;
    font-size: 13px;
}

/* Enlace "Limpiar" variaciones */
.reset_variations {
    color: var(--blanco-roto) !important;
    font-size: 11px;
    text-transform: uppercase;
    margin-left: 10px;
    text-decoration: underline;
}

.reset_variations:hover {
    color: #ffffff !important;
}

/* --- 6.2 PRODUCT META: SKU, CATEGORÍAS Y TAGS --- */
.product_meta {
    border-top: 1px solid #333;
    padding-top: 15px;
    margin-top: 20px;
    font-size: 13px;
    color: var(--blanco-roto);
}

.product_meta .sku {
    color: var(--neon-amarillo) !important;
}

.product_meta span {
    display: inline-block;
}

.product_meta>span:not(:last-child)::after {
    content: "|";
    margin: 0 12px;
    color: #444;
    font-weight: 300;
}

.product_meta a {
    color: var(--neon-amarillo) !important;
    text-decoration: none;
    transition: 0.3s;
}

.product_meta a:hover {
    color: #ffffff !important;
    text-decoration: underline;
}

/* --- 6.3 PRODUCT TABS: ESTILO DISRUPTIVO --- */
.woocommerce-tabs ul.tabs {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    display: flex;
    gap: 5px;
    margin-bottom: 0 !important;
}

.woocommerce-tabs ul.tabs::before {
    display: none !important;
}

.woocommerce-tabs ul.tabs li {
    background-color: var(--gris) !important;
    border: 1px solid #333 !important;
    border-bottom: none !important;
    border-radius: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    position: relative;
    top: 1px;
    z-index: 2;
}

.woocommerce-tabs ul.tabs li::before,
.woocommerce-tabs ul.tabs li::after {
    display: none !important;
}

.woocommerce-tabs ul.tabs li a {
    color: var(--blanco-roto) !important;
    font-family: var(--oswald) !important;
    font-weight: 900 !important;
    text-transform: uppercase;
    padding: 15px 25px !important;
    display: inline-block;
    font-size: 14px;
}

.woocommerce-tabs ul.tabs li.active {
    background-color: var(--negro) !important;
    border-color: var(--neon-amarillo) !important;
    border-bottom: 1px solid var(--negro) !important;
}

.woocommerce-tabs ul.tabs li.active a {
    color: var(--neon-amarillo) !important;
    text-shadow: 0 0 8px rgba(223, 255, 0, 0.4);
}

.woocommerce-tabs .woocommerce-Tabs-panel {
    border: 1px solid #333;
    padding: 30px !important;
    background: rgba(26, 26, 26, 0.5);
    margin-bottom: 40px;
}

@media (max-width: 1024px) {
    .woocommerce ul.products {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .uniko-footer-container {
        grid-template-columns: repeat(2, 1fr);
    }

    #hablemos-de-uniko.sobre-uniko {
        padding: 60px 20px;
        font-size: 16px;
    }
}

@media (max-width: 600px) {
    .woocommerce ul.products {
        grid-template-columns: 1fr !important;
    }

    .woocommerce ul.products li.product .woocommerce-loop-product__title {
        font-size: 0.9rem;
    }
}

/* Esconder barra lateral y filtros en Carrito y Finalizar Compra */
.woocommerce-cart .sidebar,
.woocommerce-checkout .sidebar,
.woocommerce-cart #right-sidebar,
.woocommerce-checkout #right-sidebar {
    display: none !important;
}

/* Forzar que el formulario ocupe el 100% del ancho en estas páginas */
.woocommerce-cart #content,
.woocommerce-checkout #content {
    max-width: 100% !important;
}

/* --- 7.1 SECCIÓN FAQ: ACORDEÓN --- */
.uniko-faq-wrapper {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 15px;
}

.uniko-faq-title {
    font-family: var(--oswald);
    font-size: 2.8rem;
    font-weight: 900;
    text-transform: uppercase;
    color: #ffffff;
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

.uniko-faq-section {
    margin-bottom: 45px;
}

.uniko-faq-section-title {
    font-family: var(--oswald);
    font-size: 1.6rem;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--neon-amarillo);
    border-bottom: 2px solid var(--gris);
    padding-bottom: 10px;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.uniko-faq-item {
    background-color: var(--gris);
    border: 1px solid #2a2a2a;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.uniko-faq-item[open] {
    border-color: var(--neon-amarillo);
    box-shadow: 0 0 15px rgba(223, 255, 0, 0.15);
}

.uniko-faq-question {
    font-family: var(--oswald);
    font-size: 1.15rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #ffffff;
    padding: 18px 50px 18px 20px;
    cursor: pointer;
    position: relative;
    list-style: none;
    user-select: none;
    transition: color 0.3s ease;
}

/* Ocultar flecha nativa */
.uniko-faq-question::-webkit-details-marker {
    display: none;
}

.uniko-faq-question::marker {
    display: none;
}

.uniko-faq-question::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--oswald);
    font-size: 1.6rem;
    color: var(--neon-amarillo);
    transition: transform 0.3s ease, color 0.3s ease;
    line-height: 1;
}

.uniko-faq-item[open] .uniko-faq-question::after {
    content: '−';
    transform: translateY(-50%) rotate(180deg);
    color: #ffffff;
}

.uniko-faq-question:hover {
    color: var(--neon-amarillo);
}

.uniko-faq-answer {
    padding: 5px 20px 20px 20px;
    font-family: var(--inter);
    font-size: 15px;
    line-height: 1.7;
    color: var(--blanco-roto);
}

.uniko-faq-answer p {
    margin: 0 0 15px 0;
}

.uniko-faq-answer p:last-child {
    margin-bottom: 0;
}

.uniko-faq-answer ul {
    margin: 12px 0;
    padding-left: 20px;
    list-style-type: none;
}

.uniko-faq-answer ul li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 15px;
}

.uniko-faq-answer ul li::before {
    content: '■';
    color: var(--neon-amarillo);
    font-size: 8px;
    position: absolute;
    left: 0;
    top: 5px;
}

.uniko-faq-answer strong {
    color: #ffffff;
}

.uniko-faq-note {
    background-color: rgba(26, 26, 26, 0.4);
    border-left: 3px solid var(--neon-amarillo);
    padding: 15px;
    margin-top: 15px;
    font-size: 14px;
    line-height: 1.6;
    color: var(--blanco-roto);
}

.uniko-faq-note strong {
    color: #ffffff;
}

/* Animación de entrada de la respuesta */
@keyframes faqFadeIn {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.uniko-faq-item[open] .uniko-faq-answer {
    animation: faqFadeIn 0.3s ease-out forwards;
}

/* Ajustes Responsive */
@media (max-width: 768px) {
    .uniko-faq-title {
        font-size: 2.2rem;
        margin-bottom: 30px;
    }

    .uniko-faq-section-title {
        font-size: 1.4rem;
        margin-bottom: 15px;
    }

    .uniko-faq-question {
        font-size: 1rem;
        padding: 15px 45px 15px 15px;
    }

    .uniko-faq-question::after {
        right: 15px;
        font-size: 1.4rem;
    }

    .uniko-faq-answer {
        padding: 5px 15px 15px 15px;
        font-size: 14px;
    }
}

/* Centrar vídeo uniko del home */
.wp-video {
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Ocultar el autor y los metadatos en toda la web */
.byline,
.author,
.vcard,
.entry-meta .byline {
    display: none !important;
}

/* --- BUSCADOR DEL HEADER --- */

/* Botón de búsqueda: hereda estilos de .uniko-tool-icon */
.search-toggle-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    line-height: 0;
}

/* Overlay de fondo oscuro */
.uniko-search-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 99999;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 140px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.uniko-search-overlay.is-active {
    opacity: 1;
    visibility: visible;
}

/* Panel de búsqueda */
.uniko-search-panel {
    position: relative;
    width: 100%;
    max-width: 680px;
    padding: 0 20px;
    transform: translateY(-20px);
    transition: transform 0.35s cubic-bezier(0.2, 1, 0.3, 1);
}

.uniko-search-overlay.is-active .uniko-search-panel {
    transform: translateY(0);
}

/* Formulario */
.uniko-search-form {
    display: flex;
    align-items: center;
    border-bottom: 2px solid var(--neon-amarillo);
    gap: 12px;
}

.uniko-search-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #ffffff;
    font-family: var(--inter);
    font-size: 1.5rem;
    padding: 14px 0;
    caret-color: var(--neon-amarillo);
}

.uniko-search-input::placeholder {
    color: rgba(255, 255, 255, 0.35);
    font-size: 1.3rem;
}

/* Botón submit del formulario */
.uniko-search-submit {
    background: none;
    border: none;
    cursor: pointer;
    color: #ffffff;
    padding: 0;
    line-height: 0;
    transition: color 0.3s, filter 0.3s;
}

.uniko-search-submit:hover {
    color: var(--neon-amarillo);
    filter: drop-shadow(0 0 8px var(--neon-amarillo));
}

/* Botón cerrar (X) */
.uniko-search-close {
    position: absolute;
    top: -50px;
    right: 20px;
    background: none;
    border: none;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.6);
    padding: 4px;
    line-height: 0;
    transition: color 0.3s, transform 0.3s;
}

.uniko-search-close:hover {
    color: var(--neon-amarillo);
    transform: rotate(90deg);
}

/* Ajuste responsive */
@media (max-width: 768px) {
    .uniko-search-overlay {
        padding-top: 100px;
    }

    .uniko-search-input {
        font-size: 1.1rem;
    }

    .uniko-search-input::placeholder {
        font-size: 1rem;
    }
}

/* HOME */
/* ESTILOS SECCIÓN MANIFIESTO UNIKO */
.home-manifesto-section {
    background-color: #000000;
    padding: 40px 20px;
    text-align: center;
}

.manifesto-container {
    max-width: 900px;
    margin: 0 auto;
}

.manifesto-title {
    color: #D1FF00;
    /* Amarillo Flúor Uniko */
    /*font-family: 'Oswald', sans-serif; /* O la fuente que uses en títulos */
    font-family: var(--oswald);
    font-size: 2.5rem;
    letter-spacing: 2px;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.manifesto-body {
    color: #ffffff;
    /*font-family: 'Urbanist', sans-serif;*/
    font-family: var(--inter);
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 40px;
}

.manifesto-body strong {
    color: #D1FF00;
}

.manifesto-button {
    display: inline-block;
    background-color: transparent;
    color: #D1FF00;
    border: 2px solid #D1FF00;
    padding: 15px 40px;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.manifesto-button:hover {
    background-color: #D1FF00;
    color: #000000;
    transform: scale(1.05);
}

.home-video-wrap {
    background-color: #000;
    padding-bottom: 60px;
    text-align: center;
}

/* Ajuste móvil */
@media (max-width: 768px) {
    .manifesto-title {
        font-size: 1.8rem;
    }

    .manifesto-body {
        font-size: 1.1rem;
    }
}

/* ─────────────────────────────────────────────────────────
   4. SECCIÓN PROMOCIONAL EXCLUSIVA [uniko_hero_promo]
   ───────────────────────────────────────────────────────── */

/* 4.1 Ocultar en dispositivos móviles/tablets (breakpoint 1024px) */
@media (max-width: 1024px) {
    .uniko-hero-promo {
        display: none !important;
    }
}

/* 4.2 Lógica visual y animaciones en Escritorio (>= 1025px) */
@media (min-width: 1025px) {
    .uniko-hero-promo {
        display: flex;
        gap: 5px;
        padding: 40px 0;
        background-color: #000 !important;
        opacity: 1;
        width: 100%;
        max-width: 1400px;
        margin-left: auto;
        margin-right: auto;
    }

    .uniko-hero-promo .promo-column {
        flex: 1;
        overflow: hidden;
        position: relative;
    }

    .uniko-hero-promo .promo-column .base-img {
        width: 100%;
        aspect-ratio: 1 / 1;
        object-fit: cover;
        display: block;
        filter: grayscale(100%);
        transition: filter 0.6s ease, transform 0.6s ease;
    }

    .uniko-hero-promo .promo-column:hover .base-img {
        filter: grayscale(0%);
        transform: scale(1.03);
    }

    .uniko-hero-promo .promo-column .promo-img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        z-index: 2;
        filter: none;
        /* A color */
        clip-path: inset(0 100% 0 0);
        /* Oculto inicialmente por la derecha */
        transition: transform 0.6s ease;
    }

    .uniko-hero-promo .promo-column:hover .promo-img {
        transform: scale(1.03);
    }

    /* 4.3 Keyframes del Efecto Persiana (Apertura izquierda a derecha) */
    @keyframes unikoShutterPromoCol1 {

        0%,
        75% {
            clip-path: inset(0 100% 0 0);
        }

        78%,
        98% {
            clip-path: inset(0 0 0 0);
        }

        100% {
            clip-path: inset(0 100% 0 0);
        }
    }

    @keyframes unikoShutterPromoCol2 {

        0%,
        77% {
            clip-path: inset(0 100% 0 0);
        }

        80%,
        98% {
            clip-path: inset(0 0 0 0);
        }

        100% {
            clip-path: inset(0 100% 0 0);
        }
    }

    @keyframes unikoShutterPromoCol3 {

        0%,
        79% {
            clip-path: inset(0 100% 0 0);
        }

        82%,
        98% {
            clip-path: inset(0 0 0 0);
        }

        100% {
            clip-path: inset(0 100% 0 0);
        }
    }

    /* 4.4 Disparo secuencial infinito de la Persiana (Ciclo total de 20 segundos) */
    .uniko-hero-promo .col-1 .promo-img {
        animation: unikoShutterPromoCol1 20s cubic-bezier(0.25, 1, 0.5, 1) infinite;
    }

    .uniko-hero-promo .col-2 .promo-img {
        animation: unikoShutterPromoCol2 20s cubic-bezier(0.25, 1, 0.5, 1) infinite;
    }

    .uniko-hero-promo .col-3 .promo-img {
        animation: unikoShutterPromoCol3 20s cubic-bezier(0.25, 1, 0.5, 1) infinite;
    }
}

/* ─────────────────────────────────────────────────────────
   5. SECCIÓN LOOKBOOK MÓVIL [uniko-promo-grid-movile]
   ───────────────────────────────────────────────────────── */

/* 5.1 Ocultar en resoluciones de escritorio y tablet */
@media (min-width: 769px) {
    .uniko-promo-grid-mobile {
        display: none !important;
    }
}

/* 5.2 Estilos Lookbook Exclusivos de Móvil (Grid 2x2, antes del footer) */
@media (max-width: 768px) {
    .uniko-promo-grid-mobile {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
        padding: 30px 15px !important;
        background-color: var(--negro);
        max-width: 1400px;
        margin: 40px auto 0 !important;
        /* Separación con el bloque superior */
    }

    .uniko-promo-grid-mobile .promo-grid-item {
        position: relative;
        overflow: hidden;
        aspect-ratio: 1 / 1;
        /* Cuadrado lookbook industrial */
        border: 2px solid #1a1a1a;
        background-color: #111;
        transition: border-color 0.4s ease;
    }

    .uniko-promo-grid-mobile .promo-grid-item:hover,
    .uniko-promo-grid-mobile .promo-grid-item:active {
        border-color: var(--neon-amarillo);
    }

    .uniko-promo-grid-mobile .promo-grid-item img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        display: block !important;
        transition: transform 0.6s ease;
    }

    .uniko-promo-grid-mobile .promo-grid-item:hover img,
    .uniko-promo-grid-mobile .promo-grid-item:active img {
        transform: scale(1.05);
    }
}

/* ─────────────────────────────────────────────────────────
   9. WOOCOMMERCE CHECKOUT BLOCK & CONTRASTE (GPUNIKO)
   ───────────────────────────────────────────────────────── */

/* 9.1 Etiquetas flotantes y placeholders en cajas blancas */
.wc-block-components-text-input label,
.wc-block-components-combobox label,
.wc-block-components-form-field label,
.wc-block-components-floating-label label {
    color: #1a1a1a !important; /* Gris oscuro para contraste sobre el fondo blanco del input */
}

/* Forzar que cuando estén activas o enfocadas sigan siendo negras y no amarillas o blancas */
.wc-block-components-text-input.is-active label,
.wc-block-components-combobox.is-active label,
.wc-block-components-text-input input:focus ~ label,
.wc-block-components-combobox input:focus ~ label,
.wc-block-components-text-input:focus-within label,
.wc-block-components-combobox:focus-within label {
    color: #000000 !important;
}

/* Placeholders de inputs */
.wc-block-components-text-input input::placeholder,
.wc-block-components-combobox input::placeholder,
.wc-block-components-form-field input::placeholder,
.woocommerce-checkout input::placeholder,
.woocommerce-checkout textarea::placeholder {
    color: #666666 !important;
    opacity: 1 !important;
}

/* Asegurar que las opciones y texto en los dropdowns/selects de checkout sean completamente negros */
.wc-block-components-text-input select,
.wc-block-components-combobox select,
.woocommerce-checkout select,
.woocommerce-checkout select option {
    color: #000000 !important;
    background-color: #ffffff !important;
}

/* 9.2 Botones de finalizar compra y totalizadores */
/* Estilo del botón principal de Checkout (Finalizar compra) y otros botones del bloque */
.wc-block-components-button,
.wc-block-components-checkout-button,
.wc-block-components-checkout-step__button,
.wc-block-components-checkout-step__button-group button,
.wc-block-checkout__actions button,
.wc-block-components-totals-coupon__button,
.woocommerce-checkout button.button,
.woocommerce-checkout input.button {
    background-color: var(--neon-amarillo) !important;
    color: var(--negro) !important;
    font-family: var(--oswald) !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    border-radius: 0px !important;
    border: none !important;
    padding: 15px 25px !important;
    font-size: 16px !important;
    transition: all 0.3s ease !important;
    text-shadow: none !important;
}

/* Hover de los botones de checkout */
.wc-block-components-button:hover,
.wc-block-components-checkout-button:hover,
.wc-block-components-checkout-step__button:hover,
.wc-block-components-checkout-step__button-group button:hover,
.wc-block-checkout__actions button:hover,
.wc-block-components-totals-coupon__button:hover,
.woocommerce-checkout button.button:hover,
.woocommerce-checkout input.button:hover {
    background-color: #ffffff !important;
    color: var(--negro) !important;
    box-shadow: 0 0 15px var(--neon-amarillo) !important;
    cursor: pointer !important;
}

/* Botones secundarios (como "Editar" o "Volver" en bloques de checkout) */
.wc-block-components-button.is-tertiary,
.wc-block-components-checkout-step__button-group .wc-block-components-button.is-tertiary {
    background-color: transparent !important;
    color: #ffffff !important;
    border: 1px solid #ffffff !important;
}

.wc-block-components-button.is-tertiary:hover,
.wc-block-components-checkout-step__button-group .wc-block-components-button.is-tertiary:hover {
    background-color: #ffffff !important;
    color: var(--negro) !important;
    border-color: #ffffff !important;
}