/* Smartphoneshop.dk Navigation 2.0
   Frontend-only progressive enhancement.
   Desktop uses a progressive full-height catalogue drawer.
   The original DanDomain category DOM remains the source/fallback. */

.ss-nav2-desktop,
.ss-nav2-drawer-overlay,
.ss-nav2-menu-trigger {
    display: none;
}

html.ss-nav2-lock,
body.ss-nav2-lock {
    overflow: hidden !important;
    overscroll-behavior: none;
}

/* ---------- Shared primitives ---------- */
.ss-nav2-menu-icon {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
}

.ss-nav2-menu-icon i {
    display: block;
    width: 18px;
    height: 2px;
    margin: 0;
    border: 0;
    border-radius: 999px;
    background: currentColor;
}

.ss-nav2-arrow,
.ss-nav2-down,
.ss-nav2-back-arrow {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
}

.ss-nav2-arrow { transform: rotate(-45deg); }
.ss-nav2-down {
    width: 7px;
    height: 7px;
    transform: rotate(45deg) translateY(-2px);
}
.ss-nav2-back-arrow { transform: rotate(135deg); }

/* =========================================================
   DESKTOP: priority bar + progressive full-height drawer
========================================================= */
html.ss-nav2-ready.ss-nav2-mode-desktop .ss-category-navigation {
    position: relative !important;
    z-index: 6100 !important;
    overflow: visible !important;
    padding: 0 !important;
    border: 0 !important;
    background: #11181c !important;
}

html.ss-nav2-ready.ss-nav2-mode-desktop .ss-category-navigation > .container.with-xlarge {
    display: none !important;
}

html.ss-nav2-ready.ss-nav2-mode-desktop .ss-nav2-desktop {
    display: block !important;
    position: relative;
    width: 100%;
    background: #11181c;
    color: #ffffff;
}

html.ss-nav2-ready.ss-nav2-mode-desktop .ss-nav2-bar.container.with-xlarge {
    display: block !important;
    position: relative;
    width: 100% !important;
    max-width: 1240px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
    background: transparent !important;
}

.ss-nav2-priority {
    display: flex;
    align-items: stretch;
    gap: 2px;
    min-height: 48px;
    margin: 0;
    padding: 0;
}

.ss-nav2-categories-button,
.ss-nav2-priority-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    margin: 0;
    padding: 0 13px;
    border: 0;
    background: transparent;
    color: #edf6f7 !important;
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: .012em;
    text-decoration: none !important;
    text-transform: uppercase;
    white-space: nowrap;
    cursor: pointer;
}

.ss-nav2-categories-button {
    gap: 9px;
    margin-right: 4px;
    padding-left: 15px;
    padding-right: 15px;
    background: rgba(255,255,255,.07);
}

.ss-nav2-categories-button:hover,
.ss-nav2-categories-button:focus,
.ss-nav2-desktop.is-open .ss-nav2-categories-button,
.ss-nav2-priority-link:hover,
.ss-nav2-priority-link:focus,
.ss-nav2-priority-link[aria-current="page"] {
    background: rgba(0,173,181,.18);
    color: #ffffff !important;
    outline: none;
}

.ss-nav2-categories-button::after,
.ss-nav2-priority-link::after {
    content: "";
    position: absolute;
    right: 11px;
    bottom: 0;
    left: 11px;
    height: 3px;
    border-radius: 3px 3px 0 0;
    background: #00adb5;
    opacity: 0;
    transform: scaleX(.45);
    transition: opacity .16s ease, transform .16s ease;
}

.ss-nav2-desktop.is-open .ss-nav2-categories-button::after,
.ss-nav2-priority-link:hover::after,
.ss-nav2-priority-link:focus::after,
.ss-nav2-priority-link[aria-current="page"]::after {
    opacity: 1;
    transform: scaleX(1);
}

.ss-nav2-priority-link.is-outlet {
    margin-left: auto;
    color: #fed766 !important;
}

