/* ═══════════════════════════════════════════════════════════════════════════
   URGENCY BAR SECTION 2026 - SXO 2026
   Source: prototype-homepage-parfaite-2026.html
   Date: 2026-02-12 - Merge avec composant global
   ═══════════════════════════════════════════════════════════════════════════ */

.sxo-2026-wrapper .urgency-bar-2026 {
    background: linear-gradient(90deg, #c4a35a, #d4b86a);
    color: #0a1628;
    padding: 12px 0;
    position: relative;
    z-index: 1000;
    text-align: center;
    animation: urgencySlideDown 0.3s ease-out;
}

@keyframes urgencySlideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.sxo-2026-wrapper .urgency-bar-2026 .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.sxo-2026-wrapper .urgency-bar-2026 span {
    color: #0a1628;
    font-weight: 600;
    font-size: 0.875rem;
    line-height: 1.4;
}

.sxo-2026-wrapper .urgency-bar-2026 span i {
    margin-right: 8px;
}

.sxo-2026-wrapper .urgency-bar-2026 a {
    background: #0a1628;
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 48px;
}

.sxo-2026-wrapper .urgency-bar-2026 a:hover {
    background: #1a365d;
    color: #ffffff;
    text-decoration: none;
}

/* Responsive - Mobile-first */
@media (min-width: 576px) {
    .sxo-2026-wrapper .urgency-bar-2026 span {
        font-size: 0.9375rem;
    }
}

@media (min-width: 768px) {
    .sxo-2026-wrapper .urgency-bar-2026 {
        padding: 10px 0;
    }

    .sxo-2026-wrapper .urgency-bar-2026 span {
        font-size: 1rem;
    }
}

@media (min-width: 1200px) {
    .sxo-2026-wrapper .urgency-bar-2026 a {
        padding: 8px 24px;
    }
}

/* Accessibilite */
@media (prefers-reduced-motion: reduce) {
    .sxo-2026-wrapper .urgency-bar-2026 {
        animation: none !important;
    }

    .sxo-2026-wrapper .urgency-bar-2026 a {
        transition: none !important;
    }
}

@media print {
    .sxo-2026-wrapper .urgency-bar-2026 {
        display: none !important;
    }
}
