/* ==========================================================================
   HERO COUNTDOWN - Dopasowany do premium.html hero
   Styl podobny do hero-eyebrow - organiczny, duży, czytelny
   ========================================================================== */

.hero-countdown {
    margin-top: 2.5rem;
}

.hero-countdown-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--index-charcoal, #2C2625);
    opacity: 0.7;
    margin: 0 0 0.75rem 0;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.hero-countdown-timer {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201, 74, 42, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 20px 15px 20px 15px;
}

.hero-countdown-unit {
    display: flex;
    align-items: baseline;
    gap: 3px;
}

.hero-countdown-unit span:first-child {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--index-primary, #C94A2A);
    line-height: 1;
}

.hero-countdown-unit span:last-child {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--index-charcoal, #2C2625);
    opacity: 0.6;
}

/* Separator między jednostkami */
.hero-countdown-unit:not(:last-child)::after {
    content: ':';
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--index-charcoal, #2C2625);
    opacity: 0.3;
    margin-left: 8px;
}

/* Urgency - pulsowanie gdy < 24h */
.hero-countdown-timer.urgent {
    animation: countdownPulse 2s ease-in-out infinite;
}

@keyframes countdownPulse {
    0%, 100% {
        background: rgba(201, 74, 42, 0.1);
    }
    50% {
        background: rgba(201, 74, 42, 0.18);
    }
}

/* Tablet */
@media (max-width: 1024px) {
    .hero-countdown-unit span:first-child {
        font-size: 1.75rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .hero-countdown {
        margin-top: 2rem;
        text-align: center;
    }

    .hero-countdown-timer {
        padding: 0.85rem 1.25rem;
        gap: 6px;
    }

    .hero-countdown-unit span:first-child {
        font-size: 1.5rem;
    }

    .hero-countdown-unit span:last-child {
        font-size: 0.8rem;
    }

    .hero-countdown-unit:not(:last-child)::after {
        font-size: 1.2rem;
        margin-left: 6px;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .hero-countdown-timer {
        padding: 0.75rem 1rem;
        gap: 4px;
    }

    .hero-countdown-unit span:first-child {
        font-size: 1.25rem;
    }

    .hero-countdown-unit span:last-child {
        font-size: 0.7rem;
    }

    .hero-countdown-unit:not(:last-child)::after {
        font-size: 1rem;
        margin-left: 4px;
    }
}
