/**
 * TwoPixels Countdown Timer - CSS Styles
 *
 * @package     TwoPixels
 * @subpackage  Countdown
 * @version     1.2.0
 */

/* =============================================
   CSS Variables
   ============================================= */
:root {
    --tp-countdown-color: #dc3545;
    --tp-countdown-bg: #fff3cd;
}

/* =============================================
   Base Countdown (Produktseiten)
   ============================================= */
.tp-countdown {
    display: inline-flex;
    align-items: center;
    margin: 1rem 0;
    width: 100%;
}

.tp-countdown-inner {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: var(--tp-countdown-bg);
    border-radius: 8px;
    border-left: 4px solid var(--tp-countdown-color);
}

.tp-countdown-label {
    font-weight: 600;
    color: #333;
    font-size: 0.9rem;
}

.tp-countdown-timer {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.tp-countdown-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 40px;
}

.tp-countdown-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--tp-countdown-color);
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.tp-countdown-unit {
    font-size: 0.6rem;
    text-transform: uppercase;
    color: #666;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

.tp-countdown-separator {
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--tp-countdown-color);
    opacity: 0.7;
    align-self: flex-start;
    padding-top: 2px;
}

/* =============================================
   Banner Base
   ============================================= */
.tp-countdown-banner {
    position: fixed;
    left: 0;
    right: 0;
    z-index: 9999;
    background: var(--tp-countdown-bg);
    color: var(--tp-countdown-color);
    box-shadow: 0 2px 15px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.tp-countdown-banner-top {
    top: 0;
}

.tp-countdown-banner-bottom {
    bottom: 0;
}

.tp-countdown-banner-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 15px;
    padding: 12px 50px 12px 20px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    min-height: 50px;
}

.tp-countdown-banner-text {
    font-size: 1rem;
    font-weight: 600;
    white-space: nowrap;
}

.tp-countdown-banner .tp-countdown-timer {
    display: flex;
    align-items: center;
    gap: 4px;
}

.tp-countdown-banner .tp-countdown-block {
    min-width: 36px;
}

.tp-countdown-banner .tp-countdown-value {
    padding: 6px 8px;
    border-radius: 4px;
    font-size: 1rem;
    min-width: 32px;
    text-align: center;
}

.tp-countdown-banner .tp-countdown-unit {
    font-size: 0.55rem;
}

.tp-countdown-banner .tp-countdown-separator {
    font-size: 1rem;
    padding: 0 2px;
}

/* CTA Button */
.tp-countdown-cta {
    display: inline-block;
    padding: 8px 18px;
    background: var(--tp-countdown-color);
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.85rem;
    white-space: nowrap;
    transition: transform 0.2s, box-shadow 0.2s;
}

.tp-countdown-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    text-decoration: none;
    color: #fff;
}

/* Close Button */
.tp-countdown-banner-close {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: inherit;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.2s;
    padding: 5px 10px;
    line-height: 1;
}

.tp-countdown-banner-close:hover {
    opacity: 1;
}

/* =============================================
   STIL: Standard (Default)
   ============================================= */
