:root {
    --cwh3-blue: #0c53a5;
    --cwh3-blue-dark: #073d79;
    --cwh3-navy: #022041;
    --cwh3-navy-2: #031a33;
    --cwh3-ink: #1f2937;
    --cwh3-muted: #64748b;
    --cwh3-line: #dce5ee;
    --cwh3-line-soft: #e9eef4;
    --cwh3-soft: #f5f7fa;
    --cwh3-white: #ffffff;
    --cwh3-green: #22c76a;
    --cwh3-shell: 1480px;
    --cwh3-font: Shabnam, Tahoma, Arial, sans-serif;
}

html,
body {
    overflow-x: hidden;
}

body.cwh3-lock {
    overflow: hidden;
}

.cwh3,
.cwh3 *,
.cwh3-search,
.cwh3-search *,
.cwh3-drawer,
.cwh3-drawer * {
    box-sizing: border-box;
}

.cwh3,
.cwh3-search,
.cwh3-drawer {
    font-family: var(--cwh3-font);
}

.cwh3 a,
.cwh3-search a,
.cwh3-drawer a {
    text-decoration: none;
}

.cwh3 button,
.cwh3 input,
.cwh3-search button,
.cwh3-search input,
.cwh3-drawer button {
    font: inherit;
}

.cwh3 button,
.cwh3-search button,
.cwh3-drawer button {
    cursor: pointer;
}

.cwh3-shell {
    width: min(100%, var(--cwh3-shell));
    margin-inline: auto;
    padding-inline: clamp(18px, 3.4vw, 54px);
}

.cwh3-skip-link {
    position: fixed;
    top: 12px;
    right: 12px;
    z-index: 20000;
    padding: 10px 14px;
    color: #fff;
    background: var(--cwh3-navy);
    border-radius: 4px;
    transform: translateY(-160%);
    transition: transform 0.2s ease;
}

.cwh3-skip-link:focus {
    transform: translateY(0);
}

.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* -------------------------------------------------------
   Header base
------------------------------------------------------- */

.cwh3 {
    position: relative;
    z-index: 10000;
    width: 100%;
    color: var(--cwh3-ink);
}

