.header__topbar {
    padding: 15px;
}


.header__shipping {
    display: flex;
    gap: 20px;
}

.header__shipping .logo-box img {
    height: 75px;
    object-fit: contain;
}

.header__shipping a {
    color: #fff;
    font-size: 16px;
    line-height: normal;
}

.header__shipping p a:hover {
    color: #f1f1f1;
}



.main__header.header__sticky {
    padding: 15px 12px 20px 12px;
}

.main__header.header__sticky .header__menu {
    width: 80%;
}

.header-link-box {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: space-around;
}

.header__menu--items {
    margin-right: 0 !important;
    position: relative;
}

.header-link-box .header__menu--items .header__menu--link {
    display: inline-block;
    color: #fff;
    font-weight: 500;
}


.header__account .account-details-box {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header__account .account-details-box .header__account--items {

    margin: 0 !important;
}

.header__account .account-details-box .header__account--items i {
    color: #fff;
}


.header-link-box .header__menu--items a:hover {
    color: #f1f1f1 !important;
    border-bottom: 2px solid #fff;
}

.active-link {
    color: #f1f1f1;
    border-bottom: 2px solid #fff;
}



@media only screen and (min-width: 991px) and (max-width: 1199px) {
    .header-link-box .header__menu--items .header__menu--link {
        font-size: 14px;
    }

    .header-link-box {
        display: flex;
        align-items: center;
        gap: 18px;
    }

    .main__header.header__sticky .header__menu {
        width: 85%;
    }

    .header__account {
        display: flex;
        width: 15%;
        gap: 10px;
    }
}

@media only screen and (min-width: 110px) and (max-width: 990px) {

    .header__account {
        display: none;
    }

    .main__header.header__sticky .header__menu {
        width: 100%;
    }

    .header__topbar {
        display: none;
    }

    .logo-box {
        text-align: center;
    }

    .logo-box img {
        width: 100%;
        max-width: 350px;
        object-fit: contain;
    }

    .main__header.header__sticky {
        padding: 10px
    }



    .sidemenu-logoimg {
        max-width: 250px;
        width: 100%;
        object-fit: contain;
    }

}


.offcanvas__header--menu__open {
    line-height: 1;
    display: none;
}

.offcanvas__header--menu__open a {
    color: #fff;
    font-size: 18px;
}

.offcanvas__account--items__btn {
    gap: 10px;
    color: #2F2F2F;
}

@media only screen and (max-width: 991px) {
    .offcanvas__header--menu__open {
        display: block;
    }
}

.offcanvas__header--menu__open--svg {
    width: 32px;
}

.offcanvas__header {
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 300px;
    height: 100vh;
    -webkit-transition: var(--transition);
    transition: var(--transition);
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    background-color: #fff;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
}

@media only screen and (min-width: 480px) {
    .offcanvas__header {
        max-width: 320px;
    }
}

.offcanvas__header.open {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
}

.offcanvas__header.open~.offcanvas-overlay {
    visibility: visible;
    opacity: 0.75;
}

.offcanvas-overlay {
    position: fixed;
    z-index: 9998;
    top: 0;
    left: 0;
    visibility: hidden;
    width: 100%;
    height: 100%;
    -webkit-transition: var(--transition);
    transition: var(--transition);
    opacity: 0;
    background-color: var(--black-color);
}

.offcanvas__inner {
    position: relative;
    height: 100%;
}

/* Offacnvas Logo */
.offcanvas__logo {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    justify-content: space-between;
    padding: 20px 0;
}

.offcanvas__close--btn {
    position: relative;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    width: 2rem;
    height: 2rem;
    padding: 0;
    text-indent: -9999px;
    border: none;
    background-color: transparent;
}

.offcanvas__close--btn::before,
.offcanvas__close--btn::after {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    margin-top: -1px;
    content: "";
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    background-color: #06402A;
}

.offcanvas__close--btn::after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

/* Mobile Menu */
.offcanvas__menu {
    overflow-y: auto;
    height: 100%;
}

.offcanvas__menu_ul {
    overflow: auto;
    margin: 0;
    padding: 0;
    list-style: none;
}

.offcanvas__menu_li {
    position: relative;
    border-bottom: 1px solid #DDD;
}

.offcanvas__menu_li:first-child {
    border-top: 1px solid var(--border-color2);
}

.offcanvas__menu_item {
    line-height: 1;
    display: block;
    padding: 15px 20px;
    text-transform: uppercase;
    color: #2F2F2F;
    font-weight: 700;
}

.offcanvas__sub_menu li a {
    color: #2F2F2F;
    font-weight: 500;
}

/* Mobile Sub Menu */
.offcanvas__sub_menu {
    display: none;
    margin: 0 20px;
    padding: 0;
    list-style: none;
}

.offcanvas__sub_menu li {
    margin-bottom: 10px;
}

.offcanvas__sub_menu_toggle {
    font-size: 20px;
    position: absolute;
    z-index: 9;
    top: 0;
    right: 0;
    width: 4rem;
    height: 4.6rem;
    padding: 0;
    border: none;
    border-radius: 0;
    background-color: transparent;
}

.offcanvas__sub_menu_toggle::before,
.offcanvas__sub_menu_toggle::after {
    position: absolute;
    top: 30%;
    left: 50%;
    width: 12px;
    height: 2px;
    content: "";
    -webkit-transition: var(--transition);
    transition: var(--transition);
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    background-color: #000;
}

.offcanvas__sub_menu_toggle:not(.active)::after {
    -webkit-transform: translateX(-50%) translateY(-50%) rotate(90deg);
    transform: translateX(-50%) translateY(-50%) rotate(90deg);
}

.offcanvas__account--items {
    padding: 28px 17px 20px;
}





.offcanvas__stikcy--toolbar {
    position: fixed;
    bottom: 0;
    background: #fff;
    left: 0;
    right: 0;
    z-index: 99;
    -webkit-box-shadow: 0 0 9px rgba(0, 0, 0, 0.12);
    box-shadow: 0 0 9px rgba(0, 0, 0, 0.12);
    padding: 10px 20px;
    display: none;
    visibility: hidden;
    background-color: #fff;
    overflow: hidden;
}

@media only screen and (min-width: 500px) {
    .offcanvas__stikcy--toolbar {
        padding: 10px 40px;
    }
}

@media only screen and (min-width: 768px) {
    .offcanvas__stikcy--toolbar {
        padding: 10px 60px;
    }
}

@media only screen and (max-width: 991px) {
    .offcanvas__stikcy--toolbar {
        display: block;
        visibility: visible;
    }
}

.offcanvas__stikcy--toolbar__btn {
    position: relative;
    text-align: center;
    color: #2F2F2F;
}

.offcanvas__stikcy--toolbar__btn:hover .offcanvas__stikcy--toolbar__icon {
    color: #0E0E0F;
}

.offcanvas__stikcy--toolbar__icon {
    width: 50px;
    height: 22px;
    text-align: center;

    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 50%;
    color: #06402A;
    margin: 0 auto;
}

.offcanvas__stikcy--toolbar__label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    margin-top: 6px;
    color: #2F2F2F;
}

