.bm-voyado-recommendation {
    margin: 32px 0;
    padding: 0;
}

.bm-voyado-recommendation__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 20px;
}

.bm-voyado-recommendation__title {
    margin: 0;
    color: var(--text-primary, #213724);
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.2;
}

.bm-voyado-carousel,
.bm-voyado-grid {
    position: relative;
    width: 100%;
}

.bm-voyado-carousel__viewport {
    width: 100%;
    overflow: hidden;
    padding-bottom: 12px;
    margin-bottom: -12px;
}

.bm-voyado-carousel__track {
    display: flex;
    gap: 12px;
    transition: transform .24s ease;
    will-change: transform;
}

.bm-voyado-carousel__slide {
    box-sizing: border-box;
    flex: 0 0 calc(25% - 9px);
    width: calc(25% - 9px);
}

.bm-voyado-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.bm-voyado-card__link,
.bm-voyado-card__image-link,
.bm-voyado-card__title-link {
    color: inherit;
    text-decoration: none;
}

.bm-voyado-card__image-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 4 / 5;
    border: 1px solid #edf1ee;
    border-radius: 8px;
    background: #fff;
    overflow: hidden;
}

.bm-voyado-card__image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.bm-voyado-card__title {
    display: -webkit-box;
    margin: 12px 0 8px;
    min-height: 40px;
    color: #213724;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.bm-voyado-card__title-link:hover .bm-voyado-card__title,
.bm-voyado-card__link:hover .bm-voyado-card__title {
    color: #2b7f35;
}

.bm-voyado-card__price {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
    min-height: 22px;
    margin-bottom: 12px;
    font-size: 14px;
}

.bm-voyado-card__price-old {
    color: #7c877d;
    text-decoration: line-through;
}

.bm-voyado-card__price-sale {
    color: #2b7f35;
    font-weight: 700;
}

.bm-voyado-card__price-regular {
    color: #213724;
    font-weight: 700;
}

.bm-voyado-card__cta {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 42px;
    padding: 0 14px;
    border: 1px solid #3eb54c;
    border-radius: 9999px;
    background: #3eb54c;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: background .16s ease, border-color .16s ease, opacity .16s ease;
}

.bm-voyado-card__cta:hover {
    background: #349540;
    border-color: #349540;
}

.bm-voyado-card__cta.is-loading {
    opacity: .72;
    cursor: progress;
}

.bm-voyado-carousel__arrow {
    position: absolute;
    top: 42%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    padding: 0;
    border: 1px solid #d8e2da;
    border-radius: 6px;
    background: #fff;
    color: #213724;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 6px 16px rgba(16, 24, 18, .10);
    z-index: 2;
}

.bm-voyado-carousel__arrow--prev {
    left: -4px;
}

.bm-voyado-carousel__arrow--next {
    right: -4px;
}

.bm-voyado-carousel__arrow[disabled] {
    opacity: .35;
    cursor: default;
}

.bm-voyado-carousel__progress-track {
    position: relative;
    height: 3px;
    margin-top: 20px;
    background: #e5e7eb;
    border-radius: 99px;
    overflow: hidden;
}

.bm-voyado-carousel__progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: #111827;
    border-radius: 99px;
    transition: transform .24s ease, width .24s ease;
}

.bm-voyado-grid--upsell .bm-voyado-grid__items {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.bm-voyado-card--upsell {
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr) 56px;
    gap: 14px;
    align-items: center;
    padding: 12px;
    border: 1px solid #edf1ee;
    border-radius: 12px;
    background: #fff;
}

.bm-voyado-card--upsell .bm-voyado-card__image-wrap {
    width: 96px;
    min-width: 96px;
}

.bm-voyado-card--upsell .bm-voyado-card__content {
    min-width: 0;
}

.bm-voyado-card--upsell .bm-voyado-card__title,
.bm-voyado-card--upsell .bm-voyado-card__price {
    margin: 0;
}

.bm-voyado-card--upsell .bm-voyado-card__content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bm-voyado-card--upsell .bm-voyado-card__actions {
    display: flex;
    justify-content: flex-end;
}

.bm-voyado-card__cta--icon {
    width: 42px;
    min-width: 42px;
    min-height: 42px;
    padding: 0;
    border-radius: 50%;
}

.bm-voyado-card__cta-icon {
    display: block;
    width: 18px;
    height: 18px;
    background: currentColor;
    -webkit-mask: url("../images/icon/add-to-cart.svg") center / contain no-repeat;
    mask: url("../images/icon/add-to-cart.svg") center / contain no-repeat;
}

.bm-voyado-atc-inline {
    margin-bottom: 32px;
}

.bm-voyado-card__visually-hidden {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@media (max-width: 1100px) {
    .bm-voyado-carousel__slide {
        flex: 0 0 calc(33.3333% - 8px);
        width: calc(33.3333% - 8px);
    }
}

@media (max-width: 768px) {
    .bm-voyado-recommendation {
        margin: 24px 0;
    }

    .bm-voyado-atc-inline {
        margin-bottom: 24px;
    }

    .bm-voyado-carousel__slide {
        flex: 0 0 calc(50% - 6px);
        width: calc(50% - 6px);
    }

    .bm-voyado-card__title {
        min-height: 0;
        font-size: 13px;
    }

    .bm-voyado-card__cta {
        min-height: 40px;
    }

    .bm-voyado-card--upsell {
        grid-template-columns: 84px minmax(0, 1fr) 48px;
        gap: 10px;
        padding: 10px;
    }

    .bm-voyado-card--upsell .bm-voyado-card__image-wrap {
        width: 84px;
        min-width: 84px;
    }
}
