.woocommerce-pagination {
    display: block !important;
    text-align: center;
}.woocommerce ul.products li.product img {
    height: 250px;
    object-fit: cover;
/* TITULOS DE WIDGETS (TIENDA + PRODUCTO) */
.widget h2,
.single-product .widget h2,
.widget-title,
.single-product .widget-title {
    cursor: pointer;
    position: relative;
    padding-right: 20px;
    font-size: 14px;
    color: #9fff3c;
}
/* FLECHITA */
.widget h2::after,
.single-product .widget h2::after,
.widget-title::after,
.single-product .widget-title::after {
    content: "▼";
    position: absolute;
    right: 0;
    font-size: 12px;
}
/* CAJA DE WIDGET */
.widget {
    background: #0a1a2f;
    padding: 12px;
    margin-bottom: 10px;
    border-radius: 8px;
}
/* CAPA OSCURA SOBRE EL BANNER */
}.site-header::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 66px; /* ajusta según altura del header */
    background: linear-gradient(
        to bottom,
        rgba(17,18,47,0.95),
        rgba(10,18,47,0.6),
        transparent
    );
    z-index: 1;
}

/* ASEGURAR QUE EL CONTENIDO DEL HEADER QUEDE ENCIMA */
.site-header > * {
    position: relative;
    z-index: 2;
/* BOTONES DEL MENÚ - GLOBAL (TODAS LAS PÁGINAS) */
{.main-navigation a,
.ast-builder-menu a {
    background: rgba(10,18,47,0.75) !important;
    border: 1px solid rgba(255,204,0,0.3) !important;
    backdrop-filter: blur(4px);
    color: #ffcc00 !important;
    border-radius: 6px;
    padding: 10px 14px;
    transition: all 0.2s ease;
}

/* HOVER */
.main-navigation a:hover,
.ast-builder-menu a:hover {
    background: #ffcc00 !important;
    color: #000 !important;
}/* ============================= */
/* BOTONES MENU ESTILO PRO YUGIOH */
/* ============================= */

}.main-navigation a,
.ast-builder-menu a {

    position: relative;
    background: linear-gradient(135deg, #0a122f, #1a2a5a);
    color: #ffcc00 !important;
    border: 1px solid rgba(255,204,0,0.4);
    border-radius: 8px;
    padding: 10px 16px;
    font-weight: 600;
    letter-spacing: 0.5px;

    /* EFECTO GLASS */
    backdrop-filter: blur(6px);

    /* GLOW BASE */
    box-shadow:
        0 0 8px rgba(255,204,0,0.2),
        inset 0 0 5px rgba(255,204,0,0.1);

    transition: all 0.25s ease;
    overflow: hidden;
}

/* ✨ EFECTO BRILLO ANIMADO (tipo carta holográfica) */
}.main-navigation a::before,
.ast-builder-menu a::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.4),
        transparent
    );
    transform: skewX(-25deg);
}

/* ANIMACIÓN AL HOVER */
}.main-navigation a:hover::before,
.ast-builder-menu a:hover::before {
    left: 130%;
    transition: 0.6s;
}

/* 🔥 HOVER PRINCIPAL */
}.main-navigation a:hover,
.ast-builder-menu a:hover {

    background: linear-gradient(135deg, #ffcc00, #ffaa00);
    color: #000 !important;

    box-shadow:
        0 0 15px rgba(255,204,0,0.6),
        0 0 25px rgba(255,170,0,0.4);

    transform: translateY(-2px) scale(1.03);
}

/* CLICK (EFECTO PRESIONADO) */
}.main-navigation a:active,
.ast-builder-menu a:active {
    transform: scale(0.96);
    box-shadow: 0 0 5px rgba(255,204,0,0.3);
}

/* 🟡 BOTÓN ACTIVO (página actual) */
}.main-navigation .current-menu-item > a {
    background: linear-gradient(135deg, #ffcc00, #ff9900);
    color: #000 !important;
    box-shadow: 0 0 20px rgba(255,204,0,0.5);
}/* HEADER BASE */
.site-header {
    position: sticky;
    top: 0;
    z-index: 9999;
    transition: all 0.3s ease;
}

/* CUANDO HACES SCROLL */
}.site-header.scrolled {
    background: rgba(10,18,47,0.95) !important;
    backdrop-filter: blur(8px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
}/* CARD PRODUCTO */
.woocommerce ul.products li.product {
    background: linear-gradient(145deg, #0a122f, #121f4d);
    border-radius: 12px;
    padding: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
    position: relative;
}

/* HOVER CARD */
}.woocommerce ul.products {
    overflow: visible !important;
}

}.woocommerce ul.products li.product {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 1;
}

.woocommerce ul.products li.product:hover {
    transform: scale(1.15);
    z-index: 9999;
}
}

/* EFECTO BRILLO */
.woocommerce ul.products li.product::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.1),
        transparent
    );
    opacity: 0;
    transition: 0.4s;
}

.woocommerce ul.products li.product:hover::before {
    opacity: 1;
}/* IMAGEN CARTA */
.woocommerce ul.products li.product img {
    transition: all 0.3s ease;
}

/* EFECTO FOIL */
.woocommerce ul.products li.product:hover img {
    filter: brightness(1.1) contrast(1.1);
    transform: rotateY(8deg) rotateX(4deg);
}

/* REFLEJO */
.woocommerce ul.products li.product img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.25),
        transparent
    );
}.single_add_to_cart_button,
.woocommerce ul.products li.product .button {

    background: linear-gradient(135deg, #ffcc00, #ffaa00);
    color: #000 !important;
    border-radius: 8px;
    font-weight: bold;
    transition: all 0.2s ease;

    box-shadow: 0 0 10px rgba(255,204,0,0.4);
}

.single_add_to_cart_button:hover,
.woocommerce ul.products li.product .button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255,204,0,0.7);
}.e-con-inner,
.elementor-container {
    margin-left: 0 !important;
    margin-right: auto !important;
    max-width: 100% !important;
}

.e-con,
.elementor-section {
    padding-left: 0 !important;
}
/* Ocultar botón de búsqueda SearchWP */
.searchwp-form input[type="submit"],
.searchwp-form .search-submit,
.searchwp-form button {
    display: none !important;
}