/* navbar section css start */
.navbar {
    background-color: var(--white);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    transition: ease .3s;
    width: 100%;
    z-index: 999;
    height: 72px;
}

[data-theme="dark"] .navbar {
    box-shadow: 0 3px 12px rgb(255 255 255 / 32%);
}

.navbar.nav-fixed {
    top: 0;
    box-shadow: 0 3px 12px rgb(0 0 0 / 10%);
}

[data-theme="dark"] .navbar.nav-fixed {
    box-shadow: 0 3px 12px rgb(255 255 255 / 10%);
}

.navbar-top {
    height: 100%;
}

.navbar-top .container {
    max-width: 100%;
    height: 100%;
}

.navbar-top-inner {
    gap: 20px;
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    align-items: center;
    height: 100%;
}

.navbar-top-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.mobile-menu-btn{
    display: flex;
    align-items: center;
    justify-content: center;
}

.ham-menu {
    height: 24px;
    width: 24px;
    position: relative;
    cursor: pointer;
}

.ham-menu span {
    height: 2px;
    width: 100%;
    background: var(--black);
    border-radius: 25px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: .3s ease;
}

.ham-menu span:nth-child(1) {
    top: 25%;
}

.ham-menu span:nth-child(3) {
    top: 75%;
}

.ham-menu.active span:nth-child(1) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}

.ham-menu.active span:nth-child(2) {
    opacity: 0;
}

.ham-menu.active span:nth-child(3) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
}

.navbar-top-left .nav-icons {
    display: none;
}

.navbar-logo {
    display: block;
    width: 121px;
}

.mobile-menu-close-window-btn {
    position: absolute;
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
    z-index: 1;
    width: 100vw;
    height: 100dvh;
    user-select: none;
    cursor: pointer;
}

.navbar-bottom {
    background: var(--black);
}

