:root{--page-title-display:none;}/* Start custom CSS for shortcode, class: .elementor-element-ba3fede */.contenedor {
    display: flex;
    gap: 20px;
    margin: 20px;
}

.filtros {
    width: 30%;
    background-color: #FFFFFF;

    height: 100%;
}

.filtros h3 {
    font-size: 16px;
    margin-bottom: 15px;
    color: #004759;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
}

.filter-section {
    margin-bottom: 20px;
    border: 1px solid rgba(62, 69, 94, .5);
    border-radius: 5px;
    
}

.filter-title {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background-color: #FFFFFF;
    font-size: 14px;
    font-weight: bold;
    color: #004759;
    cursor: pointer;
    border-bottom: 1px solid rgba(62, 69, 94, .5);
    transition: background-color 0.3s ease;
}

.filter-title:hover {
    background-color: #F9F9F9;
}

.filter-title-text {
    text-align: left;
    flex-grow: 1;
}

.filter-toggle-icon {
    text-align: right;
    color: #FF7500;
    font-size: 16px;
}

.filter-content {
    margin-top: 10px;
    display: block;
    transition: all 0.3s ease;
}

.filter-content.hidden {
    display: none;
}

/* Filtro seleccionado */
.filtro-seleccionado {
    background-color: #F9F9F9;
    color: white;
}

/* Filtro hijo seleccionado */
.filtro-hijo-seleccionado {
    background-color: #F9F9F9;
    color: white;
}

/* Estilo para los enlaces dentro del filtro seleccionado */
.filtro-seleccionado .categoria-title {
    background-color: #F9F9F9;
    color: #004759;
}

.filtro-seleccionado .categoria-span {
    background-color: #F9F9F9;
    
}

.sorting-container {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    
}
.orden {
    border-bottom: 1px solid rgba(62, 69, 94, .5);
}
.sorting-container label {
    color: #004759;
    
}

.sorting-select {
    font-weight: bold;
    padding: 8px;
    border: 1px solid #E3E3E3;
    border-radius: 5px;
    font-size: 14px;
    color: #004759;
    background-color: #FFFFFF;
    cursor: pointer;
}

.sorting-select:focus {
    outline: none;
}

.btn-hamburguesa {
        display: none;
    }
    
