/* ==============================
   Header
   Future Power White Theme
================================= */

header.current {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 9999;
}

header {
    width: 100%;
    padding: 10px 0;
    color: #14284b;
    background: #fff;
    position: relative;
    z-index: 9999;
    transition: all .25s ease;
    box-shadow: 0 8px 28px rgba(16, 36, 58, .08);
}

header:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #37b34a 0%, #109bd7 72%, #f6bd16 100%);
    border-radius: 0 0 24px 24px;
    pointer-events: none;
}

header .container {
    position: relative;
    z-index: 2;
}

header .logo {
    width: 255px;
    height: 74px;
    flex-shrink: 0;
}

header .logo a {
    display: block;
    width: 255px;
    height: 74px;
    background: url(../images/logo1.png) no-repeat left center;
    background-size: contain;
    transition: all .25s ease;
}

header nav {
    flex: 1;
    min-width: 0;
    padding-left: 54px;
}

header nav > ul {
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 2px;
}

header nav > ul > li {
    position: relative;
}

header nav > ul > li > a {
    display: block;
    color: #14284b;
    font-size: 15px;
    line-height: 46px;
    padding: 0 16px;
    border-radius: 24px;
    transition: all .25s ease;
    white-space: nowrap;
    font-weight: 600;
}

header nav > ul > li.has-mega > a {
    display: flex;
    align-items: center;
    gap: 7px;
}

header nav > ul > li.has-mega > a::after {
    content: "\f107";
    font-family: FontAwesome;
    font-size: 12px;
    line-height: 1;
    transition: transform .25s ease;
}

header nav > ul > li.has-mega:hover > a::after {
    transform: rotate(180deg);
}

header nav > ul > li:hover > a,
header nav > ul > li.active > a {
    background: linear-gradient(135deg, rgba(55,179,74,.12), rgba(16,155,215,.12));
    color: #168a3a;
}

header .header-search {
    width: 46px;
    height: 46px;
    border: 1px solid rgba(55,179,74,.52);
    border-radius: 50%;
    cursor: pointer;
    text-align: center;
    color: #168a3a;
    flex-shrink: 0;
    transition: all .25s ease;
    background: #fff;
}

header .header-search i {
    font-size: 1.2rem;
    line-height: 44px;
}

