.bm-voyado-recommendation {
    max-width: 1280px;
    margin: 32px auto 32px;
    padding: 0 16px;
}

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

.bm-voyado-recommendation__title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    width: 100%;
    margin: 0;
    color: #213724;
    font-size: 2em;
    font-weight: 300;
    line-height: 1.2;
    text-align: center;
}

.bm-voyado-recommendation__title::before,
.bm-voyado-recommendation__title::after {
    content: '';
    display: block;
    height: 1px;
    flex-grow: 1;
    background-color: #78cb82;
}

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

.bm-voyado-carousel__viewport {
    width: 100%;
    overflow: hidden;
}

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

.bm-voyado-carousel__slide {
    box-sizing: border-box;
    flex: 0 0 25%;
    width: 25%;
    padding: 0 10px;
}

.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: 6px;
    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: 6px;
    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__controls {
    display: flex;
    justify-content: center;
    margin-top: 16px;
}

.bm-voyado-carousel__pagination {
    display: flex;
    gap: 8px;
}

.bm-voyado-carousel__dot {
    width: 8px;
    height: 8px;
    border: 0;
    border-radius: 999px;
    background: #c7d4c8;
    cursor: pointer;
}

.bm-voyado-carousel__dot.is-active {
    background: #3eb54c;
}

.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: 6px;
    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;
}

.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 33.3333%;
        width: 33.3333%;
    }
}

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

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

    .bm-voyado-recommendation__title {
        gap: 12px;
        font-size: 2em;
    }

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

    .bm-voyado-carousel__track {
        margin: 0 -6px;
    }

    .bm-voyado-carousel__arrow {
        display: none;
    }

    .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;
    }
}

@media (max-width: 480px) {
    .bm-voyado-carousel__slide {
        flex: 0 0 100%;
        width: 100%;
        padding: 0;
    }

    .bm-voyado-carousel__track {
        margin: 0;
    }
}
