/* ---------- Promo Banner ---------- */

.promo-banner-section {
    overflow: visible;
}

/* Promo Slider */
.js-promo-slider {
    max-width: 1450px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
}
.js-promo-slider .swiper-slide img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}
.promo-slide-link { display: block; }
.promo-img-desktop { display: block; }
.promo-img-mobile { display: none !important; }
@media (max-width: 767px) {
    .promo-img-desktop { display: none !important; }
    .promo-img-mobile { display: block !important; }
}

.promo-banner {
    max-width: 1450px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: visible;
    background: linear-gradient(90deg, #FFC726 0%, #FFE168 100%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 32px 48px;
    min-height: 140px;
    position: relative;
}

.promo-banner_left {
    display: flex;
    align-items: center;
    gap: 24px;
    flex: 1;
    min-width: 0;
}

.promo-banner_badge {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    margin-right: 80px;
    padding: 0 20px;
    gap: 20px;
}

.promo-banner_badge-number {
    font-weight: var(--font-weight-bold);
    font-size: 80px;
    line-height: 0.85;
    color: var(--color-text);
}

.promo-banner_badge-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-left: 2px;
}

.promo-banner_badge-percent {
    font-weight: var(--font-weight-bold);
    color: var(--color-text);
    font-size: 36px;
    line-height: 1;
}

.promo-banner_badge-text {
    font-weight: var(--font-weight-bold);
    font-size: 22px;
    color: var(--color-text);
    text-transform: uppercase;
    line-height: 1;
}

.promo-banner_divider {
    width: 2px;
    height: 120px;
    background: rgba(0, 0, 0, 0.15);
    flex: 0 0 auto;
}

.promo-banner_content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.promo-banner_title {
    font-weight: var(--font-weight-bold);
    font-size: 28px;
    color: var(--color-text);
    text-transform: uppercase;
    line-height: 1.4;
    margin: 0;
}

.promo-banner_desc {
    font-weight: var(--font-weight-regular);
    font-size: 18px;
    line-height: 1.5;
    color: var(--color-text);
    margin: 0;
}

.promo-banner_code {
    display: inline-block;
    background: #ffffff;
    color: var(--color-text);
    font-weight: var(--font-weight-semibold);
    font-size: 18px;
    line-height: 1.5;
    padding: 0px 16px;
    border-radius: 100px;
    letter-spacing: 0.5px;
    margin: 0 8px;
}

.promo-banner_img {
    position: absolute;
    right: 32px;
    top: 0px;
    height: 200px;
    width: auto;
    object-fit: contain;
    pointer-events: none;
}

/* ---- Responsive ---- */
@media (max-width: 991px) {
    .promo-banner {
        padding: 24px 28px;
    }

    .promo-banner_img {
        height: 150px;
        top: 0;
        right: 16px;
    }

    .promo-banner_badge-number {
        font-size: 64px;
    }

    .promo-banner_badge-percent {
        font-size: 28px;
    }

    .promo-banner_divider {
        height: 60px;
    }
}

@media (max-width: 767px) {
    .promo-banner {
        padding: 20px;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .promo-banner_img {
        display: none;
    }

    .promo-banner_badge {
        margin-right: 0;
        padding: 0;
        gap: 0;
    }

    .promo-banner_code {
        font-size: 12px;
        padding: 4px 6px;
        font-weight: var(--font-weight-semibold);
    }

    .promo-banner_badge-number {
        font-size: 48px;
    }

    .promo-banner_badge-percent {
        font-size: 20px;
    }

    .promo-banner_badge-text {
        font-size: 14px;
    }

    .promo-banner_title {
        font-size: 16px;
    }

    .promo-banner_desc {
        font-size: 14px;
    }

    .promo-banner_divider {
        height: 80px;
    }

    .promo-banner_content {
        gap: 8px;
    }
}

@media (min-width: 1200px) {
    .promo-banner {
        padding: 36px 60px;
        min-height: 150px;
    }

    .promo-banner_badge-number {
        font-size: 110px;
    }

    .promo-banner_badge-percent {
        font-size: 42px;
    }

    .promo-banner_badge-text {
        font-size: 24px;
    }

    .promo-banner_title {
        font-size: 26px;
    }

    .promo-banner_img {
        height: 240px;
        top: 0;
        right: 48px;
    }
}
