nav.navigation.post-navigation { display: none; }

/* RESUELVE EL PROBLEMA DEL FOOTER QUE TENIA ESPACIOS NEGROS A LOS LATERALES DESDE MOVILES*/
@media (max-width: 768px){

.home .site-footer {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

}

/* =================================================
   WOOCOMMERCE - ESTILO GENERAL TIENDA
   ================================================= */

/* Fondo general de la tienda */
.woocommerce {
    background-color: #252525;
}

/* =================================================
   BOTONES WOOCOMMERCE
   ================================================= */

.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
    background-color: #FF00D5;
    color: white;
    border-radius: 6px;
    padding-left: 10px !important;
}

/* Hover botones */
.woocommerce a.button:hover {
    background-color: #EB0033;
}

/* =================================================
   TARJETAS DE PRODUCTO
   ================================================= */

.woocommerce ul.products li.product {

    /* layout flex para alinear botones */
    display: flex;
    flex-direction: column;
    position: relative;

    /* estética */
    background-color: #373737;
    border-radius: 10px;
    overflow: hidden;

    /* sombra y animación */
    box-shadow: 0 5px 15px rgba(0,0,0,0.4);
    transition: transform 0.2s;
}

/* Elevación al pasar el mouse */
.woocommerce ul.products li.product:hover {
    transform: translateY(-5px);
}

/* =================================================
   CONTENIDO INTERNO DEL PRODUCTO
   ================================================= */

.woocommerce ul.products li.product .astra-shop-summary-wrap {
    padding-left: 12px;
    padding-right: 12px;
    padding-top: 0.1em;
    padding-bottom: 12px;

    /* estructura flex para empujar botón */
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* =================================================
   IMAGEN DEL PRODUCTO
   ================================================= */

/* Contenedor imagen */
.woocommerce ul.products li.product .woocommerce-loop-product__link {
    overflow: hidden;
    display: block;
}

/* Animación imagen */
.woocommerce ul.products li.product img {
    transition: transform 0.4s ease;
}

/* Zoom interno */
.woocommerce ul.products li.product:hover img {
    transform: scale(1.07);
}

/* =================================================
   BOTÓN AÑADIR AL CARRITO
   ================================================= */

.woocommerce ul.products li.product a.button {
    margin-top: auto;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: all 0.25s ease;
    text-align: center;
    width: 100%;
}

/* Hover botón carrito */
.woocommerce ul.products li.product a.button:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 6px 14px rgba(255,0,213,0.45);
}

/* =================================================
   CAMBIO DE TEXTO "LEER MÁS" SOLO EN PRODUCTOS SIN STOCK
   ================================================= */

/* ocultar texto original */
.woocommerce ul.products li.product.outofstock a.button {
    font-size: 0;
}

/* nuevo texto */
.woocommerce ul.products li.product.outofstock a.button::after {
    content: "Ver producto";
    font-size: 16px;
    font-weight: 600;
}

/* =================================================
   PRECIO DEL PRODUCTO
   ================================================= */

.woocommerce ul.products li.product .price {
    font-size: 18px;
    font-weight: 700;
}

/* =================================================
   SELECTOR DE ORDEN
   ================================================= */

.woocommerce .woocommerce-ordering select {
    background-color: #373737;
    color: white;
    border: 1px solid #FF00D5;
    padding: 6px;
    border-radius: 6px;
}

/* Hover selector */
.woocommerce .woocommerce-ordering select:hover {
    border-color: #EB0033;
}

/* =================================================
   BADGE CATEGORÍA SOBRE IMAGEN
   ================================================= */

.woocommerce ul.products li.product .ast-woo-product-category {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #C900A7;
    color: white;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 4px 8px;
    border-radius: 4px;
    z-index: 5;
    box-shadow: 0 3px 10px rgba(0,0,0,0.4);
}

/* ocultar categoría original */
.woocommerce ul.products li.product .ast-woo-product-category + * {
    margin-top: 0;
}

/* =================================================
   BADGE OFERTA
   ================================================= */

