/* Hide sale bar (removes "Shop Sale" button) */
.sale-bar {
    display: none !important;
}

/* ─── SHIPPING BANNER ─── */
.top-bar[aria-label="Free shipping announcement"] {
    background: linear-gradient(90deg, #0891b2, #0284c7, #0ea5e9) !important;
    color: white !important;
    text-align: center !important;
    padding: 10px 12px !important;
    font-size: 0 !important;
    font-weight: 700 !important;
    letter-spacing: 0.02em !important;
    position: static !important;
    width: 100% !important;
    box-sizing: border-box !important;
    min-height: 38px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: auto !important;
}

/* Hide original inner content */
.top-bar[aria-label="Free shipping announcement"] *,
.top-bar[aria-label="Free shipping announcement"]::before {
    display: none !important;
    visibility: hidden !important;
    content: none !important;
}

/* Inject new message */
.top-bar[aria-label="Free shipping announcement"]::after {
    content: "🚀 FREE SAME DAY WORLDWIDE SHIPPING $250+ • Products are for Research Use Only • ALL ORDERS SHIP WITHIN 24 HOURS 🚀";
    display: block !important;
    color: white !important;
    font-weight: 700 !important;
    font-size: 12px !important;
    text-align: center !important;
    white-space: normal !important;
    line-height: 1.4 !important;
    padding: 0 8px !important;
    width: 100% !important;
}

@media (min-width: 768px) {
    .top-bar[aria-label="Free shipping announcement"]::after {
        white-space: nowrap !important;
        font-size: 13px !important;
    }
}

/* ─── WHITE NAV HEADER — sticky on desktop, JS handles mobile ─── */
@media (min-width: 768px) {
    .header-stick {
        position: sticky !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        z-index: 99998 !important;
        background: #ffffff !important;
        box-shadow: 0 2px 16px rgba(8, 16, 26, 0.12) !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }
}
