.gc-menu {
    z-index: 10;
    visibility: hidden;
    opacity: 0;
    height: auto;
    transition: all 0;
    background: #fff;
    padding: 150px 0 20px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    overflow: hidden;
    transform: translateY(-25px);
}

.menu-open .gc-menu {
    visibility: visible;
    opacity: 1;
    transition: transform 0.3s, opacity, visibility;
    transform: translate(0, 0);
}

.gc-menu .container {
    position: relative;
}

.gc-menu__nav1 {
    display: flex;
}

.gc-menu__selection {
    flex: 0 0 55%;
}

.gc-menu__selection.gc-menu__navTheme {
    flex: 0 0 45%;
    justify-content: flex-end;
}

.gc-menu__selection {
    display: flex;
}

.gc-menu__selection .left-section {
    flex: 0 0 50%;
}

.gc-menu__selection.gc-menu__navTheme .left-section {
    flex: 0 0 67%;
}

.gc-menu__selection .right-section {
    flex: 0 0 50%;
    padding: 5px 20px;
}

.gc-menu__heading {
    font-size: 1.25rem;
    font-weight: 700;
    /* padding: 5px 20px; */
}

.gc-menu__selection ul {
    list-style: none;
    padding: 0;
}

.gc-menu__imageWrapper {
    background-color: #e7f8fb;
    height: 510px;
    border-radius: 20px;
    position: relative;
}

.gc-menu__image {
    position: absolute;
    bottom: 0;
    max-width: 100%;
    object-fit: contain;
    left: 50%;
    transform: translateX(-50%);
}

.gc-menu__image--theme {
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    width:100%;
}

.gc-menu__imageText {
    padding: 25px;
}

.gc-menu__navTheme .gc-menu__imageText {
    position: absolute;
    /* bottom: 0; */
    padding: 30px;
}

.gc-menu__imageText .subtitle {
    margin-bottom: 0;
}

.gc-menu__imageText button {
    background-color: #000;
    border: none;
    outline: none;
    color: #fff;
    border-radius: 20px;
    padding: 5px 25px;
    font-weight: 500;
}

.gc-menu__navLink,
.gc-menu__nav2Link {
    position: relative;
    text-decoration: none;
    overflow: hidden;
    font-size: 18px;
    line-height: 30px;
}

.gc-menu__navLink::before,
.gc-menu__nav2Link::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 2px;
    margin-top: 1px;
    background-color: #000;
    transition: width 0.3s ease;
}

.gc-menu__navLink.active::before {
    width: 100%;
}

.gc-menu__nav2list {
    z-index: 9;
    flex-flow: column wrap;
    align-content: flex-start;
    height: 100%;
    list-style-type: none;
    display: none;
    position: absolute;
    top: 0;
    bottom: 0;
    left: calc(28% - 4px);
    right: 0;
    overflow-y: visible;
    gap: 5px;
    padding-left: 60px;
    column-gap: 5em;
}

.gc-menu__nav2list.active {
    position: absolute;
    top: 0;
    background-color: #fff;
    display: flex;
    border-left: 1px solid #000;
}

.gc-menu__nav2list a {
    font-size: 18px;
    text-decoration: none;
}

.close-menu {
    position: absolute;
    right: 5%;
    cursor: pointer;
}

.menu-close-icon {
    display: none;
}

.gc-menu__navProduct .gc-menu__heading.sm {
    display: none;
}

.gc-menu__nav2--back {
    background: transparent;
    outline: none;
    border: none;
    margin: 10px 0 1em;
    font-weight: 600;
    font-size: 18px;
}

.menu-icon {
    cursor: pointer;
}

body.menu-open .menu-icon .menu-close-icon {
    display: block;
}

