/**
 * ==================================================================================
 * TEMPORÄR: Versand-Pause Info-Banner (Laufschrift)
 * ==================================================================================
 * Erstellt: März 2026 — Diebstahl-Vorfall
 * Kann komplett entfernt werden, wenn Versand wieder aktiviert wird.
 * Dazu auch das HTML-Element in index.html (#shipping-notice-banner) entfernen.
 * ==================================================================================
 */

.shipping-notice-banner {
    background: linear-gradient(90deg, #f59e0b, #d97706, #f59e0b);
    background-size: 200% 100%;
    color: #1a1a1a;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Lato', sans-serif;
    letter-spacing: 0.3px;
    z-index: 1001;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.shipping-notice-track {
    display: inline-flex;
    animation: shipping-marquee 30s linear infinite;
    padding: 10px 0;
}

.shipping-notice-text {
    display: inline-block;
    padding: 0 60px;
}

/* Laufschrift-Animation — nahtloser Loop */
@keyframes shipping-marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Dezenter Hover-Effekt: Animation pausieren bei Hover */
.shipping-notice-banner:hover .shipping-notice-track {
    animation-play-state: paused;
}

/* Mobile: etwas kleinere Schrift */
@media (max-width: 768px) {
    .shipping-notice-banner {
        font-size: 13px;
    }

    .shipping-notice-track {
        animation-duration: 25s;
    }
}