/* ===== Countdown section ===== */
/* Add this to your global/shared stylesheet, e.g. site.css or wherever
   .hero, .howitwork, .bestway etc. are styled. */

.countdown {
    padding: 60px 0;
}

.countdown__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
}

.countdown__title {
    margin: 0;
}

.countdown__descr {
    margin: 0 0 24px;
    max-width: 560px;
}

.countdown__timer {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.countdown__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 88px;
    padding: 16px 12px;
    border-radius: 12px;
    background: #f4f7f4; /* swap to match your brand surface color */
}

.countdown__number {
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1;
}

.countdown__label {
    margin-top: 6px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.65;
}

@media (max-width: 480px) {
    .countdown__item {
        min-width: 70px;
        padding: 12px 8px;
    }

    .countdown__number {
        font-size: 1.6rem;
    }
}