.nav-links {
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-link {
    height: 100%;
}

.nav-link-text {
    gap: 8px;
    color: var(--paragraph-text-color);
    font-size: 14px;
    font-weight: 500;
    font-family: var(--paragraph-font);
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    height: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0 17px;
    letter-spacing: 1px;
}

.nav-link-text .icon i,
.dropdown-nav-link-text .icon i {
    transition: ease .3s;
    -webkit-transition: ease .3s;
    -moz-transition: ease .3s;
    -ms-transition: ease .3s;
    -o-transition: ease .3s;
}

.nav-link-text:hover .icon i,
.dropdown-nav-link-text:hover .icon i {
    transform: rotate(-180deg);
}

.nav-link-text::after {
    content: "";
    position: absolute;
    right: 0px;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: var(--white);
    z-index: 1;
    transition: ease .3s;
}

.nav-link:hover .nav-link-text::after {
    left: 0px;
    width: 100%;
}

.megamenu-wrapper {
    position: absolute;
    top: 115%;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    background: var(--body-color);
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
    padding: 50px 0;
    max-height: 70dvh;
    overflow-y: auto;
    scrollbar-width: thin;
}

.nav-link:hover .megamenu-wrapper {
    top: 100%;
    opacity: 1;
    visibility: visible;
    transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
}

.megamenu-items {
    display: flex;
    gap: 24px;
}

.megamenu-item {
    width: 66%;
}

.megamenu-links-title {
    margin: 0 0 10px 0;
    text-transform: capitalize;
    color: var(--paragraph-text-color);
    font-size: 18px;
    font-weight: 500;
}

.megamenu-links ul li .nav-link-text {
    text-align: left;
    justify-content: flex-start;
    padding: 8px 0;
    font-weight: 400;
    text-transform: capitalize;
}

.megamenu-links ul li:last-child .nav-link-text .icon {
    display: flex;
}

.megamenu-links ul li:last-child .nav-link-text {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.nav-link:hover .megamenu-links ul li .nav-link-text::after {
    left: unset;
}

.nav-link .megamenu-links ul li .nav-link-text::after {
    content: "";
    position: absolute;
    right: 0px;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: var(--black);
    z-index: 1;
    transition: ease .3s;
    -webkit-transition: ease .3s;
    -moz-transition: ease .3s;
    -ms-transition: ease .3s;
    -o-transition: ease .3s;
}

.nav-link .megamenu-links ul li .nav-link-text:hover::after {
    left: 0px;
    width: 100%;
}

.megamenu-link-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.megamenu-item.megamenu-content-item {
    width: 34%;
}

.megamenu-content-area {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
    align-items: center;
}

.megamenu-content-img {
    display: block;
}

.dropdown-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.sub-menu {
    position: absolute;
    right: 0;
    top: 130%;
    padding: 20px;
    background-color: var(--white);
    opacity: 0;
    visibility: hidden;
    transition: ease .3s;
    width: 200px;
    z-index: 2;
    -webkit-box-shadow: 0px 0px 8px 0px rgb(0 0 0 / 19%);
    -moz-box-shadow: 0px 0px 8px 0px rgb(0 0 0 / 19%);
    box-shadow: 0px 0px 8px 0px rgb(0 0 0 / 19%);
}

.dropdown-wrapper:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    top: 100%;
}

.sub-menu2 {
    position: absolute;
    right: 100%;
    top: 100%;
    padding: 20px;
    background-color: var(--white);
    opacity: 0;
    visibility: hidden;
    transition: ease .3s;
    width: 200px;
    z-index: 2;
    -webkit-box-shadow: 0px 0px 8px 0px rgb(0 0 0 / 19%);
    -moz-box-shadow: 0px 0px 8px 0px rgb(0 0 0 / 19%);
    box-shadow: 0px 0px 8px 0px rgb(0 0 0 / 19%);
}

.dropdown-wrapper2:hover .sub-menu2 {
    opacity: 1;
    visibility: visible;
    top: 0;
}

.sub-menu ul li,
.sub-menu2 ul dropdown-nav-link-text {
    position: relative;
}

.sub-menu ul li::after,
.sub-menu2 ul dropdown-nav-link-text::after {
    content: "";
    position: absolute;
    right: 0px;
    bottom: 15px;
    width: 0;
    height: 2px;
    background-color: var(--black);
    z-index: 1;
    transition: ease .3s;
}

.sub-menu ul li:hover::after,
.sub-menu2 ul dropdown-nav-link-text:hover::after {
    left: 0px;
    width: 100%;
}

.sub-menu ul li:last-child a,
.sub-menu2 ul li:last-child a {
    padding: 0;
}

.sub-menu ul li:last-child::after,
.sub-menu2 ul li:last-child::after {
    bottom: -5px;
}

.sub-menu ul li a,
.dropdown-nav-link-text {
    font-size: 14px;
    padding: 0;
    padding: 0 0 20px 0;
    display: block;
    color: var(--black);
    font-weight: 600;
    font-family: var(--heading-font);
    text-transform: capitalize;
    cursor: pointer;
}

.dropdown-nav-link-text {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.navbar-search {
    height: 42px;
    background: var(--border-color);
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px;
    box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000, 0 0 #0000, 0 4px 6px -1px rgba(0, 0, 0, 0.102), 0 2px 4px -2px rgba(245, 216, 216, 0.102);
}

.navbar-search .icon {
    display: flex;
    margin-left: 10px;
}

.navbar-search .icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--text-muted);
}

.navbar-search .search-btn {
    height: 100%;
    background: var(--brand-color);
    padding: 5px 16px;
    font-size: 14px;
    text-transform: capitalize;
    line-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all ease .3s;
}

.navbar-search input {
    height: 100%;
    border: none;
}

.nav-icon-area {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.nav-icons {
    display: flex;
    gap: 50px;
    padding: 0 10px 0 0;
}

.nav-icons li .nav-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    transition: all ease .2s;
}

.nav-icons li .nav-icon:hover {
    transform: scale(1.05);
}

.nav-icons li .nav-icon .icon {
    display: flex;
}

.nav-icons li .nav-icon .icon svg {
    width: 16px;
    height: 16px;
    display: flex;
    stroke: var(--black);
}

.nav-icons li .nav-icon p {
    font-size: 14px;
    line-height: 100%;
    text-transform: capitalize;
    font-weight: 500;
}

.nav-icons li a:hover,
.nav-icons li span:hover {
    border-color: var(--black);
}

.side-cart-btn {
    position: relative;
}

.cart-count {
    position: absolute;
    width: 16px;
    height: 16px;
    padding: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 10px;
    font-weight: 400;
    font-family: var(--paragraph-font);
    border-radius: 50px;
    overflow: hidden;
    background: var(--black);
    line-height: 1;
    top: -9px;
    right: -10px;
    line-height: 10px;
}

.sidebar-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100dvh;
    z-index: 9999;
    transition: 300ms;
    opacity: 0;
    visibility: hidden;
    background: var(--overlay2);
}