.woocommerce span.onsale {
    background: linear-gradient(135deg, #FF00D5, #EB0033);
    color: #FFEA00;
    font-weight: 700;
    font-size: 15px;
    padding: 6px 10px;
    border-radius: 6px;
    top: 12px;
    left: 12px;
    right: auto;
    box-shadow: 0 3px 8px rgba(0,0,0,0.35);
}

/* =================================================
   OCULTAR ELEMENTOS INNECESARIOS
   ================================================= */

/* contador resultados */
.woocommerce .woocommerce-result-count {
    display: none;
}

/* título página */
.woocommerce-page .entry-title,
.woocommerce-page .page-title,
.woocommerce-page .ast-archive-title {
    display: none;
}

/* =================================================
   PRODUCTOS SIN STOCK
   ================================================= */

/* badge agotado */
.woocommerce ul.products li.product .ast-shop-product-out-of-stock {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    text-align: center;
    background: rgba(255,255,255,0.65);
    color: rgba(0,0,0,0.75);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 2px solid rgba(0,0,0,0.15);
    border-radius: 6px;
    padding: 8px 10px;
}

/* blur imagen producto agotado */
.woocommerce ul.products li.product.outofstock img {
    filter: blur(.1em) brightness(0.85);
}

/* botones iguales sin importar el tipo */
.woocommerce ul.products li.product .button {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
    margin-bottom: 12px;
}

/* botones iguales sin importar el tipo */
.woocommerce ul.products li.product .button {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
    margin-bottom: 12px;
}

.precio-efectivo {
    display: inline-block;

    color: #EBFF57;

    background: linear-gradient(
        135deg,
      rgba(255,5,29,0.25),  
			rgba(0,0,0,0)
    );

	
    padding: 4px 8px;
    margin-top: 6px;

    font-size: 14px;
    font-weight: 500;

    border-radius: 6px;
}

/* =========================================================
   1. CONTROL DEL TOGGLE (checkbox oculto)
========================================================= */

#rm-filtro-toggle{
display:none;
}


/* =========================================================
   2. BOTÓN FILTRAR (barra superior)
========================================================= */

.rm-filtro-boton{
display:inline-block;
background:#2b2b2b;
color:#ffffff;
padding:8px 14px;
border-radius:6px;
cursor:pointer;
border:1px solid #ff2e58;
font-size:14px;
transition:0.2s;
margin-right:10px;
}

.rm-filtro-boton:hover{
background:#ff2e58;
border-color:#ff2e58;
}


/* alineación con el selector "ordenar por" */

.woocommerce .woocommerce-ordering{
display:flex;
align-items:center;
}


/* =========================================================
   3. OVERLAY OSCURO (fondo al abrir filtros)
========================================================= */

.rm-overlay{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.6);
opacity:0;
visibility:hidden;
transition:opacity .3s ease, visibility .3s ease;
z-index:9998;
}


/* =========================================================
   4. DRAWER (panel lateral de filtros)
========================================================= */

.rm-drawer{
position:fixed;
top:6em;
left:-340px;
width:340px;
height:100%;
background:#1b1b1b;
box-shadow:0 0 25px rgba(0,0,0,0.6);
transition:left .35s cubic-bezier(.25,.8,.25,1);
z-index:9999;
overflow-y:auto;
font-size:14px;
color:#e6e6e6;
}


/* =========================================================
   5. HEADER DEL PANEL
========================================================= */

.rm-header{
display:flex;
justify-content:space-between;
align-items:center;
padding:18px;
border-bottom:1px solid #333;
}

.rm-header h3{
margin:0;
font-size:16px;
font-weight:600;
color:#ffffff;
}

.rm-cerrar{
cursor:pointer;
font-size:20px;
color:#ffffff;
}


/* =========================================================
   6. CONTENIDO GENERAL
========================================================= */

.rm-contenido{
padding:20px;
}


/* =========================================================
   7. SECCIONES DE FILTROS
========================================================= */

.rm-drawer .wpc-filters-section{
margin-bottom:26px;
border-bottom:1px solid #333;
padding-bottom:16px;
}

.rm-drawer .wpc-filters-section:last-child{
border:none;
}

.rm-drawer .wpc-filter-title{
font-size:14px;
font-weight:600;
margin-bottom:12px;
color:#ffffff;
}


/* =========================================================
   8. ITEMS DE FILTROS
========================================================= */

.rm-drawer .wpc-filter-content label,
.rm-drawer .wpc-filter-content a,
.rm-drawer .wpc-filter-content span{
color:#d4d4d4 !important;
}

.rm-drawer .wpc-filter-content label{
display:block;
padding:6px 0;
cursor:pointer;
}

.rm-drawer .wpc-filter-content label:hover,
.rm-drawer .wpc-filter-content a:hover{
color:#ff2e58 !important;
}


/* item seleccionado */

.rm-drawer .wpc-filter-content input:checked + span,
.rm-drawer .wpc-filter-content input:checked + label{
color:#ffffff !important;
}


/* contador de productos */

.rm-drawer .wpc-term-count{
color:#888 !important;
font-size:12px;
margin-left:4px;
}


/* =========================================================
   9. CHECKBOXES MODERNOS
========================================================= */