.cwh3-topbar {
    position: relative;
    z-index: 2;
    min-height: 38px;
    color: #fff;
    background: var(--cwh3-navy);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cwh3-topbar__inner {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cwh3-topbar__message {
    min-width: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 9px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 11.5px;
    font-weight: 700;
    white-space: nowrap;
}

.cwh3-topbar__message i {
    color: #70b8ff;
    font-size: 11px;
}

.cwh3-topbar__links {
    margin-right: auto;
    display: flex;
    align-items: center;
    gap: 18px;
    direction: ltr;
}

.cwh3-topbar__links a {
    min-height: 28px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 11px;
    font-weight: 650;
    transition: color 0.18s ease;
}

.cwh3-topbar__links a:hover,
.cwh3-topbar__links a:focus-visible {
    color: #fff;
}

.cwh3-topbar__links i {
    color: #8cc7ff;
    font-size: 11px;
}

.cwh3-topbar__phone span {
    font-size: 12px;
    font-weight: 850;
    letter-spacing: 0.15px;
    font-variant-numeric: tabular-nums;
}

.cwh3-navbar {
    position: relative;
    top: auto;
    z-index: 10010;
    width: 100%;
    background: rgba(255, 255, 255, 0.985);
    border-bottom: 1px solid var(--cwh3-line-soft);
    box-shadow: 0 8px 24px rgba(2, 32, 65, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    transition:
        box-shadow 0.2s ease,
        background-color 0.2s ease;
}

.cwh3-navbar.is-fixed {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
}

.cwh3-navbar.is-compact {
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 14px 34px rgba(2, 32, 65, 0.1);
}

.cwh3-navbar-placeholder {
    width: 100%;
    height: 0;
}

.cwh3-navbar__inner {
    min-height: 88px;
    display: flex;
    align-items: center;
    gap: clamp(20px, 2.2vw, 34px);
    transition: min-height 0.2s ease;
}

.cwh3-navbar.is-compact .cwh3-navbar__inner {
    min-height: 74px;
}

/* -------------------------------------------------------
   Brand
------------------------------------------------------- */

.cwh3-brand {
    min-width: 0;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 13px;
    color: var(--cwh3-navy);
}

.cwh3-brand img {
    width: auto;
    height: 76px;
    max-width: 225px;
    display: block;
    object-fit: contain;
    transition: height 0.2s ease;
}

.cwh3-navbar.is-compact .cwh3-brand img {
    height: 64px;
}

.cwh3-brand__copy {
    position: relative;
    min-width: 0;
    padding-right: 13px;
    display: grid;
    gap: 2px;
    direction: ltr;
    text-align: left;
    border-right: 1px solid var(--cwh3-line);
}

.cwh3-brand__copy strong {
    color: var(--cwh3-navy);
    font-size: 13px;
    font-weight: 900;
    line-height: 1.25;
    white-space: nowrap;
}

.cwh3-brand__copy small {
    color: var(--cwh3-muted);
    font-size: 8.5px;
    font-weight: 750;
    letter-spacing: 0.06em;
    white-space: nowrap;
}

/* -------------------------------------------------------
   Desktop navigation
------------------------------------------------------- */

.cwh3-nav {
    min-width: 0;
    flex: 1;
    align-self: stretch;
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 2px;
}

.cwh3-nav__item {
    position: static;
    display: flex;
    align-items: stretch;
}

.cwh3-nav__link {
    position: relative;
    min-height: 88px;
    padding: 0 13px;
    border: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #263444;
    background: transparent;
    font-size: 12.5px;
    font-weight: 800;
    white-space: nowrap;
    transition:
        color 0.18s ease,
        background-color 0.18s ease,
        min-height 0.2s ease;
}

.cwh3-navbar.is-compact .cwh3-nav__link {
    min-height: 74px;
}

.cwh3-nav__link::after {
    content: "";
    position: absolute;
    right: 13px;
    bottom: 0;
    left: 13px;
    height: 3px;
    background: var(--cwh3-blue);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.2s ease;
}

.cwh3-nav__link:hover,
.cwh3-nav__link:focus-visible,
.cwh3-nav__link.is-active,
.cwh3-nav__item.is-open > .cwh3-nav__link {
    color: var(--cwh3-blue);
    background: #f7f9fc;
}

.cwh3-nav__link:hover::after,
.cwh3-nav__link:focus-visible::after,
.cwh3-nav__link.is-active::after,
.cwh3-nav__item.is-open > .cwh3-nav__link::after {
    transform: scaleX(1);
}

.cwh3-nav__products i {
    font-size: 9px;
    transition: transform 0.18s ease;
}

.cwh3-nav__item.is-open .cwh3-nav__products i {
    transform: rotate(180deg);
}

/* -------------------------------------------------------
   Actions
------------------------------------------------------- */

.cwh3-actions {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cwh3-icon-button,
.cwh3-menu-button {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    padding: 0;
    border: 1px solid var(--cwh3-line);
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--cwh3-navy);
    background: #fff;
    transition:
        color 0.18s ease,
        border-color 0.18s ease,
        background-color 0.18s ease;
}

.cwh3-icon-button:hover,
.cwh3-icon-button:focus-visible,
.cwh3-menu-button:hover,
.cwh3-menu-button:focus-visible {
    color: #fff;
    border-color: var(--cwh3-blue);
    background: var(--cwh3-blue);
}

.cwh3-catalog-link,
.cwh3-button {
    min-height: 42px;
    padding: 0 14px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    white-space: nowrap;
    font-size: 11.5px;
    font-weight: 850;
    transition:
        color 0.18s ease,
        border-color 0.18s ease,
        background-color 0.18s ease,
        transform 0.18s ease;
}

.cwh3-catalog-link {
    color: var(--cwh3-blue);
    border: 1px solid rgba(12, 83, 165, 0.24);
    background: #fff;
}

.cwh3-catalog-link:hover,
.cwh3-catalog-link:focus-visible {
    color: #fff;
    border-color: var(--cwh3-blue);
    background: var(--cwh3-blue);
}

.cwh3-button--primary {
    color: #fff;
    border: 1px solid var(--cwh3-blue);
    background: var(--cwh3-blue);
}

.cwh3-button--primary:hover,
.cwh3-button--primary:focus-visible {
    border-color: var(--cwh3-blue-dark);
    background: var(--cwh3-blue-dark);
    transform: translateY(-1px);
}

.cwh3-button--light {
    color: var(--cwh3-navy);
    border: 1px solid #fff;
    background: #fff;
}

.cwh3-button--light:hover,
.cwh3-button--light:focus-visible {
    color: #fff;
    border-color: var(--cwh3-blue);
    background: var(--cwh3-blue);
}

.cwh3-menu-button {
    position: relative;
    display: none;
    flex-direction: column;
    gap: 5px;
}

.cwh3-menu-button span {
    width: 19px;
    height: 2px;
    display: block;
    background: currentColor;
    transition:
        transform 0.2s ease,
        opacity 0.2s ease;
}

.cwh3-menu-button.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.cwh3-menu-button.is-active span:nth-child(2) {
    opacity: 0;
}

.cwh3-menu-button.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* -------------------------------------------------------
   Full-width minimal industrial mega menu
------------------------------------------------------- */

.cwh3-mega {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    width: 100%;
    color: var(--cwh3-ink);
    background: #fff;
    border-top: 1px solid var(--cwh3-line-soft);
    border-bottom: 1px solid var(--cwh3-line);
    box-shadow: 0 26px 54px rgba(2, 32, 65, 0.13);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(7px);
    transition:
        opacity 0.16s ease,
        visibility 0.16s ease,
        transform 0.18s ease;
}

.cwh3-mega::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 3px;
    background: linear-gradient(
        90deg,
        var(--cwh3-blue) 0 26%,
        var(--cwh3-navy) 26% 38%,
        #dce5ee 38% 100%
    );
}

.cwh3-nav__item.is-open .cwh3-mega {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.cwh3-mega__inner {
    min-height: 330px;
    padding-top: 25px;
    padding-bottom: 25px;
    display: grid;
    grid-template-columns:
        minmax(230px, 0.72fr)
        minmax(560px, 1.75fr)
        minmax(250px, 0.75fr);
    align-items: stretch;
    gap: clamp(20px, 2.2vw, 34px);
}

.cwh3-mega__intro {
    position: relative;
    padding: 7px 22px 7px 0;
    border-left: 1px solid var(--cwh3-line);
}

.cwh3-mega__intro::before {
    content: "";
    position: absolute;
    top: 8px;
    right: 0;
    width: 3px;
    height: 48px;
    background: var(--cwh3-blue);
}

.cwh3-eyebrow {
    display: inline-flex;
    align-items: center;
    color: var(--cwh3-blue);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.cwh3-eyebrow--light {
    color: #8cc7ff;
}

.cwh3-mega__intro h2 {
    margin: 8px 0 9px;
    color: var(--cwh3-navy);
    font-size: clamp(19px, 1.45vw, 24px);
    font-weight: 900;
    line-height: 1.55;
}

.cwh3-mega__intro > p {
    margin: 0;
    max-width: 370px;
    color: var(--cwh3-muted);
    font-size: 11.5px;
    line-height: 2;
}

.cwh3-mega__facts {
    margin: 16px 0;
    padding: 13px 0;
    display: grid;
    gap: 8px;
    list-style: none;
    border-top: 1px solid var(--cwh3-line-soft);
    border-bottom: 1px solid var(--cwh3-line-soft);
}

.cwh3-mega__facts li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #334155;
    font-size: 10.5px;
    font-weight: 720;
    line-height: 1.6;
}

.cwh3-mega__facts i {
    color: var(--cwh3-blue);
    font-size: 8px;
}

.cwh3-text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--cwh3-blue);
    font-size: 10.5px;
    font-weight: 900;
}

.cwh3-text-link i {
    transition: transform 0.18s ease;
}

.cwh3-text-link:hover i,
.cwh3-text-link:focus-visible i {
    transform: translateX(-3px);
}

.cwh3-mega__products {
    align-self: stretch;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid var(--cwh3-line);
    border-bottom: 1px solid var(--cwh3-line);
}

.cwh3-product {
    position: relative;
    min-width: 0;
    min-height: 136px;
    padding: 13px 14px;
    display: grid;
    grid-template-columns: 28px 90px minmax(0, 1fr) 18px;
    align-items: center;
    gap: 10px;
    color: var(--cwh3-ink);
    background: #fff;
    border-right: 3px solid transparent;
    border-bottom: 1px solid var(--cwh3-line);
    transition:
        background-color 0.18s ease,
        border-color 0.18s ease;
}

.cwh3-product:nth-child(odd) {
    border-left: 1px solid var(--cwh3-line);
}

.cwh3-product:nth-last-child(-n + 2) {
    border-bottom: 0;
}

.cwh3-product:hover,
.cwh3-product:focus-visible,
.cwh3-product.is-active {
    background: #f6f8fb;
    border-right-color: var(--cwh3-blue);
}

.cwh3-product__no {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--cwh3-blue);
    background: #edf4fb;
    border: 1px solid #dbe7f3;
    border-radius: 50%;
    direction: ltr;
    font-size: 9px;
    font-weight: 900;
    font-variant-numeric: tabular-nums;
}

