@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif !important;
}

.container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
}

.epal-breadcrumb-section .container {
    padding-top: 16px;
    padding-bottom: 16px;
}

.epal-breadcrumb__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.epal-breadcrumb__item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
}

.epal-breadcrumb__link,
.epal-breadcrumb__current {
    font-weight: 300;
    font-size: 12px;
    leading-trim: none;
    line-height: 137%;
    letter-spacing: 1%;
    text-decoration: none;
}

.epal-breadcrumb__link {
    color: #BDBDBD;
}

.epal-breadcrumb__link:hover {
    color: #C40F0F;
}

.epal-breadcrumb__current {
    color: #212121;
}

.epal-breadcrumb__separator {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.epal-breadcrumb__separator svg {
    display: block;
}

/* header */

.site-header {
    position: relative;
    padding-top: var(--header-main-height, 96px);
}

.header__main {
    background-color: #C40F0F;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 998;
    transform: translateY(0);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.25s ease;
    will-change: transform;
    backface-visibility: hidden;
}

.header__main.is-scrolled {
    box-shadow: 0 12px 30px rgba(33, 33, 33, 0.14);
}

.header__main.is-hidden {
    transform: translateY(calc(-100% - 6px));
}

.header__main .container {
    padding: 12px 0;
    min-height: 96px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__main__logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #FFFFFF;
    padding: 8px 12px;
    border-radius: 16px;
    width: 97px;
    min-width: 97px;
    height: 73px;
    flex-shrink: 0;
    overflow: hidden;
}

.header__main__logo img {
    width: 73px;
    height: 57px;
    display: block;
    object-fit: contain;
}

.header__main__nav .header-main-menu {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 32px;
}

.header__main__nav .header-main-menu>li {
    position: relative;
    list-style: none;
}

.header__main__nav .header-main-menu>li>a {
    color: #FFFFFF;
    font-weight: 500;
    font-style: Medium;
    font-size: 14px;
    leading-trim: NONE;
    line-height: 145%;
    letter-spacing: 2%;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 0;
}

.header__main__nav .header-main-menu>.menu-item-has-children>a::after {
    content: "";
    width: 8px;
    height: 8px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
    transform-origin: center;
}

.header__main__nav .header-main-menu .sub-menu {
    list-style: none;
    margin: 0;
    padding: 10px;
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    min-width: 220px;
    background: #FFFFFF;
    border: 1px solid #EEEEEE;
    box-shadow: 0 16px 40px rgba(33, 33, 33, 0.08);
    display: none;
    z-index: 25;
}

.header__main__nav .header-main-menu .sub-menu::before {
    content: "";
    position: absolute;
    top: -12px;
    left: 0;
    width: 100%;
    height: 12px;
}

.header__main__nav .header-main-menu .sub-menu li {
    position: relative;
    list-style: none;
}

.header__main__nav .header-main-menu .sub-menu a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 16px;
    color: #212121;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    line-height: 145%;
    letter-spacing: 0.02em;
    text-transform: none;
}

.header__main__nav .header-main-menu .sub-menu a:hover {
    background: #FAFAFA;
    color: #C40F0F;
}

.header__main__nav .header-main-menu .sub-menu .menu-item-has-children>a::after {
    content: "";
    width: 8px;
    height: 8px;
    border-right: 1.5px solid #9E9E9E;
    border-bottom: 1.5px solid #9E9E9E;
    transform: rotate(-45deg);
    flex-shrink: 0;
}

.header__main__nav .header-main-menu .sub-menu .menu-item-has-children:hover>a::after,
.header__main__nav .header-main-menu .sub-menu .menu-item-has-children.is-open>a::after {
    border-color: #C40F0F;
}

.header__main__nav .header-main-menu li:hover>.sub-menu,
.header__main__nav .header-main-menu li.is-open>.sub-menu {
    display: block;
}

.header__main__nav .header-main-menu .sub-menu .sub-menu {
    top: -10px;
    left: calc(100% + 12px);
}

.header__main__nav .header-main-menu .sub-menu .sub-menu::before {
    top: 0;
    left: -12px;
    width: 12px;
    height: 100%;
}