.rm-drawer input[type="checkbox"]{
appearance:none;
-webkit-appearance:none;
width:16px;
height:16px;
border:2px solid #666;
border-radius:3px;
margin-right:8px;
cursor:pointer;
position:relative;
top:2px;
}

.rm-drawer input[type="checkbox"]:hover{
border-color:#ff2e58;
}

.rm-drawer input[type="checkbox"]:checked{
background:#ff2e58;
border-color:#ff2e58;
}

.rm-drawer input[type="checkbox"]:checked::after{
content:"";
position:absolute;
left:4px;
top:0px;
width:4px;
height:8px;
border:solid white;
border-width:0 2px 2px 0;
transform:rotate(45deg);
}


/* =========================================================
   10. CATEGORÍAS EN ÁRBOL
========================================================= */

.rm-drawer .wpc-filter-content ul ul{
padding-left:18px;
border-left:1px solid #333;
margin-top:6px;
}

.rm-drawer .wpc-filter-content ul ul li{
margin-top:4px;
}

.rm-drawer .wpc-term-expand{
color:#888;
font-size:14px;
margin-left:6px;
cursor:pointer;
}

.rm-drawer .wpc-term-expand:hover{
color:#ff2e58;
}


/* =========================================================
   11. ACTIVACIÓN DEL PANEL
========================================================= */

#rm-filtro-toggle:checked ~ .rm-drawer{
left:0;
}

#rm-filtro-toggle:checked ~ .rm-overlay{
opacity:1;
visibility:visible;
}


/* =========================================================
   12. SCROLLBAR DEL PANEL
========================================================= */

.rm-drawer::-webkit-scrollbar{
width:6px;
}

.rm-drawer::-webkit-scrollbar-thumb{
background:#444;
border-radius:3px;
}


/* =========================================================
   13. RESPONSIVE
========================================================= */

@media(max-width:768px){

.rm-drawer{
width:85%;
}

.rm-filtro-boton{
padding:7px 12px;
font-size:13px;
}

}


/* =========================================================
   14. BOTÓN FILTRAR FLOTANTE EN MÓVIL
========================================================= */

@media(max-width:768px){

.rm-filtro-boton{
position:fixed;
top:11em;
left:25%;
transform:translateX(-50%);
z-index:9997;
background:#ff2e58;
border:none;
box-shadow:0 5px 15px rgba(0,0,0,0.35);
font-weight:600;
padding:12px 32px;
border-radius:30px;
}

}

/* =========================================================
   15. FILTROS ACTIVOS (CHIPS)
   Estilo visual de filtros seleccionados
========================================================= */

/* contenedor general */

.wpc-active-filters,
.wpc-filters-section-active{
color:#ffffff;
}


/* =========================================================
   CHIP INDIVIDUAL
========================================================= */

.wpc-filter-chip{
display:none; /* decidí ocultar los chips button de resetear los filtros de categorias de productos*/
/* Quitar estos comentarios para ver los botones chip de nuevo

display:inline-flex;
align-items:center;
background:#2b2b2b;
border:1px solid #444;
border-radius:20px;
padding:4px 10px;
margin-right:6px;
transition:all .2s ease;
*/
}


/* texto del filtro */

.wpc-filter-chip-name{
color:#ffffff !important;
}


/* =========================================================
   ICONO ELIMINAR (X)
========================================================= */

.wpc-chip-remove-icon{
color:#ffffff !important;
margin-left:6px;
font-size:14px;
line-height:1;
transition:color .2s ease;
}


/* =========================================================
   HOVER CHIP
========================================================= */

.wpc-filter-chip:hover{
border-color:#ff2e58;
background:#696969;
}

.wpc-filter-chip:hover .wpc-chip-remove-icon{
color:#ff2e58 !important;
}


/* =========================================================
   BOTÓN RESTABLECER TODO
========================================================= */

.wpc-filter-chips-list li.wpc-chip-reset-all a{
display:inline-flex;
align-items:center;
border:1px solid #444 !important;
border-radius:20px;
padding:4px 12px;
background:#1b1b1b;
color:#ffffff !important;
transition:all .2s ease;
}

/* hover restablecer */

.wpc-filter-chips-list li.wpc-chip-reset-all a:hover{
border-color:#ff2e58 !important;
color:#ff2e58 !important;
}


/* =========================================================
   BLOQUE OFERTAS DESTACADAS
   Slider horizontal para WooCommerce
========================================================= */


/* =========================================================
   CONTENEDOR GENERAL DE LA SECCIÓN
========================================================= */

