/* =========================================================
   Header
   Primary Color: #f7b901
   Secondary Color: #0e5aa4
========================================================= */

.hsy-header {
    position: relative;
    z-index: 999;
    width: 100%;
    background: #ffffff;
    color: #101d33;
}

.hsy-header *,
.hsy-header *::before,
.hsy-header *::after {
    box-sizing: border-box;
}

.hsy-header ul,
.hsy-header li {
    margin: 0;
    padding: 0;
    list-style: none;
}

.hsy-header a {
    text-decoration: none;
}

.hsy-header summary {
    list-style: none;
}

.hsy-header summary::-webkit-details-marker {
    display: none;
}

.hsy-header .container {
    width: 1360px;
    max-width: calc(100% - 30px);
    margin: 0 auto;
}


/* =========================================================
   Header Top Bar
========================================================= */

.hsy-header-top {
    width: 100%;
    min-height: 72px;
    border-top: 2px solid #f7b901;
    border-bottom: 1px solid #e3e8ef;
    background: #ffffff;
}

.hsy-header-top-inner {
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    background: #ffffff;
}

.hsy-header-top-left {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
}

.hsy-header-register,
.hsy-header-signin {
    width: 142px;
    height: 41px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    border-radius: 5px;
    color: #ffffff;
    font-size: 15px;
    line-height: 41px;
    white-space: nowrap;
    transition:
        color 0.25s ease,
        background-color 0.25s ease;
}

.hsy-header-register {
    background: #f7b901;
}

.hsy-header-signin {
    background: #e8ad00;
}

.hsy-header-register:hover,
.hsy-header-signin:hover {
    background: #0e5aa4;
    color: #ffffff;
}

.hsy-header-slogan {
    display: inline-block;
    margin-left: 2px;
    color: #101d33;
    font-size: 12px;
    line-height: 20px;
    font-weight: 600;
    white-space: nowrap;
}

.hsy-header-top-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    background: #ffffff;
}

.hsy-header-top-links a {
    position: relative;
    display: inline-block;
    padding: 0 16px;
    color: #101d33;
    font-size: 14px;
    line-height: 24px;
    white-space: nowrap;
    transition: color 0.25s ease;
}

.hsy-header-top-links a:first-child {
    padding-left: 0;
}

.hsy-header-top-links a:last-child {
    padding-right: 0;
}

.hsy-header-top-links a + a::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 1px;
    height: 15px;
    background: #26364c;
    transform: translateY(-50%);
}

.hsy-header-top-links a:hover {
    color: #0e5aa4;
}


/* =========================================================
   Logo, Search and Cart
========================================================= */

.hsy-header-main {
    position: relative;
    z-index: 1500;
    width: 100%;
    background: #ffffff;
}

.hsy-header-main-inner {
    min-height: 118px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 38px;
    background: #ffffff;
}


/* =========================================================
   Logo
========================================================= */

.hsy-header-logo {
    width: 162px;
    height: 68px;
    display: block;
    flex: 0 0 162px;
    overflow: hidden;
    background: #ffffff;
}

.hsy-header-logo img {
    display: block;
    width: 162px;
    height: 68px;
    max-width: none;
    object-fit: contain;
    background: #ffffff;
}


/* =========================================================
   Search
========================================================= */

.hsy-header-search {
    position: relative;
    z-index: 1600;
    flex: 1;
    min-width: 0;
    background: #ffffff;
}

.hsy-header-search-form {
    position: relative;
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    overflow: hidden;
    border: 2px solid #f7b901;
    border-radius: 14px;
    background: #ffffff;
}

.hsy-header-search-input {
    width: calc(100% - 98px);
    height: 56px;
    flex: 1;
    padding: 0 20px;
    border: none;
    border-radius: 0;
    outline: none;
    background: #ffffff;
    color: #101d33;
    font-size: 16px;
    line-height: 56px;
}

.hsy-header-search-input:focus {
    border: none !important;
    outline: none;
    box-shadow: none;
}

