/* Стили для таймера скидки */
.discount-timer {
    padding: 15px 25px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    text-align: center;
    min-width: 360px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
}

.discount-timer__title {
    font-size: 20px;
    font-weight: 500;
    color: #111;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.discount-timer__percent {
    color: rgb(197, 27, 27);
    padding: 2px 4px;
    font-family: "Libertinus", Sans-serif;
    font-size: 24px;
    font-weight: 900;
}

.discount-timer__subtitle {
    font-size: 16px;
    color: #222;
    margin-top: 10px;
}

.discount-timer__countdown {
    font-size: 64px;
    line-height: 110%;
    font-weight: bold;
    color: rgb(255, 255, 255);
    color: #111;
    font-family: monospace;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}

.discount-timer__expired {
    padding: 10px;
    background: #f8d7da;
    color: #721c24;
    border-radius: 5px;
    text-align: center;
}

@media (max-width: 768px) {
    .discount-timer {
        min-width: 280px;
    }

    .discount-timer__countdown {
        font-size: 50px;
    }
}