.rm-ofertas-tienda{

margin-bottom:10px;
padding-bottom:22px;

border-bottom:1px solid #fafafa;

}


/* =========================================================
   TITULO DE LA SECCIÓN
========================================================= */

.rm-ofertas-tienda h2{

text-align:center;
margin-bottom:8px;

}


/* =========================================================
   CONTENEDOR DEL SLIDER
   - permite posicionar flechas
   - recorta fade dentro del borde redondeado
========================================================= */

.rm-ofertas-slider{

position:relative;

overflow:hidden;          /* recorta el fade correctamente */
border-radius:12px;       /* mismo radio que el contenedor */

}


/* =========================================================
   CONTENEDOR DE PRODUCTOS
   - una sola fila
   - scroll horizontal
   - centrado automático si hay pocos productos
========================================================= */

.rm-ofertas-tienda ul.products{

display:flex;
flex-wrap:nowrap;

overflow-x:auto;
scroll-behavior:smooth;


/* fondo promociones */

background:linear-gradient(
180deg,
#3b0000 0%,
#220000 40%,
#1b1b1b 100%
);

border:1px solid #2a2a2a;
border-radius:12px;

padding:30px 25px;

}


/* =========================================================
   PRODUCTOS INDIVIDUALES
========================================================= */

.rm-ofertas-tienda ul.products li.product{

flex:0 0 22%;
max-width:22%;

margin:0 10px;

float:none !important;

border:1px solid #141414;

transition:all .25s ease;

}


/* efecto hover suave */

.rm-ofertas-tienda ul.products li.product:hover{

transform:translateY(-4px);

box-shadow:0 8px 18px rgba(0,0,0,0.45);

border-color:#a00000;

}


/* =========================================================
   AUTO CENTRADO CUANDO HAY POCOS PRODUCTOS
========================================================= */

.rm-ofertas-tienda ul.products li.product:first-child{
margin-left:auto;
}

.rm-ofertas-tienda ul.products li.product:last-child{
margin-right:auto;
}


/* =========================================================
   OCULTAR SCROLLBAR (estético)
========================================================= */

.rm-ofertas-tienda ul.products::-webkit-scrollbar{
display:none;
}


/* =========================================================
   FLECHAS DEL SLIDER
========================================================= */

.rm-slider-prev,
.rm-slider-next{

position:absolute;

top:50%;
transform:translateY(-50%);

background:#c40000;
color:#ffffff;

border:none;

width:42px;
height:42px;

border-radius:50%;

cursor:pointer;

z-index:10;

box-shadow:0 5px 15px rgba(0,0,0,0.45);

transition:all .2s ease;

}


/* posición izquierda */

.rm-slider-prev{
left:-12px;
}


/* posición derecha */

.rm-slider-next{
right:-12px;
}


/* hover flechas */

.rm-slider-prev:hover,
.rm-slider-next:hover{

background:#ff0000;

transform:translateY(-50%) scale(1.05);

}


/* =========================================================
   FADE LATERAL (indica que hay más productos)
   ahora respeta el borde redondeado
========================================================= */

.rm-ofertas-slider::before,
.rm-ofertas-slider::after{

content:"";

position:absolute;

top:0;
height:100%;
width:40px;

pointer-events:none;

z-index:5;

border-radius:12px;

}


/* fade izquierdo */

.rm-ofertas-slider::before{

left:0;

background:linear-gradient(
90deg,
rgba(27,27,27,0.95),
rgba(27,27,27,0)
);

}


/* fade derecho */

.rm-ofertas-slider::after{

right:0;

background:linear-gradient(
270deg,
rgba(27,27,27,0.95),
rgba(27,27,27,0)
);

}

/* =========================================================
   RESPONSIVE SLIDER PRODUCTOS
========================================================= */


/* DESKTOP GRANDE */

@media (min-width:1200px){

.rm-ofertas-tienda ul.products li.product{

flex:0 0 22%;
max-width:22%;

}

}


/* TABLET / NOTEBOOK */

@media (max-width:1199px){

.rm-ofertas-tienda ul.products li.product{

flex:0 0 30%;
max-width:30%;

}

}


/* TABLET CHICA */

@media (max-width:900px){

.rm-ofertas-tienda ul.products li.product{

flex:0 0 45%;
max-width:45%;

}

}


/* MOVIL */

@media (max-width:600px){

.rm-ofertas-tienda ul.products li.product{

flex:0 0 70%;
max-width:70%;
}
}

/* =========================================================
   BOTON DE BUSQUEDA EN LA TIENDA
========================================================= */


.woocommerce-product-search{
display:flex;
gap:8px;
margin-bottom:20px;
}