.cwh3-product__image {
    position: relative;
    width: 90px;
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background:
        linear-gradient(145deg, #fff, #f1f5f9);
    border: 1px solid var(--cwh3-line-soft);
    border-radius: 3px;
}

.cwh3-product__image::before,
.cwh3-product__image::after {
    content: "";
    position: absolute;
    pointer-events: none;
    background: rgba(12, 83, 165, 0.08);
}

.cwh3-product__image::before {
    top: 7px;
    bottom: 7px;
    left: 50%;
    width: 1px;
}

.cwh3-product__image::after {
    top: 50%;
    right: 7px;
    left: 7px;
    height: 1px;
}

.cwh3-product__image img {
    position: relative;
    z-index: 1;
    width: 88%;
    height: 88%;
    display: block;
    object-fit: contain;
    transition: transform 0.18s ease;
}

.cwh3-product:hover .cwh3-product__image img,
.cwh3-product:focus-visible .cwh3-product__image img {
    transform: scale(1.035);
}

.cwh3-product__copy {
    min-width: 0;
    display: grid;
    gap: 3px;
}

.cwh3-product__copy small {
    overflow: hidden;
    color: var(--cwh3-blue);
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.cwh3-product__copy strong {
    color: var(--cwh3-navy);
    font-size: 12.5px;
    font-weight: 900;
    line-height: 1.6;
}

.cwh3-product__copy em {
    overflow: hidden;
    color: var(--cwh3-muted);
    font-size: 9.5px;
    font-style: normal;
    font-weight: 650;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.cwh3-product > i {
    color: #94a3b8;
    font-size: 10px;
    transition:
        color 0.18s ease,
        transform 0.18s ease;
}

.cwh3-product:hover > i,
.cwh3-product:focus-visible > i,
.cwh3-product.is-active > i {
    color: var(--cwh3-blue);
    transform: translateX(-2px);
}

.cwh3-mega__support {
    position: relative;
    min-height: 100%;
    padding: 24px 21px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    color: #fff;
    background:
        linear-gradient(155deg, rgba(12, 83, 165, 0.16), transparent 52%),
        var(--cwh3-navy);
    border-top: 3px solid var(--cwh3-blue);
}

.cwh3-mega__support::before,
.cwh3-mega__support::after {
    content: "";
    position: absolute;
    pointer-events: none;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.cwh3-mega__support::before {
    width: 170px;
    height: 170px;
    top: -88px;
    left: -76px;
    transform: rotate(20deg);
}

.cwh3-mega__support::after {
    inset: 14px;
}

.cwh3-mega__support > * {
    position: relative;
    z-index: 1;
}

.cwh3-mega__support h3 {
    margin: 9px 0 8px;
    color: #fff;
    font-size: 17px;
    font-weight: 900;
    line-height: 1.75;
}

.cwh3-mega__support p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 10.5px;
    line-height: 1.95;
}

.cwh3-mega__support-actions {
    margin-top: 17px;
    display: grid;
    gap: 9px;
}

.cwh3-mega__support .cwh3-button {
    width: 100%;
}

.cwh3-support-phone {
    min-height: 39px;
    padding: 0 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 11px;
    font-weight: 850;
}

.cwh3-support-phone:hover,
.cwh3-support-phone:focus-visible {
    border-color: rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.07);
}

/* -------------------------------------------------------
   Search modal
------------------------------------------------------- */

.cwh3-search {
    position: fixed;
    inset: 0;
    z-index: 16000;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background:
        linear-gradient(105deg, rgba(2, 32, 65, 0.97), rgba(2, 32, 65, 0.88));
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
        opacity 0.2s ease,
        visibility 0.2s ease;
}

.cwh3-search::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.22;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 42px 42px;
}

.cwh3-search.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.cwh3-search__close {
    position: absolute;
    top: 26px;
    left: 26px;
    z-index: 2;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.22);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

.cwh3-search__close:hover,
.cwh3-search__close:focus-visible {
    color: var(--cwh3-navy);
    background: #fff;
}

.cwh3-search__panel {
    position: relative;
    z-index: 1;
    width: min(720px, 100%);
    text-align: center;
}

.cwh3-search__panel h2 {
    margin: 11px 0 8px;
    color: #fff;
    font-size: clamp(25px, 4vw, 42px);
    font-weight: 900;
    line-height: 1.5;
}

.cwh3-search__panel > p {
    margin: 0 auto 22px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    line-height: 1.9;
}

.cwh3-search__field {
    min-height: 62px;
    padding: 7px 8px 7px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border: 1px solid rgba(255, 255, 255, 0.45);
}

.cwh3-search__field input {
    min-width: 0;
    flex: 1;
    height: 46px;
    border: 0;
    outline: 0;
    color: var(--cwh3-ink);
    background: transparent;
    text-align: right;
    font-size: 13px;
}

.cwh3-search__field button {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    padding: 0;
    border: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: var(--cwh3-blue);
}

/* -------------------------------------------------------
   Mobile drawer
------------------------------------------------------- */

.cwh3-backdrop {
    position: fixed;
    inset: 0;
    z-index: 14990;
    background: rgba(2, 18, 36, 0.66);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
        opacity 0.22s ease,
        visibility 0.22s ease;
}

.cwh3-backdrop.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.cwh3-drawer {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 15000;
    width: min(390px, 90vw);
    height: 100dvh;
    display: flex;
    flex-direction: column;
    color: var(--cwh3-ink);
    background: #fff;
    border-left: 1px solid var(--cwh3-line);
    box-shadow: -28px 0 68px rgba(2, 32, 65, 0.23);
    transform: translateX(105%);
    transition: transform 0.24s ease;
}

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

.cwh3-drawer__head {
    min-height: 88px;
    padding: 13px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border-bottom: 1px solid var(--cwh3-line-soft);
}

.cwh3-drawer__brand {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 9px;
}

.cwh3-drawer__brand img {
    width: auto;
    height: 62px;
    max-width: 150px;
    object-fit: contain;
}

.cwh3-drawer__brand span {
    min-width: 0;
    display: grid;
    gap: 2px;
    direction: ltr;
    text-align: left;
}

.cwh3-drawer__brand strong {
    color: var(--cwh3-navy);
    font-size: 11px;
    font-weight: 900;
    white-space: nowrap;
}

.cwh3-drawer__brand small {
    color: var(--cwh3-muted);
    font-size: 7px;
    font-weight: 750;
    letter-spacing: 0.04em;
    white-space: nowrap;
}

.cwh3-drawer__close {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    padding: 0;
    border: 1px solid var(--cwh3-line);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--cwh3-navy);
    background: #fff;
}