.hsy-header-search-input::placeholder {
    color: #718096;
    opacity: 1;
}

.hsy-header-search-button {
    position: relative;
    width: 98px;
    height: 60px;
    flex: 0 0 98px;
    padding: 0;
    border: none;
    background: #f7b901;
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
    transition: background-color 0.25s ease;
}

.hsy-header-search-button:hover {
    background: #0e5aa4;
}

.hsy-header-search-button i {
    color: #ffffff;
    font-size: 23px;
}

.hsy-header-search-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 19px;
    height: 19px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    transform: translate(-58%, -58%);
}

.hsy-header-search-icon::after {
    content: "";
    position: absolute;
    right: -7px;
    bottom: -5px;
    width: 9px;
    height: 2px;
    border-radius: 2px;
    background: #ffffff;
    transform: rotate(45deg);
    transform-origin: left center;
}


/* =========================================================
   Search Suggestions
========================================================= */

.hsy-header-search .search-window {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    left: 0;
    z-index: 1700;
    display: none;
    width: 100%;
    max-height: 330px;
    overflow-x: hidden;
    overflow-y: auto;
    border: 1px solid #dce7f3;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 16px 38px rgba(14, 90, 164, 0.16);
}

.hsy-header-search .search-rst {
    width: 100%;
    margin: 0;
    padding: 6px 0;
    background: #ffffff;
    list-style: none;
}

.hsy-header-search .search-rst li {
    width: 100%;
    margin: 0;
    padding: 0;
    border-bottom: 1px solid #edf1f5;
    background: #ffffff;
}

.hsy-header-search .search-rst li:last-child {
    border-bottom: none;
}

.hsy-header-search .search-rst li a {
    display: block;
    width: 100%;
    padding: 11px 16px;
    background: #ffffff;
    color: #101d33;
    text-decoration: none;
    transition:
        color 0.2s ease,
        background-color 0.2s ease,
        padding-left 0.2s ease;
}

.hsy-header-search .search-rst li a:hover {
    padding-left: 20px;
    background: #fffaf0;
    color: #0e5aa4;
}

.hsy-header-search .search-rst li a p {
    margin: 0;
    padding: 0;
}

.hsy-header-search .search-rst li a p:first-child {
    overflow: hidden;
    color: #101d33;
    font-size: 15px;
    line-height: 22px;
    font-weight: 600;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.hsy-header-search .search-rst li a:hover p:first-child {
    color: #0e5aa4;
}

.hsy-header-search .search-rst li a p.mfg {
    margin-top: 3px;
    overflow: hidden;
    color: #667085;
    font-size: 13px;
    line-height: 20px;
    font-weight: normal;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.hsy-header-search .search-rst li.search-empty,
.hsy-header-search .search-rst li.search-loading {
    padding: 16px;
    color: #667085;
    font-size: 14px;
    line-height: 22px;
    text-align: center;
}

.hsy-header-search .search-window::-webkit-scrollbar {
    width: 6px;
}

.hsy-header-search .search-window::-webkit-scrollbar-track {
    border-radius: 10px;
    background: #edf5fc;
}

.hsy-header-search .search-window::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: #8fb8dc;
}

.hsy-header-search .search-window::-webkit-scrollbar-thumb:hover {
    background: #0e5aa4;
}


/* =========================================================
   Cart
========================================================= */

.hsy-header-cart {
    width: 192px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 192px;
    gap: 9px;
    padding: 0 16px;
    border: 1px solid #f7b901;
    border-radius: 10px;
    background: #ffffff;
    color: #101d33;
    transition:
        color 0.25s ease,
        background-color 0.25s ease;
}

.hsy-header-cart img {
    display: block;
    width: 32px;
    height: 32px;
    max-width: none;
    flex: 0 0 32px;
    object-fit: contain;
}

.hsy-header-cart-name,
.hsy-header-cart-text {
    color: #101d33;
    font-size: 17px;
    line-height: 24px;
    font-weight: 600;
}

.hsy-header-cart-count,
.hsy-header-cart-number {
    color: #e32626;
    font-size: 16px;
    line-height: 24px;
}

.hsy-header-cart:hover {
    background: #fffbef;
    color: #0e5aa4;
}

.hsy-header-cart:hover .hsy-header-cart-name,
.hsy-header-cart:hover .hsy-header-cart-text {
    color: #0e5aa4;
}


/* =========================================================
   Fixed Header
========================================================= */

.hsy-header-main.current {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    box-shadow: 0 5px 22px rgba(14, 90, 164, 0.15);
    animation: hsyHeaderCurrentDown 0.25s ease;
}

.hsy-header-main.current .hsy-header-main-inner {
    min-height: 88px;
    background: #ffffff;
}

.hsy-header-main.current .hsy-header-search-form {
    height: 54px;
}

.hsy-header-main.current .hsy-header-search-input {
    height: 50px;
    line-height: 50px;
}

.hsy-header-main.current .hsy-header-search-button {
    height: 54px;
}

.hsy-header-main.current .hsy-header-cart {
    height: 54px;
}

.hsy-header-main-placeholder {
    display: block;
    width: 100%;
    height: 0;
    background: #ffffff;
}

.hsy-header-main.current + .hsy-header-main-placeholder {
    height: 88px;
}

@keyframes hsyHeaderCurrentDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}


