.notification-bar {
    position: relative;
    width: 100%;
    max-height: 150px;
    padding: 4px 0;
    text-align: center;
    overflow: hidden;
    opacity: 1;
    transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
    z-index: 100;
}

.notification-bar.is-closing {
    max-height: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    opacity: 0 !important;
}

.notification-bar.is-hidden {
    display: none !important;
}

.notification-bar__wrapper {
    max-width: 1392px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 24px;
    padding: 0 50px;
}

.notification-bar__content {
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0;
}

.notification-bar__content a {
    color: inherit;
    text-decoration: underline;
}

.notification-bar__toggle,
.notification-bar__close {
    position: absolute;
    top: 50%;
    right: 18px;
    width: 16px;
    height: 16px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: inherit;
    border: none;
    background: none;
    cursor: pointer;
    transform: translateY(-50%);
}

.notification-bar__close::before,
.notification-bar__close::after {
    content: '';
    position: absolute;
    top: 3px;
    width: 3px;
    height: 10px;
    border-radius: 1px;
    background-color: var(--color-5);
    transition: left 0.3s ease, right 0.3s ease, transform 0.3s ease;
}

.notification-bar__close::before {
    left: 4px;
    transform: translateX(0) rotate(0deg);
}

.notification-bar__close::after {
    right: 4px;
    transform: translateX(0) rotate(0deg);
}

.notification-bar__close:hover::before {
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
}

.notification-bar__close:hover::after {
    right: 50%;
    transform: translateX(50%) rotate(-45deg);
}

.notification-bar__toggle:not(.is-paused) .notification-bar__icon-play,
.notification-bar__toggle.is-paused .notification-bar__icon-pause {
    display: none;
}

.section-header.shopify-section-group-header-group {
    z-index: 3;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 99;
}

.header-wrapper {
    display: block;
    position: relative;
    border: 0;
    background: transparent;
    z-index: 3;
}

.kviter-header-container {
    max-width: 1490px;
    margin: 0 auto;
    padding: 0 20px 0;
}

.kviter-top-row {
    position: relative;
    margin-top: 12px;
    z-index: 100;
}

.kviter-top-menu-list {
    display: flex;
    gap: 24px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.kviter-top-menu-link {
    padding: 2px 4px;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    color: white;
    transition: text-shadow .3s ease;
}

.kviter-top-menu-link:hover {
    text-decoration: none;
    text-shadow: -.2px -.2px 0 currentColor, .2px -.2px 0 currentColor, -.2px .2px 0 currentColor, .2px .2px 0 currentColor, 0 0 8px rgba(255, 255, 255, .1);
}

.kviter-icons {
    display: flex;
    align-items: center;
    gap: 8px;
}

.kviter-icon-link {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-5);
    transition: 0.3s all;
}

.kviter-badge {
    position: absolute;
    top: -1px;
    right: -4px;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 11px;
    text-align: center;
    color: #fff;
    border-radius: 50%;
    background-color: var(--color-6);
}

@media screen and (min-width: 750px) {
    .kviter-header-container {
        padding: 0 24px;
    }

    .kviter-top-row {
        min-height: 80px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        align-content: center;
        border-radius: 36px;
    }

    .kviter-logo-wrapper {
        margin-right: 20px;
        display: flex;
        align-items: center;
    }

    .kviter-logo-link {
        font-size: 0;
    }

    .kviter-logo-img {
        max-width: 120px;
        height: auto;
        margin-bottom: -3px;
    }

    .kviter-logo-text {
        color: white;
        font-size: 24px;
        font-weight: bold;
        text-decoration: none;
    }

    .kviter-icon-link {
        width: 48px;
        height: 48px;
    }
}

@media screen and (min-width: 750px) and (max-width: 989px) {
    .medium-hide {
        display: none !important;
    }

    .kviter-top-row {
        padding: 5px 17px;
        box-shadow: 0px 2px 20px 0px rgba(25, 68, 24, 0.2);
        background: rgba(240, 247, 239, 0.85);
        backdrop-filter: blur(10px);
    }

    .kviter-logo-wrapper {
        flex-grow: 1;
        justify-content: center;
        margin: 0 0 0 13%;
    }
}

