@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700&display=swap');

#mi-filtro-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#mi-filtro-sidebar {
    width: 100%;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    #mi-filtro-container {
        flex-direction: row;
    }

    #mi-filtro-sidebar {
        width: 250px;
    }
}

.mi-filtro-btn {
    display: block;
    width: 100%;
    margin-top: 10px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    color: #333333;
    background-color: transparent;
    border: none;
    border-radius: 0;
    padding: 10px 0;
    cursor: pointer;
    transition: color 0.3s ease;
    text-align: left;
}

.mi-filtro-btn:hover {
    color: #000000;
}

.filtro-acordeon {
    border: none;
    margin-bottom: 10px;
    border-radius: 0;
    overflow: hidden;
}

.acordeon-titulo {
    background-color: transparent;
    padding: 12px 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    border-bottom: 1px solid #333333;
}

.acordeon-titulo h3 {
    margin: 0;
    font-size: 15px !important;
    font-weight: 800 !important;
    color: #333333 !important;
    text-align: left;
}

.acordeon-titulo::after {
    content: '+';
    font-size: 24px;
    font-weight: 500;
    color: #333333;
    transition: transform 0.3s ease-in-out;
}

.filtro-acordeon.activo .acordeon-titulo::after {
    content: '-';
    transform: rotate(0deg);
}

.acordeon-contenido {
    padding: 0 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.acordeon-contenido ul {
    margin: 0;
    padding: 15px 0;
}

.filtro-acordeon.activo .acordeon-contenido {
    max-height: 500px;
    padding: 15px 0;
}

#mi-filtro-productos-grid .fusion-price-rating {
    display: none !important;
}

#mi-filtro-productos-grid .woocommerce-LoopProduct-link:hover .hover-image,
#mi-filtro-productos-grid .woocommerce-LoopProduct-link .hover-image {
    display: none !important;
}

#mi-filtro-productos-grid .woocommerce-loop-product__title {
    color: #ec2f42;
    margin-bottom: 24px;
    text-align: center;
}

#mi-filtro-productos-grid .add_to_cart_button {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    background-color: #ffffff !important;
    color: #be1e2d;
    border: none;
    border-radius: 0;
    padding: 10px 15px;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

#mi-filtro-productos-grid .add_to_cart_button:hover {
    background-color: #ffffff !important;
    color: #000000;
    border: none;
}

#mi-filtro-productos-grid .add_to_cart_button::before {
    color: #be1e2d;
    transition: color 0.3s ease;
}

#mi-filtro-productos-grid .add_to_cart_button:hover::before {
    color: #000000;
}

#mi-filtro-productos-grid ul.products li.product:only-child {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
    margin-right: 0 !important;
}