.cap-tabs__pane h3,
.cta-min__inner h2 {
    color: hsl(var(--primary-foreground));
}

/* NHL site header — sticky topbar + header that reveals on scroll up.
   JS (handleHeaderScroll in script.js) toggles data-scrolled / data-hidden. */
.nhl-site-header {
    position: sticky;
    top: 0;
    z-index: 60;
    background: hsl(var(--card));
    border-bottom: 1px solid hsl(var(--border));
    box-shadow: 0 1px 0 hsl(var(--foreground) / 0.03);
    transition: transform 0.28s ease, box-shadow 0.25s ease;
    will-change: transform;
}

/* Deeper shadow once the page has scrolled past the top */
.nhl-site-header[data-scrolled="true"] {
    box-shadow: 0 6px 20px -12px hsl(216 100% 22% / 0.25);
}

/* Slide the whole bar (topbar + header) out of view when scrolling down;
   it slides back in the moment the user scrolls up. */
.nhl-site-header[data-hidden="true"] {
    transform: translateY(-100%);
}

.nhl-header__logo {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 148px;
}

.nhl-header__logo img {
    display: block;
    width: auto;
}

.nhl-header__nav {
    min-width: 0;
}

.nhl-utility-panel__item {
    font-size: 14.5px;
    font-weight: 600;
}

.nhl-utility-panel__item:hover {
    border-bottom: 1px solid;
}

.nhl-header__top {
    min-height: 65px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 18px;
    border-bottom: 1px solid hsl(var(--border));
}

.nhl-utility-nav,
.nhl-header__actions,
.nhl-primary-nav {
    display: flex;
    align-items: center;
}

.nhl-utility-nav {
    gap: 22px;
}

.nhl-header__actions {
    gap: 16px;
}

.nhl-primary-nav {
    min-height: 69px;
    justify-content: space-between;
    /* gap: 20px; */
}

.nhl-menu-anchor,
.nhl-mobile-menu-anchor {
    position: relative;
}

.nhl-menu-anchor.iwant-to {
    position: static;
}

.nhl-menu-anchor--service {
    position: static;
    padding: 5px;
}

.nhl-primary-nav .nhl-menu-anchor {
    padding: 5px;
}

.nhl-menu-trigger,
.nhl-menu-trigger:visited {
    color: hsl(var(--muted-foreground));
}

.nhl-menu-trigger {
    border: 0;
    background: transparent;
    padding: 0;
    font-family: inherit;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    transition: color 0.16s ease;
}

.nhl-menu-trigger:hover,
.nhl-menu-trigger:focus,
.nhl-menu-trigger[aria-expanded="true"] {
    border-color: hsl(var(--primary) / 0.35);
    color: hsl(var(--primary));
}

.nhl-utility-nav__link {
    font-size: 13.5px;
    font-weight: 600;
    color: hsl(var(--muted-foreground));
    white-space: nowrap;
    transition: color 0.15s;
    cursor: pointer;
    padding: 4px 0;
}

.nhl-pill-trigger:hover,
.nhl-icon-trigger:hover,
.nhl-pill-trigger:focus {
    color: #fff !important;
}

.nhl-primary-nav__link,
.nhl-primary-nav__link:visited {
    color: hsl(var(--foreground));
}

/* Current care-centre highlight — shows which centre the page belongs to
   (e.g. a Cardiology speciality highlights "Heart & Vascular"). */
.nhl-primary-nav__link.is-current-centre,
.nhl-primary-nav__link.is-current-centre:visited,
.nhl-primary-nav__link.is-current-centre:hover {
    color: hsl(var(--accent));
    font-weight: 600;
}

/* Same highlight in the mobile drawer's Care Centres panel */
.nhl-mobile-nav li.is-current-centre > a,
.nhl-mobile-nav li.is-current-centre > [data-mobile-push] {
    color: hsl(var(--accent));
    font-weight: 600;
    box-shadow: inset 3px 0 0 hsl(var(--accent));
    background: hsl(var(--primary-light) / 0.5);
}

/* Utility items self-highlight on their own pages (Patients & Visitors /
   International Patients / Medical Professionals) */
