
/* WooCommerce Daily Deals Styles */
.wcdd-products-container {
    margin: 20px 0;
}

.wcdd-countdown {
    margin-top: 10px;
    text-align: center;
    background: linear-gradient(135deg, #ff6b6b 0%, #ff5252 100%);
    color: white;
    padding: 10px;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.wcdd-timer-label {
    font-size: 11px;
    margin-bottom: 5px;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.wcdd-timer {
    display: flex;
    justify-content: center;
    gap: 10px;
    font-weight: bold;
}

.wcdd-timer-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255,255,255,0.2);
    padding: 5px 8px;
    border-radius: 4px;
    min-width: 40px;
}

.wcdd-timer-unit span:first-child {
    font-size: 18px;
    line-height: 1;
    font-family: "Courier New", monospace;
}

.wcdd-timer-unit .wcdd-label {
    font-size: 9px;
    margin-top: 2px;
    opacity: 0.8;
    font-weight: normal;
    text-transform: uppercase;
}

.wcdd-deal-price {
    margin: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.wcdd-original-price {
    text-decoration: line-through;
    color: #999;
    font-size: 0.9em;
}

.wcdd-deal-price-amount {
    color: #ff6b6b;
    font-size: 1.3em;
    font-weight: bold;
}

.wcdd-savings {
    background: #4CAF50;
    color: white;
    padding: 2px 8px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: bold;
}

.wcdd-no-products {
    text-align: center;
    padding: 40px;
    width: 100%;
    grid-column: 1 / -1;
}

/* Expired deal */
.wcdd-countdown.expired {
    background: #666;
}

.wcdd-countdown.expired .wcdd-timer-label {
    font-size: 14px;
}

/* Responsive */
@media (max-width: 480px) {
    .wcdd-timer {
        gap: 5px;
    }
    
    .wcdd-timer-unit {
        min-width: 35px;
        padding: 4px 6px;
    }
    
    .wcdd-timer-unit span:first-child {
        font-size: 16px;
    }
}
