/**
 * Lieferzeit-Countdown Styles — webpowers UG
 */

.wp-delivery-countdown {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    margin: 12px 0;
    border-radius: 8px;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    font-size: 14px;
    line-height: 1.5;
    animation: wp-countdown-fadein 0.3s ease;
}

.wp-delivery-countdown strong {
    font-weight: 700;
}

@keyframes wp-countdown-fadein {
    from { opacity: 0; transform: translateY(-4px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .wp-delivery-countdown {
        font-size: 13px;
        padding: 8px 12px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .wp-delivery-countdown {
        animation: none;
    }
}