/* =========================================================
   Navigation
========================================================= */

.hsy-header-nav {
    position: relative;
    z-index: 1300;
    width: 100%;
    border-bottom: 2px solid #f7b901;
    background: #ffffff;
}

.hsy-header-nav-inner {
    min-height: 66px;
    display: flex;
    align-items: stretch;
    background: #ffffff;
}


/* =========================================================
   All Categories
========================================================= */

.header-category {
    position: relative;
    z-index: 1350;
    width: 334px;
    flex: 0 0 334px;
    background: #ffffff;
}

.header-category-title {
    position: relative;
    width: 100%;
    height: 66px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 22px;
    border-radius: 8px 8px 0 0;
    background: #f7b901;
    color: #ffffff;
    font-size: 18px;
    line-height: 24px;
    transition: background-color 0.25s ease;
}

.header-category-title:hover {
    background: #0e5aa4;
    color: #ffffff;
}

.header-category-title-icon {
    width: 25px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.header-category-title-icon i {
    display: block;
    width: 25px;
    height: 3px;
    border-radius: 3px;
    background: #ffffff;
}


/* =========================================================
   Primary Category Panel
========================================================= */

.header-category-panel {
    position: absolute;
    top: 66px;
    left: 0;
    z-index: 1360;
    display: none;
    width: 334px;
    height: auto;
    min-height: 0;
    overflow: visible;
    border: 1px solid #e2e8f0;
    border-top: none;
    border-radius: 0 0 7px 7px;
    background: #ffffff;
    box-shadow: 0 14px 34px rgba(14, 90, 164, 0.12);
}

/* Homepage keeps the original fixed height */

#home .header-category-panel {
    display: block;
    height: 420px;
    border: none;
    box-shadow: none;
}

/* Inner pages use the actual category height */

body:not(#home) .header-category-panel {
    height: auto;
    min-height: 0;
}

/* Show category panel on hover */

.header-category:hover .header-category-panel {
    display: block;
}

.header-category-primary {
    width: 100%;
    height: auto;
    min-height: 0;
    margin: 0;
    padding: 15px 0 10px !important;
    background: #ffffff;
}

/* Homepage category list fills the fixed panel */

#home .header-category-primary {
    height: 100%;
}

.header-category-primary-item {
    position: static;
    width: 100%;
    margin: 0;
    padding: 0;
    background: #ffffff;
}

.header-category-primary-link {
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0;
    padding: 0 20px;
    background: #ffffff;
    color: #101d33;
    font-size: 15px;
    line-height: 40px;
    transition:
        color 0.25s ease,
        background-color 0.25s ease;
}