.cwh3-drawer__body {
    min-height: 0;
    flex: 1;
    padding: 15px;
    overflow-y: auto;
}

.cwh3-mobile-nav {
    display: grid;
}

.cwh3-mobile-nav > a,
.cwh3-mobile-products > button {
    width: 100%;
    min-height: 48px;
    padding: 0 12px;
    border: 0;
    border-bottom: 1px solid var(--cwh3-line-soft);
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--cwh3-ink);
    background: transparent;
    text-align: right;
    font-size: 12.5px;
    font-weight: 850;
}

.cwh3-mobile-nav > a:hover,
.cwh3-mobile-nav > a:focus-visible,
.cwh3-mobile-products > button:hover,
.cwh3-mobile-products > button:focus-visible {
    color: var(--cwh3-blue);
    background: var(--cwh3-soft);
}

.cwh3-mobile-products > button i {
    font-size: 9px;
    transition: transform 0.18s ease;
}

.cwh3-mobile-products.is-open > button i {
    transform: rotate(180deg);
}

.cwh3-mobile-products__list {
    display: none;
    padding: 8px 0 10px;
    border-bottom: 1px solid var(--cwh3-line-soft);
}

.cwh3-mobile-products.is-open .cwh3-mobile-products__list {
    display: grid;
}

.cwh3-mobile-products__list > a {
    min-height: 68px;
    padding: 7px 9px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--cwh3-ink);
    border-right: 2px solid transparent;
}

.cwh3-mobile-products__list > a:hover,
.cwh3-mobile-products__list > a:focus-visible {
    color: var(--cwh3-blue);
    background: #f7f9fc;
    border-right-color: var(--cwh3-blue);
}

.cwh3-mobile-products__all {
    min-height: 42px !important;
    color: var(--cwh3-blue) !important;
    font-size: 11px;
    font-weight: 900;
}

.cwh3-mobile-products__list img {
    width: 64px;
    height: 50px;
    flex: 0 0 64px;
    object-fit: contain;
    background: #f5f7fa;
    border: 1px solid var(--cwh3-line-soft);
}

.cwh3-mobile-products__list span {
    min-width: 0;
    display: grid;
    gap: 2px;
}

.cwh3-mobile-products__list strong {
    color: var(--cwh3-navy);
    font-size: 11px;
    font-weight: 900;
}

