
@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@400;500;600;700;800&display=swap');

html {
    scroll-behavior: smooth;

}
body{
    font-family: 'Heebo', sans-serif;
    overflow-x: hidden!important;
    overflow-y: auto;
    margin: 0;
    padding: 0;
    background-color: #FEFCF9;
}

*{
    -webkit-box-sizing: border-box;
    -o-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    outline: none;
}


body::-webkit-scrollbar {
    width: 8px;
}
body.thin::-webkit-scrollbar {
    width: 2px;
}
::-webkit-scrollbar-track {
    border-radius: 0;
    background-color: #E4E4E4;
}
::-webkit-scrollbar-thumb {
    border-radius: 0px;
    background: #E4E4E4;
}
::-webkit-scrollbar-thumb:window-inactive {
    background: #E4E4E4;
}


.form-control:focus {
    outline: none;
    box-shadow: none;
}

.btn {
    outline: none;
    box-shadow: none;
}

a {
    text-decoration: none !important;
    transition: 0.2s;
    -webkit-transition: 0.2s;
    -moz-transition: 0.2s;
    -ms-transition: 0.2s;
    -o-transition: 0.2s;
}

button {
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

button:focus,
button:active,
input:active,
input:focus,
select:active,
select:focus,
textarea:focus,
textarea:active {
    box-shadow: none;
    outline: 0;
}

p{
    color: #282828;
    margin-bottom: unset;
}

h1, h2 , h3, h4, h5, h6 {
    text-transform: capitalize;
}

/* Start header*/

.header__wrapper {
    background-color: #E4E4E4;
    padding: 33px 0 54px 0;
    position: relative;
}

.logo__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.nav-link {
    font-size: 22px;
    color: #987D44;
    text-transform: capitalize;
}

.nav-link:hover {
    color: #282828;
}
.icons__menu {
    display: flex;
    align-items: center;
    width: 30%;
    justify-content: flex-end;
    position: relative;
    top: 5px;
}
.icon_link {
    margin-inline-start: 21px;
    color: #987D44;
    font-size: 20px;
}
.icon_link.dropdown {
    position: relative;
}
.icon_link.dropdown .dropdown-toggle::after {
    display: none;
}
.icon_link.dropdown .dropdown-menu {
    top: 12px !important;
    border: 1px solid #987D44;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    padding: 42px 10px 20px 10px;
    min-width: 233px;
    background-color: rgba(40, 40, 40, 0.8);
    color: #987D44;
}
.icon_link.dropdown .dropdown-menu::before {
    position: absolute;
    content: '';
    display: block;
    border: none;
    border-bottom: 12px solid #987D44;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    height: 12px;
    width: 16px;
    top: -12px;
}
.icon_link.dropdown .dropdown-menu .dropdown-item {
    color: #987D44;
    padding: 0;
}
.icon_link.dropdown .dropdown-menu .dropdown-item:hover {
    background-color: transparent;
}
.sm__cart {
    display: flex;
    position: relative;
    margin-bottom: 15px;
}
.sm__cart a {
    color: #987D44;
}
.sm__thumb {
    width: 56px;
    height: 56px;
    margin-inline-end: 7px;
}
.sm__cont .sm__price {
    font-size: 13px;
    font-weight: 500;
    text-transform: capitalize;
    display: block;
}
.sm__cont .sm__name {
    font-size: 14px;
    font-weight: lighter;
    display: block;
}
.edit__icon {
    display: inline-block;
    width: 10px;
    height: 10px;
    background-image: url(../img/edit.svg);
    background-repeat: no-repeat;
    background-size: cover;
}
.sm__cart .edit__btn, .sm__cart .cancel__btn {
    position: absolute;
    top: 0;
    cursor: pointer;
}
.btns__wrapper {
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
}
.dark__btn, .yellow__btn{
    height: 29px;
    width: 48%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    font-weight: 500;
    text-transform: capitalize;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}
.dark__btn {
    background-color: #1C1C1C;
    color: #987D44;
}
.yellow__btn {
    background-color: #987D44;
    color: #282828;
}
.dark__btn:hover, .yellow__btn:hover {
    background-color: #fff;
    color: #282828;
}
/*** navbar ***/
.my__icon {
    width: 18px;
    height: 18px;
    display: inline-block;
    background-repeat: no-repeat;
}
.my__icon:hover {
    filter: grayscale(50%) brightness(70%);
    -webkit-filter: grayscale(50%) brightness(70%);
}
.search_icon {
    background-image: url(../img/search.svg);
    margin-inline-end: 27px;
}
.cart_icon {
    background-image: url(../img/cart.svg);
}
.user_icon {
    background-image: url(../img/user.svg);
}
.lang_link {
    margin-inline-start: 14px;
    color: #987D44;
    font-size: 14px;
}
.navbar-toggler {
    color: #987D44;
    font-size: 24px;
}
.no__padding {
    padding-left: 0 !important;
    padding-right: 0 !important;
}
.category_link{
    display: none;
}
@media (min-width: 992px) {
    .navbar-nav {
        flex-direction: row;
        position: relative;
        top: 10px;
    }
    .nav-item:not(:last-of-type) {
        margin-inline-end: 50px;
    }
    .navbar-toggler {
        display: none;
    }
    .no__padding__lg {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    .products__row > .col-lg-2 {
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%;
    }
}
@media (max-width: 991px) {
    .header__wrapper {
        padding: 37px 0 33px 0;
    }
    .navbar-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #E4E4E4;
        width: 100%;
        padding: 0 20px;
        z-index: 9;
        display: none;
    }
    .nav-link {
        font-size: 16px;
    }
    .icons__menu {
        padding-inline-end: 20px;
    }
    .icon_link {
        margin-inline-start: 12px;
    }
    .search_icon {
        margin-inline-end: 0;
    }
    .mstart__0 {
        margin-inline-start: 0;
    }
    .logo img {
        width: 77px;
    }
}
/* Start cover section*/

.cover_section {
    position: relative;
    max-height: 480px;
}
.cover__overlay {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color:rgba(90, 84, 83, 0.65);
}
.cover__img {
    width: 100%;
    max-height: 480px;
}

/* Start products section*/

.products_section {
    padding: 137px 0 64px 0;
}
.p__relative {
    position: relative;
    overflow: hidden;
}
.top__paper {
    position: absolute;
    left: -30px;
    top: -20px;
}
.bottom__paper {
    position: absolute;
    bottom: 0;
}
.product_card {
    margin-bottom: 39px;
    background-color: #e4e4e4;
    border-radius: 43px;
    -webkit-border-radius: 43px;
    -moz-border-radius: 43px;
    -ms-border-radius: 43px;
    -o-border-radius: 43px;
    text-align: center;
    padding-bottom: 15px;
}
.product_thumb {
    margin-bottom: 20px;
    border-radius: 43px;
    -webkit-border-radius: 43px;
    -moz-border-radius: 43px;
    -ms-border-radius: 43px;
    -o-border-radius: 43px;
    overflow: hidden;
}
.product_thumb img {
    max-width: 100%;
    border-radius: 43px;
    -webkit-border-radius: 43px;
    -moz-border-radius: 43px;
    -ms-border-radius: 43px;
    -o-border-radius: 43px;
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
}
.product_thumb:hover img {
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
}
.product_title {
    color: #282828;
    font-size: 25px;
    font-weight: 500;
}
.product_title a {
    color: #282828;
}
.top__63 {
    top: 63px;
}

/* start footer */
.footer {
    background-color: #E4E4E4;
    color: #987D44;
    border-bottom: 1px solid #fff;
    border-top: 6px solid #987D44;
}
.footer__container {
    padding: 75px 15px 42px 15px;
    position: relative;
}
.footer__container::before {
    position: absolute;
    top: 0;
    right: 0;
    content: url(../img/pol.png);
}
.footer_title {
    font-size: 22px;
    font-weight: 500;
    color: #987D44;
    margin-bottom: 24px;
}
.footer_link {
    display: block;
    width: fit-content;
    color: #987D44;
    text-transform: capitalize;
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 16px;
}
.footer_link:hover {
    color: #282828;
}
.footer__logo {
    display: block;
    margin-bottom: 20px;
    width: fit-content;
}
.footer_des {
    color: #987D44;
    font-size: 18px;
    max-width: 320px;
    margin-bottom: 22px;
}
.social__links {
    display: flex;
}
.soc_link {
    font-size: 24px;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #987D44;
    color: #fff;
    margin-inline-end: 8px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}
.soc_link:hover {
    color: #282828;
    background-color: #fff;
}
.mb__6 {
    margin-bottom: 6px;
}
.address__details {
    font-size: 18px;
    color: #987D44;
    margin-bottom: 19px;
    display: block;
}
a.address__details:hover {
    color: #282828;
}
.mb__27 {
    margin-bottom: 27px;
}
.address_icon {
    background-image: url(../img/map.svg);
    width: 13px;
    height: 20px;
    display: inline-block;
}
.mi__8 {
    margin-inline-end: 8px;
}
.copyrights {
    padding: 38px 0;
    text-align: center;
    color: #987D44;
    font-size: 16px;
    background-color: #E4E4E4;
    text-transform: capitalize;
}
.copyrights .copy_des, .copyrights p, .copyrights a {
    text-align: center;
    color: #987D44;
    font-size: 16px;
    text-transform: capitalize;
}
.go-top {
    position: fixed;
    display: none;
    font-size: 24px;
    width: 50px;
    height: 50px;
    background: rgba(207, 171, 127, 0.7);
    color: #fff;
    bottom: 140px;
    z-index: 2500;
    -webkit-box-shadow: 0 4px 18px 0px #2e2e2e85;
    box-shadow: 0 4px 18px 0px #2e2e2e85;
    text-align: center;
    line-height: 50px;
    transition: all 0.3s !important;
    -webkit-transition: all 0.3s !important;
    -moz-transition: all 0.3s !important;
    -ms-transition: all 0.3s !important;
    -o-transition: all 0.3s !important;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}
.go-top:hover {
    background-color: #987D44;
    color: #fff;
}



@media(max-width: 991px) {
    .cover_section, .cover__img {
        height: 234px;
        object-fit: cover;
    }
    .products_section {
        padding: 47px 0 43px 0;
    }
    .product_card {
        margin-bottom: 24px;
    }
    .product_title {
        font-size: 18px;
    }
    .top__paper {
        top: 12px;
        transform: rotate(-90deg);
        -webkit-transform: rotate(-90deg);
        -moz-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
        -o-transform: rotate(-90deg);
    }
    .top__paper, .bottom__paper {
        width: 60px;
    }
    .footer__links {
        margin-bottom: 30px;
    }
    .social__links {
        margin-bottom: 30px;
    }
    .footer__container::before {
        right: 40px;
    }
    .go-top {
        bottom: 90px;
    }
}

.loader-container {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    height: 100vh;
    background-color: #d3af84;
    z-index: 9999;
    text-align: center;
    overflow:hidden;
}
.loader-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
}