.header-category-primary-text,
.header-category-primary-link span {
    display: block;
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.header-category-primary-arrow,
.header-category-primary-link > i {
    display: block;
    width: 8px;
    height: 8px;
    flex: 0 0 8px;
    border-top: 1px solid #7a899c;
    border-right: 1px solid #7a899c;
    transform: rotate(45deg);
}

.header-category-primary-link.no-children {
    padding-right: 20px;
}

.header-category-primary-link.no-children .header-category-primary-arrow,
.header-category-primary-link.no-children > i {
    display: none;
}

.header-category-primary-item:hover > .header-category-primary-link {
    background: #0e5aa4;
    color: #ffffff;
}

.header-category-primary-item:hover > .header-category-primary-link .header-category-primary-arrow,
.header-category-primary-item:hover > .header-category-primary-link > i {
    border-color: #ffffff;
}


/* =========================================================
   Category Mega Menu
========================================================= */

.header-category-mega {
    position: absolute;
    top: 0;
    left: 100%;
    z-index: 1370;
    display: none;
    width: 1026px;
    height: auto;
    min-height: 0;
    max-height: 420px;
    overflow-x: hidden;
    overflow-y: auto;
    border-top: 2px solid #f7b901;
    border-right: 1px solid #dfe6ed;
    border-bottom: 1px solid #dfe6ed;
    border-left: 1px solid #dfe6ed;
    background: #ffffff;
    box-shadow: 12px 14px 36px rgba(14, 90, 164, 0.13);
}

/* Homepage keeps the original fixed height */

#home .header-category-mega {
    height: 420px;
    max-height: 420px;
}

/* Inner pages use submenu content height */

body:not(#home) .header-category-mega {
    height: auto;
    min-height: 0;
    max-height: 420px;
}

.header-category-primary-item:hover > .header-category-mega {
    display: block;
}

.header-category-mega-inner {
    width: 100%;
    min-height: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: start;
    align-content: start;
    gap: 26px 34px;
    padding: 24px 26px 30px;
    background: #ffffff;
}

/* Homepage mega menu fills the fixed panel */

#home .header-category-mega-inner {
    min-height: 100%;
}

.header-category-mega-inner.header-category-columns-1 {
    grid-template-columns: minmax(0, 1fr);
}

.header-category-mega-inner.header-category-columns-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.header-category-mega-inner.header-category-columns-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}


/* =========================================================
   Secondary Category Groups
========================================================= */

.header-category-group {
    min-width: 0;
    align-self: start;
    background: #ffffff;
}

.header-category-group-title {
    position: relative;
    display: block;
    width: 100%;
    margin-bottom: 8px;
    padding: 0 0 9px 13px;
    border-bottom: 1px solid #e4eaf0;
    background: #ffffff;
    color: #0e5aa4;
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    transition: color 0.25s ease;
}

.header-category-group-title::before {
    content: "";
    position: absolute;
    top: 9px;
    left: 0;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #f7b901;
}

.header-category-group-title:hover {
    color: #f7b901;
}


/* =========================================================
   Third-Level Categories
========================================================= */

.header-category-group ul {
    width: 100%;
    margin: 0;
    padding: 0;
    background: #ffffff;
}

.header-category-group li {
    width: 100%;
    margin: 0;
    padding: 0;
    background: #ffffff;
}

.header-category-group li a {
    position: relative;
    display: block;
    width: 100%;
    padding: 5px 4px 5px 13px;
    background: #ffffff;
    color: #25364d;
    font-size: 13px;
    line-height: 20px;
    transition:
        color 0.25s ease,
        padding-left 0.25s ease;
}

.header-category-group li a::before {
    content: "";
    position: absolute;
    top: 13px;
    left: 1px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #f7b901;
}

.header-category-group li a:hover {
    padding-left: 17px;
    color: #0e5aa4;
}


/* =========================================================
   Direct Categories
========================================================= */

