/* ==========================================
   ANNOUNCEMENT BAR - FIXED TOP (NO CLOSE)
   ========================================== */

:root {
    --announcement-height: 48px;
}

.announcement-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #dc2626;
    color: white;
    z-index: 1001;
    padding: 10px 16px;
    text-align: center;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.3;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.announcement-content {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.announcement-icon {
    font-size: 16px;
    flex-shrink: 0;
}

.announcement-content p {
    margin: 0;
    line-height: 1.3;
}

.announcement-content strong {
    font-weight: 700;
}

.announcement-note {
    font-size: 11px;
    opacity: 0.85;
    font-style: italic;
}


/* ==========================================
   DYNAMIC OFFSETS (NO !important)
   ========================================== */

nav {
    top: var(--announcement-height);
}

.mobile-menu {
    top: var(--announcement-height);
}

body {
    padding-top: calc(var(--announcement-height) + 64px);
    /* 64px = your nav height, adjust if different */
}


/* ==========================================
   RESPONSIVE - PHONES
   ========================================== */

@media (max-width: 768px) {
     :root {
        --announcement-height: 80px;
    }
    .announcement-bar {
        padding: 8px 12px;
        font-size: 12px;
    }
    .announcement-content {
        flex-direction: column;
        gap: 2px;
    }
    .announcement-note {
        font-size: 10px;
    }
    body {
        padding-top: calc(var(--announcement-height) + 56px);
        /* 56px = mobile nav height */
    }
}

@media (max-width: 380px) {
     :root {
        --announcement-height: 90px;
    }
    .announcement-bar {
        font-size: 11px;
        padding: 6px 10px;
    }
}