.cwh3-mobile-products__list small {
    overflow: hidden;
    color: var(--cwh3-muted);
    font-size: 8px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.cwh3-drawer__engineering {
    margin-top: 17px;
    padding: 17px;
    background: var(--cwh3-soft);
    border-top: 3px solid var(--cwh3-blue);
}

.cwh3-drawer__engineering h3 {
    margin: 7px 0 6px;
    color: var(--cwh3-navy);
    font-size: 14px;
    font-weight: 900;
}

.cwh3-drawer__engineering p {
    margin: 0;
    color: var(--cwh3-muted);
    font-size: 10.5px;
    line-height: 1.9;
}

.cwh3-drawer__footer {
    padding: 14px 15px 18px;
    display: grid;
    gap: 10px;
    border-top: 1px solid var(--cwh3-line-soft);
    background: #fff;
}

.cwh3-drawer__footer .cwh3-button {
    width: 100%;
}

.cwh3-drawer__contacts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 7px;
}

.cwh3-drawer__contacts a {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--cwh3-blue);
    border: 1px solid var(--cwh3-line);
    background: #fff;
}

.cwh3-drawer__contacts a:hover,
.cwh3-drawer__contacts a:focus-visible {
    color: #fff;
    border-color: var(--cwh3-blue);
    background: var(--cwh3-blue);
}

/* -------------------------------------------------------
   Responsive
------------------------------------------------------- */

@media (hover: hover) and (min-width: 1181px) {
    .cwh3-nav__item--mega:hover .cwh3-mega {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }
}

@media (max-width: 1390px) {
    .cwh3-navbar__inner {
        gap: 18px;
    }

    .cwh3-brand img {
        height: 70px;
        max-width: 205px;
    }

    .cwh3-brand__copy {
        display: none;
    }

    .cwh3-nav__link {
        padding-inline: 10px;
        font-size: 12px;
    }

    .cwh3-catalog-link {
        display: none;
    }

    .cwh3-mega__inner {
        grid-template-columns:
            minmax(210px, 0.62fr)
            minmax(540px, 1.8fr)
            minmax(230px, 0.68fr);
        gap: 20px;
    }

    .cwh3-product {
        grid-template-columns: 26px 78px minmax(0, 1fr) 16px;
        min-height: 126px;
        padding-inline: 11px;
    }

    .cwh3-product__image {
        width: 78px;
        height: 68px;
    }
}