.tp-countdown-style-default {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.tp-countdown-style-default .tp-countdown-value {
    background: rgba(255,255,255,0.2);
    color: #fff;
}

.tp-countdown-style-default .tp-countdown-unit,
.tp-countdown-style-default .tp-countdown-separator,
.tp-countdown-style-default .tp-countdown-banner-text {
    color: rgba(255,255,255,0.95);
}

.tp-countdown-style-default .tp-countdown-cta {
    background: #fff;
    color: #764ba2;
}

/* =============================================
   STIL: Dringend (Urgent) - Pulsierend
   ============================================= */
.tp-countdown-style-urgent {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: #fff;
    animation: tp-urgent-glow 2s ease-in-out infinite;
}

.tp-countdown-style-urgent .tp-countdown-value {
    background: rgba(255,255,255,0.25);
    color: #fff;
    animation: tp-value-pulse 1s ease-in-out infinite;
}

.tp-countdown-style-urgent .tp-countdown-unit,
.tp-countdown-style-urgent .tp-countdown-separator,
.tp-countdown-style-urgent .tp-countdown-banner-text {
    color: rgba(255,255,255,0.95);
}

.tp-countdown-style-urgent .tp-countdown-cta {
    background: #fff;
    color: #dc3545;
}

@keyframes tp-urgent-glow {
    0%, 100% { box-shadow: 0 2px 15px rgba(220,53,69,0.3); }
    50% { box-shadow: 0 2px 30px rgba(220,53,69,0.6); }
}

@keyframes tp-value-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* =============================================
   STIL: Minimal - Schlicht
   ============================================= */
.tp-countdown-style-minimal {
    background: #fff;
    color: #333;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    border-bottom: 1px solid #eee;
}

.tp-countdown-style-minimal .tp-countdown-banner-inner {
    padding: 8px 50px 8px 20px;
    min-height: 40px;
}

.tp-countdown-style-minimal .tp-countdown-value {
    background: #f8f9fa;
    color: #333;
    font-weight: 700;
    border: 1px solid #dee2e6;
}

.tp-countdown-style-minimal .tp-countdown-unit {
    display: none;
}

.tp-countdown-style-minimal .tp-countdown-cta {
    background: #333;
    color: #fff;
}

.tp-countdown-style-minimal .tp-countdown-banner-close {
    color: #666;
}

/* =============================================
   STIL: Dunkel (Dark) - Elegant
   ============================================= */
.tp-countdown-style-dark {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #fff;
}

.tp-countdown-style-dark .tp-countdown-value {
    background: rgba(78,205,196,0.15);
    color: #4ecdc4;
    border: 1px solid rgba(78,205,196,0.3);
}

.tp-countdown-style-dark .tp-countdown-unit,
.tp-countdown-style-dark .tp-countdown-separator {
    color: rgba(255,255,255,0.7);
}

.tp-countdown-style-dark .tp-countdown-banner-text {
    color: #fff;
}

.tp-countdown-style-dark .tp-countdown-cta {
    background: #4ecdc4;
    color: #1a1a2e;
}

.tp-countdown-style-dark .tp-countdown-banner-close {
    color: rgba(255,255,255,0.7);
}

/* =============================================
   STIL: Weihnachten (Christmas)
   ============================================= */
.tp-countdown-style-christmas {
    background: linear-gradient(135deg, #c41e3a 0%, #1a472a 100%);
    color: #fff;
    position: relative;
}

.tp-countdown-style-christmas::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cpath d='M30 5 L32 15 L30 12 L28 15 Z' fill='rgba(255,255,255,0.1)'/%3E%3C/svg%3E");
    pointer-events: none;
}

.tp-countdown-style-christmas .tp-countdown-banner-inner {
    position: relative;
    z-index: 1;
}

.tp-countdown-style-christmas .tp-countdown-value {
    background: rgba(255,215,0,0.2);
    color: #ffd700;
    border: 1px solid rgba(255,215,0,0.4);
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.tp-countdown-style-christmas .tp-countdown-unit,
.tp-countdown-style-christmas .tp-countdown-separator,
.tp-countdown-style-christmas .tp-countdown-banner-text {
    color: rgba(255,255,255,0.95);
}

.tp-countdown-style-christmas .tp-countdown-cta {
    background: #ffd700;
    color: #1a472a;
}

/* =============================================
   STIL: Black Friday
   ============================================= */
.tp-countdown-style-blackfriday {
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    color: #fff;
}

.tp-countdown-style-blackfriday .tp-countdown-value {
    background: #ffd700;
    color: #000;
    font-weight: 800;
    box-shadow: 0 2px 8px rgba(255,215,0,0.4);
}

.tp-countdown-style-blackfriday .tp-countdown-unit {
    color: #ffd700;
}

.tp-countdown-style-blackfriday .tp-countdown-separator {
    color: #ffd700;
}

.tp-countdown-style-blackfriday .tp-countdown-banner-text {
    color: #ffd700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 800;
}

.tp-countdown-style-blackfriday .tp-countdown-cta {
    background: #ffd700;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* =============================================
   STIL: Sommer (Summer)
   ============================================= */
.tp-countdown-style-summer {
    background: linear-gradient(135deg, #ff6b35 0%, #f7c59f 100%);
    color: #fff;
}

.tp-countdown-style-summer .tp-countdown-value {
    background: rgba(255,255,255,0.3);
    color: #fff;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.tp-countdown-style-summer .tp-countdown-unit,
.tp-countdown-style-summer .tp-countdown-separator,
.tp-countdown-style-summer .tp-countdown-banner-text {
    color: rgba(255,255,255,0.95);
}

.tp-countdown-style-summer .tp-countdown-cta {
    background: #fff;
    color: #ff6b35;
}

/* =============================================
   STIL: Fruehling (Spring)
   ============================================= */
.tp-countdown-style-spring {
    background: linear-gradient(135deg, #a8e6cf 0%, #88d8b0 100%);
    color: #2d5016;
}

.tp-countdown-style-spring .tp-countdown-value {
    background: rgba(255,255,255,0.6);
    color: #2d5016;
}

.tp-countdown-style-spring .tp-countdown-unit,
.tp-countdown-style-spring .tp-countdown-separator,
.tp-countdown-style-spring .tp-countdown-banner-text {
    color: #2d5016;
}

.tp-countdown-style-spring .tp-countdown-cta {
    background: #2d5016;
    color: #fff;
}

.tp-countdown-style-spring .tp-countdown-banner-close {
    color: #2d5016;
}

/* =============================================
   STIL: Herbst (Autumn)
   ============================================= */
.tp-countdown-style-autumn {
    background: linear-gradient(135deg, #d4a574 0%, #c17f59 100%);
    color: #fff;
}

.tp-countdown-style-autumn .tp-countdown-value {
    background: rgba(139,69,19,0.3);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.3);
}

.tp-countdown-style-autumn .tp-countdown-unit,
.tp-countdown-style-autumn .tp-countdown-separator,
.tp-countdown-style-autumn .tp-countdown-banner-text {
    color: rgba(255,255,255,0.95);
}

.tp-countdown-style-autumn .tp-countdown-cta {
    background: #8b4513;
    color: #fff;
}

/* =============================================
   STIL: Winter
   ============================================= */
.tp-countdown-style-winter {
    background: linear-gradient(135deg, #e0f7fa 0%, #b2ebf2 100%);
    color: #006064;
    position: relative;
}

.tp-countdown-style-winter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Ccircle cx='20' cy='20' r='1.5' fill='rgba(255,255,255,0.6)'/%3E%3C/svg%3E");
    pointer-events: none;
    animation: tp-snow-fall 10s linear infinite;
}

@keyframes tp-snow-fall {
    0% { background-position: 0 0; }
    100% { background-position: 40px 80px; }
}

.tp-countdown-style-winter .tp-countdown-banner-inner {
    position: relative;
    z-index: 1;
}

.tp-countdown-style-winter .tp-countdown-value {
    background: rgba(0,96,100,0.15);
    color: #006064;
    border: 1px solid rgba(0,96,100,0.3);
}

.tp-countdown-style-winter .tp-countdown-unit,
.tp-countdown-style-winter .tp-countdown-separator,
.tp-countdown-style-winter .tp-countdown-banner-text {
    color: #006064;
}

.tp-countdown-style-winter .tp-countdown-cta {
    background: #006064;
    color: #fff;
}

.tp-countdown-style-winter .tp-countdown-banner-close {
    color: #006064;
}

/* =============================================
   STIL: Valentinstag (Valentine)
   ============================================= */
.tp-countdown-style-valentine {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a5a 100%);
    color: #fff;
}

.tp-countdown-style-valentine .tp-countdown-value {
    background: rgba(255,255,255,0.25);
    color: #fff;
}

.tp-countdown-style-valentine .tp-countdown-unit,
.tp-countdown-style-valentine .tp-countdown-separator,
.tp-countdown-style-valentine .tp-countdown-banner-text {
    color: rgba(255,255,255,0.95);
}

.tp-countdown-style-valentine .tp-countdown-cta {
    background: #fff;
    color: #ee5a5a;
}

/* =============================================
   STIL: Ostern (Easter)
   ============================================= */
.tp-countdown-style-easter {
    background: linear-gradient(135deg, #fff9c4 0%, #f0f4c3 100%);
    color: #7b1fa2;
}

.tp-countdown-style-easter .tp-countdown-value {
    background: rgba(123,31,162,0.1);
    color: #7b1fa2;
    border: 1px solid rgba(123,31,162,0.3);
}

.tp-countdown-style-easter .tp-countdown-unit,
.tp-countdown-style-easter .tp-countdown-separator,
.tp-countdown-style-easter .tp-countdown-banner-text {
    color: #7b1fa2;
}

.tp-countdown-style-easter .tp-countdown-cta {
    background: #7b1fa2;
    color: #fff;
}

.tp-countdown-style-easter .tp-countdown-banner-close {
    color: #7b1fa2;
}

/* =============================================
   STIL: Halloween
   ============================================= */
.tp-countdown-style-halloween {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d1b4e 100%);
    color: #ff6600;
}

.tp-countdown-style-halloween .tp-countdown-value {
    background: #ff6600;
    color: #000;
    font-weight: 800;
    box-shadow: 0 0 10px rgba(255,102,0,0.5);
}

.tp-countdown-style-halloween .tp-countdown-unit {
    color: #ff6600;
}

.tp-countdown-style-halloween .tp-countdown-separator {
    color: #ff6600;
}

.tp-countdown-style-halloween .tp-countdown-banner-text {
    color: #ff6600;
}

.tp-countdown-style-halloween .tp-countdown-cta {
    background: #ff6600;
    color: #000;
}

.tp-countdown-style-halloween .tp-countdown-banner-close {
    color: #ff6600;
}

/* =============================================
   STIL: Silvester (NewYear)
   ============================================= */
.tp-countdown-style-newyear {
    background: linear-gradient(135deg, #1a1a2e 0%, #0f0f23 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.tp-countdown-style-newyear::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255,215,0,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(192,192,192,0.1) 0%, transparent 50%);
    pointer-events: none;
}

.tp-countdown-style-newyear .tp-countdown-banner-inner {
    position: relative;
    z-index: 1;
}

.tp-countdown-style-newyear .tp-countdown-value {
    background: linear-gradient(135deg, #ffd700 0%, #ffec8b 100%);
    color: #1a1a2e;
    font-weight: 800;
    box-shadow: 0 2px 10px rgba(255,215,0,0.3);
}

.tp-countdown-style-newyear .tp-countdown-unit {
    color: #c0c0c0;
}

.tp-countdown-style-newyear .tp-countdown-separator {
    color: #ffd700;
}

.tp-countdown-style-newyear .tp-countdown-banner-text {
    color: #ffd700;
}

.tp-countdown-style-newyear .tp-countdown-cta {
    background: linear-gradient(135deg, #ffd700 0%, #ffec8b 100%);
    color: #1a1a2e;
}

/* =============================================
   STIL: Flash Sale - Blitz
   ============================================= */
.tp-countdown-style-flash {
    background: linear-gradient(135deg, #f12711 0%, #f5af19 100%);
    color: #fff;
    animation: tp-flash-gradient 3s ease infinite;
    background-size: 200% 200%;
}

@keyframes tp-flash-gradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.tp-countdown-style-flash .tp-countdown-value {
    background: rgba(0,0,0,0.3);
    color: #fff;
    font-weight: 800;
}

.tp-countdown-style-flash .tp-countdown-unit,
.tp-countdown-style-flash .tp-countdown-separator,
.tp-countdown-style-flash .tp-countdown-banner-text {
    color: rgba(255,255,255,0.95);
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.tp-countdown-style-flash .tp-countdown-cta {
    background: #000;
    color: #fff;
}

/* =============================================
   STIL: Neon - Leuchtend
   ============================================= */
.tp-countdown-style-neon {
    background: #0a0a0a;
    color: #fff;
}

.tp-countdown-style-neon .tp-countdown-value {
    background: transparent;
    color: #00ff88;
    text-shadow:
        0 0 5px #00ff88,
        0 0 10px #00ff88,
        0 0 20px #00ff88;
    border: 1px solid #00ff88;
    box-shadow:
        0 0 5px rgba(0,255,136,0.3),
        inset 0 0 5px rgba(0,255,136,0.1);
}

.tp-countdown-style-neon .tp-countdown-unit {
    color: #00ff88;
    text-shadow: 0 0 5px #00ff88;
}

.tp-countdown-style-neon .tp-countdown-separator {
    color: #00ff88;
    text-shadow: 0 0 5px #00ff88;
}

.tp-countdown-style-neon .tp-countdown-banner-text {
    color: #fff;
    text-shadow: 0 0 10px rgba(255,255,255,0.5);
}

.tp-countdown-style-neon .tp-countdown-cta {
    background: transparent;
    color: #00ff88;
    border: 2px solid #00ff88;
    box-shadow: 0 0 10px rgba(0,255,136,0.3);
}

.tp-countdown-style-neon .tp-countdown-cta:hover {
    background: #00ff88;
    color: #0a0a0a;
}

.tp-countdown-style-neon .tp-countdown-banner-close {
    color: #00ff88;
}

/* =============================================
   STIL: Gradient Rainbow
   ============================================= */
.tp-countdown-style-rainbow {
    background: linear-gradient(90deg, #ff6b6b, #feca57, #48dbfb, #ff9ff3, #ff6b6b);
    background-size: 300% 100%;
    animation: tp-rainbow-move 5s linear infinite;
    color: #fff;
}

@keyframes tp-rainbow-move {
    0% { background-position: 0% 50%; }
    100% { background-position: 300% 50%; }
}

.tp-countdown-style-rainbow .tp-countdown-value {
    background: rgba(255,255,255,0.3);
    color: #fff;
    backdrop-filter: blur(5px);
}

.tp-countdown-style-rainbow .tp-countdown-unit,
.tp-countdown-style-rainbow .tp-countdown-separator,
.tp-countdown-style-rainbow .tp-countdown-banner-text {
    color: rgba(255,255,255,0.95);
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.tp-countdown-style-rainbow .tp-countdown-cta {
    background: rgba(255,255,255,0.9);
    color: #333;
}

/* =============================================
   Expired State
   ============================================= */
.tp-countdown-expired .tp-countdown-timer {
    display: none;
}

.tp-countdown-expired .tp-countdown-expired-text {
    display: block;
    font-style: italic;
}

.tp-countdown-expired-text {
    display: none;
}

/* =============================================
   Animation Utilities
   ============================================= */
@keyframes tp-countdown-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}

.tp-countdown-value.tp-pulse {
    animation: tp-countdown-pulse 0.3s ease;
}

/* =============================================
   RESPONSIVE - Tablet
   ============================================= */
@media (max-width: 992px) {
    .tp-countdown-banner-inner {
        padding: 10px 45px 10px 15px;
        gap: 12px;
    }

    .tp-countdown-banner-text {
        font-size: 0.9rem;
    }

    .tp-countdown-banner .tp-countdown-value {
        font-size: 0.9rem;
        padding: 5px 7px;
        min-width: 28px;
    }

    .tp-countdown-banner .tp-countdown-block {
        min-width: 32px;
    }

    .tp-countdown-cta {
        padding: 6px 14px;
        font-size: 0.8rem;
    }
}

/* =============================================
   RESPONSIVE - Mobile
   ============================================= */
@media (max-width: 640px) {
    .tp-countdown-banner-inner {
        flex-wrap: wrap;
        justify-content: center;
        padding: 10px 40px 10px 10px;
        gap: 8px;
        min-height: auto;
    }

    .tp-countdown-banner-text {
        font-size: 0.8rem;
        width: 100%;
        text-align: center;
        white-space: normal;
        line-height: 1.3;
    }

    .tp-countdown-banner .tp-countdown-timer {
        gap: 3px;
        justify-content: center;
    }

    .tp-countdown-banner .tp-countdown-block {
        min-width: 28px;
    }

    .tp-countdown-banner .tp-countdown-value {
        font-size: 0.85rem;
        padding: 4px 6px;
        min-width: 26px;
    }

    .tp-countdown-banner .tp-countdown-unit {
        font-size: 0.5rem;
    }

    .tp-countdown-banner .tp-countdown-separator {
        font-size: 0.85rem;
        padding: 0 1px;
    }

    .tp-countdown-cta {
        padding: 6px 12px;
        font-size: 0.75rem;
    }

    .tp-countdown-banner-close {
        right: 5px;
        font-size: 1.3rem;
        padding: 5px;
    }

    /* Stil-spezifische Mobile Anpassungen */
    .tp-countdown-style-minimal .tp-countdown-banner-inner {
        padding: 8px 40px 8px 10px;
    }

    .tp-countdown-style-blackfriday .tp-countdown-banner-text {
        letter-spacing: 1px;
        font-size: 0.75rem;
    }
}

/* =============================================
   RESPONSIVE - Sehr kleine Geraete
   ============================================= */
@media (max-width: 380px) {
    .tp-countdown-banner-inner {
        padding: 8px 35px 8px 8px;
        gap: 6px;
    }

    .tp-countdown-banner-text {
        font-size: 0.75rem;
    }

    .tp-countdown-banner .tp-countdown-block {
        min-width: 24px;
    }

    .tp-countdown-banner .tp-countdown-value {
        font-size: 0.75rem;
        padding: 3px 5px;
        min-width: 22px;
    }

    .tp-countdown-banner .tp-countdown-unit {
        display: none;
    }

    .tp-countdown-cta {
        padding: 5px 10px;
        font-size: 0.7rem;
    }
}

/* =============================================
   Print - Ausblenden
   ============================================= */
@media print {
    .tp-countdown,
    .tp-countdown-banner {
        display: none !important;
    }
}

/* =============================================
   Reduced Motion - Barrierefreiheit
   ============================================= */
@media (prefers-reduced-motion: reduce) {
    .tp-countdown-style-urgent,
    .tp-countdown-style-flash,
    .tp-countdown-style-rainbow,
    .tp-countdown-style-neon .tp-countdown-value,
    .tp-countdown-style-winter::before {
        animation: none;
    }
}