.loader {
    height: 100px;
    width: 100px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
}

.loader-ring{
    display: inline-block;
    position: relative;
    width: 75px;
    height: 75px;
}
.loader-ring div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 70px;
    height: 70px;
    border: 6px solid #fff;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-color: #fff transparent transparent transparent;
    animation: spin 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    -webkit-animation: spin 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}
.loader-ring div:nth-child(1) {
    animation-delay: -0.45s;
}
.loader-ring div:nth-child(2) {
    animation-delay: -0.3s;
}
.loader-ring div:nth-child(3) {
    animation-delay: -0.15s;
}
@keyframes spin {
    0% {
        transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
    }
    100%{
        transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
    }
}


/*** start shop page ***/
.inner_cover_section {
    height: 413px;
    background-image: url(../img/bk.png);
    background-size: cover;
    color: #fff;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 160px
}
.inner__title {
    font-size: 36px;
    font-weight: 500;
}
.breadcrumb {
    background-color: transparent;
    padding-top: 0;
}
.breadcrumb-item, .breadcrumb-item a {
    color: #fff;
    font-size: 16px;
    text-transform: capitalize;
    font-weight: 500;
}
.breadcrumb-item.active {
    color: #fff;
}
.breadcrumb-item+.breadcrumb-item::before {
    content: '|' !important;
    color: #fff;
}
.p__51__162 {
    padding: 51px 0 162px 0;
}
.side__check__wrapper {
    background-color: #fff;
    box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.16),
        -3px -3px 6px rgba(0, 0, 0, 0.16);
    padding: 23px;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    margin-bottom: 30px;
}
.filter__title {
    font-size: 20px;
    font-weight: bold;
    color: #282828;
    text-transform: uppercase;
    margin-bottom: 17px;
}
.cat__toggle, .cat__list {
    font-size: 17px;
    color: #282828;
    text-transform: capitalize;
}
.cat__list a {
    color: #282828;
}
.list__card {
    padding-inline-start: 30px;
    padding-block: 10px;
}
.cat__toggle:hover {
    color: #987D44;
}
.cat__toggle i {
    margin-inline-end: 8px;
}
.one_category {
    margin-bottom: 17px;
}
.rotate__90 {
    transform: rotate(90deg) !important;
    -webkit-transform: rotate(90deg) !important;
    -moz-transform: rotate(90deg) !important;
    -ms-transform: rotate(90deg) !important;
    -o-transform: rotate(90deg) !important;
}
.side__price__filter {
    background-color: #fff;
    padding: 29px 18px 40px 26px;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
}
.rangeable-handle {
    width: 14px;
    height: 14px;
    background-color: #282828;
    border: none;
}
.rangeable-progress {
    background-color: #282828;
}
.rangeable-progress, .rangeable-track {
    height: 3px;
}
.rangeable-container {
    margin-bottom: 12px;
}
.rangeable-tooltip {
    display: none !important;
}
.price__result {
    font-size: 16px;
    color: #282828;
    text-transform: capitalize;
    margin-bottom: 17px;
}
.form__btns {
    display: flex;
    justify-content: space-between;
}
.main_btn {
    height: 41px;
    border: none;
    background-color: #E4E4E4;
    color: #987D44;
    font-size: 16px;
    text-transform: capitalize;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 48%;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
}
.main_btn:hover {
    background-color: #987D44;
    color: #E4E4E4;
}
.nice-select.sort__by {
    background-color: #987D44;
    border-radius: 0;
    height: 35px;
    width: 154px;
    font-size: 14px;
    color: #282828;
    text-transform: capitalize;
    line-height: 35px;
    margin-bottom: 25px;
}
.nice-select.sort__by:after {
    border-bottom: 1px solid #282828;
    border-right: 1px solid #282828;
}
.nice-select.sort__by:after {
    height: 9px;
    width: 9px;
    top: 15px;
}
.nice-select .option:hover, .nice-select .option.focus, .nice-select .option.selected.focus {
    background-color: #efe7d5;
}
.nice-select.sort__by .list {
    width: 100%;
}

