/* ===== АКЦИИ С КАРУСЕЛЬЮ ===== */
.promotions-section {
    margin: 80px 0;
    width: 100%;
}

.promotions-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.promotions-header h3 {
    font-size: 56px;
    font-weight: 500;
    color: #433f45;
    margin: 0;
}

.promotions-arrows {
    display: flex;
    gap: 15px;
}

.promo-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: 1px solid #e0e0e0;
    color: #a43ccf;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.promo-arrow:hover {
    background: #a43ccf;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(164, 60, 207, 0.3);
}

.promo-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

.promotions-carousel-container {
    width: 100%;
    overflow: hidden;
    margin-bottom: 30px;
}

.promotions-carousel {
    display: flex;
    transition: transform 0.5s ease;
    gap: 15px;
}

.promotion-card {
    flex: 0 0 calc(80% - 4px);
    min-width: 0;
    background: white;
    border-radius: 30px;
    border: 1px solid #E6E6F0;
    overflow: hidden;
    display: flex;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    opacity: 0.6;
}

.promotion-card.active {
    opacity: 1;
    transform: scale(1);
}

.promotion-card-content {
    flex: 1;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

.promotion-card h4 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #433f45;
    line-height: 1.0;
}

.promotion-card p {
    font-size: 16px;
    color: #433f45;
    line-height: 1.5;
    margin-bottom: 30px;
    flex: 1;
}

.promotion-card-footer {
    margin-top: auto;
}

.promotion-btn {
    display: inline-block;
    background: #a43ccf;
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 2px solid #a43ccf;
}

.promotion-btn:hover {
    background: white;
    color: #a43ccf;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(211, 206, 212, 0.6);
}

.promotion-card-image {
    flex: 0 0 40%;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.promotion-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.promotion-card-content {
    background: linear-gradient(90deg, white 80%, transparent 100%);
    padding-right: 50px;
}

/* Индикаторы для карусели акций */
.promotions-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

.promo-dot {
    cursor: pointer;
    width: 12px;
    height: 12px;
    background-color: rgba(164, 60, 207, 0.3);
    border-radius: 50%;
    display: inline-block;
    transition: all 0.3s ease;
}

.promo-dot.active {
    background-color: #a43ccf;
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(164, 60, 207, 0.5);
}

.promo-dot:hover {
    background-color: #a43ccf;
    transform: scale(1.1);
}

.promotions-section-main-div {
    background: white;
    padding: 80px 100px;
    border-radius: 50px;
}

/* ===== АДАПТИВ АКЦИЙ ===== */
@media (max-width: 1200px) {
    .promotions-section-main-div {
        padding: 60px 50px;
    }
}

@media (max-width: 992px) {
    .promotions-header {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

    .promotions-section-main-div {
        padding: 40px 30px;
        border-radius: 40px;
    }

    .promotion-card {
        flex: 0 0 90%;
        flex-direction: column;
    }

    .promotion-card-image {
        flex: 0 0 200px;
        width: 100%;
    }

    .promotion-card-content {
        background: white;
        padding-right: 30px;
    }
}

@media (max-width: 768px) {
    .promotions-section {
        margin: 60px 0;
    }

    .promotions-header h3 {
        font-size: 42px;
    }

    .promotions-section-main-div {
        padding: 30px 20px;
        border-radius: 30px;
    }

    .promotion-card {
        flex: 0 0 95%;
        flex-direction: column;
    }

    /* КАРТИНКА ПЕРВАЯ В МОБИЛЬНОЙ ВЕРСИИ */
    .promotion-card {
        flex-direction: column-reverse;
    }

    .promotion-card-image {
        flex: 0 0 180px;
        width: 100%;
        order: -1;
    }

    .promotion-card-content {
        padding: 25px 20px;
    }

    .promotion-card h4 {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .promotion-card p {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .promotion-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .promotions-header h3 {
        font-size: 36px;
    }

    .promotions-section-main-div {
        padding: 25px 15px;
        border-radius: 25px;
    }

    .promotion-card {
        flex: 0 0 100%;
    }

    .promotion-card-content {
        padding: 20px 15px;
    }

    .promotion-card h4 {
        font-size: 18px;
    }

    .promo-arrow {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}