/* Countdown 2 styles - clean modern card */
.cew-countdown2.info-box {
    background: #ffffff;
    border-radius: 14px;
    padding: 18px 18px 14px;
    border: 1px solid #e9ecf4;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.cew-countdown2 h3 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    margin: 0 0 14px;
    color: #111827;
}

.cew-countdown2 h3 img {
    width: 20px;
    height: 20px;
}

.cew-countdown2 .timer-boxes {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 6px;
}

/* Colorful time boxes */
.cew-countdown2 .timer-box {
    text-align: center;
    background: linear-gradient(145deg, #5a3bff 0%, #7c5cff 100%);
    border-radius: 12px;
    padding: 10px 14px;
    min-width: 70px;
    box-shadow: 0 6px 16px rgba(90, 59, 255, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cew-countdown2 .timer-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(90, 59, 255, 0.45);
}

.cew-countdown2 .timer-value {
    font-weight: 700;
    font-size: 20px;
    color: #ffffff;
}

.cew-countdown2 .timer-label {
    font-size: 12px;
    color: #e5e7eb;
    margin-top: 2px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.cew-countdown2 .cew-ends-on strong,
.cew-countdown2 p strong {
    color: #ff9800;
}

@media (max-width: 480px) {
    .cew-countdown2 .timer-boxes {
        gap: 6px;
    }

    .cew-countdown2 .timer-box {
        padding: 8px 10px;
        min-width: 60px;
    }

    .cew-countdown2 .timer-value {
        font-size: 18px;
    }
}