.header__main__search {
    width: 100%;
    max-width: 300px;
    height: 48px;
    position: relative;
    display: flex;
    align-items: center;
    background: #f5f5f5;
    border-radius: 12px;
    overflow: visible;
}

.header__main__search-input {
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    background: #ffffff;
    padding: 0 60px 0 16px;
    color: #000;
    font-weight: 300;
    font-style: normal;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0.01em;
    border-radius: 12px;
}

.header__main__search-input::placeholder {
    color: #9E9E9E;
    font-weight: 300;
    font-style: normal;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0.01em;
}

.header__main__search-btn {
    position: absolute;
    top: 0;
    right: 0;
    width: 48px;
    height: 48px;
    padding: 12px;
    border: none;
    outline: none;
    cursor: pointer;
    background: #efefef;
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header__main__search-btn svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.header__main__search-trigger {
    display: none;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
}

.header__main__cart {
    display: flex;
    flex-wrap: nowrap;
    gap: 12px;
    align-items: center;
}

.header__main__cart__icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    border-radius: 24px;
    background-color: #FFFFFF;
}

.header__main__cart__icon svg {
    width: 20px;
    height: 20px;
}

.header-cart-count {
    position: absolute;
    top: -6px;
    right: -6px;
    min-width: 16px;
    height: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 2px;
    border-radius: 8px;
    background: #FED3D3;
    color: #C40F0F;
    font-weight: 500;
    font-size: 10px;
    line-height: 12px;
    letter-spacing: 0.02em;
    text-align: center;
}

.header__main__cart__des {
    max-width: 36px;
    color: #FFFFFF;
    font-weight: 300;
    font-style: Light;
    font-size: 12px;
    leading-trim: NONE;
    line-height: 137%;
    letter-spacing: 1%;
}

.header__main__menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 0;
}

.header-search-modal,
.header-mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
}

.header-search-modal__backdrop,
.header-mobile-menu__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(27, 27, 27, 0.45);
    backdrop-filter: blur(4px);
}

.header-search-modal__dialog {
    position: relative;
    width: calc(100% - 32px);
    max-width: 720px;
    margin: 80px auto 0;
    background: #FFFFFF;
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 20px 60px rgba(27, 27, 27, 0.18);
}

.header-search-modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 20px;
}

.header-search-modal__title {
    color: #212121;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.3;
}

.header-search-modal__close,
.header-mobile-menu__close {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: #F5F5F5;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
}

.header-search-modal__form {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}

.header-search-modal__input {
    width: 100%;
    min-height: 56px;
    border: 1px solid #E0E0E0;
    border-radius: 16px;
    padding: 0 18px;
    color: #212121;
    font-size: 16px;
    line-height: 1.5;
    outline: none;
}

.header-search-modal__input:focus {
    border-color: #C40F0F;
}

.header-search-modal__submit {
    min-height: 56px;
    border: none;
    border-radius: 16px;
    background: #C40F0F;
    color: #FFFFFF;
    padding: 0 24px;
    font-weight: 600;
    font-size: 15px;
    line-height: 1;
    cursor: pointer;
    white-space: nowrap;
}

.header-product-search-suggest {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    z-index: 30;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 8px;
    border: 1px solid #EEEEEE;
    border-radius: 16px;
    background: #FFFFFF;
    box-shadow: 0 20px 40px rgba(33, 33, 33, 0.12);
}

.header-product-search-suggest[hidden] {
    display: none;
}

.header-product-search-suggest--modal {
    top: calc(100% + 12px);
    max-height: 40vh;
    overflow-y: auto;
    overflow-x: hidden;
}