@media screen and (min-width: 990px) {
    .large-up-hide {
        display: none !important;
    }

    .notification-bar__close {
        right: -4px;
    }

    .kviter-top-row {
        min-height: 72px;
        margin: 0 auto 11px;
        padding: 16px 52px 16px 55px;
        border-radius: 0 0 36px 36px;
        background-color: var(--color-9);
    }

    .kviter-logo-wrapper {
        margin-right: 34px;
    }

    .kviter-top-menu-left {
        margin-right: 33px;
    }

    .mobile-drawer-trigger {
        display: none;
    }

    .kviter-icons {
        gap: 4px;
        margin-left: auto;
    }

    .kviter-icon-link {
        width: 44px;
        height: 44px;
    }

    .kviter-badge {
        top: -1px;
        right: -2px;
    }
}

@media screen and (max-width: 989px) {
    .kviter-mobile-menu-toggle {
        width: 48px;
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
        border: 0;
        background: transparent;
        cursor: pointer;
    }

    .kviter-mobile-menu-toggle .icon-close {
        width: 26px;
        height: auto;
    }

    .kviter-mobile-menu-toggle.is-active .icon-hamburger,
    .kviter-mobile-menu-toggle:not(.is-active) .icon-close,
    .kviter-search-wrapper,
    .kviter-top-menu-list {
        display: none;
    }

    .kviter-top-row--left {
        display: flex;
        gap: 8px;
    }

    .mobile-drawer-trigger {
        display: block !important;
        color: white;
    }

    .kviter-icon-link svg {
        width: 21px;
        height: auto;
    }

    .kviter-icon-link.customer svg {
        width: 17px;
    }
}

