/**
 * Countdown Timer Styles
 */

.wc-cpp-countdown-timer {
    margin: 20px 0;
    padding: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 8px;
    color: #fff;
    text-align: center;
}

.wc-cpp-countdown-message {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.wc-cpp-countdown-display {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.wc-cpp-countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 80px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.wc-cpp-countdown-value {
    font-size: 36px;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 5px;
    font-family: 'Courier New', monospace;
}

.wc-cpp-countdown-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

/* Minimal Style */
.wc-cpp-countdown-style-minimal {
    background: #f5f5f5;
    color: #333;
}

.wc-cpp-countdown-style-minimal .wc-cpp-countdown-item {
    background: #fff;
    border: 1px solid #ddd;
}

/* Bold Style */
.wc-cpp-countdown-style-bold {
    background: #e74c3c;
}

.wc-cpp-countdown-style-bold .wc-cpp-countdown-item {
    background: rgba(255, 255, 255, 0.3);
}

/* Circular Style */
.wc-cpp-countdown-style-circular .wc-cpp-countdown-item {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.wc-cpp-countdown-style-circular .wc-cpp-countdown-value {
    font-size: 32px;
}

/* Responsive */
@media (max-width: 768px) {
    .wc-cpp-countdown-display {
        gap: 10px;
    }
    
    .wc-cpp-countdown-item {
        min-width: 60px;
        padding: 10px;
    }
    
    .wc-cpp-countdown-value {
        font-size: 24px;
    }
}

