/* Shared product-carousel presentation used outside the full shop bundle. */
.mhb-shop-section {
    padding: 28px 0 16px;
}

.mhb-shop-section__frame {
    width: calc(100% - 100px);
    margin: 0 auto;
}

.mhb-shop-section__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 26px;
    text-align: center;
}

.mhb-shop-section__eyebrow {
    margin: 0;
    font-family: var(--mhb-font-display);
    font-size: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--mhb-accent);
}

.mhb-shop-section__title {
    margin: 0;
    font-family: var(--mhb-font-display);
    font-size: clamp(38px, 5vw, 56px);
    line-height: 0.95;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
}

.mhb-shop-section .mhb-btn--voir-tout {
    min-width: 180px;
    padding-bottom: 8px;
}

.mhb-shop-section .mhb-carousel {
    margin-top: 0;
}

.mhb-shop-section .mhb-carousel__track {
    align-items: stretch;
}

.mhb-card--product {
    flex: 0 0 350px;
    min-width: 300px;
    min-height: 430px;
}

.mhb-card--product .mhb-card__image {
    background: #fff;
}

.mhb-card--product .mhb-card__image img {
    object-fit: cover;
    object-position: center;
}

.mhb-card--product .mhb-card__overlay {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.02) 38%, rgba(0, 0, 0, 0.82) 100%);
}

.mhb-card--product .mhb-card__content {
    min-height: 140px;
}

.mhb-card--product .mhb-shop-card__price-tag {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin: 0 0 20px;
    padding: 8px 12px 5px;
    border-radius: 6px;
    background: var(--mhb-accent);
    color: #fff;
    font-family: var(--mhb-font-primary);
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0;
    text-transform: none;
}

.mhb-card--product .mhb-shop-card__price-tag :is(.price, .amount, bdi, ins, del) {
    color: inherit;
}

.mhb-card--product .mhb-shop-card__price-tag del {
    margin-right: 8px;
    font-size: 0.78em;
    text-decoration: line-through;
    text-decoration-thickness: 1.5px;
    opacity: 0.68;
}

.mhb-card--product .mhb-shop-card__price-tag ins {
    text-decoration: none;
}

.mhb-card--product .mhb-shop-discount-badge {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    min-height: 24px;
    padding: 2px 8px 4px;
    border-radius: 999px;
    background: var(--mhb-secondary, #007ac1);
    color: #fff;
    font-family: var(--mhb-font-primary);
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0;
    box-shadow: 0 4px 12px rgba(0, 122, 193, 0.28);
}

.mhb-card--product .mhb-card__title {
    -webkit-line-clamp: 2;
}

.mhb-card--product .mhb-card__cross::before {
    content: "";
    width: 24px;
    height: 24px;
    background: center / contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23E95323' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='9' cy='21' r='1'/%3E%3Ccircle cx='20' cy='21' r='1'/%3E%3Cpath d='M1 1h4l2.68 13.39a2 2 0 0 0 2 1.61h9.72a2 2 0 0 0 2-1.61L23 6H6'/%3E%3C/svg%3E");
}

.mhb-card--product:hover .mhb-card__cross::before {
    transform: none;
    text-shadow: none;
}

@media (max-width: 768px) {
    .mhb-shop-section__title {
        font-size: 40px;
    }

    .mhb-shop-section__frame {
        width: 100%;
    }

    .mhb-shop-section .mhb-btn--voir-tout {
        padding-bottom: 4px;
    }
}