body.menu-open .menu-icon .menu-open-icon {
    display: none;
}

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

    /* New  */
    .top-bar {
        display:none !important;
    }

    /* !New */
    .menu-open {
        overflow: hidden !important;
        position: fixed !important;
        width: 100% !important;
        height: 100% !important;
        top: 0 !important;
        left: 0 !important;
    }

    .menu-open .gc-menu {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100vw;
        height: 100vh;
        max-height: 100vh;
        overflow-y: auto;
        /* Changed: Allow vertical scrolling */
        overflow-x: hidden;
        /* Prevent horizontal scroll */
        background-color: #fff;
        padding-top: 120px;
        box-sizing: border-box;

        /* Allow internal scrolling only */
        touch-action: pan-y;
        /* Changed: Allow vertical pan only */
        overscroll-behavior: contain;
        /* Changed: Contain scroll within element */
        -webkit-overflow-scrolling: touch;
        /* Changed: Smooth iOS scrolling */
    }





    .menu-close-icon {
        width: 30px;
    }

    .menu-open .header {
        background-color: white;
    }

    /* .gc-menu__nav1, .gc-menu__nav2 {
        display: none;
    } */
    /* .menu-close-icon {
        position: absolute;
        display: block;
        right: 16px;
        top: -80px;
        z-index: 999;
        width: 40px;
        height: 40px;
        cursor: pointer;
    } */
    .gc-menu__navMain {
        padding-left: 0;
        list-style: none;
    }

    .gc-meu__navMain__link {
        font-size: 18px;
        font-weight: 600;
        line-height: 1;
        margin-bottom: 1.5em;
        background: none;
        border: none;
        outline: none;
    }

    .gc-menu__navTheme .left-section {
        display: none;
    }

    /* .gc-menu__selection .right-section {
        display: none;
    }
    .gc-menu__selection .left-section  {
        flex: 0 0 100%;
    } */
    .gc-menu__selection {
        display: none;
    }

    .gc-menu__selection {
        flex: 0 0 100%;
    }

    .hidden {
        display: none !important;
    }

    .gc-menu__heading.sm {
        display: block;
    }

    .gc-menu__heading.lg {
        display: none;
    }

    .gc-meu__navMain__link.active img {
        transform: rotate(180deg);
    }

    .gc-menu__navMain .right-section {
        padding-left: 1em;
        padding-bottom: 2em;
    }

    .gc-menu__navMain .right-section ul {
        padding-left: 0;
        list-style: none;
    }

    .gc-menu__navMain.sub-menu-opened .right-section:nth-of-type(2) {
        display: none;
    }

    .gc-menu__nav2list.cloned-submenu {
        position: inherit;
        padding-left: 1.5em !important;
        display: block;
    }

    .gc-menu__nav2--back {
        /* display: block; */
    }

    .menu-open .search-form__wrapper {
        display: none;
    }

    body.menu-open {
        overflow: hidden;
    }


}

@media only screen and (min-width: 1024px) and (max-width: 1080px) {
    .gc-meu__navItem.with-submenu .gc-menu__navLink.active::before {
        left: 20px !important; 
    }
}


@media only screen and (min-width: 1024px) {
    .gc-meu__navMain__item {
        display: none;
    }

    .gc-menu__nav--1.active {
        background-color: #F6FCF2 !important;
    }

    .gc-menu__nav--2.active {
        background-color: #F8FFFF !important;
    }

    .gc-menu__nav--3.active {
        background-color: #F7F4EA !important;
    }

    .gc-menu__nav--4.active {
        background-color: #F9F9F9 !important;
    }

    .gc-menu__nav--5.active {
        background-color: #F7F4EA !important;
    }

    .gc-menu__nav--6.active {
        background-color: #F8FFFF !important;
    }

    .gc-menu__nav--7.active {
        background-color: #F9F9F9 !important;
    }

    .gc-menu__nav--8.active {
        background-color: #F8FFFF !important;
    }

    .gc-menu__nav--9.active {
        background-color: #F7F4EA !important;
    }

    .gc-menu__nav--10.active {
        background-color: #F6FCF2 !important;
    }

    .gc-menu__nav--11.active {
        background-color: #F8FFFF !important;
    }

    .gc-menu__nav--12.active {
        background-color: #F6FCF2 !important;
    }



    .gc-menu__selection .right-section {
        padding: 5px 0;
    }



    .gc-menu__navLink {
        padding: 2px 0;
        display: block;
        position: relative;
    }

    .gc-menu__nav2list.active {
        border-left: none;
        border-radius: 20px;
        margin-top: -15px;
        height: calc(100% + 15px);
        left: calc(24% - 4px);
    }


    .gc-menu__navList--withSubmenu {
        --gc-submenu-offset: 50px;
        margin-left: calc(-1 * var(--gc-submenu-offset));
        min-width: calc(100% + var(--gc-submenu-offset));
    }

    .gc-meu__navItem.with-submenu .gc-menu__navLink {
        padding-left: var(--gc-submenu-offset);
    }

    .gc-menu__navLink {
        padding: 2px 0;
        display: block;
        position: relative;
        border-radius: 5px 0 0 5px;

    }

    .gc-meu__navItem.with-submenu .gc-menu__navLink.active::before {
        content: '';
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 24px;
        height: 24px;
        background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+DQogPHBhdGggZD0iTTEyLjAwMDIgMTMuNDE0NEwxNi45NDk5IDE4LjM2NDJMMTguMzY0MiAxNi45NDk5TDEzLjQxNDQgMTIuMDAwMkwxOC4zNjQyIDcuMDUwNDRMMTYuOTUgNS42MzYyM0wxMi4wMDAyIDEwLjU4Nkw3LjA1MDQ0IDUuNjM2MjNMNS42MzYyMyA3LjA1MDQ0TDEwLjU4NiAxMi4wMDAyTDUuNjM2MjQgMTYuOTQ5OUw3LjA1MDQ2IDE4LjM2NDJMMTIuMDAwMiAxMy40MTQ0WiI+PC9wYXRoPg0KPC9zdmc+DQo=');
        background-size: contain;
        background-repeat: no-repeat;
        pointer-events: none;
        background-color: transparent;
        transition: none;
        left: 10px;
    }

    .gc-menu__nav2list__content {
        padding: 15px 0 15px 0;
        display: flex;
        flex-flow: column wrap;
        align-content: flex-start;
        height: 100%;
        list-style-type: none;
        gap: 5px;
        column-gap: 3em;
    }
}