/*
 * "Mis en avant — Produit" — affichage front sur la fiche produit.
 * Préfixes BEM : .yat-product-highlighting-shipping__ et .yat-product-highlighting-feature__.
 */

.yat-product-highlighting-shipping,
.yat-product-highlighting-feature {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.5rem;
    align-items: center;
    margin: 2rem 0;
    padding: 1.5rem;
    background: #f7f5f1;
    border-radius: 12px;
}

.yat-product-highlighting-shipping__media,
.yat-product-highlighting-feature__media {
    flex-shrink: 0;
}

.yat-product-highlighting-shipping__image,
.yat-product-highlighting-feature__image {
    display: block;
    width: 96px;
    height: 96px;
    object-fit: cover;
    border-radius: 8px;
    background: #e8e4dd;
}

.yat-product-highlighting-feature__image {
    width: 140px;
    height: 140px;
    border-radius: 12px;
}

.yat-product-highlighting-shipping__body,
.yat-product-highlighting-feature__body {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    min-width: 0;
}

.yat-product-highlighting-shipping__text {
    margin: 0;
    font-size: .85rem;
    font-weight: 600;
    color: #c9a86b;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.yat-product-highlighting-shipping__title,
.yat-product-highlighting-feature__title {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 600;
    color: #1c1c1c;
    line-height: 1.3;
}

.yat-product-highlighting-shipping__description,
.yat-product-highlighting-feature__description {
    margin: 0;
    font-size: .95rem;
    line-height: 1.6;
    color: #3a3a3a;
}

.yat-product-highlighting-shipping__description :is(p, ul, ol):last-child,
.yat-product-highlighting-feature__description :is(p, ul, ol):last-child {
    margin-bottom: 0;
}

@media (max-width: 600px) {
    .yat-product-highlighting-shipping,
    .yat-product-highlighting-feature {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 1.25rem;
    }

    .yat-product-highlighting-shipping__media,
    .yat-product-highlighting-feature__media {
        margin: 0 auto;
    }

    .yat-product-highlighting-shipping__description,
    .yat-product-highlighting-feature__description {
        text-align: left;
    }
}
