/* ===================================== */
/* 1. OCULTAR ELEMENTOS NO DESEADOS      */
/* ===================================== */
.page .entry-title,
.page h1.entry-title,
.page .page-title,
.elementor-heading-title {
    display: none !important;
}
.woocommerce ul.products li.product .product-quick-view-button,
.woocommerce ul.products li.product .loop-product-thumbnail .quick-view-button {
    display: none !important;
}
.woocommerce .woocommerce-ordering,
.woocommerce .woocommerce-result-count + form.woocommerce-ordering,
.woocommerce .woocommerce-result-count {
    display: none !important;
}
.woocommerce-products-header {
    display: none !important;
}
#tw-target-text,
.tw-target-text,
div[class*="translate"],
pre:empty,
.wp-block-preformatted:empty,
html[lang] #tw-target-text {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    width: 0 !important;
    overflow: hidden !important;
    position: absolute !important;
    left: -9999px !important;
}
.woocommerce-message[role="alert"] {
    display: none !important;
}
#secondary {
    display: none !important;
}

/* ===================================== */
/* 2. HEADER - TRANSPARENTE Y FIJO       */
/* ===================================== */
.site-header {
    background: transparent !important;
    transition: background 0.35s ease;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 9999;
}
.admin-bar .site-header {
    top: 32px;
}
/* Menú móvil: fondo negro completo */
#mobile-navigation,
#mobile-navigation .menu-toggle,
#mobile-navigation .main-navigation,
#mobile-navigation ul,
#mobile-navigation li,
#mobile-navigation a {
    background-color: #000000 !important;
    color: #ffffff !important;
}
/* Texto blanco en header principal */
.site-header,
.main-navigation a,
.site-title,
.site-description {
    color: #ffffff !important;
}
/* Hover menú principal */
.main-navigation li:hover > a,
.main-navigation li.focus > a {
    background-color: #FFD700 !important;
    color: #000000 !important;
    font-weight: bold !important;
}
/* Logo limpio */
.site-branding {
    background: transparent !important;
    padding: 10px 0;
}

/* ===================================== */
/* 3. FOOTER - NEGRO SEMITRANSPARENTE    */
/* ===================================== */
#colophon,
#colophon.site-footer,
.site-footer,
footer#colophon {
    background: rgba(0, 0, 0, 0.7) !important;
    margin-top: 75px !important;
}
#colophon .bottom-bar,
#colophon .site-info,
#colophon .polestar-container {
    background: transparent !important;
}
#colophon,
#colophon * {
    color: #ffffff !important;
}
#colophon a,
#colophon a:visited {
    color: #ffffff !important;
}
#colophon a:hover {
    color: #66ffff !important;
    text-decoration: underline !important;
}
#colophon .site-info {
    opacity: 0.35 !important;
}