header .header-search:hover {
    background: linear-gradient(135deg, #37b34a 0%, #109bd7 82%);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 10px 24px rgba(55, 179, 74, .24);
}

.mobile-menu-btn {
    display: none;
}


/* ==============================
   Header Hover
================================= */

header:hover {
    background: #fff;
    color: #14284b;
    border-radius: 0;
    box-shadow: 0 10px 34px rgba(16, 36, 58, .12);
}

header:hover:after {
    border-radius: 0;
}

header:hover nav > ul > li > a {
    color: #14284b;
}

header:hover nav > ul > li:hover > a,
header:hover nav > ul > li.active > a {
    background: linear-gradient(135deg, rgba(55,179,74,.12), rgba(16,155,215,.12));
    color: #168a3a;
}

header:hover .header-search {
    border-color: rgba(55,179,74,.52);
    color: #168a3a;
}

header:hover .header-search:hover {
    background: linear-gradient(135deg, #37b34a 0%, #109bd7 82%);
    border-color: transparent;
    color: #fff;
}

header:hover .logo a {
    background-image: url(../images/logo1.png);
}


/* ==============================
   Header Language
================================= */

.header-language {
    margin-left: 10px;
    margin-right: 10px;
    flex-shrink: 0;
}

.header-language-btn {
    height: 46px;
    padding: 0 13px;
    border: 1px solid rgba(55,179,74,.52);
    border-radius: 999px;
    background: #fff;
    color: #168a3a;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 14px;
    font-weight: 700;
    transition: all .25s ease;
}

.header-language-btn img {
    width: 24px;
    height: 17px;
    border-radius: 4px;
    object-fit: cover;
    box-shadow: 0 0 0 1px rgba(16,36,58,.10);
}

.header-language-btn i {
    font-size: 14px;
    line-height: 1;
}

.header-language-btn:hover {
    background: linear-gradient(135deg, #37b34a 0%, #109bd7 82%);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 10px 24px rgba(16, 155, 215, .18);

}

header:hover .header-language-btn {
    border-color: rgba(55,179,74,.52);
    color: #168a3a;
}

header:hover .header-language-btn:hover {
    background: linear-gradient(135deg, #37b34a 0%, #109bd7 82%);
    border-color: transparent;
    color: #fff;
}


/* ==============================
   Mega Common
   Full-width Dropdown
================================= */

.has-mega {
    position: relative;
}

header nav > ul > li.has-mega::after {
    content: "";
    position: absolute;
    left: 0;
    top: 46px;
    width: 100%;
    height: 46px;
    background: transparent;
    display: block;
}

.mega-menu {
    position: fixed;
    left: 0;
    top: 94px;
    width: 100vw;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: none;
    transition: opacity .2s ease, visibility .2s ease;
    z-index: 9998;
    background: transparent;
}

.mega-menu::before {
    content: "";
    position: absolute;
    left: 0;
    top: -34px;
    width: 100%;
    height: 34px;
    background: transparent;
}

.has-mega:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.mega-menu a {
    text-decoration: none;
}


/* ==============================
   Product Mega
   Simplified Two-column Product Navigation
================================= */

.product-mega {
    background: #fff;
    border-radius: 0 0 30px 30px;
    box-shadow: 0 24px 60px rgba(16, 36, 58, .16);
    overflow: hidden;
    border-top: 1px solid #e7f2ee;
}

.product-mega-inner,
.product-mega-flat {
    display: grid;
    grid-template-columns: 360px 1fr;
    max-width: 1360px;
    margin: 0 auto;
    background: #fff;
}

.product-flat-left {
    max-height: 560px;
    padding: 30px 34px;
    background: #fff;
    border-right: 1px solid #e7f2ee;
    box-sizing: border-box;
    overflow-y: auto;
}

.product-flat-left::-webkit-scrollbar {
    width: 5px;
}

.product-flat-left::-webkit-scrollbar-track {
    background: #f3f8f5;
}

.product-flat-left::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #37b34a 0%, #109bd7 100%);
    border-radius: 6px;
}

.product-flat-left a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #14284b;
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
    padding: 12px 0;
    border-bottom: 1px solid #edf2f3;
    transition: all .2s ease;
}

.product-flat-left a span {
    color: #109bd7;
    font-weight: 400;
}

.product-flat-left a:hover,
.product-flat-left a.active {
    color: #168a3a;
    border-bottom-color: #37b34a;
}

.product-flat-left a:hover span,
.product-flat-left a.active span {
    color: #168a3a;
}

.product-flat-left .product-flat-overview {
    margin-bottom: 10px;
    padding: 13px 18px;
    border: 0;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(55,179,74,.10), rgba(16,155,215,.10));
    color: #168a3a;
}

.product-flat-left .product-flat-overview span {
    color: #168a3a;
}

.product-flat-right,
.product-mega-right {
    padding: 28px 38px 42px;
    background: #fff;
    min-width: 0;
    overflow: hidden;
}

.product-third-box {
    display: none;
}

.product-third-box.active {
    display: block;
}

.product-overview {
    margin-bottom: 26px;
}

.product-overview a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 0;
    max-width: 100%;
    width: auto;
    min-height: 48px;
    padding: 12px 26px;
    background: linear-gradient(135deg, #37b34a 0%, #109bd7 82%);
    color: #fff;
    border-radius: 28px;
    font-size: 17px;
    line-height: 22px;
    font-weight: 800;
    box-sizing: border-box;
    white-space: normal;
    word-break: break-word;
    overflow-wrap: anywhere;
    box-shadow: 0 12px 28px rgba(55,179,74,.22);
}

.product-overview a span {
    color: #fff;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(168px, 168px));
    gap: 18px;
    max-width: 980px;
    overflow: hidden;
}

.product-card {
    width: 168px;
    height: 280px;
    min-height: 280px;
    background: #fff;
    border: 1px solid rgba(55,179,74,.18);
    border-radius: 18px;
    padding: 18px 18px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #14284b;
    box-shadow: 0 8px 22px rgba(16,36,58,.05);
    transition: all .25s ease;
    box-sizing: border-box;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-4px);
    border-color: rgba(16,155,215,.34);
    box-shadow: 0 15px 30px rgba(16,155,215,.14);
}