.header-category-direct {
    grid-column: 1 / -1;
    width: 100%;
    padding-bottom: 16px;
    border-bottom: 1px solid #e4eaf0;
}

.header-category-direct-list {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 30px;
}

.header-category-direct-link {
    position: relative;
    min-height: 26px;
    display: inline-flex;
    align-items: center;
    padding-left: 13px;
    color: #0e5aa4;
    font-size: 15px;
    line-height: 22px;
    font-weight: 600;
    transition: color 0.25s ease;
}

.header-category-direct-link::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #f7b901;
    transform: translateY(-50%);
}

.header-category-direct-link:hover {
    color: #f7b901;
}


/* =========================================================
   More Categories
========================================================= */

.header-category-more {
    width: 100%;
    margin-top: 8px !important;
    padding: 0;
    border-top: 1px solid #edf0f3;
    background: #ffffff;
}

.header-category-more > a {
    display: block;
    width: 100%;
    height: 42px;
    padding: 0 20px;
    background: #ffffff;
    color: #101d33;
    font-size: 14px;
    line-height: 42px;
    font-weight: 600;
    transition:
        color 0.25s ease,
        background-color 0.25s ease;
}

.header-category-more > a:hover {
    background: #fff8dd;
    color: #0e5aa4;
}

body:not(#home) .header-category-more {
    margin-bottom: 0;
}


/* =========================================================
   Category Scrollbar
========================================================= */

.header-category-mega::-webkit-scrollbar {
    width: 6px;
}

.header-category-mega::-webkit-scrollbar-track {
    background: #f1f5f9;
}

.header-category-mega::-webkit-scrollbar-thumb {
    border-radius: 6px;
    background: #0e5aa4;
}

.header-category-mega::-webkit-scrollbar-thumb:hover {
    background: #f7b901;
}


/* =========================================================
   Main Navigation
========================================================= */

.hsy-main-menu {
    height: 66px;
    flex: 1;
    min-width: 0;
    background: #ffffff;
}

.hsy-main-menu-button {
    display: none;
}

.hsy-main-menu-nav {
    width: 100%;
    height: 66px;
    display: block;
    flex: 1;
    min-width: 0;
    background: #ffffff;
}

details.hsy-main-menu:not([open]) > .hsy-main-menu-nav {
    display: block;
}

.hsy-main-menu-nav ul {
    width: 100%;
    height: 66px;
    display: flex;
    align-items: stretch;
    margin: 0;
    padding: 0 0 0 18px;
    background: #ffffff;
}

.hsy-main-menu-nav li {
    height: 66px;
    flex: 0 0 auto;
    margin: 0;
    padding: 0;
    background: #ffffff;
}

.hsy-main-menu-nav li a {
    height: 66px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 22px;
    background: #ffffff;
    color: #101d33;
    font-size: 17px;
    line-height: 24px;
    font-weight: 600;
    white-space: nowrap;
    transition:
        color 0.25s ease,
        background-color 0.25s ease;
}

.hsy-main-menu-nav li a:hover,
.hsy-main-menu-nav li a.active {
    background: #fffaf0;
    color: #f7b901;
}


/* =========================================================
   Current Navigation
========================================================= */

#home .hsy-main-menu-nav .home,
#products .hsy-main-menu-nav .products,
#brand .hsy-main-menu-nav .brand,
#rfq .hsy-main-menu-nav .rfq,
#support .hsy-main-menu-nav .support,
#news .hsy-main-menu-nav .news,
#posts .hsy-main-menu-nav .posts,
#about .hsy-main-menu-nav .about,
#contact .hsy-main-menu-nav .contact {
    background: #fffaf0;
    color: #f7b901;
}


/* =========================================================
   Medium Desktop
========================================================= */

