/* --- Cartes produit --- */
.bb-product-filter .product-card {
    max-width: 250px;
    min-width: 250px;
    text-align: center;
    border-radius: 8px;
    position: relative;
    box-shadow: 5px 12px 50px rgba(0, 0, 0, 0.25);

    -webkit-box-shadow:    5px 12px 50px rgba(0, 0, 0, 0.25);
    -moz-box-shadow:   5px 12px 50px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease;
}

.bb-product-filter .product-card:hover {
    transform: scale(1.03);
}
.product-single-pix bdi { font-size: 1.8em; }
/* Image produit */
.bb-product-filter .product-card img {
    width: 100%;
    height: auto;
    max-height: 200px;
    border-radius: 10px;
}

/* Titre produit */
.bb-product-filter .product-card .product-title {
    color: #0A246A;
    font-size: 1.2em;
    padding: 15px;
}

.bb-product-filter .product-card .product-title:hover,
.product-single-pix:hover {
    text-decoration: none !important;
}

/* Prix */
.bb-product-filter .price {
    font-weight: bold;
    margin: 5px 0 50px 0 !important;
    text-align: center;
}

.bb-product-filter .price bdi {
    font-weight: bold;
    color: #0A246A !important;
}

/* Bordure et conteneur */
.bb-product-filter .pix-border {
    width: 100%;
    overflow: hidden;
    margin: 0 auto;
}

@supports (display: flex) {
    .pix-border {
        display: flex;
    }
}

/* Bouton détails */
.bb-product-filter .product-card .btn-details {
    background-color: #ff6600;
    color: #fff;
    width: 80%;
    padding: 8px 15px;
    border-radius: 50px;
    text-decoration: none;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -15px;
    margin: 50px auto 0 auto;
    transition: background 0.3s ease;
}

.bb-product-filter .product-card .btn-details:hover {
    background-color: #e65c00;
}

/* Grille produits */
@supports (display: grid) {
    .bb-product-filter .product-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-row-gap: 150px;
        grid-column-gap: 10px;
        margin-top: 20px;
        justify-items: center;
    }
}

@media screen and (max-width: 1000px) {
    @supports (display: flex) {
        .bb-product-filter .product-grid {
            display: flex;
            flex-direction: column;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
        }
    }
}