.woocommerce-product-search input{
flex:1;
padding:8px;
border-radius:6px;
}

.woocommerce-product-search button{
background:#ff00d5;
color:white;
border:none;
padding:8px 12px;
border-radius:6px;
cursor:pointer;
}

.single-product .product_meta .stock::before,
.single-product .stock::before {
    content: "" !important;
}

/* =========================================
   QUITAR EL NUMERO DE DISPONIBLES EN EL STOCK DE LA TIENDA (VIENDO EL PRODUCTO)
========================================= */

.woocommerce div.product .ast-stock-avail{
display:none !important;
}
/* CONTENEDOR */
.stock{
display:inline-block;
padding:6px 14px;
border-radius:999px;
font-size:13px;
font-weight:500;
letter-spacing:0.3px;
margin:12px 0;
transition:all 0.3s ease;
}

/* DISPONIBLE (más vibrante) */
.stock.in-stock{
background:rgba(0, 255, 157, 0.18);
color:#00ffa2;
border:1px solid rgba(0,255,162,0.6);
box-shadow:0 0 8px rgba(0,255,162,0.25);
animation:stockPulse 3s infinite ease-in-out;
}

/* SIN STOCK */
.stock.out-of-stock{
background:rgba(255, 60, 60, 0.15);
color:#ff4d4d;
border:1px solid rgba(255,77,77,0.5);
}

/* ICONOS */
.stock.in-stock::before{
content:"✔ ";
font-size:12px;
}

.stock.out-of-stock::before{
content:"✖ ";
font-size:12px;
}

/* HOVER */
.stock:hover{
transform:translateY(-1px);
box-shadow:0 4px 12px rgba(0,0,0,0.25);
}

/* ANIMACIÓN SUAVE */
@keyframes stockPulse {
0%{ transform:scale(1); }
50%{ transform:scale(1.05); }
100%{ transform:scale(1); }
}


/* =========================================
   QUITAR LOS FILTROS ACTIVOS (ej: Restablecer todo)
========================================= */


.wpc-filter-chip{
display:none !important;
}

/* =========================================
   CARRITO QUE SE MUESTRA SOLO EN LA TIENDA EN LA PARTE SUPERIOR
========================================= */


.rm-header-cart {
    background: #171717;
    color: #fff;
    padding: 8px 12px;
    font-size: 14px;
}

.rm-header-cart a {
    color: inherit;
    text-decoration: none;
}

/* =========================================
deslizante de la comunidad
========================================= */

.rm-whatsapp-bar {
    background: #171717;
    color: #fff;
    overflow: hidden;
    white-space: nowrap;
    font-weight: 500;
    font-size: 14px;
	padding: 8px 0; 

    width: 100vw;
    position: relative;
    left: 50%;
    margin-left: -50vw;
}

.rm-whatsapp-bar a {
    color: white;
    text-decoration: none;
    display: block;
}

.rm-marquee {
    display: inline-block;
    padding-left: 100%;
    animation: rm-scroll 15s linear infinite;
}

@keyframes rm-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

.rm-marquee:hover {
    animation-play-state: paused;
}

@media (max-width: 768px) {
    .rm-marquee {
        animation-duration: 18s;
    }
	 .rm-whatsapp-bar {
        font-size: 13px;
    }
}

/* =========================================
 * AGREGAR PIE DE SERVICIOS RECOMENDADOS (EN PRODUCTOS WOOCOMMERCE)
 * ========================================= */
/* Contenedor general */
.product-footer-content {
    margin-top: 25px;
    padding-top: 15px;
    border-top: 1px solid #333;
    font-size: 0.95em;
    color: #ccc;
}

/* Links */
.product-footer-content a {
    color: #FFEA00;
    font-weight: bold;
    text-decoration: none; /* ❌ sin subrayado */
    transition: color 0.2s ease;
}

/* Hover en links */
.product-footer-content a:hover {
    color: #ff4da6; /* 🎯 color hover (ajustable) */
    text-decoration: none; /* aseguramos que no aparezca */
}

/* Listas */
.product-footer-content ul {
    margin: 10px 0;
    padding-left: 18px;
}

/* Espaciado entre items (más compacto) */
.product-footer-content li {
    margin-bottom: 4px; /* 🔽 reduce espacio */
    line-height: 1.3; /* 🔽 más compacto */
}

/* Opcional: último item sin margen extra */
.product-footer-content li:last-child {
    margin-bottom: 0;
}

.product-footer-content a {
    background: rgba(255, 234, 0, 0.1);
    padding: 2px 6px;
    border-radius: 6px;
}