.header-product-search-suggest__item,
.header-product-search-suggest__footer {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    padding: 8px;
    border-radius: 12px;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.header-product-search-suggest__footer {
    grid-template-columns: minmax(0, 1fr);
    justify-items: center;
    background: #FFF7F7;
    color: #C40F0F;
    font-weight: 500;
    font-size: 13px;
    line-height: 145%;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.header-product-search-suggest__item:hover,
.header-product-search-suggest__footer:hover {
    background: #FAFAFA;
}

.header-product-search-suggest__thumb {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: #FAFAFA;
    border: 1px solid #EEEEEE;
    overflow: hidden;
}

.header-product-search-suggest__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.header-product-search-suggest__content {
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.header-product-search-suggest__title {
    color: #212121;
    font-weight: 500;
    font-size: 14px;
    line-height: 145%;
    letter-spacing: 0.01em;
}

.header-product-search-suggest__empty {
    color: #757575;
    font-weight: 300;
    font-size: 12px;
    line-height: 137%;
    letter-spacing: 0.01em;
}

.header-product-search-suggest__empty {
    padding: 8px;
}

.header-mobile-menu__panel {
    position: relative;
    margin-left: auto;
    width: min(360px, 100%);
    height: 100%;
    background: #FFFFFF;
    box-shadow: -20px 0 50px rgba(27, 27, 27, 0.16);
    display: flex;
    flex-direction: column;
}

.header-mobile-menu__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px;
    border-bottom: 1px solid #EEEEEE;
}

.header-mobile-menu__logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 8px 12px;
    border-radius: 14px;
    background: #FFFFFF;
    text-decoration: none;
    overflow: hidden;
}

.header-mobile-menu__logo img {
    width: 73px;
    height: 57px;
    display: block;
    object-fit: contain;
}

.header-mobile-menu__body {
    flex: 1;
    overflow-y: auto;
    padding: 16px 0 32px;
}

.header-mobile-menu__list,
.header-mobile-menu__list .sub-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.header-mobile-menu__list>li {
    border-bottom: 1px solid #F2F2F2;
}

.header-mobile-menu__list a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    padding: 14px 20px;
    color: #212121;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    line-height: 1.5;
}

.header-mobile-menu__list .menu-item-has-children {
    position: relative;
}

.header-mobile-menu__list .menu-item-has-children>a {
    padding-right: 60px;
}