.nhl-utility-nav__link.is-current-page,
.nhl-utility-nav__link.is-current-page:visited,
.nhl-utility-nav__link.is-current-page:hover {
    color: hsl(var(--accent)) !important; /* the utility bar sets its own link colours */
    font-weight: 600;
}

.nhl-mobile-nav li.is-current-page > a,
.nhl-mobile-nav li.is-current-page > [data-mobile-push] {
    color: hsl(var(--accent));
    font-weight: 600;
    box-shadow: inset 3px 0 0 hsl(var(--accent));
    background: hsl(var(--primary-light) / 0.5);
}

.nhl-primary-nav__link--emergency,
.nhl-primary-nav__link--emergency:visited,
.nhl-primary-nav__link--emergency:hover,
.nhl-primary-nav__link--emergency:focus,
.nhl-primary-nav__link--emergency[aria-expanded="true"],
.nhl_mobile_emergency {
    color: hsl(var(--destructive));
}

.nhl-caret {
    font-family: "FA Pro";
    font-size: 10px;
    font-weight: 400;
    line-height: 1;
    opacity: 0.55;
    transition: transform 0.16s ease;
}

.nhl-menu-trigger[aria-expanded="true"] .nhl-caret {
    transform: rotate(180deg);
}

.nhl-pill-trigger {
    border: 1px solid hsl(var(--border));
    border-radius: 999px;
    background: hsl(var(--card));
    color: hsl(var(--foreground));
    box-shadow: var(--shadow-sm);

    height: 32px;
    padding: 0 14px;
    font-size: 13px;
}

.nhl-icon-trigger {
    width: 36px;
    height: 36px;
    display: inline-grid;
    place-items: center;
    border: 1px solid hsl(var(--border));
    border-radius: 999px;
    background: hsl(var(--card));
    color: hsl(var(--foreground));
    box-shadow: var(--shadow-sm);
}

.nhl-icon-trigger .fa {
    font-size: 14px;
    font-weight: 600;
}

@keyframes nh-pulse {
    0% {
        box-shadow: 0 0 0 0 hsl(var(--destructive) / 0.6);
    }

    70% {
        box-shadow: 0 0 0 8px hsl(var(--destructive) / 0);
    }

    100% {
        box-shadow: 0 0 0 0 hsl(var(--destructive) / 0);
    }
}

.nhl-emergency-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: hsl(var(--destructive));
    box-shadow: 0 0 0 8px hsl(var(--destructive) / 0.11);
    animation: nh-pulse 1.8s ease-out infinite;
}