@media screen and (max-width: 749px) {
    .small-hide {
        display: none !important;
    }
    
    .kviter-top-row > .kviter-icons,
    .kviter-logo-wrapper {
        display: none;
    }

    .kviter-top-row--left {
        width: 100%;
        gap: 8px;
        flex-direction: row-reverse;
        justify-content: space-between;
    }

    .kviter-mobile-menu-toggle {
        width: 100%;
        height: 100%;
    }

    .mobile-drawer-trigger {
        width: 48px;
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        border: 1px solid var(--color-2);
        background: rgba(240, 247, 239, 0.8);
        box-shadow: 0px 2px 10px 0px rgba(25, 68, 24, 0.1), 0px 0px 0px 1px rgba(47, 59, 47, 0.06);
        backdrop-filter: blur(4px);
    }

    .mobile-dock {
        position: fixed;
        left: 20px;
        bottom: 12px;
        width: calc(100% - 40px);
        padding: 12px 8px;
        display: flex;
        border-radius: 1000px;
        background: rgba(240, 247, 239, 0.9);
        box-shadow: 0px -4px 20px 0px rgba(0, 0, 0, 0.08), 0px -1px 4px 0px rgba(0, 0, 0, 0.05);
        backdrop-filter: blur(4px);
        transition: transform 0.5s cubic-bezier(.3, 1, .3, 1);
        z-index: 98;
    }

    .mobile-dock.is-hidden {
        transform: translateY(calc(100% + 20px));
    }

    .mobile-dock .dock__item {
        position: relative;
        width: 100%;
        height: 41px;
        display: flex;
        flex-direction: column;
        align-items: center;
        font-size: 13px;
        font-weight: 600;
        text-decoration: none;
        color: #868886;
        transition: color 0.3s;
    }

    .dock__item:hover {
        color: var(--color-6);
    }

    .mobile-dock .dock__item .kviter-badge {
        right: auto;
        left: 50%;
        transform: translateX(10px);
    }

    .dock__item_icon {
        width: 24px;
        height: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .dock__item svg {
        margin: auto;
    }

    .dock__item.home .dock__item_icon svg {
        width: 15px;
        height: 18px;
    }

    .dock__item.shop .dock__item_icon svg {
        width: 100%;
        height: 100%;
    }

    .dock__item.wishlist .dock__item_icon svg {
        width: 19px;
        height: 17px;
    }

    .dock__item.cart svg {
        width: 19px;
        height: 19px;
    }

    .dock__item.customer .dock__item_icon svg {
        width: 15px;
        height: 16px;
    }

    .dock__item_title {
        margin-top: auto;
        line-height: normal;
    }
}

.kviter-main-nav ul {
    display: flex;
    gap: 32px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.kviter-main-nav a {
    min-height: 60px;
    align-content: center;
    padding: 2px 0 0;
    font-weight: 700;
    font-size: 18px;
    text-align: center;
    text-decoration: none;
    text-transform: capitalize;
    color: var(--color-5);
    transition: 0.3s all;
}

.kviter-main-nav a:hover {
    color: var(--color-5);
    text-decoration: none;
}

.header__menu-item:hover span {
    text-decoration: none;
}

.kviter-bottom-row .btn_box {
    padding: 24px 20px 0;
}
.kviter-bottom-row .btn_box .btn {
    max-width: 100%;
    width: 100%;
}

.kviter-bottom-row .btn_box .btn span {
    min-height: 52px;
    font-size: 18px;
}

.mobile-nav-drawer {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: #fdfdf9;
}

.mobile-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.mobile-nav-item {
    border-bottom: 1px solid #e8ebe6;
}

.mobile-nav-link,
.mobile-nav-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    font-size: 18px;
    font-weight: 500;
    color: #333333;
    text-decoration: none;
    cursor: pointer;
    background: transparent;
    border: none;
    width: 100%;
}

.mobile-nav-summary::-webkit-details-marker {
    display: none;
}

.mobile-nav-summary svg {
    transition: transform 0.3s ease;
    color: #333333;
}

.mobile-nav-details[open] .mobile-nav-summary svg {
    transform: rotate(180deg);
}

.mobile-nav-details[open] .mobile-nav-summary {
    border-bottom: none;
}

.mobile-nav-content {
    background-color: #f4f7f2;
    margin: 0 16px 24px 16px;
    border-radius: 16px;
    padding: 24px;
}

.mobile-nav-section {
    margin-bottom: 24px;
}

.mobile-nav-title {
    font-size: 15px;
    font-weight: 700;
    color: #0b6c53;
    margin-bottom: 16px;
}

.mobile-nav-sublist {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mobile-nav-sublist a {
    font-size: 14px;
    color: #333333;
    text-decoration: none;
}

.mobile-item-pill {
    display: inline-block;
    background-color: #6a3e82;
    color: #ffffff !important;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 500;
    margin-bottom: 4px;
}

.mobile-item-accent a {
    color: #e57c1a !important;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 4px;
}

.mobile-nav-promo {
    margin-top: 24px;
}

.mobile-promo-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 20px;
    background: linear-gradient(135deg, #4caf50 0%, #1e7d32 100%);
    border-radius: 12px;
    text-decoration: none;
    overflow: hidden;
    color: #ffffff;
}

.mobile-promo-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    object-fit: cover;
}

.mobile-promo-content {
    position: relative;
    z-index: 2;
    padding-right: 32px;
}

.mobile-promo-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 6px 0;
}

.mobile-promo-content p {
    font-size: 13px;
    margin: 0;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.9);
}

.mobile-promo-arrow {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 28px;
    height: 28px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    color: #0b6c53;
}

.mobile-promo-arrow svg {
    width: 12px;
    height: 12px;
}