.product__box {
    background-color: #FEFCF9;
    padding: 17px 20px;
    border: 1px solid #987D44;
    margin-bottom: 21px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.product__img {
    position: relative;
    overflow: hidden;
    margin-bottom: 23px;
}
.product__img img{
    width: 100%;
    object-fit: cover;
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
}
.product__box:hover .product__img img {
    transform: scale(1.4)rotate(10deg);
    -webkit-transform: scale(1.4)rotate(10deg);
    -moz-transform: scale(1.4)rotate(10deg);
    -ms-transform: scale(1.4)rotate(10deg);
    -o-transform: scale(1.4)rotate(10deg);
}
.product_name, .product_name a {
    font-size: 17px;
    color: #987D44;
    text-transform: capitalize;
    margin-bottom: 10px;
}
.price__wrapper {
    color: #987D44;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 18px;
}
.price__wrapper del {
    margin-inline-end: 16px;
}
.add__btn {
    background-color: #987D44;
    border: 1px solid #987D44;
    color: #282828;
    font-size: 13px;
    text-transform: uppercase;
    height: 34px;
    width: 133px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
}
.add__btn:hover {
    background-color: transparent;
    color: #987D44;
}
.offer__perc {
    position: absolute;
    z-index: 3;
    top: 7px;
    right: 9px;
    background-color: #987D44;
    height: 26px;
    width: 45px;
    font-size: 14px;
    color: #282828;
    display: flex;
    justify-content: center;
    align-items: center;
}
.hvr-bounce-to-bottom:before {
    background-color: #E4E4E4;
}


/*** start product details page ***/
.p__79__151 {
    padding: 79px 0 151px 0;
}
.details__wrapper {
    background-color: #fff;
    border: 2px solid #987D44;
    padding: 27px 20px 19px 20px;
    margin-bottom: 44px;
}
.product_main_img img{
    width: 100%;
    max-height: 560px;
    margin-bottom: 22px;
}
.small_img_one {
    width: 120px;
    height: 120px;
}
.small_imgs_carousel .slick-prev:before,
.small_imgs_carousel .slick-next:before {
    color: #282828;
}
.small_imgs_carousel .slick-list
{
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}
.small_imgs_carousel .slick-next {
    right: 0;
}
.small_imgs_carousel .slick-prev {
    left: 0;
}
.bold_title {
    font-size: 30px;
    font-weight: bold;
    color: #282828;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.bold_price {
    font-size: 30px;
    display: block;
    font-weight: bold;
    color: #282828;
    text-transform: uppercase;
    margin-bottom: 30px;
}
.description {
    margin-bottom: 20px;
}
.des_title {
    font-size: 18px;
    color: #282828;
    font-weight: bold;
    margin-bottom: 8px;
}
.des_p {
    font-size: 16px;
}
.add_to_cart_wrapper {
    display: flex;
    align-items: center;
}
.add_to_fav {
    height: 49px;
    width: 49px;
    color: #987D44;
    border: none;
    font-size: 22px;
    margin-inline-end: 22px;
}
.number-spinner {
    height: 49px;
    width: 95px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #E4E4E4;
    margin-inline-end: 22px;
}
.pl-ns-value {
    width: 42px;
    border: none;
    text-align: center;
}
.mr__8 {
    margin-inline-end: 8px;
}
.add_to_cart {
    height: 49px;
    width: 208px;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    color: #987D44;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #E4E4E4;
    border: none;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}
.add_to_cart:hover, .add_to_cart:focus{
    background-color: #d8d1d1;
}
.related__wrapper {
    background-color: #fff;
    border: 2px solid #987D44;
    padding: 57px 62px 62px 62px;
}
.related_title {
    font-size: 30px;
    font-weight: bold;
    color: #987D44;
    text-transform: uppercase;
    margin-bottom: 30px;
}
.four_imgs_carousel .product__box{
    width: 95% !important;
    text-align: center;
}
.four_imgs_carousel .product__img {
    height: 234px;
    margin-bottom: 10px;
}
.four_imgs_carousel .add__btn {
    margin-left: auto;
    margin-right: auto;
}
.four_imgs_carousel .slick-prev:before,
.four_imgs_carousel .slick-next:before {
    color: #987D44;
    font-size: 34px;
}
.four_imgs_carousel .slick-next {
    right: -100px;
}
.four_imgs_carousel .slick-prev {
    left: -100px;
}

/*** start privacy page ***/
.privacy_section {
    padding: 70px 0 43px 0;
    color: #987D44;
}
.privacy_section p{
    color: #987D44;
    font-size: 18px;
    margin-bottom: 40px;
}

/*** start about page ***/
.about__title {
    font-size: 34px;
    font-weight: 500;
    color: #987D44;
    margin-bottom: 24px;
}

/*** start contact page ***/
.contact_section {
    padding: 88px 0 75px 0;
}
.our__info {
    background-color: #fff;
    box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.16),
        -3px -3px 6px rgba(0, 0, 0, 0.16);
    padding: 23px;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    margin-bottom: 30px;
    padding: 39px 41px;
    color: #1C1C1C;
}
.our_title {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 13px;
}
.our__des {
    color: #1C1C1C;
    font-size: 18px;
    margin-bottom: 30px;
}
.info__card {
    display: flex;
    margin-bottom: 36px;
}
.info__card i {
    color: #987D44;
    font-size: 24px;
    margin-inline-end: 12px;
}
.add_title {
    color: #1C1C1C;
    font-size: 20px;
    margin-bottom: 0;
}
.add__details span, .add__details a {
    color: #1C1C1C;
    font-size: 18px;
    display: block;
    max-width: 340px;
}
.contact_form {
    padding: 33px 30px;
    border: 2px solid #987D44;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
}
.mb__25 {
    margin-bottom: 25px;
}
.contact_form .form-control {
    border: 1px solid #282828;
    height: 55px;
    margin-bottom: 27px;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}
