.promotions {
    background: #FCF5FC;
    position: relative;
}

.promotions__content {
    position: relative;
    z-index: 2;
}

.promotions__header {
    margin-bottom: 60px;
}

.promotions__title {
    font-family: Manrope, sans-serif;
    font-weight: 600;
    font-size: 55px;
    line-height: 64px;
    color: #5C075E;
    margin: 0 0 16px 0;
}

.promotions__description-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 40px;
}

.promotions__description {
    font-family: Manrope, sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    color: #5C075E;
    max-width: 900px;
    flex: 1;
}

.promotions__button {
    flex-shrink: 0;
    background: linear-gradient(180deg, #C05FC2 0%, #8D2A8F 100%);
    border-radius: 12px;
    padding: 16px 24px;
    font-family: Manrope, sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    color: #fff;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: inline-block;
    white-space: nowrap;
    align-self: flex-end;
}

.promotions__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(141, 42, 143, 0.3);
}

.promotions__button--mobile {
    display: none;
}

.promotions__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 1024px) {
    .promotions__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .promotions__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .promotions__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.promotions__card {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.promotions__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(141, 42, 143, 0.15);
}

.promotions__card-image-wrap {
    width: 100%;
    height: 240px;
    overflow: hidden;
    position: relative;
    border-radius: 12px;
    margin-bottom: 24px;
}

.promotions__card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.promotions__card-body {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: flex-start;
}

.promotions__card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.promotions__card-title {
    font-family: Manrope, sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 100%;
    color: #5C075E;
    margin-bottom: 16px;
    min-height: calc(1.2em * 3);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.promotions__card-description {
    font-family: Manrope, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #5C075E;
}

.promotions__card-aside {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-start;
    gap: 12px;
}

.promotions__card-prices {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: flex-end;
    margin-top: 20px;
}

.promotions__card-price-wrap {
    display: inline-block;
    background: #FCF5FC;
    padding: 8px 12px;
    border-radius: 6px;
    width: fit-content;
}

.promotions__card-price-new {
    font-family: Manrope, sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 100%;
    color: #5C075E;
}

.promotions__card-price-old {
    font-family: Manrope, sans-serif;
    font-weight: 300;
    font-size: 18px;
    line-height: 100%;
    color: #8E468F;
    text-decoration: line-through;
}

.promotions__card-more {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.2s ease;
    margin-top: 32px;
}

.promotions__card-more:hover {
    transform: translate(2px, -2px);
}

.promotions__card-arrow {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
}

@media (max-width: 1024px) {
    .is-promotions-page .promotions { padding-top: 30px !important; }

    .promotions__header {
        margin-bottom: 35px;
    }

    .promotions__title {
        font-size: 34px;
        line-height: 46px;
    }

    .promotions__description-wrapper {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
        gap: 30px;
    }

    .promotions__description {
        font-size: 14px;
        line-height: 22px;
    }

    .promotions__button {
        padding: 10px 22px;
        font-size: 12px;
        line-height: 16px;
        border-radius: 8px;
        align-self: flex-start;
        width: auto;
    }

    .promotions__card {
        padding: 20px;
        border-radius: 20px;
    }

    .promotions__card-image-wrap {
        height: 151px;
        border-radius: 20px;
        margin-bottom: 20px;
    }

    .promotions__card-title {
        font-size: 16px;
        line-height: 22px;
        margin-bottom: 10px;
    }

    .promotions__card-description {
        font-size: 12px;
        line-height: 16px;
    }

    .promotions__card-price-new {
        font-size: 16px;
    }

    .promotions__card-price-old {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .is-promotions-page .promotions { padding-top: 50px !important; }

    .promotions__header {
        margin-bottom: 25px;
    }

    .promotions__title {
        font-size: 24px;
        line-height: 27px;
    }

    .promotions__description {
        font-size: 12px;
        line-height: 18px;
    }

    .promotions__description-wrapper {
        flex-direction: column;
        gap: 10px;
    }

    .promotions__description-wrapper .promotions__button {
        display: none;
    }

    .promotions__button--mobile {
        display: block;
        width: 100%;
        text-align: center;
        padding: 10px 20px;
        font-size: 12px;
        border-radius: 8px;
        margin-top: 20px;
    }

    .promotions__card {
        padding: 20px;
        border-radius: 20px;
    }

    .promotions__card-image-wrap {
        height: 151px;
        border-radius: 20px;
        margin-bottom: 20px;
    }

    .promotions__card-title {
        font-size: 16px;
        line-height: 22px;
        margin-bottom: 10px;
        min-height: auto;
    }

    .promotions__card-description {
        font-size: 12px;
        line-height: 16px;
    }

    .promotions__card-body {
        flex-direction: row;
    }

    .promotions__card-aside {
        flex-direction: column;
        width: auto;
    }

    .promotions__card-price-new {
        font-size: 16px;
    }

    .promotions__card-price-old {
        font-size: 14px;
    }
}
.is-promotions-page .promotions {
    padding-top: 60px;
}