.mobile-nav-footer {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mobile-nav-secondary {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.mobile-nav-secondary li {
    border-bottom: 1px solid #e8ebe6;
}

.mobile-nav-secondary a {
    display: block;
    padding: 16px 0;
    font-size: 15px;
    color: #333333;
    text-decoration: none;
}

.mobile-nav-icons {
    display: flex;
    gap: 12px;
}

.mobile-icon-btn {
    position: relative;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #f4f7f2;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333333;
    text-decoration: none;
}

.mobile-icon-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background-color: #e5391a;
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-pill-wrapper ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.header-mega-menu-inner {
    margin-top: 9px;
    padding: 17px 20px 23px;
    border-radius: 16px;
    background-color: var(--color-3);
}

.header-custom-item {
    display: flex;
    gap: 4px;
}

.header-mega-sidebar-title {
    margin: 0 0 19px 0;
}

.header-mega-column-title {
    margin: 1px 0 13px 0;
}

.header-mega-sidebar-title,
.header-mega-column-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-9);
}

.header-custom-link {
    min-height: 49px;
    align-content: center;
    font-weight: 500;
    font-size: 18px;
    line-height: normal;
    text-decoration: none;
    color: var(--color-5);
    transition: color 0.2s ease;
}

.header-custom-sub-menu-toggle {
    align-content: center;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.header-mega-sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.header-mega-sidebar-link,
.header-mega-column-list a {
    display: inline-block;
    font-weight: 600;
    font-size: 16px;
    line-height: normal;
    text-decoration: none;
    color: var(--color-5);
    transition: color 0.2s ease;
}

.header-mega-sidebar-link:not(.is-pill) {
    padding-left: 4px;
}

.header-mega-sidebar-link:hover,
.header-mega-sidebar-link.is-active {
    color: var(--color-9);
}

.header-mega-sidebar-link.is-pill {
    margin-bottom: 0;
    padding: 8px 16px 8px;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff !important;
    border-radius: 30px;
    background: linear-gradient(113.87deg, #9D4280 0%, #4C247E 102.5%);
}

.header-mega-promo {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin: 25px 0 0 0;
}

.header-mega-promo-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 46px 16px 15px;
    text-decoration: none;
    color: #ffffff;
    border-radius: 16px;
    background: linear-gradient(113.87deg, #5BBB6B 0%, #007E0D 102.5%);
    transition: transform 0.3s ease;
    overflow: hidden;
}

.header-mega-promo-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    object-fit: cover;
    transition: transform .4s ease;
}

.header-mega-promo-content {
    position: relative;
    z-index: 2;
}

.header-mega-promo-content h4 {
    margin: 0 0 10px 0;
    font: 500 18px var(--font-body-family);
    color: #fff;
}

.header-mega-promo-content p {
    margin: 0;
    font-size: 16px;
    line-height: 1.4;
    color: rgba(254, 254, 244, 1)
}

.header-mega-promo-arrow {
    position: absolute;
    top: 17px;
    right: 16px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-9);
    background-color: #fff;
    border-radius: 50%;
    z-index: 2;
}

@media screen and (min-width: 750px) {
    .kviter-bottom-row .btn_box {
        padding: 33px 0 0;
    }

    .kviter-bottom-row .btn_box .btn span{
        min-height: 65px;
    }
}

@media screen and (min-width: 750px) and (max-width: 989px) {
    .header-custom-link {
        min-height: 58px;
        font-size: 24px;
    }

    .header-mega-sidebar-title {
        margin-bottom: 17px;
    }

    .header-mega-column-title,
    .header-mega-sidebar-link.is-pill,
    .header-mega-sidebar-link,
    .header-mega-column-list a,
    .header-mega-promo-content p  {
        font-size: 20px;
    }

    .header-mega-sidebar-link.is-pill {
        margin-bottom: 0;
        padding: 8px 15px;
    }

    .header-mega-sidebar-item:not(:nth-last-child(1)) {
        margin-bottom: 16px;
    }

    .header-mega-column-list li:not(:nth-last-child(1)) {
        margin-bottom: 10px;
    }

    .header-mega-promo {
        max-width: 376px;
    }

    .header-mega-promo-card {
        padding: 46px 25px 15px;
    }

    .header-mega-promo-content h4 {
        margin-bottom: 14px;
        font-size: 24px;
    }
}