.header__sticky.sticky {
    position: fixed;
    width: 100%;
    top: 0;
    background: #fff;
    left: 0;
    z-index: 99;
    -webkit-box-shadow: 0 0 7px rgba(0, 0, 0, 0.15);
    box-shadow: 0 0 7px rgba(0, 0, 0, 0.15);
    -webkit-transition: 0.3s;
    transition: 0.3s;
}


.main__logo--title {
    line-height: 2rem;
}

.header__topbar {
    padding: 20px 20px 10px 20px;
}

@media only screen and (max-width: 991px) {
    .header__topbar--inner {
        -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }
}



@media only screen and (max-width: 991px) {
    .language__currency {
        padding: 5px 20px;
    }
}

.language__currency--list {
    position: relative;
    margin-right: 1.5rem;
    padding-right: 1.5rem;
}

.language__currency--list:last-child {
    margin-right: 0;
    padding-right: 0;
}

.language__currency--list:last-child::before {
    display: none;
}

.language__currency--list::before {
    position: absolute;
    content: "";
    width: 1px;
    height: 100%;
    background: #fff;
    right: 0;
    top: 0;
}

.currency__items:last-child .currency__text {
    border-bottom: 0;
}

.currency__text {
    display: block;
    font-size: 1.4rem;
    padding: 1rem 1.4rem;
    background: var(--gray-color2);
    border-bottom: 1px solid var(--border-color2);
}

.currency__text:hover {
    background: #06402A;
    color: #fff;
    border-color: #06402A;
}

@media only screen and (max-width: 991px) {
    .main__header {
        padding: 10px 0;
    }
}

.header__account--items {
    margin-right: 2rem;
}

.header__account--items:last-child {
    margin-right: 0;
}

@media only screen and (max-width: 575px) {
    .header__account--items {
        margin-right: 1rem;
    }
}

@media only screen and (min-width: 992px) {
    .header__account--search__items.mobile__d--block {
        display: none;
    }
}