@media (max-width: 1180px) {
    .cwh3-topbar__message {
        max-width: 52vw;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .cwh3-nav {
        display: none;
    }

    .cwh3-actions {
        margin-right: auto;
    }

    .cwh3-catalog-link,
    .cwh3-actions > .cwh3-button {
        display: none;
    }

    .cwh3-menu-button {
        display: inline-flex;
    }

    .cwh3-navbar__inner,
    .cwh3-navbar.is-compact .cwh3-navbar__inner {
        min-height: 76px;
    }

    .cwh3-brand img,
    .cwh3-navbar.is-compact .cwh3-brand img {
        height: 66px;
        max-width: 190px;
    }
}

@media (max-width: 760px) {
    .cwh3-shell {
        padding-inline: 13px;
    }

    .cwh3-topbar {
        min-height: 32px;
        background: var(--cwh3-blue);
    }

    .cwh3-topbar__inner {
        min-height: 32px;
        justify-content: center;
    }

    .cwh3-topbar__message,
    .cwh3-topbar__links a:not(.cwh3-topbar__phone) {
        display: none;
    }

    .cwh3-topbar__links {
        width: 100%;
        margin: 0;
        justify-content: center;
    }

    .cwh3-topbar__phone {
        color: #fff !important;
    }

    .cwh3-navbar__inner,
    .cwh3-navbar.is-compact .cwh3-navbar__inner {
        min-height: 70px;
        gap: 9px;
    }

    .cwh3-brand {
        gap: 7px;
    }

    .cwh3-brand img,
    .cwh3-navbar.is-compact .cwh3-brand img {
        height: 59px;
        max-width: 160px;
    }

    .cwh3-brand__copy {
        padding-right: 8px;
        display: grid;
    }

    .cwh3-brand__copy strong {
        font-size: 9.5px;
    }

    .cwh3-brand__copy small {
        font-size: 6.5px;
    }

    .cwh3-icon-button,
    .cwh3-menu-button {
        width: 40px;
        height: 40px;
        flex-basis: 40px;
    }

    .cwh3-search {
        padding: 18px;
    }

    .cwh3-search__close {
        top: 16px;
        left: 16px;
        width: 42px;
        height: 42px;
    }

    .cwh3-search__panel h2 {
        font-size: 26px;
    }

    .cwh3-search__field {
        min-height: 56px;
    }

    .cwh3-search__field input,
    .cwh3-search__field button {
        height: 42px;
    }

    .cwh3-search__field button {
        width: 42px;
        flex-basis: 42px;
    }
}

@media (max-width: 440px) {
    .cwh3-brand__copy {
        display: none;
    }

    .cwh3-brand img,
    .cwh3-navbar.is-compact .cwh3-brand img {
        height: 57px;
        max-width: 155px;
    }

    .cwh3-actions {
        gap: 6px;
    }

    .cwh3-drawer__brand span {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .cwh3 *,
    .cwh3-search *,
    .cwh3-drawer * {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* CWH3_FULL_WIDTH_LOGO_V4_START */

/*
 * Full-width header system
 *
 * Topbar, navigation and mega-menu content now use
 * the full available viewport width with controlled
 * industrial side spacing.
 */
.cwh3-shell {
    width: 100%;
    max-width: none;
    margin-inline: 0;
    padding-inline: clamp(
        20px,
        2.6vw,
        48px
    );
}

/*
 * Slightly larger brand presentation
 */
.cwh3-navbar__inner {
    min-height: 94px;
}

.cwh3-navbar.is-compact
.cwh3-navbar__inner {
    min-height: 80px;
}

.cwh3-brand img {
    width: auto;
    height: 84px;
    max-width: 250px;
}

.cwh3-navbar.is-compact
.cwh3-brand img {
    height: 70px;
}

/*
 * Preserve balanced navigation spacing
 * after increasing logo dimensions.
 */
.cwh3-navbar__inner {
    gap: clamp(
        18px,
        2vw,
        32px
    );
}

.cwh3-nav {
    min-width: 0;
}

/*
 * Mega menu should span the complete browser width.
 */
.cwh3-mega {
    right: 0;
    left: 0;
    width: 100vw;
    max-width: none;
}

.cwh3-mega__inner {
    width: 100%;
    max-width: none;
    padding-right: clamp(
        20px,
        2.6vw,
        48px
    );
    padding-left: clamp(
        20px,
        2.6vw,
        48px
    );
}

/*
 * Large and medium desktop
 */
@media (
    min-width: 1181px
) and (
    max-width: 1390px
) {
    .cwh3-shell {
        padding-inline: 22px;
    }

    .cwh3-navbar__inner {
        min-height: 90px;
    }

    .cwh3-navbar.is-compact
    .cwh3-navbar__inner {
        min-height: 78px;
    }

    .cwh3-brand img {
        height: 78px;
        max-width: 230px;
    }

    .cwh3-navbar.is-compact
    .cwh3-brand img {
        height: 68px;
    }

    .cwh3-mega__inner {
        padding-inline: 22px;
    }
}

/*
 * Tablet and mobile navigation
 */
@media (max-width: 1180px) {
    .cwh3-shell {
        padding-inline: 18px;
    }

    .cwh3-navbar__inner,
    .cwh3-navbar.is-compact
    .cwh3-navbar__inner {
        min-height: 82px;
    }

    .cwh3-brand img,
    .cwh3-navbar.is-compact
    .cwh3-brand img {
        height: 72px;
        max-width: 210px;
    }
}

/*
 * Mobile
 */
@media (max-width: 760px) {
    .cwh3-shell {
        padding-inline: 13px;
    }

    .cwh3-navbar__inner,
    .cwh3-navbar.is-compact
    .cwh3-navbar__inner {
        min-height: 74px;
    }

    .cwh3-brand img,
    .cwh3-navbar.is-compact
    .cwh3-brand img {
        height: 64px;
        max-width: 175px;
    }
}

/*
 * Small mobile devices
 */
@media (max-width: 440px) {
    .cwh3-shell {
        padding-inline: 11px;
    }

    .cwh3-brand img,
    .cwh3-navbar.is-compact
    .cwh3-brand img {
        height: 60px;
        max-width: 165px;
    }
}

/* CWH3_FULL_WIDTH_LOGO_V4_END */

/* CWH3_HEADER_FONT_LOGO_V5_START */

.cwh3-header {
    --cwh3-nav-font-size: 13.5px;
    --cwh3-nav-font-weight: 700;
    --cwh3-nav-line-height: 1.5;
}

/*
 * Unified desktop navigation typography
 */
.cwh3-nav > a,
.cwh3-nav-item > a,
.cwh3-nav-item > button,
.cwh3-nav__item > a,
.cwh3-nav__item > button,
.cwh3-menu-item > a,
.cwh3-menu-item > button {
    font-family:
        Shabnam,
        Tahoma,
        Arial,
        sans-serif;
    font-size: var(--cwh3-nav-font-size);
    font-weight: var(--cwh3-nav-font-weight);
    line-height: var(--cwh3-nav-line-height);
    letter-spacing: 0;
    white-space: nowrap;
}

/*
 * Direct links inside main navigation
 */
.cwh3-navbar nav > a,
.cwh3-navbar nav > div > a,
.cwh3-navbar nav > div > button {
    font-family:
        Shabnam,
        Tahoma,
        Arial,
        sans-serif;
    font-size: var(--cwh3-nav-font-size);
    font-weight: var(--cwh3-nav-font-weight);
    line-height: var(--cwh3-nav-line-height);
}

/*
 * Keep all main navigation items at the same height
 */
.cwh3-nav > a,
.cwh3-nav-item > a,
.cwh3-nav-item > button,
.cwh3-nav__item > a,
.cwh3-nav__item > button,
.cwh3-menu-item > a,
.cwh3-menu-item > button {
    min-height: 46px;
    padding-inline: 12px;
}

/*
 * Unified menu arrows and icons
 */
.cwh3-nav > a i,
.cwh3-nav-item > a i,
.cwh3-nav-item > button i,
.cwh3-nav__item > a i,
.cwh3-nav__item > button i,
.cwh3-menu-item > a i,
.cwh3-menu-item > button i {
    font-size: 10px;
    line-height: 1;
}

/*
 * Unified header action typography
 */
.cwh3-actions a,
.cwh3-actions button,
.cwh3-navbar__actions a,
.cwh3-navbar__actions button {
    font-family:
        Shabnam,
        Tahoma,
        Arial,
        sans-serif;
    font-size: 12.5px;
    font-weight: 700;
    line-height: 1.4;
}

/*
 * Slightly larger desktop logo
 */
.cwh3-brand {
    flex-shrink: 0;
}

.cwh3-brand img {
    width: auto;
    height: 90px;
    max-width: 278px;
    object-fit: contain;
    display: block;
    transition:
        height 0.22s ease,
        max-width 0.22s ease;
}

/*
 * Compact sticky state
 */
.cwh3-navbar.is-compact
.cwh3-brand img,
.cwh3-navbar.is-fixed.is-compact
.cwh3-brand img {
    height: 76px;
    max-width: 242px;
}

/*
 * Medium desktop
 */
@media (
    min-width: 1181px
) and (
    max-width: 1390px
) {
    .cwh3-header {
        --cwh3-nav-font-size: 13px;
    }

    .cwh3-nav > a,
    .cwh3-nav-item > a,
    .cwh3-nav-item > button,
    .cwh3-nav__item > a,
    .cwh3-nav__item > button,
    .cwh3-menu-item > a,
    .cwh3-menu-item > button {
        padding-inline: 9px;
    }

    .cwh3-brand img {
        height: 84px;
        max-width: 252px;
    }

    .cwh3-navbar.is-compact
    .cwh3-brand img,
    .cwh3-navbar.is-fixed.is-compact
    .cwh3-brand img {
        height: 72px;
        max-width: 225px;
    }
}

/*
 * Tablet
 */
@media (max-width: 1180px) {
    .cwh3-brand img,
    .cwh3-navbar.is-compact
    .cwh3-brand img,
    .cwh3-navbar.is-fixed.is-compact
    .cwh3-brand img {
        height: 76px;
        max-width: 224px;
    }
}

/*
 * Mobile
 */
@media (max-width: 760px) {
    .cwh3-brand img,
    .cwh3-navbar.is-compact
    .cwh3-brand img,
    .cwh3-navbar.is-fixed.is-compact
    .cwh3-brand img {
        height: 66px;
        max-width: 188px;
    }
}

/*
 * Small mobile
 */
@media (max-width: 440px) {
    .cwh3-brand img,
    .cwh3-navbar.is-compact
    .cwh3-brand img,
    .cwh3-navbar.is-fixed.is-compact
    .cwh3-brand img {
        height: 62px;
        max-width: 174px;
    }
}

/* CWH3_HEADER_FONT_LOGO_V5_END */

/* CWH3_BALANCED_LOGO_V6_START */

/*
 * Balanced navbar dimensions
 */
.cwh3-navbar__inner {
    min-height: 86px;
}

.cwh3-navbar.is-compact
.cwh3-navbar__inner,
.cwh3-navbar.is-fixed.is-compact
.cwh3-navbar__inner {
    min-height: 74px;
}

/*
 * Balanced desktop logo
 */
.cwh3-brand {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.cwh3-brand img {
    width: auto;
    height: 78px;
    max-width: 232px;
    object-fit: contain;
    display: block;
    transition:
        height 0.22s ease,
        max-width 0.22s ease;
}

/*
 * Sticky logo
 */
.cwh3-navbar.is-compact
.cwh3-brand img,
.cwh3-navbar.is-fixed.is-compact
.cwh3-brand img {
    height: 66px;
    max-width: 200px;
}

/*
 * Medium desktop
 */
@media (
    min-width: 1181px
) and (
    max-width: 1390px
) {
    .cwh3-navbar__inner {
        min-height: 82px;
    }

    .cwh3-navbar.is-compact
    .cwh3-navbar__inner,
    .cwh3-navbar.is-fixed.is-compact
    .cwh3-navbar__inner {
        min-height: 72px;
    }

    .cwh3-brand img {
        height: 72px;
        max-width: 216px;
    }

    .cwh3-navbar.is-compact
    .cwh3-brand img,
    .cwh3-navbar.is-fixed.is-compact
    .cwh3-brand img {
        height: 64px;
        max-width: 192px;
    }
}

/*
 * Tablet
 */
@media (max-width: 1180px) {
    .cwh3-navbar__inner,
    .cwh3-navbar.is-compact
    .cwh3-navbar__inner,
    .cwh3-navbar.is-fixed.is-compact
    .cwh3-navbar__inner {
        min-height: 76px;
    }

    .cwh3-brand img,
    .cwh3-navbar.is-compact
    .cwh3-brand img,
    .cwh3-navbar.is-fixed.is-compact
    .cwh3-brand img {
        height: 66px;
        max-width: 198px;
    }
}

/*
 * Mobile
 */
@media (max-width: 760px) {
    .cwh3-navbar__inner,
    .cwh3-navbar.is-compact
    .cwh3-navbar__inner,
    .cwh3-navbar.is-fixed.is-compact
    .cwh3-navbar__inner {
        min-height: 70px;
    }

    .cwh3-brand img,
    .cwh3-navbar.is-compact
    .cwh3-brand img,
    .cwh3-navbar.is-fixed.is-compact
    .cwh3-brand img {
        height: 56px;
        max-width: 168px;
    }
}

/*
 * Small mobile
 */
@media (max-width: 440px) {
    .cwh3-navbar__inner,
    .cwh3-navbar.is-compact
    .cwh3-navbar__inner,
    .cwh3-navbar.is-fixed.is-compact
    .cwh3-navbar__inner {
        min-height: 66px;
    }

    .cwh3-brand img,
    .cwh3-navbar.is-compact
    .cwh3-brand img,
    .cwh3-navbar.is-fixed.is-compact
    .cwh3-brand img {
        height: 52px;
        max-width: 156px;
    }
}

/* CWH3_BALANCED_LOGO_V6_END */

/* CWH3_REFINED_LOGO_V7_START */

/* Desktop */
.cwh3-navbar__inner {
    min-height: 82px;
}

.cwh3-brand img {
    width: auto;
    height: 72px;
    max-width: 216px;
    object-fit: contain;
}

/* Sticky desktop */
.cwh3-navbar.is-compact
.cwh3-navbar__inner,
.cwh3-navbar.is-fixed.is-compact
.cwh3-navbar__inner {
    min-height: 70px;
}

.cwh3-navbar.is-compact
.cwh3-brand img,
.cwh3-navbar.is-fixed.is-compact
.cwh3-brand img {
    height: 62px;
    max-width: 188px;
}

/* Medium desktop */
@media (min-width: 1181px) and (max-width: 1390px) {
    .cwh3-navbar__inner {
        min-height: 80px;
    }

    .cwh3-brand img {
        height: 68px;
        max-width: 204px;
    }

    .cwh3-navbar.is-compact
    .cwh3-brand img,
    .cwh3-navbar.is-fixed.is-compact
    .cwh3-brand img {
        height: 60px;
        max-width: 182px;
    }
}

/* Tablet */
@media (max-width: 1180px) {
    .cwh3-navbar__inner,
    .cwh3-navbar.is-compact
    .cwh3-navbar__inner,
    .cwh3-navbar.is-fixed.is-compact
    .cwh3-navbar__inner {
        min-height: 72px;
    }

    .cwh3-brand img,
    .cwh3-navbar.is-compact
    .cwh3-brand img,
    .cwh3-navbar.is-fixed.is-compact
    .cwh3-brand img {
        height: 60px;
        max-width: 180px;
    }
}

/* Mobile */
@media (max-width: 760px) {
    .cwh3-navbar__inner,
    .cwh3-navbar.is-compact
    .cwh3-navbar__inner,
    .cwh3-navbar.is-fixed.is-compact
    .cwh3-navbar__inner {
        min-height: 66px;
    }

    .cwh3-brand img,
    .cwh3-navbar.is-compact
    .cwh3-brand img,
    .cwh3-navbar.is-fixed.is-compact
    .cwh3-brand img {
        height: 50px;
        max-width: 150px;
    }
}

/* Small mobile */
@media (max-width: 440px) {
    .cwh3-navbar__inner,
    .cwh3-navbar.is-compact
    .cwh3-navbar__inner,
    .cwh3-navbar.is-fixed.is-compact
    .cwh3-navbar__inner {
        min-height: 64px;
    }

    .cwh3-brand img,
    .cwh3-navbar.is-compact
    .cwh3-brand img,
    .cwh3-navbar.is-fixed.is-compact
    .cwh3-brand img {
        height: 47px;
        max-width: 142px;
    }
}

/* CWH3_REFINED_LOGO_V7_END */

/* CWH3_COMPACT_LOGO_V8_START */

/*
 * Final compact desktop logo
 */
.cwh3-navbar__inner {
    min-height: 76px;
}

.cwh3-brand img {
    width: auto;
    height: 64px;
    max-width: 192px;
    object-fit: contain;
    display: block;
}

/*
 * Sticky desktop
 */
.cwh3-navbar.is-compact
.cwh3-navbar__inner,
.cwh3-navbar.is-fixed.is-compact
.cwh3-navbar__inner {
    min-height: 66px;
}

.cwh3-navbar.is-compact
.cwh3-brand img,
.cwh3-navbar.is-fixed.is-compact
.cwh3-brand img {
    height: 55px;
    max-width: 166px;
}

/*
 * Medium desktop
 */
@media (
    min-width: 1181px
) and (
    max-width: 1390px
) {
    .cwh3-navbar__inner {
        min-height: 74px;
    }

    .cwh3-brand img {
        height: 61px;
        max-width: 184px;
    }

    .cwh3-navbar.is-compact
    .cwh3-brand img,
    .cwh3-navbar.is-fixed.is-compact
    .cwh3-brand img {
        height: 53px;
        max-width: 160px;
    }
}

/*
 * Tablet
 */
@media (max-width: 1180px) {
    .cwh3-navbar__inner,
    .cwh3-navbar.is-compact
    .cwh3-navbar__inner,
    .cwh3-navbar.is-fixed.is-compact
    .cwh3-navbar__inner {
        min-height: 68px;
    }

    .cwh3-brand img,
    .cwh3-navbar.is-compact
    .cwh3-brand img,
    .cwh3-navbar.is-fixed.is-compact
    .cwh3-brand img {
        height: 54px;
        max-width: 162px;
    }
}

/*
 * Mobile
 */
@media (max-width: 760px) {
    .cwh3-navbar__inner,
    .cwh3-navbar.is-compact
    .cwh3-navbar__inner,
    .cwh3-navbar.is-fixed.is-compact
    .cwh3-navbar__inner {
        min-height: 62px;
    }

    .cwh3-brand img,
    .cwh3-navbar.is-compact
    .cwh3-brand img,
    .cwh3-navbar.is-fixed.is-compact
    .cwh3-brand img {
        height: 45px;
        max-width: 136px;
    }
}

/*
 * Small mobile
 */
@media (max-width: 440px) {
    .cwh3-navbar__inner,
    .cwh3-navbar.is-compact
    .cwh3-navbar__inner,
    .cwh3-navbar.is-fixed.is-compact
    .cwh3-navbar__inner {
        min-height: 60px;
    }

    .cwh3-brand img,
    .cwh3-navbar.is-compact
    .cwh3-brand img,
    .cwh3-navbar.is-fixed.is-compact
    .cwh3-brand img {
        height: 42px;
        max-width: 128px;
    }
}

/* CWH3_COMPACT_LOGO_V8_END */