.ss-nav2-priority-link.is-outlet::after { background: #fed766; }

.ss-nav2-mega-wrap[hidden] { display: none !important; }

/* The catalogue is a viewport-level navigation drawer, not a centred dropdown/modal card. */
.ss-nav2-mega-wrap {
    position: fixed;
    inset: 0;
    z-index: 9800;
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    background: rgba(17,24,28,.34);
    backdrop-filter: blur(1px);
}

.ss-nav2-catalog {
    display: flex;
    width: 340px;
    height: 100vh;
    height: 100dvh;
    max-height: none;
    overflow: hidden;
    border: 0;
    border-right: 1px solid #cfdcdf;
    border-radius: 0;
    background: #ffffff;
    color: #11181c;
    box-shadow: 18px 0 50px rgba(17,24,28,.22);
    transition: width .2s ease;
}

.ss-nav2-catalog.has-detail {
    width: min(900px, calc(100vw - 42px));
}

.ss-nav2-catalog-rail {
    display: flex;
    flex: 0 0 340px;
    flex-direction: column;
    width: 340px;
    min-width: 340px;
    height: 100%;
    overflow: hidden;
    border-right: 1px solid #dce7e9;
    background: #f3f7f7;
}

.ss-nav2-catalog-rail-head {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 94px;
    padding: 18px 18px 16px 20px;
    background: #122e33;
    color: #ffffff;
}

.ss-nav2-catalog-rail-heading {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}

.ss-nav2-catalog-brand {
    color: #7ed0d4;
    font-size: 10.5px;
    font-weight: 850;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.ss-nav2-catalog-main-title {
    color: #ffffff;
    font-size: 24px;
    font-weight: 850;
    line-height: 1.05;
}

.ss-nav2-desktop-close {
    position: relative;
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    margin: 0;
    padding: 0;
    border: 1px solid rgba(254,215,102,.55);
    border-radius: 13px;
    background: rgba(17,24,28,.28);
    color: #fed766;
    cursor: pointer;
}

.ss-nav2-desktop-close span::before,
.ss-nav2-desktop-close span::after {
    content: "";
    position: absolute;
    top: 21px;
    left: 11px;
    width: 22px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
}
.ss-nav2-desktop-close span::before { transform: rotate(45deg); }
.ss-nav2-desktop-close span::after { transform: rotate(-45deg); }
.ss-nav2-desktop-close:hover,
.ss-nav2-desktop-close:focus {
    border-color: #fed766;
    background: rgba(254,215,102,.10);
    outline: none;
}

.ss-nav2-catalog-rail .ss-nav2-menu-filter {
    flex: 0 0 auto;
    margin: 14px 14px 4px;
    border-color: #cbd8da;
    box-shadow: 0 1px 0 rgba(17,24,28,.03);
}

.ss-nav2-catalog-rail-title {
    flex: 0 0 auto;
    padding: 15px 18px 9px 20px;
    color: #008f97;
    font-size: 10.5px;
    font-weight: 850;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.ss-nav2-catalog-rail-list {
    flex: 1 1 auto;
    min-height: 0;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-width: thin;
    scrollbar-color: #b6cacc transparent;
}

.ss-nav2-catalog-rail-button {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
    width: 100%;
    min-height: 53px;
    margin: 0;
    padding: 11px 18px 11px 20px;
    border: 0;
    border-top: 1px solid rgba(207,220,223,.78);
    background: transparent;
    color: #26373c;
    font-family: inherit;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.25;
    text-align: left;
    cursor: pointer;
}

.ss-nav2-catalog-rail-button:first-child { border-top-color: transparent; }

.ss-nav2-catalog-rail-button::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 4px;
    background: #00adb5;
    opacity: 0;
}

.ss-nav2-catalog-rail-button .ss-nav2-arrow {
    width: 7px;
    height: 7px;
    color: #789096;
}

.ss-nav2-catalog-rail-button:hover,
.ss-nav2-catalog-rail-button:focus,
.ss-nav2-catalog-rail-button.is-active {
    background: #ffffff;
    color: #11181c;
    outline: none;
}

.ss-nav2-catalog-rail-button:hover::before,
.ss-nav2-catalog-rail-button:focus::before,
.ss-nav2-catalog-rail-button.is-active::before { opacity: 1; }

.ss-nav2-catalog-rail-button:hover .ss-nav2-arrow,
.ss-nav2-catalog-rail-button:focus .ss-nav2-arrow,
.ss-nav2-catalog-rail-button.is-active .ss-nav2-arrow { color: #00adb5; }

.ss-nav2-catalog-rail-button.is-outlet { color: #8d6500; }
.ss-nav2-catalog-rail-button.is-outlet::before { background: #fed766; }

/* Detail is deliberately absent on first open; a root click expands the drawer. */
.ss-nav2-catalog-content {
    display: none;
    flex: 1 1 auto;
    min-width: 0;
    height: 100%;
    padding: 36px 38px 34px;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    background: #ffffff;
    scrollbar-width: thin;
    scrollbar-color: #c2d3d6 transparent;
}

.ss-nav2-catalog.has-detail .ss-nav2-catalog-content { display: block; }

.ss-nav2-catalog-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
        "kicker all"
        "title all";
    align-items: center;
    gap: 4px 28px;
    margin: 0 0 28px;
    padding: 0 0 22px;
    border-bottom: 1px solid #e1eaec;
}

.ss-nav2-catalog-kicker {
    grid-area: kicker;
    margin: 0;
    color: #008f97;
    font-size: 10.5px;
    font-weight: 850;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.ss-nav2-catalog-title {
    grid-area: title;
    margin: 0;
    color: #11181c;
    font-size: 28px;
    font-weight: 850;
    line-height: 1.12;
}

.ss-nav2-catalog-view-all {
    grid-area: all;
    display: inline-flex;
    align-items: center;
    gap: 11px;
    min-height: 40px;
    padding: 0 14px;
    border: 1px solid #cbdadc;
    border-radius: 10px;
    background: #ffffff;
    color: #11181c !important;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none !important;
    white-space: nowrap;
}

.ss-nav2-catalog-view-all .ss-nav2-arrow {
    width: 7px;
    height: 7px;
    color: #00adb5;
}

.ss-nav2-catalog-view-all:hover,
.ss-nav2-catalog-view-all:focus {
    border-color: #00adb5;
    color: #008f97 !important;
    outline: none;
}

.ss-nav2-catalog-section-label {
    margin: 0 0 11px;
    color: #687a7f;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.ss-nav2-catalog-children {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 14px;
}

.ss-nav2-catalog-child-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    min-width: 0;
    min-height: 46px;
    padding: 10px 12px;
    border: 1px solid #e0e9eb;
    border-radius: 9px;
    background: #ffffff;
    color: #31454a !important;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.25;
    text-decoration: none !important;
}

.ss-nav2-catalog-child-link .ss-nav2-arrow {
    flex: 0 0 auto;
    width: 6px;
    height: 6px;
    color: #8ca0a5;
}

.ss-nav2-catalog-child-link:hover,
.ss-nav2-catalog-child-link:focus {
    border-color: #9fdadd;
    background: #f2fbfb;
    color: #008f97 !important;
    outline: none;
}

.ss-nav2-catalog-child-link:hover .ss-nav2-arrow,
.ss-nav2-catalog-child-link:focus .ss-nav2-arrow { color: #00adb5; }

.ss-nav2-catalog-empty {
    margin: 0;
    color: #66777c;
    font-size: 14px;
    line-height: 1.55;
}

.ss-nav2-catalog-merch {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    margin-top: 28px;
    padding: 16px 17px;
    border: 1px solid rgba(0,173,181,.20);
    border-radius: 11px;
    background: linear-gradient(100deg, #edfafa, #fffaf0);
}

.ss-nav2-catalog-merch-copy {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}
.ss-nav2-catalog-merch-copy strong {
    color: #11181c;
    font-size: 14.5px;
    font-weight: 800;
}
.ss-nav2-catalog-merch-copy span {
    color: #5b6c71;
    font-size: 12.5px;
    line-height: 1.4;
}
.ss-nav2-catalog-merch-link {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 9px;
    background: #00adb5;
    color: #ffffff !important;
    font-size: 12.5px;
    font-weight: 850;
    text-decoration: none !important;
}
.ss-nav2-catalog-merch-link:hover,
.ss-nav2-catalog-merch-link:focus {
    background: #008f97;
    color: #ffffff !important;
    outline: none;
}

html.ss-nav2-ready.ss-nav2-mode-desktop .ss-top-links-row .ss-nav2-utility-low {
    display: none !important;
}

@media (max-width: 1360px) and (min-width: 1200px) {
    .ss-nav2-catalog { width: 320px; }
    .ss-nav2-catalog.has-detail { width: min(840px, calc(100vw - 28px)); }
    .ss-nav2-catalog-rail { flex-basis: 320px; width: 320px; min-width: 320px; }
    .ss-nav2-catalog-content { padding-right: 30px; padding-left: 30px; }
}

/* =========================================================
   TOUCH: one drawer engine for mobile + tablet
========================================================= */
html.ss-nav2-ready.ss-nav2-mode-touch .site-corporate.ss-utility-bar {
    display: none !important;
}

html.ss-nav2-ready.ss-nav2-mode-touch .ss-category-navigation {
    display: none !important;
}

html.ss-nav2-ready.ss-nav2-mode-touch .ss-header-shell {
    position: sticky !important;
    top: 0 !important;
    z-index: 9000 !important;
    overflow: visible !important;
    background: #11181c !important;
    box-shadow: 0 8px 24px rgba(17,24,28,.16) !important;
}

html.ss-nav2-ready.ss-nav2-mode-touch .ss-header-shell > .site-header,
html.ss-nav2-ready.ss-nav2-mode-touch .ss-header-shell > .site-header .container.with-xlarge,
html.ss-nav2-ready.ss-nav2-mode-touch .ss-header-shell > .site-header .ss-header-main {
    background: linear-gradient(110deg, #55bfb6 0%, #00adb5 58%, #118f9e 100%) !important;
}

html.ss-nav2-ready.ss-nav2-mode-touch .ss-header-shell > .site-header .container.with-xlarge {
    width: 100% !important;
    max-width: none !important;
    padding: 0 14px !important;
}

html.ss-nav2-ready.ss-nav2-mode-touch .ss-header-main {
    display: grid !important;
    grid-template-columns: auto minmax(0, 1fr) auto !important;
    grid-template-areas:
        "trigger brand actions"
        "search search search" !important;
    align-items: center !important;
    gap: 9px 11px !important;
    min-height: 70px !important;
    padding: 11px 0 !important;
}

html.ss-nav2-ready.ss-nav2-mode-touch .ss-header-mobile-trigger {
    grid-area: trigger !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    width: auto !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

html.ss-nav2-ready.ss-nav2-mode-touch .ss-header-mobile-trigger .ss-nav2-legacy-trigger {
    display: none !important;
}

html.ss-nav2-ready.ss-nav2-mode-touch .ss-nav2-menu-trigger {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 42px !important;
    min-width: 42px !important;
    max-width: 42px !important;
    height: 42px !important;
    min-height: 42px !important;
    max-height: 42px !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 1px solid rgba(255,255,255,.34) !important;
    border-radius: 13px !important;
    background: rgba(17,24,28,.18) !important;
    color: #ffffff !important;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.10) !important;
    cursor: pointer;
}

html.ss-nav2-ready.ss-nav2-mode-touch .ss-nav2-menu-trigger:hover,
html.ss-nav2-ready.ss-nav2-mode-touch .ss-nav2-menu-trigger:focus {
    border-color: rgba(255,255,255,.55) !important;
    background: rgba(17,24,28,.32) !important;
    color: #fed766 !important;
    outline: none !important;
}

html.ss-nav2-ready.ss-nav2-mode-touch .ss-header-brand {
    grid-area: brand !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    min-width: 0 !important;
    width: auto !important;
    margin: 0 !important;
    padding: 0 !important;
}

html.ss-nav2-ready.ss-nav2-mode-touch .ss-header-brand img {
    display: block !important;
    width: auto !important;
    max-width: 185px !important;
    max-height: 32px !important;
    margin: 0 !important;
    object-fit: contain !important;
}

html.ss-nav2-ready.ss-nav2-mode-touch .ss-header-actions {
    grid-area: actions !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 7px !important;
    width: auto !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    position: relative !important;
    top: auto !important;
    transform: none !important;
}

html.ss-nav2-ready.ss-nav2-mode-touch .ss-header-actions .ss-header-cart,
html.ss-nav2-ready.ss-nav2-mode-touch .ss-header-actions .w-cart.ss-header-cart {
    display: none !important;
}

html.ss-nav2-ready.ss-nav2-mode-touch .ss-header-actions .w-search-button,
html.ss-nav2-ready.ss-nav2-mode-touch .ss-header-actions .w-cart-button {
    position: relative !important;
    inset: auto !important;
    float: none !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex: 0 0 42px !important;
    width: 42px !important;
    min-width: 42px !important;
    max-width: 42px !important;
    height: 42px !important;
    min-height: 42px !important;
    max-height: 42px !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 1px solid rgba(255,255,255,.30) !important;
    border-radius: 13px !important;
    background: rgba(17,24,28,.18) !important;
    color: #ffffff !important;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.10) !important;
    transform: none !important;
    text-decoration: none !important;
}

html.ss-nav2-ready.ss-nav2-mode-touch .ss-header-search {
    grid-area: search !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    position: relative !important;
    z-index: 120 !important;
}

html.ss-nav2-ready.ss-nav2-mode-touch .ss-header-search.is-collapsed {
    display: none !important;
}

html.ss-nav2-ready.ss-nav2-mode-touch .ss-header-search:not(.is-collapsed) {
    display: block !important;
}

.ss-nav2-drawer-overlay[hidden] {
    display: none !important;
}

html.ss-nav2-ready.ss-nav2-mode-touch .ss-nav2-drawer-overlay {
    position: fixed;
    inset: 0;
    z-index: 200000;
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    background: rgba(6,12,15,.58);
    backdrop-filter: blur(2px);
}

.ss-nav2-drawer {
    display: flex;
    flex-direction: column;
    width: min(500px, 100vw);
    height: 100dvh;
    height: 100svh;
    max-height: 100dvh;
    overflow: hidden;
    border-right: 1px solid rgba(255,255,255,.10);
    background: #11181c;
    color: #ffffff;
    box-shadow: 18px 0 55px rgba(0,0,0,.28);
    transform: translateX(-12px);
    opacity: .98;
    transition: transform .18s ease, opacity .18s ease;
}

.ss-nav2-drawer-overlay.is-open .ss-nav2-drawer {
    transform: translateX(0);
    opacity: 1;
}

.ss-nav2-drawer-header {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 74px;
    padding: 15px 18px;
    border-bottom: 1px solid rgba(255,255,255,.11);
    background: linear-gradient(110deg, rgba(0,173,181,.26), rgba(17,24,28,.18));
}

.ss-nav2-drawer-heading {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.ss-nav2-drawer-kicker {
    color: #7ed6da;
    font-size: 10.5px;
    font-weight: 850;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.ss-nav2-drawer-title {
    color: #ffffff;
    font-size: 22px;
    font-weight: 850;
    line-height: 1.1;
}

.ss-nav2-drawer-close {
    position: relative;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 12px;
    background: rgba(255,255,255,.06);
    color: #ffffff;
    cursor: pointer;
}

.ss-nav2-drawer-close span::before,
.ss-nav2-drawer-close span::after {
    content: "";
    position: absolute;
    top: 19px;
    left: 11px;
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
}

.ss-nav2-drawer-close span::before { transform: rotate(45deg); }
.ss-nav2-drawer-close span::after { transform: rotate(-45deg); }

.ss-nav2-drawer-close:hover,
.ss-nav2-drawer-close:focus {
    border-color: rgba(254,215,102,.55);
    color: #fed766;
    outline: none;
}

.ss-nav2-menu-filter {
    flex: 0 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 44px;
    gap: 0;
    margin: 14px 16px 6px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.20);
    border-radius: 13px;
    background: #ffffff;
}

.ss-nav2-menu-filter-input {
    width: 100%;
    min-width: 0;
    height: 44px;
    margin: 0;
    padding: 0 14px;
    border: 0;
    outline: none;
    background: #ffffff;
    color: #11181c;
    font-family: inherit;
    font-size: 14.5px;
}

.ss-nav2-menu-filter-input::placeholder {
    color: #7a888d;
    opacity: 1;
}

.ss-nav2-menu-filter-input:focus {
    box-shadow: inset 0 0 0 2px rgba(0,173,181,.20);
}

.ss-nav2-menu-filter-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: #00adb5;
    color: #ffffff;
    pointer-events: none;
}

.ss-nav2-search-icon {
    position: relative;
    width: 15px;
    height: 15px;
    border: 2px solid currentColor;
    border-radius: 50%;
}

.ss-nav2-search-icon::after {
    content: "";
    position: absolute;
    right: -5px;
    bottom: -3px;
    width: 7px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transform: rotate(45deg);
    transform-origin: left center;
}

.ss-nav2-menu-search-results[hidden] {
    display: none !important;
}

.ss-nav2-desktop-filter-results {
    flex: 1 1 auto;
    min-height: 0;
    padding: 8px 12px 18px;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-width: thin;
    scrollbar-color: #b6cacc transparent;
}

.ss-nav2-menu-search-label {
    margin: 4px 4px 8px;
    color: #008f97;
    font-size: 10.5px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.ss-nav2-menu-search-result {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-height: 51px;
    margin: 0 0 6px;
    padding: 9px 11px;
    border: 1px solid #dbe6e8;
    border-radius: 9px;
    background: #ffffff;
    color: #11181c !important;
    text-decoration: none !important;
}

.ss-nav2-menu-search-result:hover,
.ss-nav2-menu-search-result:focus {
    border-color: #9fdadd;
    background: #f1fbfb;
    outline: none;
}

.ss-nav2-menu-search-result-title {
    font-size: 14px;
    font-weight: 750;
    line-height: 1.25;
}

.ss-nav2-menu-search-result-parent {
    color: #6d7f84;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.25;
}

.ss-nav2-menu-search-empty {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 14px 12px;
    border: 1px solid #dbe6e8;
    border-radius: 9px;
    background: #ffffff;
}

.ss-nav2-menu-search-empty strong {
    color: #11181c;
    font-size: 14px;
    font-weight: 750;
}

.ss-nav2-menu-search-empty span {
    color: #687a7f;
    font-size: 12.5px;
    line-height: 1.4;
}

.ss-nav2-menu-search-global {
    display: block;
    margin-top: 8px;
    padding: 10px 12px;
    border-radius: 9px;
    background: #eaf8f8;
    color: #007f87 !important;
    font-size: 13px;
    font-weight: 750;
    line-height: 1.35;
    text-decoration: none !important;
}

.ss-nav2-menu-search-global:hover,
.ss-nav2-menu-search-global:focus {
    background: #d9f2f3;
    outline: none;
}

.ss-nav2-menu-search-section .ss-nav2-menu-search-results {
    margin-top: 8px;
}

.ss-nav2-drawer-panel {
    flex: 1 1 auto;
    min-height: 0;
    padding: 10px 14px 26px;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(126,207,212,.45) transparent;
}

.ss-nav2-drawer-panel::-webkit-scrollbar { width: 5px; }
.ss-nav2-drawer-panel::-webkit-scrollbar-track { background: transparent; }
.ss-nav2-drawer-panel::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: rgba(126,207,212,.45);
}

.ss-nav2-drawer-section {
    margin: 0;
    padding: 0;
}

.ss-nav2-drawer-section + .ss-nav2-drawer-section {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,.11);
}

.ss-nav2-drawer-section-title {
    margin: 4px 4px 9px;
    color: #7ecfd4;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.ss-nav2-drawer-list,
.ss-nav2-drawer-sublist {
    display: grid;
    gap: 6px;
}

.ss-nav2-drawer-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 46px;
    min-height: 50px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 11px;
    background: rgba(255,255,255,.045);
}

.ss-nav2-drawer-row:hover,
.ss-nav2-drawer-row:focus-within {
    border-color: rgba(0,173,181,.48);
    background: rgba(0,173,181,.10);
}

.ss-nav2-drawer-row.is-outlet {
    border-color: rgba(254,215,102,.28);
    background: rgba(254,215,102,.07);
}

.ss-nav2-drawer-link {
    display: flex;
    align-items: center;
    min-width: 0;
    min-height: 48px;
    padding: 11px 13px;
    color: #ffffff !important;
    font-size: 15.5px;
    font-weight: 700;
    line-height: 1.25;
    text-decoration: none !important;
}

.ss-nav2-drawer-row.is-outlet .ss-nav2-drawer-link {
    color: #fed766 !important;
}

.ss-nav2-drawer-next {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    min-height: 48px;
    padding: 0;
    border: 0;
    border-left: 1px solid rgba(255,255,255,.10);
    background: transparent;
    color: #7ed6da;
    cursor: pointer;
}

.ss-nav2-drawer-next:hover,
.ss-nav2-drawer-next:focus {
    background: rgba(0,173,181,.16);
    color: #fed766;
    outline: none;
}

.ss-nav2-guide-entry {
    display: grid;
    grid-template-columns: 24px minmax(0, 1fr) auto;
    gap: 10px;
    align-items: center;
    width: 100%;
    min-height: 52px;
    margin: 14px 0 0;
    padding: 10px 13px;
    border: 1px solid rgba(254,215,102,.30);
    border-radius: 11px;
    background: rgba(254,215,102,.08);
    color: #ffffff;
    font-family: inherit;
    font-size: 14.5px;
    font-weight: 800;
    text-align: left;
    cursor: pointer;
}

.ss-nav2-guide-entry .ss-nav2-arrow {
    color: #fed766;
}

.ss-nav2-guide-icon {
    position: relative;
    display: block;
    width: 18px;
    height: 15px;
    border: 2px solid #fed766;
    border-radius: 3px;
}

.ss-nav2-guide-icon::after {
    content: "";
    position: absolute;
    top: 2px;
    bottom: 2px;
    left: 50%;
    border-left: 1px solid #fed766;
}

.ss-nav2-drawer-help {
    margin-top: 18px !important;
    padding-top: 17px !important;
    border-top: 1px solid rgba(255,255,255,.11);
}

.ss-nav2-help-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
}

.ss-nav2-help-link {
    display: flex;
    align-items: center;
    min-height: 43px;
    padding: 9px 11px;
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 10px;
    background: rgba(255,255,255,.035);
    color: #dce8ea !important;
    font-size: 13.5px;
    font-weight: 700;
    line-height: 1.25;
    text-decoration: none !important;
}

.ss-nav2-help-link:hover,
.ss-nav2-help-link:focus {
    border-color: rgba(0,173,181,.40);
    background: rgba(0,173,181,.11);
    color: #ffffff !important;
}

.ss-nav2-drawer-back {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 40px;
    margin: 0 0 12px;
    padding: 0 5px;
    border: 0;
    background: transparent;
    color: #b9cacc;
    font-family: inherit;
    font-size: 13.5px;
    font-weight: 700;
    cursor: pointer;
}

.ss-nav2-drawer-back:hover,
.ss-nav2-drawer-back:focus {
    color: #fed766;
    outline: none;
}

.ss-nav2-category-head {
    margin: 0 0 15px;
    padding: 0 4px 15px;
    border-bottom: 1px solid rgba(255,255,255,.11);
}

.ss-nav2-category-head .ss-nav2-drawer-section-title {
    margin-left: 0;
}

.ss-nav2-category-title {
    margin: 0 0 8px;
    color: #ffffff;
    font-size: 25px;
    font-weight: 850;
    line-height: 1.12;
}

.ss-nav2-view-all {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    color: #7ed6da !important;
    font-size: 13.5px;
    font-weight: 800;
    text-decoration: none !important;
}

.ss-nav2-view-all:hover,
.ss-nav2-view-all:focus {
    color: #fed766 !important;
    text-decoration: underline !important;
    text-underline-offset: 3px;
}

.ss-nav2-drawer-sub-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 49px;
    padding: 11px 13px;
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 10px;
    background: rgba(255,255,255,.035);
    color: #edf6f7 !important;
    font-size: 14.5px;
    font-weight: 700;
    line-height: 1.25;
    text-decoration: none !important;
}

.ss-nav2-drawer-sub-link:hover,
.ss-nav2-drawer-sub-link:focus {
    border-color: rgba(0,173,181,.42);
    background: rgba(0,173,181,.10);
    color: #ffffff !important;
}

.ss-nav2-drawer-sub-link .ss-nav2-arrow {
    flex: 0 0 auto;
    color: #7ed6da;
}

.ss-nav2-guide-list {
    display: grid;
    gap: 10px;
}

.ss-nav2-guide-block {
    padding: 13px;
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 11px;
    background: rgba(255,255,255,.035);
}

.ss-nav2-guide-root {
    display: block;
    margin: 0 0 5px;
    color: #ffffff !important;
    font-size: 14.5px;
    font-weight: 800;
    text-decoration: none !important;
}

.ss-nav2-guide-child {
    display: block;
    padding: 4px 0;
    color: #b9cacc !important;
    font-size: 13px;
    font-weight: 650;
    text-decoration: none !important;
}

.ss-nav2-guide-root:hover,
.ss-nav2-guide-child:hover {
    color: #7ed6da !important;
}

@media (max-width: 600px) {
    html.ss-nav2-ready.ss-nav2-mode-touch .ss-header-shell > .site-header .container.with-xlarge {
        padding: 0 10px !important;
    }

    html.ss-nav2-ready.ss-nav2-mode-touch .ss-header-main {
        gap: 8px !important;
        min-height: 66px !important;
        padding: 10px 0 !important;
    }

    html.ss-nav2-ready.ss-nav2-mode-touch .ss-header-brand img {
        max-width: 155px !important;
        max-height: 29px !important;
    }

    html.ss-nav2-ready.ss-nav2-mode-touch .ss-nav2-menu-trigger,
    html.ss-nav2-ready.ss-nav2-mode-touch .ss-header-actions .w-search-button,
    html.ss-nav2-ready.ss-nav2-mode-touch .ss-header-actions .w-cart-button {
        flex-basis: 40px !important;
        width: 40px !important;
        min-width: 40px !important;
        max-width: 40px !important;
        height: 40px !important;
        min-height: 40px !important;
        max-height: 40px !important;
        border-radius: 12px !important;
    }

    .ss-nav2-drawer {
        width: 100vw;
        border-right: 0;
    }

    .ss-nav2-drawer-header {
        padding-right: 14px;
        padding-left: 14px;
    }

    .ss-nav2-menu-filter {
        margin-right: 12px;
        margin-left: 12px;
    }

    .ss-nav2-drawer-panel {
        padding-right: 12px;
        padding-left: 12px;
    }
}

@media (max-width: 390px) {
    html.ss-nav2-ready.ss-nav2-mode-touch .ss-header-brand img {
        max-width: 138px !important;
    }

    .ss-nav2-help-grid {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ss-nav2-drawer,
    .ss-nav2-categories-button::after,
    .ss-nav2-priority-link::after {
        transition: none !important;
    }
}

/* =========================================================
   NAVIGATION 2.0 - MOBILE CLOSED HEADER BRAND FIX
   Keep the menu trigger and brand as separate grid items and
   give the logo an explicit readable size. This also resets
   legacy logo positioning that can otherwise overlap trigger.
========================================================= */
@media (max-width: 600px) {
    html.ss-nav2-ready.ss-nav2-mode-touch .ss-header-main {
        grid-template-columns: 40px minmax(0, 1fr) 40px !important;
        grid-template-areas:
            "trigger brand actions"
            "search search search" !important;
        column-gap: 12px !important;
    }

    html.ss-nav2-ready.ss-nav2-mode-touch .ss-header-mobile-trigger {
        grid-area: trigger !important;
        position: relative !important;
        inset: auto !important;
        z-index: 2 !important;
        width: 40px !important;
        min-width: 40px !important;
        max-width: 40px !important;
        overflow: visible !important;
    }

    html.ss-nav2-ready.ss-nav2-mode-touch .ss-header-brand {
        grid-area: brand !important;
        position: relative !important;
        inset: auto !important;
        z-index: 1 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        width: 100% !important;
        min-width: 0 !important;
        max-width: none !important;
        overflow: visible !important;
        transform: none !important;
    }

    html.ss-nav2-ready.ss-nav2-mode-touch .ss-header-brand > *,
    html.ss-nav2-ready.ss-nav2-mode-touch .ss-header-brand .logo,
    html.ss-nav2-ready.ss-nav2-mode-touch .ss-header-brand .w-logo,
    html.ss-nav2-ready.ss-nav2-mode-touch .ss-header-brand [class*="logo"],
    html.ss-nav2-ready.ss-nav2-mode-touch .ss-header-brand a {
        position: static !important;
        inset: auto !important;
        float: none !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        width: auto !important;
        min-width: 0 !important;
        max-width: 100% !important;
        height: auto !important;
        margin: 0 !important;
        padding: 0 !important;
        transform: none !important;
    }

    html.ss-nav2-ready.ss-nav2-mode-touch .ss-header-brand img {
        display: block !important;
        width: 165px !important;
        min-width: 165px !important;
        max-width: 165px !important;
        height: auto !important;
        max-height: 31px !important;
        margin: 0 !important;
        object-fit: contain !important;
        object-position: left center !important;
    }

    html.ss-nav2-ready.ss-nav2-mode-touch .ss-header-actions {
        grid-area: actions !important;
        width: 40px !important;
        min-width: 40px !important;
        max-width: 40px !important;
    }
}

@media (max-width: 390px) {
    html.ss-nav2-ready.ss-nav2-mode-touch .ss-header-main {
        grid-template-columns: 38px minmax(0, 1fr) 38px !important;
        column-gap: 10px !important;
    }

    html.ss-nav2-ready.ss-nav2-mode-touch .ss-header-mobile-trigger,
    html.ss-nav2-ready.ss-nav2-mode-touch .ss-header-actions {
        width: 38px !important;
        min-width: 38px !important;
        max-width: 38px !important;
    }

    html.ss-nav2-ready.ss-nav2-mode-touch .ss-header-brand img {
        width: 145px !important;
        min-width: 145px !important;
        max-width: 145px !important;
        max-height: 29px !important;
    }
}

/* =========================================================
   NAVIGATION 2.0 - GLOBAL LAYER SCALE
   Keep ordinary site chrome low in the page stacking order.
   Header dropdowns can still layer inside the header context,
   while real modals / third-party payment dialogs stay above it.

   page/content ............. 0-50
   sticky site chrome ...... 100-120
   navigation drawer ....... 500
   system/payment modals ... provider/system controlled
========================================================= */

/* Legacy header CSS used very large global z-index values (9999+).
   Override them with a bounded root stacking context. Child search/cart
   dropdowns keep their internal z-index but can no longer escape this layer. */
html.ss-nav2-ready body .ss-header-shell {
    z-index: 100 !important;
}

html.ss-nav2-ready body .site-corporate.ss-utility-bar {
    z-index: 110 !important;
}

html.ss-nav2-ready.ss-nav2-mode-desktop body .ss-header-shell > .site-header {
    /* Keep live-search/results above the category bar. The search box already
       has its own internal z-index, but cannot escape the site-header stacking context. */
    position: relative !important;
    z-index: 103 !important;
}

html.ss-nav2-ready.ss-nav2-mode-desktop body .ss-header-shell > .navigation.ss-category-navigation,
html.ss-nav2-ready.ss-nav2-mode-desktop body .ss-category-navigation {
    position: relative !important;
    z-index: 102 !important;
}

/* Desktop catalogue is appended directly to <body>; it must cover all
   ordinary header chrome, but deliberately stays far below true modals. */
html.ss-nav2-ready.ss-nav2-mode-desktop body > .ss-nav2-mega-wrap {
    z-index: 500 !important;
}

/* Same bounded layering on touch. The drawer is body-level and therefore
   does not need a six-digit z-index to cover the sticky header. */
html.ss-nav2-ready.ss-nav2-mode-touch body .ss-header-shell {
    z-index: 100 !important;
}

html.ss-nav2-ready.ss-nav2-mode-touch body > .ss-nav2-drawer-overlay {
    z-index: 500 !important;
}