.form-control::placeholder {
    font-size: 13px;
    text-transform: capitalize;
    color: #282828;
}
.contact_form textarea {
    min-height: 103px;
    resize: none;
    margin-bottom: 38px;
}
.submit_btn {
    height: 49px;
    border: none;
    background-color: #E4E4E4;
    color: #987D44;
    font-size: 19px;
    text-transform: capitalize;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 208px;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    margin-bottom: 28px;
}
.submit_btn:hover {
    background-color: #987D44;
    color: #E4E4E4;
}

/*** start my account page ***/
.account__section {
    padding: 67px 0 215px 0;
}
.login_title {
    color: #987D44;
    font-size: 27px;
    font-weight: 500;
    margin-bottom: 49px;
}
.login_form .form-control {
    background-color: #fff;
    height: 55px;
    border: none;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.16);
    margin-bottom: 30px;
}
.mb__21 {
    margin-bottom: 21px !important;
}
.f__pass {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 33px;
}
.f__pass a {
    color: #987D44;
    font-size: 16px;
    text-transform: capitalize;
}
.block__btn {
    height: 49px;
    color: #282828;
    text-transform: capitalize;
    font-size: 19px;
    background-color: #987D44;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    border: 1px solid #987D44;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
}
.block__btn:hover {
    background-color: #fff;
    color: #987D44;
}
.check__label {
    display: flex;
    color: #987D44;
    font-size: 14px;
    margin-bottom: 24px;
}
.check__label input[type="checkbox"] {
    display: inline-block;
    margin-top: 6px;
    margin-inline-end: 17px;
}