.product-card img {
    width: 100%;
    height: 126px;
    object-fit: contain;
    margin-bottom: 14px;
    flex-shrink: 0;
}

.product-card strong {
    display: -webkit-box;
    height: 63px;
    max-height: 63px;
    font-size: 14px;
    line-height: 21px;
    color: #14284b;
    overflow: hidden;
    word-break: break-word;
    overflow-wrap: anywhere;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.product-card p {
    margin: auto 0 0;
    color: #8a96a8;
    font-size: 15px;
    line-height: 20px;
    flex-shrink: 0;
}

.product-card p span {
    margin-left: 8px;
    font-size: 18px;
    color: #37b34a;
}


/* ==============================
   Simple Mega
   Standard Full-width Dropdown
================================= */

.simple-mega {
    background: #fff;
    border-radius: 0 0 30px 30px;
    box-shadow: 0 24px 60px rgba(16,36,58,.16);
    overflow: hidden;
    border-top: 1px solid #e7f2ee;
}

.simple-mega-inner {
    display: grid;
    grid-template-columns: 1fr 430px;
    gap: 60px;
    max-width: 1360px;
    margin: 0 auto;
    padding: 42px 20px 52px;
    background: #fff;
    align-items: flex-start;
}

.simple-mega-left {
    display: grid;
    grid-template-columns: repeat(2, minmax(180px, 1fr));
    column-gap: 55px;
    row-gap: 2px;
    align-content: flex-start;
    align-items: flex-start;
}

.simple-mega-left a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    align-self: flex-start;
    min-height: 54px;
    color: #14284b;
    font-size: 16px;
    line-height: 24px;
    padding: 13px 0;
    border-bottom: 1px solid #edf2f3;
    transition: all .2s ease;
    box-sizing: border-box;
}

.simple-mega-left a span {
    color: #109bd7;
    font-size: 18px;
}

.simple-mega-left a:hover {
    color: #168a3a;
    border-bottom-color: #37b34a;
}

.simple-feature-card {
    display: block;
    position: relative;
    height: 250px;
    border-radius: 20px;
    overflow: hidden;
    background: #10243a;
}

.simple-feature-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .84;
    transition: all .35s ease;
}

.simple-feature-card:hover img {
    transform: scale(1.05);
    opacity: .68;
}

.simple-feature-card div {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 16px;
    background: rgba(255,255,255,.95);
    border-radius: 12px;
    padding: 16px 20px;
    border-left: 4px solid #37b34a;
}

.simple-feature-card strong {
    display: block;
    color: #14284b;
    font-size: 17px;
    line-height: 24px;
}

.simple-feature-card p {
    margin: 4px 0 0;
    color: #5b6472;
    font-size: 14px;
}


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

.search-mask {
    position: fixed;
    inset: 0;
    background: rgba(16,36,58,.58);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all .25s ease;
}

.search-popup {
    position: fixed;
    left: 50%;
    top: 50%;
    width: min(880px, calc(100vw - 32px));
    background: #fff;
    border-radius: 28px;
    padding: 42px 42px 36px;
    transform: translate(-50%, -48%) scale(.96);
    z-index: 10001;
    opacity: 0;
    visibility: hidden;
    transition: all .25s ease;
    box-shadow: 0 30px 80px rgba(16,36,58,.26);
    box-sizing: border-box;
}

.search-popup.active,
.search-mask.active {
    opacity: 1;
    visibility: visible;
}

.search-popup.active {
    transform: translate(-50%, -50%) scale(1);
}

.search-popup-close {
    position: absolute;
    right: 20px;
    top: 18px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    text-align: center;
    cursor: pointer;
    color: #14284b;
    background: #f2f7f5;
    transition: all .25s ease;
}

