/* =========================================================
   pro-vedette – produits mis en avant
   ========================================================= */

.pro-vedette-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25em;
}

@media (max-width: 1023px) {
    .pro-vedette-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 479px) {
    .pro-vedette-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Carte produit -------------------------------------- */
.pro-vedette-item {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .08);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: box-shadow .3s ease, transform .3s ease;
}

.pro-vedette-item:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, .15);
    transform: translateY(-5px);
}

/* Image */
.pro-vedette-image {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #f4f7fb;
}

.pro-vedette-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.pro-vedette-no-image {
    width: 100%;
    height: 100%;
}

/* Corps */
.pro-vedette-body {
    padding: 1.1em 1.2em 1.4em;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 1em;
}

.pro-vedette-title {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--e-global-color-1b6501e);
    font-family: "Montserrat", Sans-serif;
    text-transform: uppercase;
    letter-spacing: .02em;
    flex: 1;
}

/* Bouton produit */
.pro-vedette-btn {
    display: inline-block;
    padding: .55em 1.1em;
    border: 2px solid #1a2e5a;
    border-radius: 4px;
    color: #1a2e5a;
    font-family: "Open Sans", Sans-serif;
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
    letter-spacing: .05em;
    text-align: center;
    transition: background .2s ease, color .2s ease;
    align-self: flex-start;
}

.pro-vedette-btn:hover {
    background: #1a2e5a;
    color: #fff;
}

/* --- Carte CTA ----------------------------------------- */
.pro-vedette-cta {
    background: #f4f7fb;
    justify-content: center;
    align-items: center;
}

.pro-vedette-cta-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2em 1.5em;
    gap: 1em;
}

.pro-vedette-cta-icon svg {
    display: block;
    width: 64px;
    height: 64px;
}

.pro-vedette-cta-texte {
    margin: 0;
    color: #1a2e5a;
    font-size: .95em;
    line-height: 1.5;
    font-weight: 500;
}

/* Bouton CTA : plein */
.pro-vedette-btn-cta {
    background: #1a2e5a;
    color: #fff !important;
    border-color: #1a2e5a;
    align-self: center;
    white-space: nowrap;
}

.pro-vedette-btn-cta:hover {
    background: #243f7a;
    border-color: #243f7a;
}