.confirmModal .modal-body {
    padding: 90px 80px 70px 80px;
    text-align: center;
}
.confirmModal .close {
    position: absolute;
    top: 26px;
    right: 28px;
    font-size: 26px;
    color: #282828;
}
.modal_title {
    font-size: 32px;
    color: #987D44;
    margin-bottom: 16px;
}
.modal_des {
    font-size: 18px;
    margin-bottom: 50px;
}
.modal_form .form-control{
    height: 55px;
    border: 1px solid #282828;
    margin-bottom: 64px;
}
.modal_submit {
    height: 49px;
    width: 208px;
    background-color: #E4E4E4;
    font-size: 19px;
    color: #987D44;
    text-transform: capitalize;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #E4E4E4;
    margin-left: auto;
    margin-right: auto;
}
.modal_submit:hover {
    background-color: #987D44;
    color: #fff;
}
.mt__87 {
    margin-top: 87px;
}
.confirmModal .fa-check-circle {
    font-size: 96px;
    margin-bottom: 44px;
    color: #987D44;
}
.reset__des {
    color: #987D44;
    font-size: 18px;
    margin-bottom: 36px;
    text-align: center;
}
.mt__56 {
    margin-top: 56px;
}
.p__154__235 {
    padding: 154px 0 235px 0;
}