@media screen and (min-width: 990px) {
    .header-mega-panel {
        display: none;
        gap: 0 40px;
        flex-direction: column;
        justify-content: space-between;
        max-height: none !important;
        overflow: visible !important;
        padding: 0 !important;
    }

    .header-mega-panel.is-active {
        display: flex;
    }

    .mobile-nav-drawer {
        display: none !important;
    }

    .kviter-bottom-row {
        max-width: 1186px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 14px 0 36px;
        border-radius: 36px;
        background-color: rgba(240, 247, 239, 0.85);
        box-shadow: 0px 2px 20px 0px rgba(25, 68, 24, 0.2);
        backdrop-filter: blur(10px)
    }

    .header-pill-wrapper {
        display: flex;
        align-items: center;
        margin-left: auto;
    }

    .header-custom-list {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .header-custom-item {
        position: static;
        align-items: center;
        gap: 6px;
    }

    .header-custom-link {
        min-height: 60px;
        font-weight: 700;
        font-size: 18px;
        transition: color 0.2s ease;
    }

    .header-custom-link:hover {
        color: var(--color-9);
    }

    .header-mega-sidebar-link.is-pill {
        padding: 7px 17px 7px;
        font-size: 14px;
        font-weight: 500;
    }

    .header-custom-item:hover .header-mega-menu {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .header-custom-item:hover .header-custom-link svg {
        transform: rotate(180deg);
    }

    .header-mega-menu {
        position: absolute;
        top: 100%;
        left: 10px;
        width: calc(100% - 20px);
        padding-top: 20px;
        transition: all 0.3s ease;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        z-index: 100;
    }

    .header-mega-menu-inner {
        position: relative;
        min-height: 61vh;
        margin: 0;
        padding: 30px 36px 49px;
        display: flex;
        gap: 30px;
        background-color: #ffffff;
    }

    .header-mega-menu-inner::before {
        content: "";
        position: absolute;
        right: 0;
        bottom: 0;
        width: 147px;
        height: 166px;
        background: url('icon-flower-menu.svg') no-repeat right bottom/contain;
    }

    .header-mega-sidebar {
        flex: 0 0 233px;
        border-right: 1px solid var(--color-2);
        padding-right: 15px;
        display: flex;
        flex-direction: column;
    }

    .header-mega-sidebar-nav {
        gap: 6px;
    }

    .header-mega-sidebar-bottom {
        margin-top: 16px;
    }

    .header-mega-sidebar-link.is-highlighted {
        color: var(--color-7);
    }

    .header-mega-sidebar-link.is-highlighted:hover {
        text-decoration: underline;
    }

    .header-mega-content {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .header-mega-columns {
        display: flex;
        gap: 40px;
        flex: 1;
    }

    .header-mega-column {
        flex: 1;
    }

    .header-mega-column-list {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        gap: 14px;
    }

    .header-mega-column-list a:hover {
        color: var(--color-9);
    }

    .header-mega-column-list.is-split {
        column-count: 2;
        column-gap: 40px;
        display: block;
    }

    .header-mega-column-list.is-split li {
        margin-bottom: 6px;
        break-inside: avoid;
    }

    .header-mega-promo {
        max-width: 286px;
        margin: 0 0 0 auto;
    }

    .header-mega-promo-card:hover .header-mega-promo-bg {
        transform: scale(1.3);
    }

    .header-mega-sidebar-link.is-highlighted {
        display: flex;
        align-items: center;
        gap: 11px;
        margin-top: 6px;
    }
}

@media screen and (min-width: 1170px) {
    .header-custom-list {
        gap: 32px;
    }
}

@media screen and (max-width: 989px) {
    .kviter-main-nav {
        display: none;
    }

    .kviter-bottom-row {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        padding: 170px 48px 48px;
        background: var(--color-1);
        transform: translateY(-10px);
        transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
        overflow-y: auto;
        overflow-x: hidden;
        z-index: 99;
        opacity: 0;
        visibility: hidden;
    }

    .kviter-bottom-row.is-active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .header-mega-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        margin: 0 !important;
        padding: 120px 46px 48px;
        background-color: var(--color-1);
        z-index: 101;
        transform: translateX(100%);
        transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.3s ease, visibility 0.3s ease;
        opacity: 0;
        visibility: hidden;
        overflow-y: auto;
        overflow-x: hidden;
        max-height: none !important;
    }

    .header-mega-menu.is-active {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }

    .mobile-menu-back-btn {
        display: flex;
        align-items: center;
        gap: 10px;
        width: 100%;
        margin: 56px 0 13px;
        padding: 10px 0 14px;
        font-size: 24px;
        font-weight: 500;
        color: var(--color-9);
        background: transparent;
        border: none;
        cursor: pointer;
    }

    .mobile-menu-back-btn svg {
        width: 14px;
        height: auto;
    }

    .header-mega-panel {
        display: flex !important;
        flex-direction: column;
        gap: 15px;
        position: static;
        width: 100%;
        margin: 0;
        padding: 0;
        background-color: transparent;
        transform: none !important;
        max-height: 0;
        opacity: 0;
        visibility: hidden;
        overflow: hidden;
        transition: max-height 0.35s ease, opacity 0.35s ease, padding 0.35s ease, visibility 0.35s;
    }

    .header-mega-panel.is-accordion-open {
        opacity: 1;
        visibility: visible;
    }

    .header-mega-sidebar-item {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .header-mega-sidebar-item .is-panel-toggle svg {
        transition: transform 0.3s ease;
    }

    .header-mega-sidebar-item.is-expanded .is-panel-toggle svg {
        transform: rotate(180deg);
    }

    .header-mega-columns {
        display: flex;
        flex-direction: column;
        gap: 20px;
        padding: 20px 5px 0;
    }

    .header-custom-item .header-custom-sub-menu-toggle svg {
        transform: rotate(-90deg);
    }

    .header-custom-item.is-open .header-custom-sub-menu-toggle svg {
        transform: rotate(180deg);
    }

    .header-custom-item {
        flex-wrap: wrap;
        justify-content: space-between;
        border-bottom: 1px solid var(--color-2);
    }

    .header-custom-item.is-open {
        border-color: transparent;
    }

    .header-custom-item:not(:nth-last-child(1)) {
        margin-bottom: 8px;
    }

    .header-custom-sub-menu-toggle  {
        width: 40px;
    }

    .header-custom-sub-menu-toggle svg {
        width: 15px;
        height: auto;
    }

    .header-mega-column-title {
        display: inline-block;
    }

    .header-mega-sidebar-link.is-highlighted svg {
        display: none;
    }

    .header-mega-sidebar-item:not(:nth-last-child(1)) {
        margin-bottom: 16px;
    }

    .header-mega-column-list li:not(:nth-last-child(1)) {
        margin-bottom: 10px;
    }
}

@media screen and (max-width: 749px) {
    .kviter-bottom-row .kviter-icons {
        margin-top: 24px;
        padding: 0 20px;
        gap: 16px;
    }

    .kviter-bottom-row .kviter-icons .kviter-icon-link {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background: var(--color-3);
    }

    .kviter-bottom-row .kviter-icons .kviter-icon-link.link-customer svg {
        width: 18px;
    }

    .kviter-bottom-row {
        padding: 115px 0 48px;
    }

    .header-custom-item {
        padding: 0 20px;
    }

    .header-mega-menu {
        padding: 120px 0 48px;
    }

    .mobile-menu-back-btn {
        margin: 0 0 12px;
        padding: 10px 20px 14px;
        font-weight: 500;
        font-size: 18px;
    }

    .header-mega-menu-inner {
        padding: 18px 20px 23px;
    }

    .header-mega-column-list li:not(:nth-last-child(1)) {
        margin-bottom: 8px;
    }
}

/* .header-custom-item:nth-child(2) .header-mega-menu {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateX(0) !important;
} */