/* ===================================== */
/* 4. LAYOUT GENERAL Y ESPACIADOS        */
/* ===================================== */
header {
    position: sticky;
    top: 0;
    height: 80px;
    background: #fff;
    z-index: 1000;
}
.main-content {
    padding-top: 80px;
}
.woocommerce-page .woocommerce-products-header + .site-content,
.woocommerce-page .site-main,
.shop-page .site-main,
.archive.woocommerce .site-main,
body.woocommerce-page #primary,
body.woocommerce #primary,
body.archive.tax-product_cat #primary {
    margin-top: 100px !important;
}
.content-area {
    width: 100% !important;
    float: none !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* ===================================== */
/* 5. WOOCOMMERCE - SHOP, CATEGORÍAS Y PRODUCTOS */
/* ===================================== */
.woocommerce .col-full,
.woocommerce-page .col-full {
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 20px !important;
    box-sizing: border-box;
}

/* === PRODUCTOS EN TIENDA – AJUSTADO PARA 4 POR FILA PERFECTO === */

.woocommerce ul.products {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 50px 30px !important;          /* espacio entre productos equilibrado */
    max-width: 1400px !important;
    margin: 0 auto !important;
    padding: 40px 20px !important;
}

.woocommerce ul.products li.product {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.woocommerce ul.products li.product img,
.woocommerce ul.products li.product .wp-post-image,
.woocommerce ul.products li.product img.attachment-woocommerce_thumbnail,
.woocommerce ul.products li.product img.woocommerce-placeholder {
    width: 100% !important;
    height: 360px !important;               /* ← Ideal para 4 columnas: grande pero cabe perfecto */
    min-height: 360px !important;
    object-fit: cover !important;
    object-position: center !important;
    border-radius: 15px !important;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5) !important;
    transition: all 0.4s ease !important;
    display: block !important;
}

.woocommerce ul.products li.product img:hover {
    transform: scale(1.06) !important;      /* hover más sutil para no exagerar */
}

/* Móvil: una columna, altura un poco más grande para impacto */
@media (max-width: 768px) {
    .woocommerce ul.products {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 60px !important;
        padding: 30px 15px !important;
    }
    
    .woocommerce ul.products li.product img {
        height: 420px !important;           /* más alto en móvil para que se vea bien */
        min-height: 420px !important;
    }
}

/* === PRODUCTOS INDIVIDUALES === */
.woocommerce ul.products li.product {
    text-align: center !important;
}
.woocommerce ul.products li.product img {
    width: 100% !important;
    height: auto !important;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}
.woocommerce ul.products li.product:hover img {
    transform: scale(1.05);
}
@media (min-width: 769px) {
    .woocommerce ul.products:not(.archive ul.products) {
        display: grid !important;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
        gap: 40px !important;
    }
}
@media (max-width: 768px) {
    .woocommerce ul.products:not(.archive ul.products) {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
}

/* Carrito y botón checkout */
.woocommerce-cart .entry-header,
.wc-block-cart .wp-block-woocommerce-cart .wc-block-cart__header,
header.entry-header {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}
.wc-block-cart__submit-button,
.wc-block-components-button.wp-element-button.wc-block-cart__submit-button,
a.wc-block-cart__submit-button.contained {
    background-color: #287233 !important;
    color: #ffffff !important;
    border: 2px solid #000000 !important;
    border-radius: 4px !important;
    padding: 16px 32px !important;
    font-size: 17px !important;
    font-weight: 600 !important;
    min-height: 56px !important;
}
.wc-block-cart__submit-button:hover,
.wc-block-components-button.wc-block-cart__submit-button:hover {
    background-color: #333333 !important;
    border-color: #333333 !important;
    color: #ffffff !important;
}



/* ===================================== */
/* 8. SLICEWP - ÁREA AFILIADOS           */
/* ===================================== */
#slicewp-affiliate-account,
.slicewp-form,
#slicewp-affiliate-registration,
#slicewp-affiliate-login {
    background: transparent !important;
    color: #ffffff !important;
}
.slicewp-card,
.slicewp-card-inner,
.slicewp-list-table,
.slicewp-list-table th,
.slicewp-list-table td {
    background: transparent !important;
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
}
.slicewp-list-table tr:hover td {
    background: rgba(255, 215, 0, 0.1) !important;
}
.slicewp-list-table th {
    font-weight: bold !important;
    color: #FFD700 !important;
}
#slicewp-affiliate-account a,
.slicewp-list-table a {
    color: #FFD700 !important;
}
#slicewp-affiliate-account input,
#slicewp-affiliate-account select,
#slicewp-affiliate-account textarea,
.slicewp-form input[type="text"],
.slicewp-form input[type="email"],
.slicewp-form input[type="password"],
.slicewp-form input[type="url"],
.slicewp-form textarea,
.slicewp-form select {
    background: transparent !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.45) !important;
    padding: 10px !important;
}
#slicewp-affiliate-account input::placeholder,
#slicewp-affiliate-account textarea::placeholder,
.slicewp-form input::placeholder,
.slicewp-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.6) !important;
}
.slicewp-affiliate-referral-url input,
.slicewp-form .slicewp-field input[readonly] {
    background: transparent !important;
    color: #FFD700 !important;
    border-color: rgba(255, 215, 0, .4) !important;
}
.slicewp-btn,
.slicewp-btn-copy,
.slicewp-form input[type="submit"] {
    background: rgba(255, 215, 0, 0.2) !important;
    color: #FFD700 !important;
    border: 1px solid #FFD700 !important;
    font-weight: bold !important;
    padding: 10px 20px !important;
    transition: 0.2s ease-in-out;
}
.slicewp-btn:hover,
.slicewp-btn-copy:hover,
.slicewp-form input[type="submit"]:hover {
    background: rgba(255, 215, 0, 0.4) !important;
    color: #ffffff !important;
}
.slicewp-notice {
    background: transparent !important;
    border: 1px solid #FFD700 !important;
    color: #FFD700 !important;
}
.slicewp-user-notice,
.slicewp-user-notice p,
.slicewp-user-notice a {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    color: #ffffff !important;
}