@media (max-width: 1400px) {
    .hsy-header .container {
        width: 1280px;
    }

    .hsy-header-main-inner {
        gap: 28px;
    }

    .hsy-header-slogan {
        max-width: 390px;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .header-category {
        width: 310px;
        flex-basis: 310px;
    }

    .header-category-panel {
        width: 310px;
    }

    .header-category-mega {
        width: 970px;
    }

    .header-category-mega-inner {
        gap: 24px 28px;
        padding: 22px 24px 28px;
    }

    .hsy-main-menu-nav li a {
        padding: 0 17px;
        font-size: 16px;
    }
}


/* =========================================================
   Small Desktop and Landscape Tablet
========================================================= */

@media (min-width: 769px) and (max-width: 1199px) {
    .hsy-header .container {
        width: calc(100% - 30px);
    }

    .hsy-header-top-links a {
        padding: 0 9px;
        font-size: 13px;
    }

    .hsy-header-slogan {
        display: none;
    }

    .hsy-header-main-inner {
        gap: 18px;
    }

    .hsy-header-cart {
        width: 150px;
        flex-basis: 150px;
    }

    .header-category {
        width: 280px;
        flex-basis: 280px;
    }

    .header-category-panel {
        width: 280px;
    }

    .header-category-mega {
        width: calc(100vw - 310px);
    }

    .header-category-mega-inner {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 20px;
        padding: 20px;
    }

    .hsy-main-menu-nav ul {
        padding-left: 8px;
    }

    .hsy-main-menu-nav li a {
        padding: 0 10px;
        font-size: 14px;
    }
}


/* =========================================================
   Mobile Layout
========================================================= */

@media (max-width: 768px) {
    .hsy-header .container {
        width: 94%;
        max-width: none;
    }


    /* Header Top */

    .hsy-header-top {
        min-height: auto;
        background: #ffffff;
    }

    .hsy-header-top-inner {
        min-height: auto;
        display: block;
        padding: 10px 0;
        background: #ffffff;
    }

    .hsy-header-top-left {
        width: 100%;
        justify-content: center;
        background: #ffffff;
    }

    .hsy-header-register,
    .hsy-header-signin {
        width: calc(50% - 5px);
        height: 38px;
        font-size: 14px;
        line-height: 38px;
    }

    .hsy-header-slogan,
    .hsy-header-top-links {
        display: none;
    }


    /* Logo, Search and Cart */

    .hsy-header-main {
        background: #ffffff;
    }

    .hsy-header-main-inner {
        min-height: auto;
        display: grid;
        grid-template-columns: 162px minmax(0, 1fr);
        align-items: center;
        gap: 12px;
        padding: 12px 0;
        background: #ffffff;
    }

    .hsy-header-logo {
        grid-row: 1;
        grid-column: 1;
        width: 162px;
        height: 68px;
        background: #ffffff;
    }

    .hsy-header-logo img {
        width: 162px;
        height: 68px;
        background: #ffffff;
    }

    .hsy-header-cart {
        grid-row: 1;
        grid-column: 2;
        justify-self: end;
        width: 58px;
        min-width: 58px;
        height: 52px;
        flex: none;
        gap: 0;
        padding: 0;
        background: #ffffff;
    }

    .hsy-header-cart img {
        width: 32px;
        height: 32px;
    }

    .hsy-header-cart-name,
    .hsy-header-cart-text,
    .hsy-header-cart-count,
    .hsy-header-cart-number {
        display: none;
    }

    .hsy-header-search {
        grid-row: 2;
        grid-column: 1 / 3;
        width: 100%;
        background: #ffffff;
    }

    .hsy-header-search-form {
        height: 48px;
        border-radius: 7px;
        background: #ffffff;
    }

    .hsy-header-search-input {
        width: calc(100% - 58px);
        height: 44px;
        padding: 0 12px;
        background: #ffffff;
        font-size: 14px;
        line-height: 44px;
    }

    .hsy-header-search-button {
        width: 58px;
        height: 48px;
        flex-basis: 58px;
    }

    .hsy-header-search .search-window {
        top: calc(100% + 5px);
        max-height: 280px;
        border-radius: 8px;
    }

    .hsy-header-search .search-rst {
        padding: 4px 0;
    }

    .hsy-header-search .search-rst li a {
        padding: 10px 12px;
    }

    .hsy-header-search .search-rst li a:hover {
        padding-left: 12px;
    }

    .hsy-header-search .search-rst li a p:first-child {
        font-size: 14px;
        line-height: 21px;
    }

    .hsy-header-search .search-rst li a p.mfg {
        font-size: 12px;
        line-height: 19px;
    }


    /* Fixed Header */

    .hsy-header-main.current .hsy-header-main-inner {
        min-height: auto;
        padding: 8px 0;
        background: #ffffff;
    }

    .hsy-header-main.current .hsy-header-search-form {
        height: 46px;
    }

    .hsy-header-main.current .hsy-header-search-input {
        height: 42px;
        line-height: 42px;
    }

    .hsy-header-main.current .hsy-header-search-button {
        height: 46px;
    }

    .hsy-header-main.current .hsy-header-cart {
        height: 48px;
    }

    .hsy-header-main.current + .hsy-header-main-placeholder {
        height: 142px;
    }


    /* Navigation */

    .hsy-header-nav {
        padding: 10px 0;
        background: #ffffff;
    }

    .hsy-header-nav-inner {
        min-height: auto;
        display: block;
        background: #ffffff;
    }


    /* Mobile All Categories */

    .header-category {
        width: 100%;
        height: 48px;
        background: #ffffff;
    }

    .header-category-title {
        width: 100%;
        height: 48px;
        padding: 0 16px;
        border-radius: 5px;
        background: #f7b901;
        color: #ffffff;
        font-size: 16px;
        line-height: 48px;
    }

    .header-category-title:hover {
        background: #0e5aa4;
        color: #ffffff;
    }

    .header-category-title-icon {
        width: 22px;
    }

    .header-category-title-icon i {
        width: 22px;
        height: 2px;
    }

    #home .header-category-panel,
    .header-category-panel,
    .header-category:hover .header-category-panel,
    .header-category-mega,
    .header-category-primary-item:hover > .header-category-mega {
        display: none !important;
    }


    /* Mobile Main Navigation */

    .hsy-main-menu {
        width: 100%;
        height: auto;
        margin-top: 10px;
        background: #ffffff;
    }

    .hsy-main-menu-button {
        width: 100%;
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 16px;
        border-radius: 5px;
        background: #0e5aa4;
        color: #ffffff;
        font-size: 16px;
        line-height: 24px;
        cursor: pointer;
    }

    .hsy-main-menu-icon {
        width: 22px;
        display: flex;
        flex-direction: column;
        gap: 4px;
    }

    .hsy-main-menu-icon i {
        display: block;
        width: 22px;
        height: 2px;
        background: #ffffff;
    }

    .hsy-main-menu-nav {
        width: 100%;
        height: auto;
        border: 1px solid #e4e9ef;
        border-top: none;
        background: #ffffff;
    }

    details.hsy-main-menu:not([open]) > .hsy-main-menu-nav {
        display: none;
    }

    details.hsy-main-menu[open] > .hsy-main-menu-nav {
        display: block;
    }

    .hsy-main-menu-nav ul {
        width: 100%;
        height: auto;
        display: block;
        margin: 0;
        padding: 0;
        background: #ffffff;
    }

    .hsy-main-menu-nav li {
        width: 100%;
        height: auto;
        border-bottom: 1px solid #edf0f3;
        background: #ffffff;
    }

    .hsy-main-menu-nav li:last-child {
        border-bottom: none;
    }

    .hsy-main-menu-nav li a {
        width: 100%;
        height: 46px;
        justify-content: flex-start;
        padding: 0 16px;
        background: #ffffff;
        font-size: 15px;
    }

    .hsy-main-menu-nav li a:hover,
    .hsy-main-menu-nav li a.active {
        background: #fff8dd;
        color: #0e5aa4;
    }

    .header-category-direct-list {
        gap: 8px 18px;
    }

    .header-category-direct-link {
        font-size: 14px;
    }
}