.promo-banner-main__image {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
}

.promo-banner-main__category {
    color: #AFADA4;
    margin-bottom: 80px;
}

.promo-banner-main__title {
    font-size: clamp(16px, 5px + 2vw, 40px);
}

.promo-banner-main__badge {
    background: #539E53;
    border-radius: 38px;
    color: white;
    padding: 3px 13px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
}

.promo-banner-main {
    border: 1px solid white;
    border-radius: 10px;
    margin-top: 24px;
    position: relative;
}

.promo-banner-main__columns {
    display: flex;
    align-items: stretch;
    flex-direction: row;
    position: relative;
}

.promo-banner-main__column,
.promo-banner-main__content,
.promo-banner-main__image-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: #FBFBFB;
    border-radius: 10px;
    order: 0;
}

.promo-banner-main__image-col {
    position: relative;
}

.promo-banner-main__content {
    padding: 30px 0 30px 30px;
}

.promo-banner-main__text {
    color: #6F6F6F;
}

/* ✅ общий контейнер под пагинацию и кнопки */
.promo-banner-main__controls {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: flex-end;
    padding: 0 30px;
    box-sizing: border-box;
    z-index: 10;
}

/* ✅ пагинация */
.promo-banner-main .swiper-pagination {
    position: static;
    display: flex;
    justify-content: flex-start;
}

.promo-banner-main .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    border: 1px solid #B9B9B9;
    background: transparent;
    border-radius: 50%;
    opacity: 1;
    transition: all 0.3s ease;
    margin: 0;
}

.promo-banner-main .swiper-pagination-bullet-active {
    background: #539E53;
    border: none;
}

/* ✅ кнопки */
.promo-banner-main__buttons-group {
    position: static;
    display: flex;
    align-items: center;
}

.promo-banner-main__buttons-wrapper {
    display: flex;
    background: white;
    border-radius: 38px;
    padding: 5px;
}

.promo-banner-main__button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0;
}

.promo-banner-main__button:not(:disabled) {
    --content-slide-icon-arrow-color: #222;
}

.promo-banner-main__button-icon {
    border-radius: 100px;
    padding: 5px;
    transition: background-color 0.15s ease-in-out;
    width: 32px;
    height: 32px;
}

.promo-banner-main__button--left {
    margin-right: 2px;
}

.promo-banner-main__button--right {
    margin-left: 2px;
}

.promo-banner-main__buttons-group--light-yellow .promo-banner-main__button {
    background-color: #FFFFFF;
}

.promo-banner-main__buttons-group--light-yellow .promo-banner-main__button:not(:disabled):hover {
    background-color: #F4F3EF;
    transform: scale(1.05);
}

.promo-banner-main__buttons-group--light-yellow .promo-banner-main__button:not(:disabled):hover .promo-banner-main__button-icon {
    background-color: transparent;
}

.promo-banner-main__button.swiper-button-disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* ✅ адаптив */
@media (max-width: 1399px) {
    .promo-banner-main__category {
        margin-bottom: 60px;
    }
}

@media (max-width: 1199px) {
    .promo-banner-main__category {
        margin-bottom: 20px;
    }
}

@media (max-width: 991px) {
    .promo-banner-main__columns {
        flex-direction: column;
    }

    .promo-banner-main__controls {
        grid-template-columns: 1fr auto;
        padding: 0 15px;
        gap: 0;
    }

    .promo-banner-main__buttons-group {
        justify-content: flex-end;
    }

    .promo-banner-main .swiper-pagination {
        justify-content: flex-start;
    }

    .promo-banner-main__content {
        padding: 15px;
    }

    .promo-banner-main__title {
        font-size: clamp(16px, 20px + 2vw, 40px);
    }

    .promo-banner-main__category {
        margin-bottom: 40px;
    }
}