.header__account--btn {
    position: relative;
    color: var(--text-gray-color);
    text-align: center;
}

.header__account--btn:hover {
    color: #0E0E0F;
}

.items__count {
    position: absolute;
    right: -1.4rem;
    top: -1rem;
    width: 2rem;
    height: 2rem;
    font-size: 1rem;
    line-height: 2rem;
    text-align: center;
    border-radius: 50%;
    color: #06402A;
}


.predictive__search--title {
    margin-bottom: 15px;
    color: #06402A;
}


.predictive__search--box {
    background: #fff;
    -webkit-box-shadow: 0 -4px 27px rgba(62, 70, 120, 0.16);
    box-shadow: 0 -4px 27px rgba(62, 70, 120, 0.16);
    position: relative;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    opacity: 0;
    visibility: hidden;
    z-index: 999;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
}

.predictive__search--box.active {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.predictive__search--box__inner {
    padding: 20px 16px;
    text-align: center;
}

@media only screen and (min-width: 576px) {
    .predictive__search--box__inner {
        padding: 22px 50px;
    }
}

@media only screen and (min-width: 768px) {
    .predictive__search--box__inner {
        padding: 30px 80px;
    }
}

@media only screen and (min-width: 992px) {
    .predictive__search--box__inner {
        padding: 30px 150px;
    }
}

.predictive__search--form {
    width: 100%;
    position: relative;
}

.predictive__search--input {
    width: 100%;
    height: 5rem;
    border: 1px solid var(--border-color2);
    padding: 0 80px 0 15px;
    font-size: 1.6rem;
    font-weight: 400;
    border-radius: 5px;
}

.predictive__search--input:focus {
    border-color: #0E0E0F;
}

.predictive__search--input:focus::-webkit-input-placeholder {
    color: #000000;
}

@media only screen and (max-width: 576px) {
    .predictive__search--input {
        height: 45px;
    }
}

.predictive__search--button {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    padding: 0;
    background: transparent;
    border: 0;
    width: 6rem;
    text-align: center;
    color: #06402A;
    border-radius: 0 5px 5px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.predictive__search--button:hover {
    background: #06402A;
}

.predictive__search--close__btn {
    position: absolute;
    top: 20px;
    right: 40px;
    padding: 0;
    border: 0;
    background: inherit;
    width: 28px;
}

@media only screen and (max-width: 576px) {
    .predictive__search--close__btn {
        right: 15px;
    }
}

.predictive__search--close__btn:hover {
    color: #06402A;
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
}

.header__bottom {
    -webkit-box-shadow: 0 3px 8px rgba(71, 71, 71, 0.16);
    box-shadow: 0 3px 8px rgba(71, 71, 71, 0.16);
}



@media only screen and (min-width: 992px) {
    .header__menu--items {
        margin-right: 2.5rem;
    }
}

@media only screen and (min-width: 1366px) {
    .header__menu--items {
        margin-right: 45px;
    }
}

@media only screen and (min-width: 1600px) {
    .header__menu--items {
        margin-right: 45px;
    }
}

.header__menu--items:last-child {
    margin-right: 0;
}



.header__menu--items:hover .header__sub--menu {
    visibility: visible;
    margin-top: 0;
    opacity: 1;
}

.header__menu--items:hover .header__mega--menu {
    visibility: visible;
    opacity: 1;
}



.header__sub--menu__link {
    font-size: 1.5rem;
    display: block;
    padding: 10px 0;
}

.mega__menu--items {
    position: relative;
}

.header__mega--menu {
    position: absolute;
    z-index: 9;
    top: 53px;
    left: -30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 250px;
    padding: 20px 25px;
    list-style: none;
    -webkit-transition: .3s all ease;
    transition: .3s all ease;
    visibility: hidden;
    opacity: 0;
    border-radius: 5px;
    background: #06402A;
    box-shadow: 0px 4px 22px 0px rgba(0, 0, 0, 0.25);
    -webkit-box-shadow: 0px 4px 22px 0px rgba(0, 0, 0, 0.25);
}

.header__mega--menu .submenu-box ul li{
    list-style-type: disc;
    color: white;
    margin-left: 15px;
    padding: 3px 0;
}
.header__mega--menu a {
    color: white;
}

@media only screen and (max-width: 991px) {
    .header__section.mb-20 {
        margin-bottom: 0;
    }
}



.select {
    position: relative;
}

.select::before {
    border-bottom: 2px solid var(--black-color);
    border-right: 2px solid var(--black-color);
    content: "";
    display: block;
    height: 7px;
    margin-top: -4px;
    pointer-events: none;
    position: absolute;
    right: 18px;
    top: 50%;
    width: 7px;
    -webkit-transform-origin: 66% 66%;
    transform-origin: 66% 66%;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0.7;
}

.header__select--inner {
    border: 0;
    background: #F7F8F9;
    height: 5.5rem;
    padding: 0 3.3rem 0 1.8rem;
    -webkit-appearance: none;
    cursor: pointer;
    font-size: 1.6rem;
    color: #06402A;
}

@media only screen and (min-width: 1200px) {
    .header__select--inner {
        padding: 0 4.3rem 0 2rem;
    }
}

.header__search--box {
    position: relative;
    width: 25rem;
}

@media only screen and (min-width: 992px) {
    .header__search--box {
        width: 32rem;
    }
}

@media only screen and (min-width: 1200px) {
    .header__search--box {
        width: 45rem;
    }
}

.header__search input::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #a6a6a6;
}

.header__search input::-moz-placeholder {
    /* Firefox 19+ */
    color: #a6a6a6;
}

.header__search input:-ms-input-placeholder {
    /* IE 10+ */
    color: #a6a6a6;
}

.header__search input:-moz-placeholder {
    /* Firefox 18- */
    color: #a6a6a6;
}

.header__search--input {
    width: 100%;
    border: 1px solid #F7F8F9;
    border-left: 0;
    height: 5.5rem;
    padding: 0 7rem 0 2.2rem;
    font-size: 1.5rem;
    color: #a6a6a6;
    opacity: 0.7;
}

.header__search--input:focus::-webkit-input-placeholder {
    opacity: 1;
    color: #06402A;
}

@media only screen and (min-width: 1200px) {
    .header__search--input {
        padding: 0 7rem 0 2.2rem;
    }
}

.header__search--button {
    position: absolute;
    top: -1px;
    right: -1px;
    height: 102%;
    border: 0;
    padding: 0 1.5rem;
    line-height: 2rem;
    background: #0E0E0F;
}

.header__search--button:hover {
    background: #06402A;
}


/* Footer Css code  */


.news-letter-box {
    overflow: hidden;
}

.news-letter-box .news-letter-sideimg {
    height: 100%;
    padding: 100px 0;
}

.news-letter-box .input-group {
    margin-top: 25px;
    padding: 10px;
    border-radius: 3px;
    background: #FFF;
    box-shadow: 0px 12px 24px 0px rgba(0, 0, 0, 0.12);
    gap: 5px;
}

input::placeholder {
    color: #999;
    /* Lighter placeholder text */
    font-size: 16px;
    /* Placeholder text size */
}

.news-letter-box .input-group input {
    padding: 10px 24px;
    border: 0;

}

.news-letter-box .input-group .news-btn {
    padding: 10px 24px;
    text-align: center;
    text-transform: uppercase;
    width: 150px;
    background: #000;
    color: white;
}



.btn-dark:hover {
    background-color: #333;
}

.news-letter-box .input-group {
    display: flex;
    align-items: center;
}


.footer__section {
    background: #191C1F;

}

.footer__section .main-footer {
    padding: 70px 0 45px 0;
}



.main-footer__widget,
.footer__widget {
    padding: 10px 0;
    overflow: hidden;
    height: 100%;
}

.main-footer__widget .mfw-details-box {
    padding: 25px 0 0 0
}

.main-footer__widget .mfw-details-box a {
    color: #929FA5;
    font-size: 15px;
    font-weight: 500;
    line-height: 20px;
    display: block;
    padding: 8px 0;
}

.main-footer__widget .mfw-details-box a:hover {
    color: #fff;
}

.main-footer__widget .footer-ctitle,
.footer__widget .footer-ctitle {
    margin-bottom: 20px;
    color: white;
    font-weight: 500;
    line-height: 24px;
    text-transform: uppercase;
}

.footer__widget ul li {
    margin-bottom: 5px;
}

.footer__widget ul li a {
    color: #929FA5;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
}

.footer__widget ul li a:hover {
    color: #fff;
}

.social-footer-icons {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}


.social-footer-icons a:hover {
    margin-top: -5px;

}

.footer-bottom {
    text-align: center;
    padding: 20px 0 15px 0;
    border-top: 1px solid black;
    box-shadow: 0px 1px 0px 0px #303639 inset;
    border-top: 1px solid #06402A;
    color: #ADB7BC;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
}

.footer-bottom a {
    color: #ADB7BC;
}

.footer-bottom a:hover {
    color: #fff;
}

[x-cloak] {
    display: none !important;
}