/* start cart page */
.cart__section {
    padding: 65px 0 54px 0;
}
.icon_cart_x{
    display: block;
    width: 100px;
    height: 100px;
    background-image: url(../img/cart-x.svg);
    background-repeat: no-repeat;
    margin-bottom: 24px;
}
.cart__empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 110px auto 220px auto;
}
.cart__empty p {
    color: #987D44;
    font-size: 28px;
}
.brown__btn {
    height: 49px;
    width: 208px;
    background-color: #987D44;
    border: 1px solid #987D44;
    color: #282828;
    font-size: 19px;
    text-transform: capitalize;
    display: flex;
    justify-content: center;
    align-items: center;
}
.brown__btn:hover {
    background-color: #fff;
    color: #987D44;
}
.mt__60 {
    margin-top: 60px;
}
.ns-btn {
    cursor: pointer;
}
.product__table {
    color: #282828;
    background-color: #fff;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    border: none;
    box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.16),
        -3px -3px 6px rgba(0, 0, 0, 0.16);
    margin-bottom: 26px;
}
.product__table thead th {
    border-bottom: 1px solid #282828;
    font-size: 20px;
    text-transform: capitalize;
}
.product__table thead td, .product__table thead th {
    border-top: none;
    text-align: center;
}
.product__table tbody tr:not(:last-of-type) {
    border-bottom: 1px solid #282828;
}
.product__media {
    display: flex;
    color: #282828;
    font-size: 18px;
    text-transform: capitalize;
    text-align: justify;
}
.pro_thumb img {
    width: 100px;
    height: 100px;
    margin-inline-end: 15px;
}
.pro__det {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.sm__pro__title a {
    color: #282828;
    font-size: 18px;
}
.desciption {
    font-weight: lighter;
    display: block;
    padding-inline-start: 5px;
    margin-bottom: 9px;
}
.product__table td, .product__table th {
    vertical-align: middle;
    padding: 27px;
    text-align: center;
    border-top: 0;
}
.sm__pro__price {
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
}
.delete__product {
    font-size: 26px;
    cursor: pointer;
}
.number-spinner.dark__bk {
    background-color: #282828;
    color: #987D44;
    margin-inline-end: 0;
    margin-left: auto;
    margin-right: auto;
}
.dark__bk .pl-ns-value {
    background-color: #282828;
    color: #987D44;
    font-size: 18px;
}
.shopping__wrapper {
    display: flex;
    justify-content: space-between;
}
.code_form {
    width: 392px;
}
.code_form .form-group {
    position: relative;
}
.code_form .form-control {
    height: 53px;
    border: 1px solid #987D44;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}
.code_form .apply_btn {
    position: absolute;
    height: 36px;
    width: 138px;
    background-color: #987D44;
    border: 1px solid #987D44;
    color: #282828;
    font-size: 12px;
    text-transform: capitalize;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 9px;
}

.total_title {
    font-size: 24px;
    font-weight: bold;
    color: #987D44;
    margin-bottom: 12px;
}

.pay__details {
    background-color: #fff;
    box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.16),
        -3px -3px 6px rgba(0, 0, 0, 0.16);
    padding: 24px 34px;
    color: #282828;
    font-size: 16px;
    text-transform: capitalize;
    font-weight: 500;
    margin-bottom: 56px;
}
.details__row {
    display: flex;
    justify-content: space-between;
}
.details__row:not(:last-of-type) {
    margin-bottom: 17px;
}

.checkModal .modal-body {
    padding: 65px 62px;
}
.border__b {
    border-bottom: 1px solid #282828;
    padding-bottom: 42px;
    margin-bottom: 56px;
}
.mb__22 {
    margin-bottom: 22px;
}
.font__22 {
    font-size: 22px;
}

/* start search page */
.search__section {
    padding: 109px 0 28px 0;
}
.search__iconl {
    display: block;
    width: 76px;
    height: 76px;
    background-image: url(../img/s.svg);
    margin-bottom: 37px;
    margin-left: auto;
    margin-right: auto;
    background-size: cover;
}
.search__empty {
    text-align: center;
}
.search__empty  p {
    color: #987D44;
    font-size: 24px;
}

/* start checkout page */
.checkout__section {
    padding: 69px 0 75px 0;
}
.mb__20 {
    margin-bottom: 20px;
}
.font__m {
    font-weight: 400;
}
.p_relativel {
    position: relative;
}
.mb__106 {
    margin-bottom: 106px;
}
.date__icon {
    width: 17px;
    height: 17px;
    display: block;
    background-image: url(../img/date.svg);
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    top: 19px;
}
.nice-select.time_select {
    line-height: 46px;
}
.nice-select.time_select:after {
    border: none;
    border-top: 8px solid #282828;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    height: 8px;
    width: 8px;
    transform: rotate(0);
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
    top: 56%;
}
.nice-select.time_select .list {
    width: 100%;
}
.padding_des {
    padding-inline-start: 20px;
    margin-bottom: 47px;
    text-transform: capitalize;
}
.mb__23 {
    margin-bottom: 23px;
}
.address__btn {
    background-color: #987D44;
    border: 1px solid #987D44;
    color: #282828;
    font-size: 17px;
    text-transform: capitalize;
    height: 46px;
    width: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 44px;
}
.address__btn i {
    margin-inline-end: 10px;
}
.address__btn:hover {
    background-color: #fff;
    color: #987D44;
}
.no__address {
    color: #987D44;
    font-size: 24px;
    text-transform: capitalize;
}
.no__address i {
    margin-inline-end: 13px;
}
.addressModal .modal-body {
    padding: 98px 87px 50px 87px;
}
.addressModal .close {
    top: 25px;
    right: 25px;
    position: absolute;
    z-index: 9;
}
.checkout__form .form-control {
    height: 55px;
    border: 1px solid #282828;
    margin-bottom: 22px;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}
.h__47 {
    height: 47px;
}
.mt__34 {
    margin-top: 34px;
}
.order__summary {
    background-color: #fff;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.16);
    padding: 41px 20px;
    color: #282828;
    font-size: 16px;
    text-transform: capitalize;
}
.summary_title {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 27px;
}
.sum__row {
    display: flex;
    justify-content: space-between;
}
.pro_s, .sub_s {
    font-weight: 500;
    margin-bottom: 11px;
}
.sum_col {
    max-width: 200px;
}
.border_bottom {
    border-bottom: 1px solid #987D44;
    padding-bottom: 11px;
    padding-top: 15px;
}
.border_bottom:last-of-type {
    padding-bottom: 59px;
    margin-bottom: 14px;
}
.m__font {
    font-weight: 500;
}
.mb__12 {
    margin-bottom: 12px;
}
.sum__total {
    padding-bottom: 14px;
    border-bottom: 1px solid #282828;
}
.total__box {
    margin: 46px auto 26px auto;
    text-align: center;
}
.md__font {
    font-size: 24px;
    font-weight: 500;
}
.bold__font {
    font-size: 34px;
    font-weight: bold;
}
.mb__26 {
    margin-bottom: 26px;
}
.mb__41 {
    margin-bottom: 41px;
}
.pay__row {
    display: flex;
}
.method__radio {
    cursor: pointer;
    display: flex;
    align-items: center;
    margin-bottom: 0;
    position: relative;
}
.mr__end__65 {
    margin-inline-end: 65px;
}
.v__radio {
    height: 20px;
    width: 20px;
    opacity: 0;
    z-index: 9;
    position: relative;
    cursor: pointer;
    margin-inline-end: 9px;
}
.choose__payment {
    position: absolute;
    border: 2px solid #282828;
    height: 25px;
    width: 25px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}
.v__radio:checked ~ .choose__payment:after {
    display: block;
}
.choose__payment:after {
    content: "";
    position: absolute;
    display: none;
    left: 2px;
    top: 2px;
    width: 17px;
    height: 17px;
    background-color: #282828;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}
.h__50 {
    height: 50px;
}
.order__btn {
    height: 50px;
    font-size: 19px;
    font-weight: bold;
}

/* checkout order received */
.order__received {
    padding: 30px 20px;
    background-color: #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.36);
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
}
.order__received .fa-check-circle {
    display: block;
    font-size: 106px;
    width: fit-content;
    margin-bottom: 56px;
    color: #987D44;
    margin-left: auto;
    margin-right: auto;
}
.order__received .fa-times-circle {
    display: block;
    font-size: 106px;
    width: fit-content;
    margin-bottom: 56px;
    color: #D7373F;
    margin-left: auto;
    margin-right: auto;
}
.thank__title {
    font-size: 25px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 43px;
}
.orders__btn {
    height: 49px;
    font-size: 19px;
    margin-left: auto;
    margin-right: auto;
}
.order__table {
    color: #282828;
    font-size: 18px;
    text-transform: capitalize;
    font-weight: 500;
    margin-bottom: 64px;
}
.order__row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 28px;
}
.error__des {
    font-size: 22px;
    max-width: 300px;
    margin-bottom: 58px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}
.error__border {
    border: 1px solid #987D44;
}

/* start my account orders page */
.main__section {
    background-color: #fff;
    padding: 67px 0 59px 0;
}
.account__list {
    background-color: #fff;
    padding: 20px 0;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.16),
        -3px -3px 6px rgba(0, 0, 0, 0.16);
}
.account__link {
    display: block;
    padding: 20px 31px 17px 31px;
    color: #282828;
    font-size: 16px;
    text-transform: capitalize;
    margin-bottom: 6px;
}
.account__link i {
    margin-inline-end: 12px;
}
.account__link.active_link, .account__link:hover {
    background-color: rgba(40, 40, 40, 0.16);
    color: #987D44;
}
.account__link.active_link .lock__icon,
.pass__link:hover .lock__icon{
    background-image: url(../img/lock-2.svg);
}
.account__link.active_link .logut__icon,
.log__link:hover .logut__icon {
    background-image: url(../img/log-2.svg);
}
.lock__icon {
    width: 14px;
    height: 18px;
    display: inline-block;
    background-image: url(../img/lock.svg);
    background-size: cover;
    background-repeat: no-repeat;
}
.logut__icon {
    width: 16px;
    height: 14px;
    display: inline-block;
    background-image: url(../img/log.svg);
    background-size: cover;
    background-repeat: no-repeat;
}
.orders__lg__table {
    border: none;
    text-transform: capitalize;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.16),
        -3px -3px 6px rgba(0, 0, 0, 0.16);
}
.orders__lg__table thead {
    background-color: #E0CB95;
    font-size: 17px;
    font-weight: 500;
}
.orders__lg__table thead tr th {
    border: none;
    padding: 19px;
    text-align: center;
}