.header-mobile-menu__submenu-toggle {
    position: absolute;
    top: 0;
    right: 0;
    width: 56px;
    height: 100%;
    min-height: 53px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.header-mobile-menu__submenu-toggle::before {
    content: "";
    width: 8px;
    height: 8px;
    border-right: 1.5px solid #9E9E9E;
    border-bottom: 1.5px solid #9E9E9E;
    transform: rotate(45deg);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.header-mobile-menu__submenu-toggle:focus-visible {
    outline: none;
}

.header-mobile-menu__list .menu-item-has-children.is-open>.header-mobile-menu__submenu-toggle::before {
    transform: rotate(225deg);
    border-color: #C40F0F;
}

.header-mobile-menu__list .sub-menu {
    display: none;
    background: #FAFAFA;
}

.header-mobile-menu__list .menu-item-has-children.is-open>.sub-menu {
    display: block;
}

.header-mobile-menu__list .sub-menu a {
    padding-left: 36px;
    font-weight: 500;
}

.header-mobile-menu__list .sub-menu .sub-menu a {
    padding-left: 52px;
}

/* subheader */
.header__sub {
    position: relative;
    z-index: 60;
    border: 1px solid #EEEEEE;
    background-color: #FFFFFF;
}

.header__sub p {
    margin-bottom: 0;
}

.header__sub .container {
    padding: 12px 0 12px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.menu__cateproduct {
    width: 100%;
    max-width: 306px;
    flex: 0 0 306px;
    margin-bottom: -16px;
}

.menu-cateproduct {
    position: relative;
    z-index: 61;
}

.menu-cateproduct__toggle {
    width: 100%;
    min-height: 40px;
    border: none;
    outline: none;
    cursor: pointer;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    background: #C40F0F;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.menu-cateproduct--pinned .menu-cateproduct__toggle {
    cursor: default;
}

.menu-cateproduct__toggle-icon,
.menu-cateproduct__toggle-caret {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.menu-cateproduct__toggle-label {
    flex: 1;
    color: #FFFFFF;
    text-align: left;
    font-weight: 600;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.menu-cateproduct__toggle-caret {
    transition: transform 0.2s ease;
}

.menu-cateproduct.is-open .menu-cateproduct__toggle-caret {
    transform: rotate(180deg);
}

.menu-cateproduct__dropdown {
    position: absolute;
    top: calc(100% + 0px);
    left: 0;
    width: 100%;
    z-index: 80;
    background: #FFFFFF;
    border: 1px solid #EEEEEE;
    height: max-content;
    min-height: 0;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

.menu-cateproduct--pinned .menu-cateproduct__dropdown {
    height: var(--home-hero-carousel-height, 506px);
    min-height: var(--home-hero-carousel-height, 506px);
}

.menu-cateproduct__list {
    list-style: none;
    margin: 0;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.menu-cateproduct__item {
    position: relative;
}

.menu-cateproduct__dropdown>.menu-cateproduct__list>.menu-cateproduct__item {
    position: static;
}

.menu-cateproduct__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: #212121;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease;
    font-weight: 500;
    font-style: Medium;
    font-size: 16px;
    leading-trim: NONE;
    line-height: 150%;
    letter-spacing: 1%;
}

.menu-cateproduct__link:hover,
.menu-cateproduct__text:hover {
    color: #C40F0F;
}

.menu-cateproduct__text {
    flex: 1;
    color: #212121;
    font-weight: 600;
    font-size: 16px;
    leading-trim: NONE;
    line-height: 150%;
    letter-spacing: 1%;
}

.menu-cateproduct__submenu-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #9E9E9E;
    flex-shrink: 0;
}

.menu-cateproduct__item--has-children:hover>.menu-cateproduct__link .menu-cateproduct__submenu-icon {
    color: #C40F0F;
}

.menu-cateproduct__item--has-children::after {
    content: "";
    position: absolute;
    top: 0;
    right: -18px;
    width: 24px;
    height: 100%;
}

.menu-cateproduct__sublist {
    position: absolute;
    top: -17px;
    left: calc(100% + 16px);
    min-width: 260px;
    background: #FFFFFF;
    border: 1px solid #EEEEEE;
    padding: 12px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(8px);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
}

.menu-cateproduct__dropdown>.menu-cateproduct__list>.menu-cateproduct__item>.menu-cateproduct__sublist {
    top: -1px;
    left: calc(100% - 1px);
}

.menu-cateproduct__mega {
    width: min(920px, calc(100vw - 360px));
    max-height: var(--home-hero-carousel-height, 506px);
    overflow-y: auto;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 16px 40px rgba(33, 33, 33, 0.08);
    z-index: 81;
}

.menu-cateproduct__mega-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px 28px;
    align-items: start;
}

.menu-cateproduct__mega-section {
    width: 100%;
    margin: 0;
}

.menu-cateproduct__mega-section--standalone {
    margin-bottom: 16px;
}

.menu-cateproduct__mega-title {
    display: block;
    padding-bottom: 8px;
    margin-bottom: 12px;
    border-bottom: 1px solid #EEEEEE;
    color: #212121;
    font-weight: 700;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0.01em;
    text-decoration: none;
}

.menu-cateproduct__mega-title:hover {
    color: #C40F0F;
}

.menu-cateproduct__mega-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.menu-cateproduct__mega-link-item {
    margin: 0;
}

.menu-cateproduct__mega-link {
    display: block;
    color: #212121;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0.01em;
    text-decoration: none;
}

.menu-cateproduct__mega-link:hover {
    color: #C40F0F;
}

.menu-cateproduct__mega-link--standalone {
    font-weight: 700;
}

.menu-cateproduct__item--has-children:hover>.menu-cateproduct__sublist,
.menu-cateproduct__item--has-children.is-open>.menu-cateproduct__sublist {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
}

.menu-cateproduct--empty .menu-cateproduct__toggle {
    opacity: 0.7;
    cursor: default;
}

.menu__feature {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}


.menu__feature {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    align-items: center;
    color: #212121;
    font-weight: 500;
    font-style: Medium;
    font-size: 14px;
    leading-trim: NONE;
    line-height: 145%;
    letter-spacing: 2%;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
}

.menu__feature:hover {
    color: #C40F0F;
}

.menu__feature img {
    width: 24px;
    height: 24px;
}

.consulting {
    display: flex;
    align-items: center;
    gap: 12px;
}

.consulting img {
    width: 24px;
    height: 24px;

}

.consulting p {
    color: #212121;
    font-weight: 500;
    font-style: Medium;
    font-size: 14px;
    leading-trim: NONE;
    line-height: 145%;
    letter-spacing: 2%;
    text-transform: uppercase;
}

.consulting span {
    color: #C40F0F;
    font-weight: 600;
    font-style: Semi Bold;
    font-size: 24px;
    leading-trim: NONE;
    line-height: 135%;
    letter-spacing: 1%;
}

/* end  header */

body.header-ui-locked {
    overflow: hidden;
}

/* responsive */

@media screen and (max-width: 1441px) {
    .container {
        max-width: 1290px;
    }
}

@media screen and (max-width: 1291px) {
    .container {
        max-width: 1191px;
    }

    .header__sub .container {
        flex-wrap: wrap;
    }

    .header__main__nav .header-main-menu {
        gap: 24px;
    }

    .consulting span {
        font-size: 16px;
    }

    .menu__feature {
        gap: 8px;
    }

    .menu__cateproduct {
        margin-bottom: -12px;
    }

    .menu-cateproduct__dropdown {
        min-height: max-content;
    }

    .header__main__search {
        display: none;
    }

    .header__main__search-trigger {
        display: inline-flex;
    }

    .consulting p,
    .menu__feature {
        font-size: 12px;
    }

    .consulting img,
    .menu__feature img {
        width: 16px;
        height: 16px;
    }

    .menu__cateproduct {
        max-width: 270px;
    }

    .menu-cateproduct__toggle-label {
        font-size: 14px;
    }
}

@media screen and (max-width: 1191px) {
    .container {
        max-width: 998px;
    }

    .site-header {
        padding-top: var(--header-main-height, 80px);
    }

    .header__main .container {
        min-height: 80px;
    }

    .header__sub {
        display: none;
    }

    .epal-breadcrumb-section .container {
        padding-top: 16px;
        padding-bottom: 16px;
    }
}

@media screen and (max-width: 998px) {
    .container {
        max-width: 768px;
    }

    .header__main .container {
        gap: 12px;
    }

    .header__main__nav {
        display: none;
    }

    .header__main__cart__des {
        display: none;
    }

    .header__main__menu-toggle {
        display: inline-flex;
    }



    .header-search-modal__dialog {
        margin-top: 48px;
        padding: 20px;
        border-radius: 20px;
    }

    .header-search-modal__form {
        flex-direction: column;
        align-items: stretch;
    }

    .header-search-modal__submit {
        width: 100%;
    }

    .header-product-search-suggest,
    .header-product-search-suggest--modal {
        top: calc(100% + 8px);
    }

    .menu__cateproduct {
        max-width: 100%;
        flex-basis: 100%;
    }

    .menu-cateproduct__dropdown {
        position: static;
    }

    .menu-cateproduct__sublist {
        position: static;
        display: none;
        min-width: 100%;
        margin-left: 12px;
        margin-top: 4px;
        box-shadow: none;
        border: none;
        border-left: 1px solid #EEEEEE;
        border-radius: 0;
        padding: 0 0 0 8px;
    }

    .menu-cateproduct__mega {
        width: 100%;
        max-height: none;
        overflow: visible;
        box-shadow: none;
        padding: 0 0 0 8px;
    }

    .menu-cateproduct__mega-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .menu-cateproduct__mega-section {
        margin: 0;
    }

    .menu-cateproduct__mega-title {
        padding-bottom: 6px;
        margin-bottom: 8px;
        font-size: 15px;
    }

    .menu-cateproduct__mega-link {
        font-size: 14px;
    }
}

@media screen and (max-width: 768px) {
    .container {
        max-width: 640px;
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .site-header {
        padding-top: var(--header-main-height, 80px);
    }

    .header__main .container {
        min-height: 80px;
    }

    .header-mobile-menu__panel {
        width: 100%;
    }

    .header__main__logo img {
        width: 48px;
        height: 38px;
    }

    .header__main__logo {
        width: 72px;
        min-width: 72px;
        height: 54px;
    }

    .epal-breadcrumb-section .container {
        padding-top: 16px;
        padding-bottom: 16px;
    }
}
