/* Daily Deals Container */
.wcdd-daily-deals-container {
    margin: 30px 0;
}

/* Timer Container Only */
.wcdd-timer-container {
    text-align: center;
    margin-bottom: 40px;
    padding: 20px;
    background: #f8f8f8;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.wcdd-timer-container h3 {
    margin-bottom: 20px;
    font-size: 24px;
    color: #333;
}

/* Countdown Timer */
.wcdd-countdown-timer {
    display: inline-flex;
    align-items: center;
    font-size: 36px;
    font-weight: bold;
    color: #333;
}

.wcdd-time-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 15px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.wcdd-time-unit span {
    display: block;
}

.wcdd-hours,
.wcdd-minutes,
.wcdd-seconds {
    font-size: 48px;
    line-height: 1;
    color: #e74c3c;
}

.wcdd-label {
    font-size: 14px;
    color: #666;
    text-transform: uppercase;
    margin-top: 5px;
    font-weight: normal;
}

.wcdd-separator {
    margin: 0 10px;
    color: #e74c3c;
}

/* Urgent state (less than 1 hour) */
.wcdd-countdown-timer.wcdd-urgent .wcdd-hours,
.wcdd-countdown-timer.wcdd-urgent .wcdd-minutes,
.wcdd-countdown-timer.wcdd-urgent .wcdd-seconds {
    color: #d9534f;
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.6; }
    100% { opacity: 1; }
}

/* Responsive Design for Timer Only */
@media (max-width: 768px) {
    .wcdd-countdown-timer {
        font-size: 24px;
    }
    
    .wcdd-hours,
    .wcdd-minutes,
    .wcdd-seconds {
        font-size: 32px;
    }
    
    .wcdd-time-unit {
        padding: 8px 12px;
    }
    
    .wcdd-label {
        font-size: 12px;
    }
    
    .wcdd-timer-container h3 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .wcdd-countdown-timer {
        font-size: 20px;
    }
    
    .wcdd-hours,
    .wcdd-minutes,
    .wcdd-seconds {
        font-size: 24px;
    }
    
    .wcdd-time-unit {
        padding: 5px 8px;
    }
    
    .wcdd-separator {
        margin: 0 5px;
    }
}

/* Optional: Add daily deal badge to products */
.wcdd-daily-deal-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #e74c3c;
    color: white;
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    z-index: 10;
}