.nhl-menu-panel {
    position: absolute;
    top: calc(100% + 18px);
    right: 0;
    z-index: 70;
    background: hsl(var(--card));
    border-radius: 20px;
    box-shadow: var(--shadow-menu);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.nhl-menu-anchor[data-open="true"] .nhl-menu-panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.nhl-utility-panel {
    left: 50%;
    right: auto;
    width: 300px;
    padding: 34px 24px 24px;
    transform: translate(-50%, -8px);
}

.nhl-menu-anchor[data-open="true"] .nhl-utility-panel {
    transform: translate(-50%, 0);
}

.nhl-link-list,
.nhl-want-menu ul,
.nhl-service-panel ul,
.nhl-emergency-panel__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.alert-bar {
    background: color-mix(in srgb, #002c6d 100%, white 10%);
    color: hsl(var(--primary-foreground));
    font-size: 14px;
    line-height: 1.4;
    padding: 11px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
}

.alert-bar .fa {
    font-size: 14px;
    opacity: 0.95;
}

.alert-bar strong {
    font-weight: 600;
}

.alert-bar__close {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: 0;
    color: hsl(var(--primary-foreground));
    font-size: 14px;
    line-height: 1;
    opacity: 0.8;
}

.alert-bar__close:hover {
    opacity: 1;
}

.alert-bar__close {
    background: none !important;
}

.nhl-link-list {
    display: grid;
}

.nhl-link-list a,
.nhl-panel-more {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2px;
    color: hsl(var(--foreground));
    font-size: 14px;
    font-weight: 600;
    line-height: 1.25;
    padding: 9px 12px;
}

.nhl-link-list a .fa,
.nhl-panel-more .fa {
    color: hsl(var(--muted-foreground));
    font-size: 14px;
    opacity: 0.7;
}

.nhl-link-list a:hover,
.nhl-panel-more:hover {
    color: hsl(var(--primary));
}

.nhl-panel-more {
    margin-top: 10px;
    padding-top: 17px;
    border-top: 1px solid hsl(var(--border));
    color: hsl(var(--primary));
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 14px;
}

.nhl-want-menu {
    width: auto;
    padding: 48px 161px;
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px 100px;
    border-radius: 0 !important;
    top: 135px;
    left: 0;
}

.nhl-want-menu__group h3 {
    margin: 0 0 14px;
    color: hsl(var(--muted-foreground));
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.nhl-want-menu__group ul {
    display: grid;
    /* Max 5 items per column — overflow flows into an adjacent column */
    grid-auto-flow: column;
    grid-template-rows: repeat(5, min-content);
    gap: 12px 24px;
    justify-content: start;
}

.nhl-want-menu__group a {
    color: hsl(var(--foreground));
    font-size: 14px;
    font-weight: 600;
    line-height: 1.25;
}

.nhl-want-menu__group a:hover {
    color: hsl(var(--primary));
}

.nhl-service-panel {
    left: 50%;
    right: auto;
    top: 100%;
    width: 100%;
    min-height: 380px;
    display: grid;
    grid-template-columns: 425px minmax(420px, 1fr) 500px;
    padding: 0;
    overflow: hidden;
    border-radius: 0;
    transform: translate(-50%, -8px);
}

.nhl-menu-anchor[data-open="true"] .nhl-service-panel {
    transform: translate(-50%, 0);
}

.nhl-service-panel__side,
.nhl-service-panel__card {
    background: hsl(var(--surface));
}

.nhl-service-panel__side {
    padding: 42px 38px;
    border-right: 1px solid hsl(var(--border));
    padding-left: 142px;
}

.nhl-service-panel__side h3 {
    margin: 0 24px 16px 0;
    padding-bottom: 22px;
    border-bottom: 1px solid hsl(var(--border));
    color: hsl(var(--primary));
    font-size: 16px;
    line-height: 1.2;
}

.nhl-service-panel__side ul {
    display: grid;
    gap: 14px;
}

.nhl-service-panel__side a {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 16px;
    align-items: center;
    padding-left: 16px;
    border-left: 4px solid transparent;
    color: hsl(var(--foreground));
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.nhl-service-panel__side a small {
    color: hsl(var(--muted-foreground));
    font-size: 12.5px;
}

.nhl-service-panel__side a .fa {
    color: hsl(var(--muted-foreground));
    font-size: 16px;
}

.nhl-service-panel__side a:hover,
.nhl-service-panel__side a.is-active {
    border-left-color: hsl(var(--accent));
    color: hsl(var(--accent));
}

.nhl-service-panel__main {
    padding: 50px 54px 42px;
    display: flex;
    flex-direction: column;
}

.nhl-service-panel__main h3 {
    margin: 0 0 20px;
    color: hsl(var(--muted-foreground));
    font-size: 14px;
    letter-spacing: 0.04em;
    font-weight: 600;
}

.nhl-service-panel__links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 69px;
    margin-bottom: 10px;
}

.nhl-service-panel__links a,
.nhl-service-panel__view-more {
    color: hsl(var(--muted-foreground));
    font-size: 14px;
    font-weight: 600;
    line-height: 1.25;
}

.nhl-service-panel__view-more {
    color: #000 !important;
    margin-bottom: 5px !important;
}

.nhl-emergency-panel__phone:hover {
    color: hsl(var(--accent));
}

.nhl-service-panel__links a:hover {
    color: hsl(var(--primary));
}

.nhl-service-panel__foot {
    margin-top: auto;
    padding-top: 34px;
    border-top: 1px solid hsl(var(--border));
    display: flex;
    align-items: center;
    gap: 36px;
    color: hsl(var(--muted-foreground));
    font-size: 13px;
    font-weight: 600;
}

.nhl-service-panel__foot a,
.nhl-service-panel__card a {
    color: hsl(var(--accent));
}

.nhl-service-panel__card {
    padding: 34px 38px;
    border-left: 1px solid hsl(var(--border));
}

.nhl-service-panel__card img {
    display: block;
    /* width: 100%; */
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 18px;

    width: 280px !important;
    max-width: 280px !important;
    box-sizing: border-box !important;
}

.nhl-service-panel__card h3 {
    margin: 4px 0 8px;
    color: hsl(var(--primary));
    font-size: 14px;
    font-weight: 600;
}

.nhl-service-panel__card p {
    margin: 0 0 12px;
    color: hsl(var(--muted-foreground));
    font-size: 13px;
    line-height: 1.5;
    font-weight: 400;
    overflow-wrap: break-word !important;
    word-break: break-word !important;
    white-space: normal !important;
}

.nhl-service-panel__card a {
    font-size: 13px;
    font-weight: 600;
}

.nhl-emergency-panel {
    width: 320px;
    padding: 20px;
    border-color: hsl(var(--destructive) / 0.32);
}

.nhl-emergency-panel__phone {
    display: grid;
    gap: 6px;
    padding: 14px 16px;
    margin-bottom: 20px;
    border: 1px solid hsl(var(--destructive) / 0.3);
    border-radius: 14px;
    background: hsl(var(--destructive-soft));
    color: hsl(var(--destructive));
}

.nhl-emergency-panel__phone span {
    font-size: 11px;
    font-weight: 600;
}

.nhl-emergency-panel__phone strong {
    font-size: 22px;
    line-height: 1.15;
    font-weight: 600;
}

.nhl-emergency-panel__list {
    display: grid;
    gap: 0px;
}

.nhl-emergency-panel__list a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: hsl(var(--foreground));
    font-size: 14px;
    font-weight: 600;
    transition: background 0.15s;
    padding: 10px 12px;
}

.nhl-emergency-panel__list .fa {
    width: 28px;
    height: 28px;
    display: inline-grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 10px;
    background: hsl(var(--destructive-soft));
    color: hsl(var(--destructive));
    font-size: 12px;
}

.nhl-search-panel {
    width: 430px;
    padding: 22px;
}

.nhl-search-panel__form {
    height: 52px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 18px;
    border: 1px solid hsl(var(--border));
    border-radius: 999px;
    background: hsl(var(--muted));
}

.nhl-search-panel__form input {
    width: 100%;
    min-width: 0;
    border: 0;
    outline: 0;
    background: transparent;
    color: hsl(var(--foreground));
    font: 600 15px/1.2 var(--font-sans);
    box-shadow: none;
}

.nhl-search-panel__label {
    display: block;
    margin: 18px 0 10px;
    color: hsl(var(--muted-foreground));
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.nhl-search-panel__hints {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.nhl-search-panel__hints a {
    padding: 7px 12px;
    border: 1px solid hsl(var(--border));
    border-radius: 999px;
    background: hsl(var(--muted));
    color: hsl(var(--foreground));
    font-size: 13px;
    font-weight: 700;
}

.nhl-search-panel__hints a:hover {
    color: hsl(var(--primary));
    border-color: hsl(var(--primary) / 0.3);
}

.nhl-menu-anchor,
.nhl-header__top,
.nhl-primary-nav {
    display: none;
}

.nhl-header__inner {
    display: flex;
    justify-content: space-between;
}

.nhl-header__logo {
    width: unset;
}

body[data-nhl-menu-open="true"] .nhl-menu-scrim {
    opacity: 1;
    visibility: visible;
}

.mobile_nav_section {
    display: flex;
    gap: 8px;
}

#menu_icon {
    cursor: pointer;
}

.nhl-header__inner {
    align-items: center;
}

@media (min-width: 1024px) {
    .mobile_nav_section {
        display: none;
    }

    .nhl-header__inner {
        margin: 0 auto;
        display: grid;
        grid-template-columns: 180px minmax(0, 1fr);
        gap: 24px;
        align-items: center;
        padding: 0 200px 0 180px;
    }

    .nhl-header__inner {
        align-items: start;
    }

    .nhl-menu-anchor,
    .nhl-header__top,
    .nhl-primary-nav {
        display: flex !important;
    }

    .nhl-header__inner {
        display: grid !important;
    }

    .nhl-header__logo {
        width: 148px !important;
    }
}

@media (max-width: 1280px) {
    .nhl-header__inner {
        grid-template-columns: 150px minmax(0, 1fr);
        gap: 28px;
    }

    .nhl-utility-nav {
        gap: 22px;
    }

    .nhl-primary-nav {
        gap: 18px;
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .nhl-service-panel {
        grid-template-columns: 300px minmax(360px, 1fr) 360px;
    }
}

@media (max-width: 1024px) {
    .nhl-header__inner {
        width: min(100% - 32px, 960px);
        min-height: auto;
        grid-template-columns: 120px minmax(0, 1fr);
        padding: 18px 0;
    }

    .nhl-header__logo img {
        height: 88px;
    }

    .nhl-header__top {
        min-height: 52px;
        justify-content: flex-end;
        border-bottom: 0;
    }

    .nhl-utility-nav {
        display: none;
    }

    .nhl-primary-nav {
        min-height: 54px;
        margin-top: 10px;
    }

    .nhl-menu-trigger {
        font-size: 16px;
    }

    .nhl-service-panel,
    .nhl-want-menu {
        left: auto;
        right: 0;
        width: min(720px, calc(100vw - 32px));
        transform: translateY(-8px);
    }

    .nhl-menu-anchor[data-open="true"] .nhl-service-panel,
    .nhl-menu-anchor[data-open="true"] .nhl-want-menu {
        transform: translateY(0);
    }

    .nhl-service-panel {
        grid-template-columns: 260px 1fr;
    }

    .nhl-service-panel__card {
        display: none;
    }

    .nhl-want-menu {
        gap: 32px 48px;
    }
}

@media (max-width: 720px) {
    .nhl-header__inner {
        width: calc(100% - 24px);
        grid-template-columns: 92px minmax(0, 1fr);
        gap: 14px;
    }

    .nhl-header__logo img {
        height: 68px;
    }

    .nhl-pill-trigger {
        min-height: 42px;
        padding: 0 16px;
    }

    .nhl-icon-trigger {
        width: 42px;
        height: 42px;
    }

    .nhl-header__actions {
        gap: 8px;
    }

    .nhl-primary-nav {
        padding-bottom: 4px;
    }

    .nhl-menu-trigger {
        font-size: 15px;
    }

    .nhl-menu-panel,
    .nhl-utility-panel,
    .nhl-service-panel,
    .nhl-want-menu,
    .nhl-emergency-panel,
    .nhl-search-panel {
        position: fixed;
        top: 118px;
        left: 12px;
        right: 12px;
        width: auto;
        max-height: calc(100vh - 142px);
        overflow: auto;
        transform: translateY(-8px);
    }

    .nhl-menu-anchor[data-open="true"] .nhl-menu-panel,
    .nhl-menu-anchor[data-open="true"] .nhl-utility-panel,
    .nhl-menu-anchor[data-open="true"] .nhl-service-panel,
    .nhl-menu-anchor[data-open="true"] .nhl-want-menu {
        transform: translateY(0);
    }

    .nhl-service-panel {
        grid-template-columns: 1fr;
        min-height: auto;
        border-radius: 18px;
    }

    /* Small screens: no room for side-by-side columns — groups stack and
       each list runs as one full column */
    .nhl-want-menu {
        flex-direction: column;
        gap: 28px;
    }

    .nhl-want-menu__group ul {
        grid-auto-flow: row;
        grid-template-rows: none;
    }

    .nhl-service-panel__side,
    .nhl-service-panel__main {
        padding: 24px;
    }

    .nhl-service-panel__side {
        border-right: 0;
        border-bottom: 1px solid hsl(var(--border));
    }

    .nhl-service-panel__links,
    .nhl-want-menu {
        grid-template-columns: 1fr;
    }

    .nhl-want-menu,
    .nhl-emergency-panel,
    .nhl-search-panel,
    .nhl-utility-panel {
        padding: 24px;
    }
}

/* Remove the "Showing all X results" text */
.woocommerce-result-count {
    display: none;
}

/* Hide the "Filter by care centre:" label (accessibly) */
.care-centre-filter label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* Make both filter and sorting containers inline-block, left-aligned */
.care-centre-filter,
.woocommerce-ordering {
    display: inline-block;
    vertical-align: middle;
    margin-right: 1rem;
    float: none;
}

/* Override any global select styles that force right floats or fixed widths */
.care-centre-filter select,
.woocommerce-ordering select {
    float: none !important;
    margin-bottom: 40px;
    width: auto;
    min-width: 300px;
}

/* Remove any leftover clearing that could break the line */
.ast-woocommerce-container {
    overflow: visible;
}

.nhl_service_heading {
    color: #000 !important;
}

/* ─── Mobile navigation drawer ────────────────────────────── */

.nhl-mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 80;
    background: hsl(var(--foreground) / 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.28s ease, visibility 0.28s ease;
}

.nhl-mobile-overlay.is-visible {
    display: block;
    opacity: 1;
    visibility: visible;
}

.nhl-mobile-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(480px, 100%);
    z-index: 90;
    background: hsl(var(--card));
    transform: translateX(100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.nhl-mobile-drawer.is-open {
    transform: translateX(0);
}

body.nhl-mobile-menu-open {
    overflow: hidden;
}

.nhl-mobile-panels {
    position: relative;
    flex: 1;
    overflow: hidden;
}

/* Each panel occupies the full drawer area and slides in/out */
.nhl-mobile-panel {
    position: absolute;
    inset: 0;
    overflow-y: auto;
    background: hsl(var(--card));
    transform: translateX(100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.nhl-mobile-panel.is-active {
    transform: translateX(0);
}

/* Slight push-back on the outgoing panel for depth feel */
.nhl-mobile-panel.is-prev {
    transform: translateX(-28%);
}

/* Sticky panel header */
.nhl-mobile-panel__head {
    position: sticky;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid hsl(var(--border));
    background: hsl(var(--card));
    z-index: 1;
    flex-shrink: 0;
}

.nhl-mobile-panel__brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 700;
    color: hsl(var(--foreground));
}

.nhl-mobile-panel__brand img {
    height: 48px;
    width: auto;
    display: block;
}

.nhl-mobile-panel__body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Back button */
.nhl-mobile-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: hsl(var(--foreground));
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    font-family: inherit;
}

.nhl-mobile-back .fa {
    font-size: 13px;
    color: hsl(var(--muted-foreground));
}

/* Close button */
.nhl-mobile-close {
    width: 36px;
    height: 36px;
    display: inline-grid;
    place-items: center;
    font-size: 18px;
    background: none;
    border: none;
    cursor: pointer;
    color: hsl(var(--foreground));
    border-radius: 50%;
    flex-shrink: 0;
    font-family: "FA Pro";
    font-weight: 400;
    line-height: 1;
}

.nhl-mobile-close:hover {
    background: hsl(var(--muted));
}

/* Nav list */
.nhl-mobile-nav {
    list-style: none;
    margin: 0;
    padding: 0;
}

.nhl-mobile-nav>li {
    border-bottom: 1px solid hsl(var(--border));
}

.nhl-mobile-nav>li>a,
.nhl-mobile-nav>li>span {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 17px 20px;
    font-size: 15px;
    font-weight: 500;
    color: hsl(var(--foreground));
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    font-family: inherit;
    gap: 8px;
    text-decoration: none;
    line-height: 1.3;
}

.nhl-mobile-nav>li>a:hover,
.nhl-mobile-nav>li>button:hover {
    color: hsl(var(--primary));
}

/* Right-side badge + chevron group */
.nhl-mobile-nav__right {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
    flex-shrink: 0;
}

.nhl-mobile-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 24px;
    padding: 0 6px;
    border-radius: 999px;
    background: hsl(var(--muted));
    font-size: 12px;
    font-weight: 600;
    color: hsl(var(--muted-foreground));
}

.nhl-mobile-chevron {
    font-size: 13px;
    color: hsl(var(--muted-foreground));
}

/* Quick links section */
.nhl-mobile-ql {
    padding: 20px 0 0;
}

.nhl-mobile-ql__label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: hsl(var(--muted-foreground));
    text-transform: uppercase;
    padding: 0 20px 8px;
}

/* Contact + CTA footer */
.nhl-mobile-footer {
    padding: 20px;
    border-top: 1px solid hsl(var(--border));
    margin-top: auto;
}

.nhl-mobile-contact {
    display: grid;
    gap: 10px;
    margin-bottom: 16px;
    font-size: 14px;
    color: hsl(var(--muted-foreground));
}

.nhl-mobile-contact>span {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nhl-mobile-contact .fa {
    font-size: 14px;
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}

.nhl-mobile-cta {
    display: block;
    text-align: center;
    padding: 15px;
    background: hsl(var(--foreground));
    color: hsl(var(--primary-foreground)) !important;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.16s ease;
}

.nhl-mobile-cta:hover {
    background: hsl(var(--primary));
}

/* Image card (Level 3 panel) */
.nhl-mobile-card {
    margin: 16px;
    border: 1px solid hsl(var(--border));
    border-radius: 12px;
    padding: 12px;
}

.nhl-mobile-card img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
}

.nhl-mobile-card__placeholder {
    aspect-ratio: 16 / 9;
    background: hsl(var(--muted));
    border-radius: 8px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: hsl(var(--muted-foreground));
    font-size: 13px;
    border: 1px dashed hsl(var(--border));
}

.nhl-mobile-card>p {
    margin: 0;
    font-size: 13px;
    line-height: 1.55;
    color: hsl(var(--muted-foreground));
}

.want_to_group {
    flex-direction: column;
    align-items: start !important;
    gap: 14px !important;
}

.want_to_group ul {
    padding: 0;
    margin-bottom: 0 !important;
    text-decoration: none;
    list-style-type: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-left: 0 !important;
}

.nhl-mobile-cta {
    --accent: 194 100% 46%;
    background: hsl(var(--accent));
    color: hsl(var(--accent-foreground));
    border-color: transparent;
    box-shadow: var(--shadow-sm);
}

.nhl-mobile-cta:hover {
    filter: brightness(1.08);
}

.nhl_mobile_emergency {
    font-weight: 600;
}

@media (max-width: 768px) {
    .alert-bar span {
        text-align: center;
    }

    .alert-bar {
        gap: 40px !important;
        justify-content: space-between !important;
    }

    .alert-bar__close {
        position: relative !important;
        padding: 0 !important;
    }
}

.nhl-mobile-drawer .nhl-search-panel {
    position: static;
    width: 100%;
    max-height: none;
    overflow: visible;
    transform: none;
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transition: none;
    padding: 0;
    flex-direction: column;
    flex: 1;
}

.nhl-mobile-drawer .nhl-search-panel.is-visible {
    display: flex !important;
}

.nhl-mobile-panels.is-hidden,
.nhl-search-panel.is-hidden {
    display: none;
}

.nhl-mobile-search-body {
    padding: 20px;
    overflow-y: auto;
    flex: 1;
}

.nhl-mobile-search-title {
    font-size: 16px;
    font-weight: 600;
    color: hsl(var(--foreground));
}

html:not([lang^="en"]) .nhl-primary-nav,
html:not([lang^="en"]) .nhl-utility-nav {
    flex-wrap: wrap;
    justify-content: end !important;
}

@media (min-width: 1024px) {

    .nhl-mobile-drawer,
    .nhl-menu-mobile-panel,
    .nhl-mobile-overlay {
        display: none !important;
    }
}

@media screen and (min-width: 1025px) and (max-width: 1220px) {
    .nhl-header__inner {
        padding: 0 41px 0 19px !important;
    }
}

@media (min-width: 1024px) {
    .nhl-primary-nav {
        justify-content: right !important;
    }
}

/* ─── Search panel live suggestions ─────────────────────────── */

.nhl-search-panel__suggestions {
    margin-top: 10px;
    border: 1px solid hsl(var(--border));
    border-radius: var(--radius);
    background: hsl(var(--card));
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.nhl-search-panel__suggestions[hidden] {
    display: none;
}

.nhl-search-panel__suggestions a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 11px 16px;
    color: hsl(var(--foreground));
    font-size: 14px;
    font-weight: 600;
}

.nhl-search-panel__suggestions a+a {
    border-top: 1px solid hsl(var(--border));
}

.nhl-search-panel__suggestions a:hover {
    background: hsl(var(--muted));
    color: hsl(var(--primary));
}

.nhl-search-panel__suggestions .nhl-suggestion__type {
    flex-shrink: 0;
    padding: 3px 9px;
    border-radius: 999px;
    background: hsl(var(--primary-light));
    color: hsl(var(--primary));
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.nhl-search-panel__suggestions .nhl-suggestion__empty {
    display: block;
    padding: 11px 16px;
    color: hsl(var(--muted-foreground));
    font-size: 13px;
}