/*
Theme Name: Custom Theme
Theme URI: http://example.com/custom-theme/
Description: Kadence Child Theme
Author: Gabriel Romero
Author URI: http://example.com
Template: kadence
Version: 1.0.0
*/
.category_banner {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    min-height: 150px;
    position: relative;
    display: flex;
    justify-content: center;
    padding: 10px 20px;
    color: white;
    align-items: center;
    margin-bottom: 20px;
}

.category_banner .category_banner-content {
    flex-direction: column;
    gap: 20px;
    max-width: 900px;
    padding: 10px;
}

.category_banner h1 {
    font-size: 60px;
    color: white;
}

.category_banner p {
    font-size: 20px;
    ;
}


/* Tamaños de fuente para pantallas grandes (ej. computadoras de escritorio) */
@media (min-width: 1200px) {
    .category_banner h1 {
        font-size: 60px;
    }

    .category_banner p {
        font-size: 20px;
    }
}

/* Tamaños de fuente para pantallas medianas (ej. tablets) */
@media (min-width: 768px) and (max-width: 1199px) {
    .category_banner h1 {
        font-size: 40px;
    }

    .category_banner p {
        font-size: 20px;
    }
}

/* Tamaños de fuente para pantallas pequeñas (ej. teléfonos móviles) */
@media (max-width: 767px) {
    .category_banner h1 {
        font-size: 30px;
    }

    .category_banner p {
        font-size: 18px;
    }
}


/* BANNER DE BLACK FRIDAY */
.pb-banner {
    width: 100vw;
    background-color: #718096;
    padding: 10px;
}

.pb-banner__content {
    max-width: 1220px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: auto;
    gap: 20px;
    color: white;
    font-size: 1.1rem;
    text-align: center;
    font-weight: 500;
}

@media screen and (min-width : 900px) {
    .pb-banner__content {
        font-size: 1.5rem;
    }
}

/* FIN BANNER DE BLACK FRIDAY */

/*ESTILOS PARA CAMBIAR DIRECCION DE BOTON AGREGAR AL CARRITO Y CETELEM */


.woocommerce div.product form.cart .woocommerce-variation-add-to-cart {
    display: flex;
    flex-direction: column;
}

.woocommerce #eCalculadoraCetelemDiv {
    order: 10;
}

.custom-cantidad-y-boton {
    margin-bottom: 10px;
}

/* Banner de ofertas*/

.sales-banner__container {
    min-height: 70px;
    padding-bottom: 10px;
    padding-top: 10px;
    background-color: #000000;
    background: #000000;
    /* background-image: url(https://probikesrioja.com/wp-content/uploads/2025/07/banner-rebajas.jpg); */
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: #e7ff00;
    font-weight: bold;
}

.sales-banner__text {
    margin: 0;
    font-size: clamp(1.125rem, 0.8274rem + 1.1905vw, 1.75rem);
    text-align: center;
}


/* @media (min-width:768px) {
    .sales-banner__container {
        flex-direction: row;
        gap: 20px;
    }
} */