/* ===================================== */
/* 9. ENLACES Y TEXTO GLOBAL             */
/* ===================================== */
.entry-content a,
.widget a,
.footer-widgets a {
    color: #cccccc !important;
}

/* ===================================== */
/* 10. EMBEDS YOUTUBE RESPONSIVE         */
/* ===================================== */
.wp-block-embed.is-provider-youtube {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    margin: 20px 0;
}
.wp-block-embed.is-provider-youtube .wp-block-embed__wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.wp-block-embed.is-provider-youtube .wp-block-embed__wrapper iframe {
    width: 100% !important;
    height: 100% !important;
    border: none;
    max-width: 100%;
}

/* ===================================== */
/* 11. ESTILOS DECORATIVOS (OPCIONALES)  */
/* ===================================== */
body {
    font-family: Inter, Arial, sans-serif;
    background: #000;
    color: #fff;
    margin: 0;
}
.countdown-gold {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 40px 10px;
    flex-wrap: wrap;
}
.circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(0,0,0,.7);
    border: 3px solid #222;
    box-shadow: 0 0 25px rgba(255,215,0,.5);
    animation: pulse-gold 2s infinite;
}
.number {
    color: #fff;
    font: 900 30px Orbitron;
    text-shadow: 0 0 20px #FFD700, 0 0 30px #FFA500;
}
.label {
    color: #FFD700;
    font: 700 10px Orbitron;
    letter-spacing: 2px;
    margin-top: 15px;
    text-shadow: 0 0 8px #FFD700;
}
@keyframes pulse-gold {
    0%, 100% { box-shadow: 0 0 25px rgba(255,215,0,.5); }
    50% { box-shadow: 0 0 40px rgba(255,215,0,.8); }
}
.glitch-fire {
    animation: fire-glitch 5s infinite, color-pulse 6s infinite;
    text-shadow: 0 0 15px #ff6600, 0 0 30px #ff3300;
}
@keyframes color-pulse {
    0% { color: #ffffff; text-shadow: 0 0 15px #ff6600, 0 0 30px #ff3300; }
    50% { color: #ffcc00; text-shadow: 0 0 30px #ffcc00, 0 0 60px #ff6600; }
    100% { color: #ffffff; text-shadow: 0 0 15px #ff6600, 0 0 30px #ff3300; }
}
@keyframes fire-glitch {
    0% { text-shadow: 0 0 15px #ff6600, 0 0 30px #ff3300; }
    20% { text-shadow: 0.05em 0 0 #ff6600, -0.05em -0.05em 0 #ff3300; }
    40% { text-shadow: -0.05em 0.05em 0 #ff6600, 0.05em 0 0 #ff3300; }
    100% { text-shadow: 0 0 30px #ff6600, 0 0 60px #ff3300; }
}



/* === IMPORT FONTS HI-TECH TRIBAL === */
@import url('https://fonts.googleapis.com/css2?family=Oxanium:wght@400;700;800&family=Michroma&display=swap');


/* Títulos dorado oro */
h1, h2, h3, h4 {
    color: #ffd700 !important;
    text-shadow: 0 0 8px #ffd700, 2px 2px 4px #000;
    font-family: 'Oxanium', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
}

/* Párrafos tech moderno bold */
p {
    font-family: 'Oxanium', sans-serif;
    font-weight: 700 !important;
    font-size: 1.2em !important;
    letter-spacing: 1.5px;
    text-shadow: 1px 1px 3px #000;
    line-height: 1.8;
}

li {
    font-family: 'Oxanium', sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
    text-shadow: 1px 1px 3px #000;
}

/* === HEADER/MENÚ NEGRO SÓLIDO === */
.site-header {
    background: rgba(0, 0, 0, 0.60) !important;
    backdrop-filter: blur(2px);
}

/* Menú oro hi-tech */
#main-navigation .menu > li > a,
#main-navigation .polestar-menu > li > a {
    color: #ffd700 !important;
    font-family: 'Oxanium', sans-serif !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 5px #000;
    font-size: inherit !important;
}

#main-navigation .menu > li > a:hover,
#main-navigation .polestar-menu > li > a:hover {
    color: #ffff00 !important;
    background: rgba(0, 0, 0, 0.7);
    text-shadow: 0 0 15px #ffd700, 0 0 30px #ffaa00;
    transition: all 0.3s ease;
}

/* Submenú */
.main-navigation .sub-menu,
.main-navigation ul ul {
    background: rgba(0, 0, 0, 0.55) !important;
    border: none !important;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3) !important;
}

.main-navigation .sub-menu a,
.main-navigation ul ul a {
    color: #ffd700 !important;
    background: transparent !important;
    text-shadow: 0 0 5px #000 !important;
    font-size: 0.9em !important;
}

.main-navigation .sub-menu li:hover > a,
.main-navigation ul ul li:hover > a {
    background-color: #ffd700 !important;
    color: #000000 !important;
    font-weight: bold !important;
}

/* === FORMULARIO === */
.so-panel input[type="text"], .so-panel input[type="email"], .so-panel textarea {
    background: rgba(0,0,0,0.6);
    border: 1px solid #ffd700;
    color: #fff;
    box-shadow: 0 0 10px rgba(255,215,0,0.3);
    font-family: 'Oxanium', sans-serif;
    padding: 12px;
}

.so-panel input[type="submit"] {
    background: transparent;
    color: #ffd700;
    border: 1px solid #ffd700;
    padding: 15px 40px;
    font-family: 'Oxanium', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 0 15px rgba(255,215,0,0.4);
    transition: all 0.3s;
}

.so-panel input[type="submit"]:hover {
    box-shadow: 0 0 25px rgba(255,215,0,0.6);
}




/* Overlay negro al 70% cubriendo TODA la página desde arriba - en TODAS las páginas WooCommerce, INCLUYENDO basket (cart) y checkout */
body.woocommerce::before,
body.woocommerce-cart::before,
body.woocommerce-checkout::before,
body.post-type-archive-product::before,
body.tax-product_cat::before,
body.tax-product_tag::before,
body.single-product::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80%;
    background-color: rgba(0, 0, 0, 0.85);
    pointer-events: none;
    z-index: -1; /* Detrás del header y contenido */
		
		/*OVERLOAD FOOTER*/
#colophon.site-footer {
  position: relative; /* Necesario para posicionar el overlay */
  overflow: hidden;   /* Por si acaso */
}

#colophon.site-footer::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7); /* Negro con 70% opacidad */
  z-index: 1;                 /* Detrás del contenido */
  pointer-events: none;       /* No bloquea clics en enlaces/widgets */
}

/* Asegura que el contenido (widgets y texto) quede encima del overlay */
#colophon.site-footer > * {
  position: relative;
  z-index: 2;
}
		
		/*header mas peque/*
/* Reduce el padding superior e inferior del header principal */
.site-header, #masthead, header {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
}

/* Si el header tiene una altura mínima fija */
.site-header, #masthead, .header-main {
    min-height: 60px !important;  /* Cambia 60px por lo que quieras, ej. 50px */
    height: auto !important;
}

/* Reduce específicamente la barra de navegación/menú */
.main-navigation, .navbar, .site-navigation {
    padding: 5px 0 !important;
    min-height: 40px !important;
}

/* Si hay un contenedor con clase común que controla la altura */
.header-container, .site-branding, .header-inner {
    padding: 10px 0 !important;
}