.orders__lg__table tr:last-of-type th,
.orders__lg__table tr:last-of-type td{
    border-bottom: 0;
}
.orders__lg__table td,
.orders__lg__table th {
    vertical-align: middle;
    color: #282828;
}
.orders__lg__table td a{
    color: #282828;
}
.orders__lg__table tbody td,
.orders__lg__table tbody th {
    padding: 27px;
    font-size: 16px;
    font-weight: 400;
}

.orders__empty {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.orders__empty p{
    font-size: 20px;
    margin-bottom: 32px;
}
.shop_btn {
    width: 208px;
    height: 49px;
    border: 1px solid #987D44;
    font-size: 18px;
}

/* start order details page */
.order__details__table {
    background-color: #fff;
    padding: 23px 40px;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    font-size: 18px;
    color: #282828;
    text-transform: capitalize;
    box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.16),
        -3px -3px 6px rgba(0, 0, 0, 0.16);
    margin-bottom: 48px;
}
.font__md {
    font-weight: 500;
}
.table_cell {
    margin-bottom: 24px;
}
.table_cell span {
    display: block;
    margin-bottom: 7px;
}
.pro_title {
    color: #987D44;
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 4px;
}
.brown__card {
    padding: 30px 21px;
    background-color: #93744E;
    display: flex;
    color: #fff;
    margin-bottom: 26px;
}
.brown_thumb {
    width: 88px;
    height: 88px;
    margin-inline-end: 22px;
}
.pr_title, .pr_title a {
    font-size: 16px;
    font-weight: bold;
    color: #fff;
}
.brown_body {
    font-size: 14px;
    text-transform: capitalize;
    padding-top: 14px;
}
.brown_body .qty, .brown_body .pro_price {
    display: block;
}
.date_card {
    background-color: #fff;
    padding: 14px 19px;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    font-size: 16px;
    color: #282828;
    text-transform: capitalize;
    box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.16),
        -3px -3px 6px rgba(0, 0, 0, 0.16);
    margin-bottom: 26px;
}
.mb__8 {
    margin-bottom: 8px;
}
.mb__16 {
    margin-bottom: 16px;
}
.pt__28 {
    padding-top: 28px;
}
.add_info {
    font-size: 14px;
    max-width: 250px;
}
.mb__48 {
    margin-bottom: 48px;
}
.radius__6 {
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
}
.small__btns__wrapper {
    display: flex;
    justify-content: center;
}
.sm__btn {
    height: 49px;
    width: 96px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: capitalize;
    font-size: 18px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}
.sm__btn:hover {
    color: #fff;
    background-color: #987D44;
    border: 1px solid #987D44;
}
.cancel_order {
    border: 1px solid #282828;
    color: #282828;
    margin-inline-end: 16px;
}
.re_order {
    border: 1px solid #987D44;
    background-color: #E4E4E4;
    color: #987D44;
}
.font__25 {
    font-size: 25px;
}
.new__address {
    padding: 22px 19px;
    background-color: #fff;
    border: 1px solid #987D44;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    text-transform: capitalize;
    min-height: 250px;
}
.edit__wrapper {
    display: flex;
    margin-top: 28px;
}
.delete__btn {
    width: 96px;
    height: 46px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: capitalize;
    font-size: 16px;
    font-weight: 500;
    color: #987D44;
    background-color: #E4E4E4;
}
.delete__btn:first-of-type {
    margin-inline-end: 20px;
}
.delete__btn:hover {
    color: #fff;
    background-color: #987D44;
}
.mb__7 {
    margin-bottom: 7px;
}
.radius__0 {
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}
.rotate__45 {
    transform: rotate(15deg);
    -webkit-transform: rotate(15deg);
    -moz-transform: rotate(15deg);
    -ms-transform: rotate(15deg);
    -o-transform: rotate(15deg);
}
.ok__btn {
    border: 0;
    color: #93744E;
    background-color: #E4E4E4;
}
@media(min-width: 576px) {
    .checkModal .modal-dialog {
        max-width: 1200px;
    }
    .addressModal .modal-dialog {
        max-width: 570px;
    }
}

