/*
 * Storefront base fix: Tailwind bundle lacks the generated rule for the
 * `max-lg:hidden` utility used by the desktop top bar, so it never hides on
 * narrow viewports. This restores its intended behaviour: hidden below the
 * `lg` breakpoint (1024px), visible above it — exactly what the missing
 * Tailwind rule would have produced.
 */

@media (max-width: 1023.98px) {
    .max-lg\:hidden {
        display: none !important;
    }
}

/* Top bar announcement rotation */
.topbar-announce { display: inline; }
.topbar-announce__item { white-space: nowrap; }

/* Default storefront logo: Temu wordmark (applies to every style unless a
   skin overrides it with its own logo). Not scoped to <header>: standalone
   pages (sign-in, sign-up, password reset) render the logo outside of one. */
img[src*="logo"] {
    content: url("logos/temu.svg");
}
