/* Conteneur général : image à gauche, produits à droite */
.rucher-module {
    display: flex;
    flex-wrap: nowrap;
    margin: 0 auto 4rem;
    overflow: hidden;
}

/* Colonne image */
.rucher-module__image {
    flex: 0 0 50%;
    max-width: 50%;
    min-height: 420px;
    background-size: cover;
    background-position: center center;
}

/* plus de filtre */
.rucher-module__overlay {
    display: none;
}

/* Colonne produits à droite */
.rucher-module__products {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 3rem 4rem;
    background: #ffffff;
}

/* Petit label au-dessus du H2 (optionnel) */
.rucher-module__label {
    margin: 0 0 0.4rem;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #888;
}

/* Titre H2 au-dessus des produits */
.rucher-module__title {
    margin: 0 0 2rem;
    font-size: clamp(2rem, 3vw, 2.8rem);
    line-height: 1.1;
    font-weight: 700;
}

/* On enlève les marges par défaut de WooCommerce dans ce bloc */
.rucher-module__products ul.products {
    margin: 0 !important;
}

/* 3 produits par ligne */
.rucher-module__products ul.products li.product {
    box-sizing: border-box;
    width: 33.3333% !important;
    margin: 0 0 3rem !important;
    padding-right: 2rem;
    float: left;
}

/* Responsive : 2 produits par ligne sur tablette, 1 sur mobile */
@media (max-width: 960px) {
    .rucher-module {
        flex-direction: column;
    }

    .rucher-module__image,
    .rucher-module__products {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .rucher-module__products {
        padding: 2rem 1.5rem;
    }

    .rucher-module__products ul.products li.product {
        width: 50% !important;
        padding-right: 1.5rem;
    }
}

@media (max-width: 600px) {
    .rucher-module__products ul.products li.product {
        width: 100% !important;
        padding-right: 0;
    }
}