.sidebar-wrapper.active {
    opacity: 1;
    visibility: visible;
}

.sidebar-wrapper-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 340px;
    background: var(--body-color);
    height: 100dvh;
    z-index: 2;
    transition: 300ms;
    transform: translateX(-100%);
    overflow-x: hidden;
    scrollbar-width: none;
}

.sidebar-wrapper-inner.active {
    transform: translateX(0);
}

.sidebar-wrapper .sidebar-content {
    overflow-y: auto;
    height: calc(100% - 124px);
    align-items: flex-start;
    scrollbar-width: thin;
}

.sidebar-wrapper .nav-link {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.sidebar-wrapper .nav-link-text {
    padding: 15px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    user-select: none;
    transition: all ease .3s;
}

.sidebar-wrapper .nav-link-text:hover {
    color: var(--brand-color);
}

.sidebar-wrapper .nav-link-text.sidebar-dropdown-btn {
    width: 100%;
}

.sidebar-wrapper .nav-link-text.sidebar-dropdown-btn .icon,
.nav-link-text.sidebar-submenu-open .icon {
    transform: translateX(-10px);
    transition: all ease .3s;
}

.sidebar-wrapper .nav-link-text.sidebar-dropdown-btn:hover .icon,
.nav-link-text.sidebar-submenu-open:hover .icon {
    transform: translateX(0);
}

.sidebar-wrapper .nav-link-text.sidebar-dropdown-btn .icon svg path,
.nav-link-text.sidebar-submenu-open .icon svg path {
    fill: var(--black);
    transition: all ease .3s;
}

.sidebar-wrapper .nav-link-text.sidebar-dropdown-btn:hover .icon svg path,
.nav-link-text.sidebar-submenu-open:hover .icon svg path {
    fill: var(--brand-color);
}

.sidebar-wrapper .nav-link-text::after {
    display: none;
}

.mobile-side-bar-top {
    display: flex;
    height: 72px;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    border-bottom: 1px solid var(--border-color);
    background: var(--body-color);
}

.mobile-side-bar-top .mobile-menu-btn .ham-menu {
    height: 20px;
    width: 20px;
}

.sidebar-wrapper .nav-links {
    display: flex;
    gap: 0;
    flex-direction: column;
    padding: 0 20px;
    height: auto;
}

.sidebar-wrapper .nav-link {
    border-bottom: 1px solid var(--border-color);
}

.sidebar-wrapper .nav-links li span .icon {
    padding: 0;
    border: none;
}

.sidebar-wrapper .nav-link::after {
    display: none;
}

.sidebar-wrapper .nav-icons li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar-wrapper .nav-icons .nav-link-text {
    width: auto;
    padding: 0;
    border-radius: 0;
    background-color: transparent;
    transition: all ease .3s;
    -webkit-transition: all ease .3s;
    -moz-transition: all ease .3s;
    -ms-transition: all ease .3s;
    -o-transition: all ease .3s;
}

.sidebar-wrapper .nav-icons .nav-link-text:hover {
    text-decoration: underline;
}

.sidebar-wrapper .nav-links .nav-link .megamenu-wrapper {
    top: 0;
    width: 100%;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    height: 100%;
    overflow-y: auto;
    scrollbar-width: thin;
    left: 110%;
    right: -120%;
    z-index: 2;
    transition: ease .5s;
    -webkit-transition: ease .5s;
    -moz-transition: ease .5s;
    -ms-transition: ease .5s;
    -o-transition: ease .5s;
    padding: 0;
    max-height: 100%;
    background: var(--body-color);
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.megamenu-top {
    position: sticky;
    left: 0;
    top: 0;
    width: 100%;
    height: auto;
    padding: 0 0 10px 0;
    z-index: 4;
    background: var(--body-color);
}

.sidebar-wrapper .nav-links .nav-link .megamenu-wrapper.active {
    right: 0;
    left: 0;
}

.sidebar-wrapper .nav-links .nav-link .megamenu-wrapper .megamenu-top .sidebar-close-btn {
    position: relative;
    color: var(--paragraph-text-color);
    font-size: 16px;
    font-weight: 600;
    font-family: var(--paragraph-font);
    text-transform: uppercase;
    line-height: 1;
    padding: 20px 10px;
    background-color: transparent;
    width: 100%;
    height: auto;
    transition: all ease .3s;
}

.sidebar-wrapper .nav-links .nav-link .megamenu-wrapper .megamenu-top .sidebar-close-btn:hover {
    color: var(--brand-color);
}

.sidebar-wrapper .nav-links .nav-link .megamenu-wrapper .megamenu-top .sidebar-close-btn .icon {
    position: absolute;
    right: 0;
    top: 50%;
    display: flex;
    transform: translateY(-50%) rotate(180deg);
}

.sidebar-wrapper .nav-links .nav-link .megamenu-wrapper .megamenu-top .sidebar-close-btn .icon svg {
    width: 18px;
}

.sidebar-wrapper .nav-links .nav-link .megamenu-wrapper .megamenu-top .sidebar-close-btn .icon svg path {
    fill: var(--black);
    transition: all ease .3s;
}

.sidebar-wrapper .nav-links .nav-link .megamenu-wrapper .megamenu-top .sidebar-close-btn:hover .icon svg path {
    fill: var(--brand-color);
}

.sidebar-wrapper .nav-links .nav-link .megamenu-wrapper .megamenu-top .megamenu-top-btn {
    color: var(--paragraph-text-color);
    font-size: 16px;
    font-weight: 600;
    font-family: var(--paragraph-font);
    text-transform: capitalize;
    line-height: 1;
    padding: 12px 16px;
    width: 100%;
    text-align: center;
    display: block;
    border: 1px solid var(--border-color);
    transition: all ease .3s;
}

.sidebar-wrapper .nav-links .nav-link .megamenu-wrapper .megamenu-top .megamenu-top-btn:hover {
    color: var(--brand-color);
    border-color: var(--brand-color);
}

.sidebar-wrapper .nav-links .nav-link .megamenu-wrapper .megamenu-items {
    flex-wrap: wrap;
    gap: 24px;
    margin: 10px 0 0 0;
    height: calc(100% - 80px);
    overflow-y: auto;
    scrollbar-width: none;
    padding: 0 0 20px 0;
}

.sidebar-wrapper .nav-links .nav-link .megamenu-wrapper .megamenu-items .megamenu-item {
    padding: 0;
    width: 100%;
}

.sidebar-wrapper .nav-links .nav-link .megamenu-wrapper .megamenu-items .megamenu-item.megamenu-content-item {
    padding: 0;
    width: 100%;
}

.sidebar-wrapper .nav-links .nav-link .megamenu-wrapper .megamenu-items .megamenu-item .megamenu-link-wrapper {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
}

.sidebar-wrapper .nav-links .nav-link .megamenu-wrapper .megamenu-items .megamenu-item .megamenu-content-area {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
}

.megamenu-items .nav-icons.mabile-nav-icons {
    padding: 0 0 24px 0;
    gap: 10px;
    width: 100%;
}

.sidebar-icons .nav-icons.mabile-nav-icons li a,
.megamenu-items .nav-icons.mabile-nav-icons li a {
    border: 1px solid var(--black);
    width: 35px;
    height: 35px;
}

.sidebar-icons {
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px 20px;
    border-top: 1px solid var(--border-color);
}

.sidebar-icons .social-icons {
    justify-content: center;
}

/* navbar section css end */

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

    /* navbar css start */
    .navbar-top-inner {
        gap: 10px;
    }

    .navbar-top-left {
        gap: 10px;
    }

    .navbar-top-left .nav-icons {
        display: flex;
    }

    .navbar-top-left-contact {
        display: none;
    }

    .nav-icons {
        gap: 30px;
    }

    /* navbar css end */
}

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

    /* navbar css start */
    .navbar-top-inner {
        gap: 20px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .navbar-top-left .mobile-menu-btn {
        display: none;
    }

    .navbar-search {
        width: 100%;
    }

    .nav-icon-area {
        display: none;
    }

    /* navbar css start */
}

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

    /* navbar css start */

    .navbar {
        height: 52px;
    }

    .mobile-side-bar-top {
        height: 52px;
    }

    .navbar-logo {
        width: 90px;
    }

    .navbar-search {
        height: 34px;
        padding: 3px;
    }

    .navbar-search .icon {
        margin-left: 5px;
    }

    .navbar-search input {
        padding: 0 5px;
    }

    .navbar-search .icon svg {
        width: 16px;
        height: 16px;
    }

    .navbar-search .search-btn {
        padding: 2px 16px;
        font-size: 12px;
    }

    .nav-icons {
        gap: 6px;
    }

    /* navbar css start */
}