.eden-counter-wrap {
    text-align: center;
    padding: 40px 20px;
    font-family: inherit;
}

.eden-counter-digits {
    display: inline-flex;
    gap: 5px;
    justify-content: center;
    flex-wrap: wrap;
}

.eden-counter-digit {
    display: inline-block;
    width: 56px;
    height: 80px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(180deg, #F5A623 0%, #E8961E 100%);
    border-radius: 10px;
    box-shadow:
        0 4px 12px rgba(232, 150, 30, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.eden-counter-digit::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(0, 0, 0, 0.12);
    z-index: 2;
}

.eden-counter-strip {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.eden-counter-strip span {
    display: block;
    width: 100%;
    height: 80px;
    line-height: 80px;
    text-align: center;
    font-size: 46px;
    font-weight: 700;
    color: #ffffff;
    font-family: 'Poppins', 'Montserrat', sans-serif;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.eden-counter-separator {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 80px;
    font-size: 40px;
    font-weight: 700;
    color: #E8961E;
    line-height: 80px;
}

.eden-counter-subtitle {
    margin-top: 20px;
    font-size: 18px;
    color: #1B3A5C;
    font-weight: 600;
    line-height: 1.6;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Poppins', 'Montserrat', sans-serif;
}

/* ─── Responsive ─── */
@media (max-width: 600px) {
    .eden-counter-digit {
        width: 40px;
        height: 58px;
    }
    .eden-counter-strip span {
        height: 58px;
        line-height: 58px;
        font-size: 32px;
    }
    .eden-counter-separator {
        width: 12px;
        height: 58px;
        font-size: 28px;
        line-height: 58px;
    }
    .eden-counter-subtitle {
        font-size: 15px;
    }
}