@media(min-width: 992px) {
    .cart__empty {
        width: 33%;
        margin-left: auto;
        margin-right: auto;
    }
    .search__empty {
        width: 50%;
        margin-left: auto;
        margin-right: auto;
        padding: 250px 0 530px 0;
    }
    .order__received {
        width: 46%;
        margin-left: auto;
        margin-right: auto;
        padding: 85px 70px 63px 70px;
        margin: 75px auto 115px auto;
    }
    .orders__empty {
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        margin-top: 80px;
    }
}
@media(max-width: 991px) {
    .footer_title {
        font-size: 18px;
    }
    .footer_des, .footer_link, .address__details{
        font-size: 16px;
    }
    .inner__title {
        font-size: 24px;
    }
    .inner_cover_section {
        height: 200px;
        padding-top: 60px;
    }
    .small_imgs_carousel {
        margin-bottom: 20px;
    }
    .bold_title, .bold_price {
        font-size: 20px;
    }
    .bold_price {
        margin-bottom: 30px;
    }
    .description {
        margin-bottom: 60px;
    }
    .login_form {
        margin-bottom: 30px;
    }
    .product__table, .orders__lg__table {
        display: block;
        width: 100%;
        overflow-x: auto;
    }
    .search__empty {
        padding: 40px 0 100px 0;
    }
}

@media(max-width: 575px) {
    .add_to_cart_wrapper {
        flex-direction: column;
    }
    .add_to_fav, .number-spinner {
        margin-inline-end: 0;
        margin-bottom: 20px;
    }
    .number-spinner {
        width: 208px;
    }
    .pl-ns-value {
        width: 140px;
    }
    .related__wrapper {
        padding: 20px;
    }
    .related_title {
        font-size: 20px;
    }
    .about__title {
        font-size: 22px;
    }
    .privacy_section p{
        font-size: 16px;
    }
    .number-spinner.dark__bk {
        width: 95px;
    }
    .number-spinner.dark__bk .pl-ns-value {
        width: 42px;
    }
    .shopping__wrapper {
        flex-direction: column;
    }
    .code_form {
        width: 100%;
        margin-bottom: 20px;
    }
    .checkModal .modal-body {
        padding: 20px;
    }
    .search__iconl {
        width: 46px;
        height: 46px;
    }
    .search__empty p {
        font-size: 16px;
    }
    .order__received .fa-check-circle,
    .order__received .fa-times-circle{
        font-size: 76px;
    }
    .thank__title{
        font-size: 20px;
    }
    .order__table {
        font-size: 14px;
    }
    .error__des {
        font-size: 16px;
    }
    .total__wrapper {
        margin-top: 30px;
    }
    .table_cell {
        text-align: center;
    }
    .confirmModal .modal-body {
        padding: 60px 30px;
    }
}

@media(max-width: 767px) {
    .account__list {
        margin-bottom: 30px;
    }
}

.search__form {
    width: 200px;
}
.search__form .input__group {
    width: 200px;
    height: 41px;
    position: relative;
}

.search__input {
    height: 41px;
    width: 200px;
    background-color: transparent;
    border: 1px solid #987D44;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    padding-inline-start: 20px;
    position: absolute;
    top: 0;
    bottom: 0;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}
.search__form .input__group:hover .search__input {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
    transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

.search__input {
    left: 0;
    -webkit-transform-origin: left;
    transform-origin: left;
}
.search__input:focus {
    background-color: transparent;
    outline: none;
}
.search__btn {
    background-color: transparent;
    border: none;
    z-index: 3;
    position: absolute;
    top: 10px;
}

.mobile__search {
    display: none;
}

@media(max-width: 991px) {
    .search__form {
        display: none;
    }
    .mobile__search {
        display: inline-block;
    }
    .category_link{
        display: block;
    }

}

.mobile_search_form .form-group {
    position: relative;
}
.searchModal .mobile_search_btn{
    position: absolute;
    top: 10px;
    background-color: transparent;
    border: none;
    color: #93744E;
}
.searchModal .modal-content {
    background-color: rgba(0, 0, 0, 0.7);
}
.searchModal .close {
    position: absolute;
    top: 30px;
    right: 30px;
    color: #fff;
    opacity: 1;
}
.mobile__search__input {
    height: 41px;
    background-color: transparent;
    border: 1px solid #987D44;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    color: #fff;
    padding-inline-start: 40px;
}
.mobile__search__input::placeholder {
    color: #fff;
}

.cart_count {
    display: block;
    width: 15px;
    height: 15px;
    background: #987D44;
    color: #fff;
    position: absolute;
    top: -2px;
    text-align: center;
    border-radius: 50%;
    z-index: 10;
    font-size: 10px;
}
.modal-content{
    background-color: #987D44;
    border-radius: 5px;
    color: #050503;
}
.modal-body{
    padding: 30px 50px;
    font-size: 16px;
}
.modal-header{
    display: block;
    padding: 10px 50px;
    text-align: center;
    border: 0;
}
.modal-title{
    width: 100%;
    font-size: 32px;
    font-weight: 500;
    padding: 50px 0 0;
}
.modal-title>i{
    font-size: 80px;
    margin-bottom: 30px;
}
.modal-header p{
    margin: 10px 0 0;
}
.modal-header .close{
    outline: 0;
    position: absolute;
    top: 20px;
    right: 20px;
    color: #000000;
    opacity: 1;
}

.btn-alt {
    background: #050503;
    color: #987D44 !important;
}

.show_filter{
    display: none;
}

@media (max-width: 576px){
    .filter{
        display: none;
    }
    .show_filter{
        margin-bottom: 10px;
        display: block;
    }
}