.search-popup-close:hover {
    background: linear-gradient(135deg, #37b34a 0%, #109bd7 82%);
    color: #fff;
}

.search-popup-close i {
    line-height: 36px;
}

.search-popup-box {
    width: 100%;
}

.search-popup-head {
    margin-bottom: 24px;
}

.search-popup-head span {
    display: inline-block;
    margin-bottom: 8px;
    color: #168a3a;
    font-size: 13px;
    line-height: 1.4;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .6px;
}

.search-popup-head h3 {
    margin: 0 0 8px;
    color: #14284b;
    font-size: 34px;
    line-height: 1.25;
    font-weight: 800;
}

.search-popup-head p {
    margin: 0;
    color: #5b6472;
    font-size: 15px;
    line-height: 1.65;
}

.search-channel-filter {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 20px;
}

.search-channel-option {
    height: 48px;
    min-width: 0;
    padding: 0 12px;
    border: 1px solid #dfe8ee;
    border-radius: 16px;
    background: #fff;
    color: #14284b;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all .25s ease;
    white-space: nowrap;
}

.search-channel-option i {
    color: #37b34a;
    font-size: 15px;
    transition: all .25s ease;
    flex-shrink: 0;
}

.search-channel-option span {
    display: inline-block;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.search-channel-option:hover {
    border-color: #37b34a;
    background: #f5fbf7;
    color: #168a3a;
}

.search-channel-option.active {
    border-color: transparent;
    background: linear-gradient(135deg, #37b34a 0%, #109bd7 82%);
    color: #fff;
    box-shadow: 0 10px 24px rgba(55,179,74,.22);
}

.search-channel-option.active i {
    color: #fff;
}

.search-popup-form {
    display: flex;
    border: 2px solid #37b34a;
    border-radius: 999px;
    overflow: hidden;
    background: #fff;
    transition: all .25s ease;
}

.search-popup-form.error {
    border-color: #e23b3b;
    box-shadow: 0 0 0 4px rgba(226,59,59,.08);
}

.search-popup-form input {
    flex: 1;
    width: 100%;
    height: 58px;
    border: 0;
    outline: none;
    padding: 0 24px;
    font-size: 16px;
    color: #14284b;
    box-sizing: border-box;
}

.search-popup-form input::placeholder {
    color: #9aa3b2;
}

.search-popup-form button {
    width: 76px;
    height: 58px;
    border: 0;
    background: linear-gradient(135deg, #37b34a 0%, #109bd7 82%);
    color: #fff;
    cursor: pointer;
    font-size: 20px;
    flex-shrink: 0;
    transition: all .25s ease;
}

.search-popup-form button:hover {
    background: linear-gradient(135deg, #2aa640 0%, #0a8fc9 82%);
}

.search-popup-message {
    display: none;
    margin-top: 10px;
    color: #e23b3b;
    font-size: 13px;
    line-height: 1.5;
    font-weight: 600;
}

.search-popup-message.show {
    display: block;
}

.search-popup-note {
    margin-top: 18px;
    padding: 14px 16px;
    background: linear-gradient(135deg, rgba(55,179,74,.09), rgba(16,155,215,.08));
    border-radius: 14px;
    color: #5b6472;
    font-size: 13px;
    line-height: 1.65;
}


/* ==============================
   Language Popup
================================= */

.language-mask {
    position: fixed;
    inset: 0;
    background: rgba(16,36,58,.58);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all .25s ease;
}

.language-popup {
    position: fixed;
    left: 50%;
    top: 50%;
    width: min(560px, calc(100vw - 32px));
    background: #fff;
    border-radius: 28px;
    padding: 42px 38px 36px;
    transform: translate(-50%, -48%) scale(.96);
    z-index: 10001;
    opacity: 0;
    visibility: hidden;
    transition: all .25s ease;
    box-shadow: 0 30px 80px rgba(16,36,58,.26);
    box-sizing: border-box;
}

.language-popup.active,
.language-mask.active {
    opacity: 1;
    visibility: visible;
}

.language-popup.active {
    transform: translate(-50%, -50%) scale(1);
}

.language-popup-close {
    position: absolute;
    right: 20px;
    top: 18px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    text-align: center;
    cursor: pointer;
    color: #14284b;
    background: #f2f7f5;
    transition: all .25s ease;
}

.language-popup-close:hover {
    background: linear-gradient(135deg, #37b34a 0%, #109bd7 82%);
    color: #fff;
}

.language-popup-close i {
    line-height: 36px;
}

.language-popup-head {
    margin-bottom: 24px;
}

.language-popup-head span {
    display: inline-block;
    margin-bottom: 8px;
    color: #168a3a;
    font-size: 13px;
    line-height: 1.4;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .6px;
}

.language-popup-head h3 {
    margin: 0 0 8px;
    color: #14284b;
    font-size: 32px;
    line-height: 1.25;
    font-weight: 800;
}

.language-popup-head p {
    margin: 0;
    color: #5b6472;
    font-size: 15px;
    line-height: 1.65;
}

.language-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.language-option {
    min-height: 82px;
    padding: 14px;
    border: 1px solid #dfe8ee;
    border-radius: 18px;
    background: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 13px;
    text-align: left;
    transition: all .25s ease;
}

.language-option img {
    width: 40px;
    height: 28px;
    border-radius: 7px;
    object-fit: cover;
    flex-shrink: 0;
    box-shadow: 0 0 0 1px rgba(0,0,0,.08);
}

.language-option strong {
    display: block;
    color: #14284b;
    font-size: 15px;
    line-height: 1.35;
    font-weight: 800;
}

.language-option span {
    display: block;
    margin-top: 3px;
    color: #5b6472;
    font-size: 13px;
    line-height: 1.4;
}

.language-option:hover,
.language-option.active {
    border-color: #37b34a;
    background: linear-gradient(135deg, rgba(55,179,74,.09), rgba(16,155,215,.08));
    box-shadow: 0 12px 26px rgba(55,179,74,.12);
}

.language-option.active strong {
    color: #168a3a;
}



/* ==============================
   Desktop Wide Compression
================================= */

@media screen and (max-width: 1450px) and (min-width: 1201px) {
    header .logo,
    header .logo a {
        width: 225px;
    }

    header nav {
        padding-left: 24px;
    }

    header nav > ul > li > a {
        padding: 0 12px;
        font-size: 14px;
    }

    .header-language {
        margin-left: 6px;
        margin-right: 8px;
    }

    .header-language-btn {
        padding: 0 10px;
    }
}

/* ==============================
   Desktop Medium <= 1200px
================================= */

@media screen and (max-width: 1200px) and (min-width: 769px) {

    header .logo {
        width: 215px;
        height: 66px;
    }

    header .logo a {
        width: 215px;
        height: 66px;
    }

    header nav {
        padding-left: 12px;
    }

    header nav > ul > li > a {
        padding: 0 8px;
        font-size: 14px;
    }

    .mega-menu {
        top: 86px;
    }

    .product-mega-inner,
    .product-mega-flat {
        grid-template-columns: 300px 1fr;
    }

    .product-mega-right,
    .product-flat-right {
        padding: 26px 28px 42px;
    }

    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(168px, 168px));
        max-width: 100%;
    }

    .product-overview a {
        font-size: 16px;
        line-height: 21px;
        padding: 12px 22px;
    }

    .search-popup {
        width: min(820px, calc(100vw - 32px));
    }

    .search-channel-option {
        padding: 0 10px;
        font-size: 13px;
        gap: 6px;
    }
}


/* ==============================
   Mobile <= 768px
================================= */

@media screen and (max-width: 768px) {

    html,
    body {
        width: 100%;
        overflow-x: hidden;
    }

    header,
    header:hover {
        width: 100%;
        padding: 8px 0;
        background: #fff !important;
        color: #14284b !important;
        border-radius: 0 !important;
        box-shadow: 0 8px 26px rgba(16,36,58,.08) !important;
        z-index: 9999;
    }

    header:after,
    header:hover:after {
        height: 3px;
        border-radius: 0 !important;
    }

    header .container {
        width: 100%;
        padding: 0 14px;
        box-sizing: border-box;
        display: flex !important;
        align-items: center;
        justify-content: space-between;
    }

    header .logo {
        width: 172px;
        height: 46px;
        flex-shrink: 0;
    }

    header .logo a {
        display: block;
        width: 172px;
        height: 46px;
        background: url(../images/logo1.png) no-repeat left center;
        background-size: contain;
        filter: none !important;
    }

    header:hover .logo a {
        background-image: url(../images/logo1.png) !important;
        filter: none !important;
    }

    .header-language {
        margin-left: auto;
        margin-right: 8px;
        flex-shrink: 0;
        order: 2;
    }

    .header-language-btn {
        width: 42px;
        height: 42px;
        padding: 0;
        border: 1px solid rgba(55,179,74,.52) !important;
        border-radius: 50%;
        background: #fff !important;
        justify-content: center;
        color: #168a3a !important;
    }

    .header-language-btn img {
        width: 22px;
        height: 16px;
    }

    .header-language-btn span,
    .header-language-btn i {
        display: none;
    }

    header .header-search,
    header:hover .header-search {
        width: 42px;
        height: 42px;
        margin-left: 0;
        margin-right: 8px;
        border: 1px solid rgba(55,179,74,.52) !important;
        border-radius: 50%;
        color: #168a3a !important;
        background: #fff !important;
        flex-shrink: 0;
        order: 3;
    }

    header .header-search i {
        line-height: 40px;
        font-size: 18px;
    }

    .mobile-menu-btn {
        display: block;
        width: 42px;
        height: 42px;
        border: 1px solid rgba(55,179,74,.52);
        border-radius: 50%;
        color: #168a3a;
        text-align: center;
        cursor: pointer;
        flex-shrink: 0;
        order: 4;
        background: #fff;
    }

    .mobile-menu-btn i {
        line-height: 40px;
        font-size: 20px;
    }

    header nav {
        position: fixed;
        left: 0;
        top: 64px;
        width: 100%;
        max-height: calc(100vh - 64px);
        overflow-y: auto;
        background: #fff;
        padding: 12px 22px 28px;
        box-sizing: border-box;
        display: none;
        z-index: 9998;
        box-shadow: 0 18px 40px rgba(16,36,58,.18);
    }

    header nav.active {
        display: block;
    }

    header nav > ul,
    header nav > ul.flex {
        display: block !important;
        width: 100%;
        margin: 0;
        padding: 0;
    }

    header nav > ul > li {
        display: block !important;
        width: 100%;
        margin: 0;
        padding: 0;
        border-bottom: 1px solid #edf2f3;
    }

    header nav > ul > li > a,
    header:hover nav > ul > li > a {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        height: auto;
        line-height: 48px;
        padding: 0;
        margin: 0;
        border-radius: 0;
        color: #14284b !important;
        background: transparent !important;
        font-size: 16px;
        white-space: normal;
        box-sizing: border-box;
    }

    header nav > ul > li:hover > a,
    header nav > ul > li.active > a,
    header:hover nav > ul > li:hover > a,
    header:hover nav > ul > li.active > a {
        color: #168a3a !important;
        background: transparent !important;
    }

    header nav > ul > li.has-mega:hover > a::after {
        transform: none;
    }

    header nav > ul > li.has-mega.mobile-open > a::after {
        transform: rotate(180deg);
    }

    header nav > ul > li.has-mega::after,
    .mega-menu::before {
        display: none !important;
    }

    .mega-menu {
        position: static !important;
        left: auto;
        top: auto;
        width: 100%;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;
        display: none;
        margin: 0 0 14px;
        padding: 0;
        background: transparent;
        box-shadow: none;
        border-radius: 16px;
    }

    .has-mega.mobile-open .mega-menu {
        display: block;
    }

    .product-mega {
        width: 100%;
        background: #fff;
        border-radius: 16px;
        box-shadow: none;
        overflow: hidden;
        border: 1px solid #e7f2ee;
    }

    .product-mega-inner,
    .product-mega-flat {
        display: block;
        width: 100%;
        max-width: none;
        min-height: auto;
        margin: 0;
        background: #fff;
    }

    .product-mega-left,
    .product-mega-middle,
    .product-mega-right,
    .product-flat-left,
    .product-flat-right {
        width: 100%;
        padding: 16px;
        box-sizing: border-box;
    }

    .product-mega-left,
    .product-flat-left {
        max-height: none;
        background: #fff;
        border-right: 0;
        overflow: visible;
    }

    .product-mega-middle {
        background: #f7fbf8;
        border-right: 0;
        border-top: 1px solid #e2ebe5;
    }

    .product-mega-right,
    .product-flat-right {
        background: #fff;
        border-top: 1px solid #e2ebe5;
    }

    .product-mega-left a,
    .product-second-list a,
    .product-flat-left a {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        color: #14284b !important;
        font-size: 15px;
        line-height: 22px;
        padding: 11px 0;
        background: transparent !important;
        border-radius: 0;
    }

    .product-mega-left a.active,
    .product-second-list a.active,
    .product-flat-left a.active {
        color: #168a3a !important;
    }

    .product-flat-left .product-flat-overview {
        margin-bottom: 8px;
        padding: 12px 14px;
        border-radius: 14px;
        background: linear-gradient(135deg, rgba(55,179,74,.10), rgba(16,155,215,.10)) !important;
    }

    .product-second-list {
        display: none;
        padding: 0;
    }

    .product-second-list.active {
        display: block;
    }

    .product-third-box {
        display: none;
    }

    .product-third-box.active {
        display: block;
    }

    .product-overview {
        margin-bottom: 16px;
    }

    .product-overview a {
        width: 100%;
        min-width: 0;
        min-height: 44px;
        height: auto;
        padding: 11px 18px;
        font-size: 15px;
        line-height: 20px;
        box-sizing: border-box;
    }

    .product-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        max-width: none;
    }

    .product-card {
        width: 100%;
        min-height: 190px;
        height: auto;
        padding: 14px;
        border-radius: 14px;
        box-sizing: border-box;
    }

    .product-card img {
        width: 100%;
        height: 92px;
        object-fit: contain;
        margin-bottom: 10px;
    }

    .product-card strong {
        height: auto;
        max-height: 54px;
        font-size: 14px;
        line-height: 18px;
    }

    .product-card p {
        font-size: 13px;
        margin-top: 8px;
    }

    .simple-mega {
        width: 100%;
        background: #fff;
        border-radius: 16px;
        box-shadow: none;
        overflow: hidden;
        border: 1px solid #e7f2ee;
    }

    .simple-mega-inner {
        display: block;
        max-width: none;
        margin: 0;
        padding: 16px;
        background: #fff;
        box-sizing: border-box;
    }

    .simple-mega-left {
        display: block;
    }

    .simple-mega-left a {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        color: #14284b !important;
        font-size: 15px;
        line-height: 22px;
        padding: 11px 0;
        background: transparent !important;
    }

    .simple-feature-card {
        height: 170px;
        margin-top: 16px;
        border-radius: 14px;
    }

    .simple-feature-card div {
        left: 12px;
        right: 12px;
        bottom: 12px;
        padding: 12px 14px;
    }

    .simple-feature-card strong {
        font-size: 15px;
    }

    .simple-feature-card p {
        font-size: 13px;
    }

    .search-popup {
        width: calc(100vw - 28px);
        padding: 34px 18px 24px;
        border-radius: 20px;
        box-sizing: border-box;
    }

    .search-popup-close {
        right: 14px;
        top: 14px;
        width: 34px;
        height: 34px;
    }

    .search-popup-close i {
        line-height: 34px;
    }

    .search-popup-head {
        margin-bottom: 20px;
        padding-right: 34px;
    }

    .search-popup-head h3 {
        font-size: 26px;
        line-height: 1.25;
    }

    .search-popup-head p {
        font-size: 14px;
    }

    .search-channel-filter {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        margin-bottom: 16px;
    }

    .search-channel-option {
        height: 44px;
        padding: 0 10px;
        border-radius: 14px;
        font-size: 13px;
        gap: 6px;
    }

    .search-popup-form input {
        height: 52px;
        padding: 0 16px;
        font-size: 14px;
    }

    .search-popup-form button {
        width: 58px;
        height: 52px;
        font-size: 18px;
    }

    .search-popup-note {
        margin-top: 14px;
        padding: 12px 14px;
        font-size: 12px;
    }

    .language-popup {
        width: calc(100vw - 28px);
        padding: 34px 18px 24px;
        border-radius: 20px;
    }

    .language-popup-close {
        right: 14px;
        top: 14px;
        width: 34px;
        height: 34px;
    }

    .language-popup-close i {
        line-height: 34px;
    }

    .language-popup-head {
        margin-bottom: 20px;
        padding-right: 34px;
    }

    .language-popup-head h3 {
        font-size: 26px;
        line-height: 1.25;
    }

    .language-popup-head p {
        font-size: 14px;
    }

    .language-list {
        grid-template-columns: 1fr;
        gap: 9px;
    }

    .language-option {
        min-height: 70px;
        border-radius: 16px;
    }

    .language-option img {
        width: 36px;
        height: 25px;
    }
}