/*
	BOUTIQUE
*/

/* text-counter */
.boutique-section .woocommerce-result-count {
    display: none;
}

/*!* cards *!*/
.boutique-section ul.products li.product {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

/* image */
.boutique-section ul.products li.product a img {
    width: 100%;
    height: 260px;
    min-height: 220px;
    max-height: 360px;
    margin-top: 20px;
    object-fit: cover;
    border-radius: .5rem;
    transition: transform 0.3s ease;
}
.boutique-section ul.products li.product:hover img {
    transform: scale(1.04);
}
.boutique-section ul.products li.product a {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* DESCRIPTION */
.boutique-section ul.products li.product .product-bottom {
    margin-top: auto;
}

/* title */
.boutique-section ul.products li.product .woocommerce-loop-product__title,
.boutique-section .woocommerce-loop-product__title {
    font-size: 16px;
    font-weight: 600;
    color: #0E3B70;
    margin: 12px 0 8px;
    line-height: 1.4;
    min-height: 45px;
}

/* price */
.boutique-section ul.products li.product .price,
.boutique-section .price {
    margin-bottom: 10px;
    min-height: 24px;
}
.boutique-section .woocommerce-Price-amount.amount bdi {
    font-size: 18px;
    font-weight: 700;
    color: #1CA9C9;
}

/* buttons */
.boutique-section ul.products li.product .button {
    text-align: center;
}
.boutique-section .products .button {
    display: block;
    text-align: center;
    margin-bottom: 10px;
    background: #0E3B70;
    color: #fff;
    padding: 8px 15px;
    border-radius: 25px;
    font-size: 13px;
    transition: all 0.3s ease;
}
.boutique-section .products .button:hover {
    background: #1CA9C9;
}