/* Hide FOB Live Chat branding */
.fob-chat-powered {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
}

/* Fix: header logo hidden on desktop when the main menu is long (Botble support 2026-06-09)
   The logo (.navbar-brand) collapsed to zero width because the centered menu consumed the row.
   Protect the logo from shrinking and compact the desktop menu so logo + menu + CTA all fit. */
.navbar .navbar-brand {
    flex-shrink: 0;
}
.navbar .navbar-brand img.logo-dark,
.navbar .navbar-brand img.logo-white {
    max-height: 48px;
}
@media (min-width: 992px) {
    .navbar .navbar-nav.gap-4 {
        gap: 0.25rem !important;
    }
    .navbar .navbar-nav .nav-item .nav-link {
        padding-left: 0.45rem;
        padding-right: 0.45rem;
        font-size: 0.9375rem;
    }
    .navbar .navbar-nav .nav-item .nav-link > svg.icon {
        display: none;
    }
}
