/* ===== СТРАНИЦА СКИДОК ===== */
.discounts-page {
    min-height: 100vh;
    padding: 40px 20px 80px;
    background: linear-gradient(180deg, #fef9e7 0%, #ffffff 35%, #f5f5f7 100%);
}

.discounts-container {
    max-width: 900px;
    margin: 0 auto;
}

/* Заголовок страницы */
.page-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: #3a3a3c;
    margin-bottom: 48px;
    letter-spacing: -0.03em;
    text-align: center;
}

/* ===== БЛОК СКИДКИ ===== */
.text-dis {
    background: white;
    border-radius: 24px;
    padding: 40px;
    margin-bottom: 24px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.04);
    border: 1px solid #f0ebe3;
}

.text-dis h1 {
    font-size: 24px;
    font-weight: 700;
    color: #4a4a4a;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.text-dis h2 {
    display: inline;
    font-size: 18px;
    font-weight: 700;
    color: #c84a1e;
}

.text-dis p {
    font-size: 16px;
    color: #5a5a5c;
    line-height: 1.7;
    margin-bottom: 12px;
}

.text-dis p:last-child {
    margin-bottom: 0;
}

/* ===== ИТОГОВЫЕ ЗАГОЛОВКИ ===== */
.discounts-container > h1 {
    font-size: 18px;
    font-weight: 600;
    color: #6a6a6c;
    text-align: center;
    margin-top: 32px;
    line-height: 1.5;
}

/* ===== АДАПТИВ ===== */
@media (max-width: 768px) {
    .discounts-page {
        padding: 24px 16px 60px;
    }

    .text-dis {
        padding: 28px;
    }

    .text-dis h1 {
        font-size: 20px;
    }

    .text-dis h2 {
        font-size: 16px;
    }

    .text-dis p {
        font-size: 15px;
    }

    .discounts-container > h1 {
        font-size: 16px;
    }
}