.btn-limpiar-filtros2 {
    padding: 8px 12px;
    background-color: #FF7500;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}


.btn-limpiar-filtros {
    display: none;
}

.btn-limpiar-filtros2:hover {
    background-color: #FB8A4B;
    color: #FFF;
}


.categoria {
    margin-bottom: 11px;
    border-bottom: 1px solid #E3E3E3;
    display: grid;
    grid-template-columns: 10% 90%;
    justify-content: space-between;
    align-items: center;
    
}

.clasificacion {
    margin-bottom: 11px;
    border-bottom: 1px solid #E3E3E3;
    display: block;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    
}

.categoria-span{
    font-size: 20px;
    color: #FF7500;
    padding: 10px;
    background-color: #FFFFFF;
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    width: 100%;
}

.categoria-title {
    font-size: 13px;
    font-weight: bold;
    color: #004759;
    padding: 10px;
    background-color: #FFFFFF;
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    width: 100%;
}

/* Checkmark al lado de categorías seleccionadas */
.checkmark {
    color: #FF7500;
    font-weight: bold;
    margin-left: 8px; /* Espacio entre el texto y el checkmark */
    font-size: 16px;
}


.categoria-title:hover {
    color: #FF7500;
}

.cate-title {
    text-align: left;
    cursor: pointer;
}

.categoria-title .toggle-icon {
    font-size: 14px;
    color: #FF7500;
    margin-left: 10px;
    transition: transform 0.2s ease;
    cursor: pointer;
}


.filtro-cantidad {
    color: #FFFFFF;
    border-radius: 10px;
    background-color: #004759;
}

.categoria-content {
    display: none;
    padding: 10px 15px;
    background-color: #FFFFFF;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.categoria-content.mostrar {
    display: block;
}

.subcategorias {
    display: none;
    margin-left: 10px;
    margin-top: 10px;
    padding-left: 15px;
    border-left: 3px solid #00658E;
    font-size: 14px;
}

.subcategorias.mostrar {
    display: block;
}

.subcategoria-item {
    font-size: 14px;
    color: #333333;
    margin-bottom: 5px;
    cursor: pointer;
    transition: color 0.2s ease;
}

.subcategoria-item:hover {
    color: #00658E;
    text-decoration: underline;
}

.productos-lista {
    width: 70%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.producto {
    cursor: pointer;
    display: flex;
    align-items: center;
    padding: 20px;
    background-color: #FFFFFF;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
    gap: 20px;
    border-left: 4px solid #FF7500;
    transition: box-shadow 0.3s ease;
}

.producto:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border-left: 4px solid #00658e;
}

.producto-imagen {
    width: 100px;
    height: 100px;
    border-radius: 8px;
    border: 2px solid #00658e;
    overflow: hidden;
    background-color: #F9F9F9;
}

.producto:hover .producto-imagen{
    width: 100px;
    height: 100px;
    border-radius: 8px;
    border: 2px solid #FF7500;
    overflow: hidden;
    background-color: #F9F9F9;
}

.producto-imagen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.producto-info {
    flex: 1;
}

.producto-info h3 {
    font-size: 18px;
    color: #333333;
    margin-bottom: 5px;
    font-weight: bold;
}

.producto-info p {
    font-size: 14px;
    color: #555555;
    margin: 2px 0;
}

.producto-info .rating {
    color: #FFB400;
    font-size: 16px;
    margin-top: 10px;
}

.contenedor-paginacion {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.paginacion {
    display: flex;
    gap: 8px;
    align-items: center;
}

.pagina {
    display: inline-block;
    padding: 8px 12px;
    background-color: #FF7500;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.pagina:hover {
    background-color: #FB8A4B;
}

.pagina.active {
    background-color: #00658E;
    pointer-events: none;
}
/* Estilos generales para móviles */
@media screen and (max-width: 768px) {
    
    /* Ocultar la sección de filtros por defecto */
.filtros {
        position: fixed;
        top: 60px; /* Ajusta el valor según la altura de tu header */
        left: -100%;
        height: calc(100% - 60px); /* Restar la altura del header */
        width: 70%;
        background-color: #FFFFFF;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
        overflow-y: auto;
        transition: left 0.3s ease;
        z-index: 999;
    }

/* Mostrar el menú cuando esté activo */
.filtros.mostrar {
    left: 0; /* Muestra el menú deslizándolo desde la izquierda */
}

    /* Botón del menú hamburguesa */
    .btn-hamburguesa {
        display: block;
        background-color: #FF7500;
        color: #FFFFFF;
        padding: 5px;
        border: none;
        font-size: 16px;
        cursor: pointer;
        border-radius: 5px;
        margin-bottom: 10px;
        transition: background-color 0.3s ease;
    }

    .btn-hamburguesa:hover {
        background-color: #FB8A4B;
    }
    
.btn-limpiar-filtros {
    display: flex;
    padding: 8px 12px;
    background-color: #FF7500;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}


.btn-limpiar-filtros2 {
    display: none;
}

.btn-limpiar-filtros:hover {
    background-color: #FB8A4B;
    color: #FFF;
}
    
    .sorting-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        
    }

    /* Ocultar título "Ordenar por:" */
    .sorting-container label {
        display: none;
    }

    /* Ajustar la sección de productos para ocupar toda la pantalla */
    .productos-lista {
        width: 100%;
    }

    /* Posicionar el botón de limpiar filtros */
    .btn-limpiar-filtros {
        margin-left: 10px;
    }

    /* Mostrar el botón "Limpiar Filtros" al lado del menú hamburguesa */
    .menu-container {
        display: flex;
        gap: 10px;
        align-items: center;
    }
}
@media screen and (max-width: 600px) {
    .producto {
        flex-direction: column; /* Cambia la dirección a columna */
        align-items: center; /* Centra los elementos */
        text-align: center; /* Centra el texto */
    }

    .producto-imagen {
        width: 150px; /* Ajusta el tamaño de la imagen */
        height: 150px;
        margin-bottom: 10px; /* Espacio entre la imagen y el texto */
    }

    .producto-info {
        width: 100%; /* Ocupa todo el ancho */
    }

    .producto-info h3 {
        font-size: 16px; /* Ajusta el tamaño de los títulos */
    }

    .producto-info p {
        font-size: 14px; /* Ajusta el tamaño del texto */
    }
}/* End custom CSS */