/**
 * Timer CSS
 */

.afb-timer-wrapper { display: flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: wrap; }

.afb-countdown-timer { display: inline-block; }

.afb-timer-display { display: flex; gap: 10px; align-items: center; }

.afb-timer-unit { display: flex; flex-direction: column; align-items: center; padding: 15px 20px; background: #f5f5f5; border-radius: 8px; min-width: 70px; }

.afb-timer-value { font-size: 32px; font-weight: 700; color: #333; line-height: 1; }

.afb-timer-label { font-size: 11px; text-transform: uppercase; color: #666; margin-top: 5px; letter-spacing: 0.5px; }

.afb-timer-prefix, .afb-timer-suffix { font-size: 16px; color: #333; }

/* Dark theme */
.afb-timer-dark .afb-timer-unit { background: #333; }
.afb-timer-dark .afb-timer-value { color: #fff; }
.afb-timer-dark .afb-timer-label { color: #aaa; }

/* Minimal */
.afb-timer-minimal .afb-timer-unit { background: transparent; padding: 5px 10px; }
.afb-timer-minimal .afb-timer-value { font-size: 28px; }

/* Gradient */
.afb-timer-gradient .afb-timer-unit { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }
.afb-timer-gradient .afb-timer-value { color: #fff; }
.afb-timer-gradient .afb-timer-label { color: rgba(255,255,255,0.8); }

@media (max-width: 480px) {
    .afb-timer-unit { padding: 10px 15px; min-width: 55px; }
    .afb-timer-value { font-size: 24px; }
}
