:root {
    /* colors */
    --black: #000;
    --white: #fff;
    --font-family1: 'El Hidrant Swash';
    --font-family2: 'El Hidrant';
    --font-family3: 'Baton Turbo';
}

navbar-collapse collapse show * {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    line-height: 1.22;
}

p {
    line-height: 1.3;
    margin-bottom: 0;
}

ul,
ol,
li {
    margin: 0;
    padding: 0;
    list-style: none;
}

a {
    text-decoration: none;
    transition: all 0.4s ease-in-out;
}

a:hover {
    text-decoration: none;
    transition: all 0.4s ease-in-out;
}

img {
    width: 100%;
}

.social-item.hm-icon img {
    max-width: 30px !important;
    max-height: 30px !important;
    aspect-ratio: 1/1;
    object-fit: contain;
}

.form-section .row {
    align-items: baseline;
}

/* Common Classes */
.btn-clr {
    padding: 15px 40px;
    font: normal normal 400 16px/1.6 var(--font-family3);
    color: var(--white);
    background-color: #563835;
    border: 1px solid transparent;
    display: inline-block;
    transition: all ease 0.6s;
}

.btn-clr:hover {
    background-color: #563835d6;
    color: #fff;
}

.btn-solid {
    padding: 15px 40px;
    font: normal normal 400 16px/1.6 var(--font-family3);
    color: var(--white);
    border: 1px solid var(--white);
    display: inline-block;
    transition: all ease 0.6s;
}

.btn-solid:hover {}

.btn-clr.second-clr {
    background-color: #7B604B;
    color: #fff;
}

.herb-icon {
    max-width: 98px;
    height: 26px;
    margin-bottom: 30px;
}

/* Common Classes END  */

/* Typography */
.main-heading {
    font: normal normal 400 85px/1.2 var(--font-family2);
    text-transform: capitalize;
}

.common-h2 {
    font: normal normal 400 42px/1.2 var(--font-family2);
    text-transform: capitalize;
}

/* Typography END  */
/* HEADER */
.header {
    position: absolute;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    transition: all 0.6s ease;
}

.stickyHeader {
    position: fixed;
    background-color: transparent;
}

header .navbar-brand img {
    max-width: 131px;
    max-height: 131px;
    transition: all 0.6s ease;
}

header.stickyHeader .navbar-brand img {
    max-width: 100px;
    max-height: 100px;
}


header .navbar-toggler {
    border: none;
}

header .navbar-toggler:focus {
    border: none;
    box-shadow: none;
}

/* .home .navbar-toggler span {
    color: var(--white);
} */

header .container {
    position: relative;
}

header .navbar-collapse {
    right: 24px;
    left: auto;
    top: 65%;
}

header .navbar-collapse {
    position: absolute;
    background: #dde5dc;
    border-radius: 10px;
    width: 135px;
    max-width: 250px;

}

header .navbar-collapse #menu-header-menu {
    padding: 20px;
    margin: 0;
}

header .navbar-collapse #menu-header-menu li a {
    color: #000 !important;
    font: normal normal 500 16px / 1.6 var(--font-family3);
    text-transform: capitalize;
}

header .navbar-collapse #menu-header-menu li a.active {
    color: #563835 !important;
}

/* HEADER END */

/* HERO */

/* Age Section */
.age-section {
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.age-section-box {
    border-radius: 39px;
    padding: 57px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: #4A5346;
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.age-section-box h6 {
    color: #D1D0C3;
    font: normal normal 15px/1.6 var(--font-family3);
    margin-bottom: 15px;
}

.age-section-box h5 {
    color: #FCFCF8;
    font: normal normal 15px/1.2 var(--font-family3);
    margin-bottom: 21px;
}

.age-section-box p {
    color: #D2CFC6;
    font: normal normal 17px/1.2 var(--font-family3);
    margin-bottom: 20px;
}

/*Age Section End */
.hero {
    position: relative;
    padding: 180px 0 60px;
    background-image: url(../images/hero-bg.png);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    height: 100vh;
}

.hero-background-video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
}

.page-template-login .hero-background-video {
    position: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.heading-text {
    position: relative;
    z-index: 1;
}

.hero h1 {
    text-align: center;
    color: var(--white);

}

.hero p {
    color: var(--white);
    font: normal normal 400 16px/1.6 var(--font-family3);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 22px;
}

.hero .text-img {
    max-width: 592px;
    margin: 0 auto;
    display: block;
}

.hero-footer {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.hero-footer p {
    color: var(--white);
    font: normal normal 400 16px/1.6 var(--font-family2);
    margin-bottom: 10px;
}

.hero-footer a {
    color: var(--white);
    font: normal normal 400 24px/1.6 var(--font-family2);
}

.scroll-prompt {
    position: absolute;
    z-index: 999;
    bottom: 0px;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;

    .scroll-prompt-arrow-container {
        position: absolute;
        top: 0;
        left: 32%;
        animation-name: bounce;
        animation-duration: 1.5s;
        animation-iteration-count: infinite;
    }

    .scroll-prompt-arrow {
        animation-name: opacity;
        animation-duration: 1.5s;
        animation-iteration-count: infinite;
    }

    .scroll-prompt-arrow:last-child {
        animation-direction: reverse;
        margin-top: -6px;
    }

    .scroll-prompt-arrow>div {
        width: 20px;
        height: 20px;
        border-right: 2px solid #bebebe;
        border-bottom: 2px solid #bebebe;
        transform: rotate(45deg) translateZ(1px);
    }
}

@keyframes opacity {
    0% {
        opacity: 0;
    }

    10% {
        opacity: 0.1;
    }

    20% {
        opacity: 0.2;
    }

    30% {
        opacity: 0.3;
    }

    40% {
        opacity: 0.4;
    }

    50% {
        opacity: 0.5;
    }

    60% {
        opacity: 0.6;
    }

    70% {
        opacity: 0.7;
    }

    80% {
        opacity: 0.8;
    }

    90% {
        opacity: 0.9;
    }

    100% {
        opacity: 1;
    }
}

@keyframes bounce {
    0% {
        transform: translateY(0);
    }

    10% {
        transform: translateY(3px);
    }

    20% {
        transform: translateY(6px);
    }

    30% {
        transform: translateY(9px);
    }

    40% {
        transform: translateY(12px);
    }

    50% {
        transform: translateY(15px);
    }

    60% {
        transform: translateY(18px);
    }

    70% {
        transform: translateY(21px);
    }

    80% {
        transform: translateY(24px);
    }

    90% {
        transform: translateY(27px);
    }

    100% {
        transform: translateY(30px);
    }
}

/* HERO END */

/* SECTION */
.fixed-image {
    padding: 250px 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/* SECTION END */

/* lowel-herebs-features */
.lowel-herebs-features {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 55px 0;

}

.lowel-herebs-features .heading-text {
    text-align: center;
}

.lowel-herebs-features .heading-text h2 {
    margin-bottom: 16px;
}

.lowel-herebs-features .heading-text p {
    color: #666666;
    font: normal normal 400 16px/1.6 var(--font-family3);
    max-width: 490px;
    margin: 0 auto 60px;
}

.lowel-herebs-features-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 16px;
    padding: 0 30px;
}

.lowel-herebs-features-item img {
    max-width: 68px;
    max-height: 55px;
}

.lowel-herebs-features-item h4 {
    color: var(--black);
    font: normal normal 400 16px/1.6 var(--font-family2);
    text-transform: uppercase;
}

.lowel-herebs-features-item p {
    color: #7C7C7C;
    font: normal normal 400 16px/1.6 var(--font-family3);
    text-align: center;
}

/* lowel-herebs-features END */

/* image content css start */
.mt-100 {
    margin-top: 100px;
}

.mb-100 {
    margin-bottom: 100px;
}

.ic-image {
    max-width: 891px;
    max-height: 627px;
}

.image-content-box {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    gap: 15px;
}

.ic-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    gap: 20px;
}

.image-content-box .ic-content .herb-icon {
    margin-bottom: 0;
}

.image-content-box .ic-content h2 {
    color: #0C0C0C;
    max-width: 400px;
    margin: 0 auto;
}

.image-content-box h2 span {
    color: #563835;
}

.image-content-box p {
    color: #4C4C4C;
    font: normal normal 400 16px/1.6 var(--font-family3);
}

.image-content-box figure.ic-image {
    position: absolute;
    top: 0;
    width: calc(50% - 50px);
    height: 100%;
}

.image-content-box.ic-left-img figure.ic-image {
    left: 50px;
}

.image-content-box.ic-right-img figure.ic-image {
    right: 50px;
}

.image-content-box figure.ic-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* FOOTER */
footer {
    padding: 60px 0;
}

.first-col {
    padding-left: 50px;
}

.first-col img {
    margin-bottom: 15px;
    max-width: 88px;
    max-height: 88px;
}

.first-col p {
    color: var(--white);
    font: normal normal 400 16px/1.6 var(--font-family3);
}

footer h4 {
    color: var(--white);
    font: normal normal 400 18px/1.2 var(--font-family2);
    margin-bottom: 30px;
    text-transform: capitalize;
}

footer .footer-1-menu-class li {
    margin-bottom: 15px;
}

footer .footer-1-menu-class li:last-child {
    margin-bottom: 0;
}

footer .footer-1-menu-class li a {
    color: var(--white);
    font: normal normal 400 16px/1.6 var(--font-family3);
    text-transform: capitalize;
}

.third-col .follow-accounts a {
    width: 45px;
    height: 45px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7B604B;
    font-size: 24px;
}

/* FOOTER END */
/* catalogue-page */
.navbar-toggler span {
    color: var(--black);
    font-size: 24px;
}

.product-category {
    padding: 200px 0 60px;
}

.side-bar-category {
    border: 1px solid #B8B8B8;
    border-radius: 4px;
}

.side-bar-category .form-check {
    padding: 19px;
    border-bottom: 1px solid #B8B8B8;
}

.side-bar-category .form-check:last-child {
    border: 0;
}

.side-bar-category h4 {
    padding: 19px;
    border-bottom: 1px solid #B8B8B8;
    background-color: #E9E9E9;
    color: #302E2C;
    font: normal normal 400 18px/1.2 var(--font-family3)
}

/* Custom Checkbox Styling */
.custom-checkbox {
    display: none;
}

.custom-checkbox .form-check-label {
    color: #707070;
    font: normal normal 400 16px/1.6 var(--font-family3);
}

.custom-checkbox+.form-check-label::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 10px;
    vertical-align: middle;
    background-color: transparent;
    border: 1px solid #A6A6A6;
    border-radius: 3px;
    transition: background-color 0.3s, border-color 0.3s;
}

.custom-checkbox:checked+.form-check-label::before {
    background-color: #7B604B;
    border-color: #7B604B;
    background-image: url('../images/tick.svg');
    background-size: 20px;
    background-position: center;
    background-repeat: no-repeat;
}

.form-check-label {
    cursor: pointer;
    user-select: none;
    color: #707070;
    align-items: flex-start;
    display: flex;

}

.form-check {
    margin-bottom: 10px;
}

.listing-items h2 {
    color: #6E7650;
    font: normal normal 400 42px/1.2 var(--font-family2);
    text-transform: capitalize;
    margin-bottom: 40px;
}

.listing-item {
    margin-bottom: 90px;
}

.listing-item-img img {
    max-width: 384px;
    max-height: 341px;
    margin-bottom: 26px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: auto;
    min-width: 300px;
    min-height: 300px;
}

.listing-item-img ul {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 14px;
    color: #7B604B;
}

.listing-item-img ul li {
    position: relative;
    color: #7B604B;
    font: normal normal bold 16px/20px var(--font-family3);
    text-transform: uppercase;
}

.listing-item-img ul li::after {
    content: '/';
    position: absolute;
    padding-left: 7px;
}

.listing-item-img ul li:last-child::after {
    display: none;
}

.listing-item-img p {
    color: #7B604B;
    font: normal normal bold 14px/20px var(--font-family3);
    text-transform: capitalize;
}

.listing-item {
    display: flex;
    align-items: center;
    gap: 30px;
    padding-left: 45px;
    border-left: 2px solid #7C4D1E;
    margin-left: 10px;
}

.listing-item-text h5 {
    color: #302E2C;
    font: normal normal bold 18px/1.6 var(--font-family3);
    text-transform: uppercase;
    margin-bottom: 13px;
}

.listing-item-text h6 {
    color: #302E2C;
    font: normal normal bold 16px/1.6 var(--font-family3);
    text-transform: capitalize;
    margin-bottom: 13px;
}

.listing-item-text p {
    color: #666666;
    font: normal normal bold 16px/1.6 var(--font-family3);
    margin-bottom: 22px;
}

.listing-item-text h4 {
    color: #121212;
    font: normal normal bold 20px/1.6 var(--font-family3);
    margin-bottom: 22px;
}

.listing-item-text .fs-16 {
    font-size: 16px;
}

.border-btm-dotted {
    padding-bottom: 15px;
    border-bottom: 3px dotted #7C4D1E;
}

.listing-item-text .text-width {
    max-width: 400px;
    font-size: 20px;
}

.listing-item-text h6:last-child {}

/* catalogue-page END */
.banner-top {}

/* Privacy and term and condition */
.inner-pages-hero {
    padding: 160px 0 80px;
    text-align: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-repeat: no-repeat;
}

.inner-pages-hero h2 {
    color: #0C0C0C;
    font: normal normal 400 60px/1.2 var(--font-family2);
}

.content-policy {
    padding: 70px 0;
}

.content-policy h4 {
    color: #111111;
    font: normal normal 500 42px/1.2 var(--font-family3);
    margin-bottom: 30px;
}

.content-policy h5 {
    color: #111111;
    font: normal normal 500 22px/1.2 var(--font-family3);
    margin-bottom: 20px;
}

.content-policy p {
    color: #666666;
    font: normal normal 400 16px/1.6 var(--font-family3);
    margin-bottom: 20px;
}

.content-policy p:last-child {
    margin-bottom: 30px;
}

.post,
.page {
    margin: 0;
    padding: 0;
}

/* Login pg */
.hidden {
    display: none;
}

.form-div input.text-input {
    padding: 16px 20px;
    min-width: 600px;
}

.form-div input.btn-clr {
    padding: 15px 40px;
    font: normal normal 400 16px/1.6 var(--font-family3);
    color: var(--white);
    background-color: #563835;
    border: 1px solid transparent;
    display: inline-block;
    transition: all ease 0.6s;
}

.login-pg-logo {
    margin-bottom: 20px;
}

.follow-page .form-section {
    border-top: 10px solid #563835;
    padding: 60px 50px;
    max-width: 1100px;
    margin: 0 auto;
}

.form-section .heading-text {
    text-align: center;
}

.listing-items {
    padding: 10px 25px;
}

.form-section h4 {
    color: #302E2C;
    font: normal normal 400 39px/1.2 var(--font-family2);
    text-transform: capitalize;
    text-align: center;
}

.form-section h2 {
    margin-bottom: 24px;
    color: #563835;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
}

.social-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
}

/*.social-item .hm-icon img {*/
/*    max-width: 25px;*/
/*    max-height: 25px;*/
/*    object-fit: contain;*/
/*}*/
.social-item img {
    max-width: 60px;
    max-height: 60px;
    object-fit: contain;
}

.social-item p {
    color: #302E2C;
    font: normal normal 400 20px/1.2 var(--font-family3);
    text-transform: capitalize;
    text-align: center;
}

.form-section label {
    color: #302E2C;
    font: normal normal 500 20px/1.2 var(--font-family3);
    text-transform: capitalize;
    margin-bottom: 10px;
    width: 100%;
}

.form-section span input.wpcf7-form-control {
    padding: 16px 20px;
    /* min-width: 798px; */
    width: 100%;
}

.form-section .class-button-submit input.wpcf7-form-control {
    padding: 15px 40px;
    font: normal normal 400 16px/1.6 var(--font-family3);
    color: var(--white);
    background-color: #563835;
    border: 1px solid transparent;
    display: inline-block;
    transition: all ease 0.6s;
    width: 100%;
}

.form-section p {
    color: #302E2C;
    font: normal normal 400 20px/1.2 var(--font-family3);
    text-transform: capitalize;
    margin: 0;
}

.class-passing {
    padding: 0 25px;
}

.entry-header,
.woocommerce-products-header {
    display: none;
}

.status-publish,
.content-area {
    padding-top: 150px;
    padding-bottom: 60px;
}

.div-user {
    border: 1px solid #ACACAC;
    border-radius: 10px;
    padding: 30px 0px;
}

.user-dash {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.user-dash nav {
    width: 29%;
}

.user-dash .woocommerce-MyAccount-content {
    width: 67%;
    border: 1px solid #acacac;
    border-radius: 10px;
    padding: 20px;
}

.my-account-navigation li a {
    font: normal normal 400 16px/1.2 var(--font-family3);
    color: #000;
    padding: 18px;
    display: inline-block;
    width: 100%;
    position: relative;
    /* padding-left: 35px; */
}

/* .my-account-navigation li a::after {
    content: "\f2bd";
    font-family: "Font Awesome 6 Free";
    position: absolute;
    left: 10px;
    top:5px;
    font-size:20px;
} */
/* form.woocommerce-EditAccountForm.edit-account {
    border: 1px solid #acacac;
    border-radius: 10px;
    padding: 20px;
} */
.avwp-av p {
    margin-bottom: 20px;
}
a.shipping-calculator-button {
    color: #000;
}
.avwp-av button.yes {
    margin: 0 !important;
    margin-right: 20px !important;
    padding: 10px 20px !important;
}

.avwp-av button.no {
    margin: 0 !important;
    padding: 10px 20px !important;
}

.my-account-navigation li.is-active a {
    background-color: #7B604B;
    color: #fff;
    font-weight: 500;
}

.woocommerce-MyAccount-content p {
    font: normal normal 400 20px/1.2 var(--font-family3);
    color: #000;
    margin-bottom: 20px;
}

.woocommerce-MyAccount-content p a {
    color: #000;
    text-decoration: underline;
}

.client-dtl {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-left: 10px;
    margin-bottom: 30px;
}

.client-img img {
    max-width: 65px;
    max-height: 65px;
    object-fit: contain;
}

.client-txt h6 {
    font: normal normal 400 20px/1.2 var(--font-family3);
    color: #000;
}

/* cart_totals  */
.cart_totals h2 {
    margin-bottom: 20px;
}

.cart-collaterals .wc-proceed-to-checkout .checkout-button.button {
    padding: 15px 40px;
    font: normal normal 400 16px/1.6 var(--font-family3);
    color: var(--white);
    background-color: #7B604B;
    border: 1px solid transparent;
    display: block;
    transition: all ease 0.6s;
}

.woocommerce-cart-form .coupon .input-text,
.woocommerce-cart-form button {
    padding: 15px 40px;
    font: normal normal 400 16px/1.6 var(--font-family3);
    color: var(--white);
    background-color: #7B604B;
    border: 1px solid transparent;
    display: inline-block;
    transition: all ease 0.6s;
}

.woocommerce-cart-form .coupon button {
    padding: 15px 40px;
    font: normal normal 400 16px/1.6 var(--font-family3);
    color: var(--white);
    background-color: #563835;
    border: 1px solid transparent;
    display: inline-block;
    transition: all ease 0.6s;
}


#customer_details h3 {
    margin-bottom: 20px;
}

#customer_details label {
    font: normal normal 400 16px/1.6 var(--font-family3);
    color: #000;
    margin-bottom: 5px;
}

#customer_details input {
    padding: 10px;
}





/* =======28-06-2024=====================/ */
.follow-page .listing-items {
    padding: 30px 25px;
    border: 1px solid #B6B6B6;
}

/* .form-section h4 {
    padding: 25px 0px;
} */

.form-section .social-icon p {
    color: #111111;
    padding-top: 20px;
}

.form-section span input.wpcf7-form-control {

    margin-top: 15px;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {

    display: inline;
    position: absolute;
    color: #302E2C;
    font-size: 19px;
    max-width: 180px;

}

.woocommerce ul.products li.product .price {
    display: flex;
    font-weight: 400;
    margin-top: 24px;
    justify-content: flex-end;
    position: relative;
    font-size: 16px;
    color: #666666;
}

.woocommerce ul.products li.product .button {
    padding: 15px 20px;
}

.woocommerce ul.products li.product .ajax_add_to_cart {
    background-color: #7B604B;
    color: #fff;
    margin-right: 5px;
    border-radius: unset;
}

.woocommerce ul.products li.product .wc-buy-now-btn {
    border-radius: unset;
    background: transparent;
    border: 1px solid #7B604B;
    color: #7B604B;
}

.woocommerce .woocommerce-ordering select {

    max-width: 150px;
    border: none;
    background: transparent;
}

.woocommerce .woocommerce-ordering select option {
    appearance: none;
    padding: 10px;
    max-width: 300px;
    background-color: #7B604B;
    color: #fff;
}

.woocommerce div.product .product_title {
    padding: 10px 0px;
}

.woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product p.price,
.woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product span.price {
    color: #666666;
    line-height: 25px;
}

.woocommerce-product-details__short-description p {
    line-height: 40px;
}

.woocommerce .quantity .qty {
    border: 1px solid #000;
    color: #000;
    min-height: 45px;
}

.woocommerce-grouped-product-list-item__label a {
    color: #000;
}

.cart .single_add_to_cart_button {
    background: #7B604B !important;
    padding: 15px 20px !important;
    margin-right: 10px !important;
}

.cart .wc-buy-now-btn {
    background: transparent !important;
    padding: 15px 20px !important;
    margin-right: 10px !important;
    color: #7B604B !important;
    border: 1px solid #7B604B !important;
}

.woocommerce div.product {
    margin-bottom: 0;
    position: relative;
    padding: 20px 0px;
 
}
/* .woocommerce div.product div.images.woocommerce-product-gallery {
    position: relative;
    height: 100%;
}
.woocommerce div.product div.images.woocommerce-product-gallery .slick-slider{
    height: 100%;
} */
/* .woocommerce div.product div.images img {
    height: 100%;
} */
.apbd-nmca-opener-container.apbd-nmca-drawer .apbd-nmca-drawer-item-body .apbd-nmca-drawer-item-quantity[data-v-0a9ba5e1],
.apbd-nmca-opener-container.apbd-nmca-drawer .apbd-nmca-drawer-item-body .apbd-nmca-drawer-footer[data-v-0a9ba5e1] {
    background-color: #7b604b !important;
}

.apbd-nmca-opener-container.apbd-nmca-drawer .apbd-nmca-drawer-item-body .apbd-nmca-drawer-item-icon[data-v-0a9ba5e1] {
    color: #7b604b !important;
}

/* .page-id-10 .avwp-av h2  {
    color: #fff;
    font: normal 46px / 1.2 var(--font-family3);
    padding: 20px 0px;
    font-weight: 600;
}

.page-id-10   .avwp-av p {
    color: #D2CFC6;
    font: normal normal 17px / 1.2 var(--font-family3);
    margin-bottom: 20px;
    line-height: 27px;
}
.page-id-10 .avwp-av button.yes {
    text-transform: uppercase;
    line-height: 22px;
    font-size: 16px;
    max-width: 200px;
    background-color: #563835;

}
.page-id-10  .avwp-av button.no{
    background: transparent;
    text-transform: uppercase;
    border: 1px solid #fff;
    max-width: 200px;
    line-height: 22px;
    font-size: 16px;
}

.page-id-10  main {
    display: block;
    height: 100vh;
    overflow: hidden;
}
.page-id-10  .avwp-av {
    border-radius: 39px;
    padding: 64px 50px;
    max-width: 700px;
    width: 100%;
    background-color: #4A5346;
    margin: 0 auto;
    text-align: center;
    z-index: 99999;
    height: auto;
    box-shadow: 0 0 15px #000;
    position: absolute;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%);
}
.page-id-10  .avwp-av-overlay {
    background-image: url(http://49.249.236.30:3131/daniel/wp-content/uploads/2024/06/Age.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    box-sizing: border-box;
} */
/*  */

.woocommerce ul.products li.product .button {
    margin-top: 2em;
    border-radius: 3px;
}

.woocommerce-pagination .page-numbers li .page-numbers {
    border-radius: unset;
    background: transparent;
    border: 1px solid #7B604B;
    color: #7B604B;
}

.woocommerce-pagination .page-numbers li .page-numbers.current {
    background-color: #7B604B;
    color: #fff;
}

.woocommerce nav.woocommerce-pagination ul li a:focus,
.woocommerce nav.woocommerce-pagination ul li a:hover,
.woocommerce nav.woocommerce-pagination ul li span.current {
    background-color: #7B604B;
    color: #fff;
}

.woocommerce .woocommerce-ordering select {
    max-width: 180px;
}

.woocommerce .woocommerce-ordering select {
    max-width: 190px;
    white-space: nowrap;
    overflow: hidden !important;
    text-overflow: ellipsis;
}

.woocommerce-ordering,
a.button.product_type_grouped:hover,
a.button.product_type_external {
    border-radius: unset;
    background: transparent;
    border: 1px solid #7B604B;
    color: #7B604B;
}

.woocommerce-ordering {
    padding: 5px 10px;
    border-color: #898989;
}

.woocommerce .woocommerce-ordering select:focus-visible {
    outline: none;
    border: none;
    box-shadow: none;
}

a.button.product_type_grouped {
    border: 1px solid transparent;
    background-color: #7B604B;
    color: #fff;
}

a.button.product_type_external:hover {
    background-color: #7B604B;
    color: #fff;
    border: 1px solid transparent;
}

.woocommerce-MyAccount-content label {
    font: normal normal 400 20px/1.6 var(--font-family3);
    color: #000;
}

.woocommerce-MyAccount-content input {
    font: normal normal 400 14px/1.6 var(--font-family3);
    color: #000;
    padding: 12px 16px;
    margin-right: 5px;
}

.woocommerce-MyAccount-content input::placeholder {
    color: #7A7A7A;
    font: normal normal 400 14px/1.6 var(--font-family3);
}

.woocommerce-MyAccount-content span em {
    margin-top: 5px;
}

.woocommerce-tabs.wc-tabs-wrapper {
    display: none;
}

.related.products {
    padding: 50px 0;
}

.related.products h2 {
    text-align: center;
    margin-bottom: 60px;
    font: normal normal 400 42px/1.2 var(--font-family2);
    text-transform: capitalize;
}

.summary.entry-summary .product_title {
    font: normal normal 400 38px/1.2 var(--font-family2);
}

.woocommerce-variation-description p {
    color: #666666;
    font: normal normal 400 18px/1.6 var(--font-family3);
}

.woocommerce-variation-price {
    margin-bottom: 20px;
}

.woocommerce-variation-add-to-cart.variations_button {
    display: flex;
    align-items: center;
    gap: 20px;
}

.woocommerce .cart-collaterals,
.woocommerce-page .cart-collaterals {
    width: 100%;
}

.woocommerce .cart-collaterals .cart_totals,
.woocommerce-page .cart-collaterals .cart_totals {
    width: 100%;
}

.woocommerce-cart-form .coupon .input-text,
.woocommerce-cart-form button {
    border-radius: unset;
    background: transparent;
    border: 1px solid #7B604B;
    color: #7B604B;
    padding: 15px 20px;
}

.cart-pg h4 {
    color: #111111;
    font: normal normal 500 30px/1.6 var(--font-family3);
    margin-bottom: 30px;
    text-transform: capitalize;
}

.left-cart {
    border: 1px solid #ACACAC;
    padding: 20px;
    border-radius: 10px;
}

.right-cart {
    background-color: #F0F0F0;
    border-radius: 15px;
    padding: 20px;
    height: 100%;
}


.left-cart .coupon .input-text {
    border: 1px solid #ACACAC;
    padding: 20px;
}

.left-cart .coupon .input-text::placeholder {
    color: 000;
    font: normal normal 400 16px/1.6 var(--font-family3);
}

.left-cart .button {
    padding: 15px 40px;
    font: normal normal 400 16px/1.6 var(--font-family3);
    color: var(--white);
    background-color: #563835;
    border: 1px solid transparent;
    display: inline-block;
    transition: all ease 0.6s;
}


.woocommerce-cart table.cart td.actions .coupon .input-text {
    min-width: 200px;
    min-height: 58px;
}

.actions button.button,
#place_order {
    padding: 15px 40px !important;
    font: normal normal 400 16px/1.6 var(--font-family3) !important;
    color: var(--white) !important;
    background-color: #563835 !important;
    border: 1px solid transparent !important;
    display: inline-block;
    transition: all ease 0.6s;
    opacity: unset;
}

.woocommerce-info {
    border-color: #563835;
}

.woocommerce-info::before {
    color: #563835;
}

.showcoupon {
    color: #000;
    text-decoration: underline;
}

.wpcf7-response-output {
    color: #fff;
}

.woocommerce-privacy-policy-text {
    margin-bottom: 20px;
}

#customer_details label {
    color: #302E2C;
    font: normal normal 500 14px / 1.2 var(--font-family3);
    text-transform: capitalize;
    margin-bottom: 10px;
}

.login-section {
    height: 100% !important;
    min-height: 100vh !important;
}

.showError {
    /* position: absolute !important; 
     top: 100px !important;
    left: 0 !important; 
    transform: translate(0, 0) !important;
    background: transparent !important;
    border: none !important;
    z-index: 9999;*/

    border-bottom: 2px solid red !important;
}

.showError::placeholder {
    color: red !important;
}

/* .showError p {
    font-size: 16px !important;
    font-weight: 600;
    color: red;
    padding: 2px 10px;
    margin-bottom: 10px;
    background: #fff;
    text-align: left;
    border-left: 5px solid red;
} */

.showSuccess {
    /* position: absolute !important;
    top: 50px !important;
    left: 0 !important; 
    transform: translate(0, 0) !important;
    background: transparent !important;
    border: none !important;
    z-index: 99999; */
    border-bottom: 2px solid red !important;
}

/* .showSuccess p {
    font-size: 16px !important;
    font-weight: 600;
    color: green;
    padding: 2px 10px;
    margin-bottom: 10px;
    background: #fff;
    text-align: left;
    border-left: 5px solid green;
} */

.avwp-av {
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    background: #4A5346;
    border-radius: 39px;
    color: #fff;
    width: 100%;
    max-width: 550px;
}

.yes,
.no {
    padding: 15px 40px !important;
    font: normal normal 400 16px/1.6 var(--font-family3) !important;
    color: var(--white) !important;
    background-color: #563835 !important;
    border: 1px solid transparent !important;
    display: inline-block !important;
    transition: all ease 0.6s !important;
    max-width: 150px;
}

.no {
    background: transparent !important;
    border: 1px solid #fff !important;
}

.login-pg-logo {
    position: relative;
    z-index: 1;
}

.logi-pg-form {
    position: relative;
    z-index: 1;
}

.showError {
    z-index: 999;
}

img.hero-background-image {
    position: absolute;
    offset: 0;
    height: 100%;
    width: 100%;
}

.logi-pg-form input {
    min-width: 200px;
}

#usecode {
    display: flex;
    align-items: center;
    gap: 20px;
}

#usecode .btn-clr {
    padding: 15px 20px;
}

.slick-slide {
    height: auto !important;
}

/*  */
#add_payment_method table.cart .product-thumbnail,
.woocommerce-cart table.cart .product-thumbnail,
.woocommerce-checkout table.cart .product-thumbnail {
    min-width: 89px;
}

#add_payment_method table.cart img,
.woocommerce-cart table.cart img,
.woocommerce-checkout table.cart img {
    width: 70px;
}

.cart-collaterals .wc-proceed-to-checkout .checkout-button.button:hover {
    background-color: #7b604bad;
}

.page-template-catalogue main {
    background-color: #E9E5DD;
}

.wpcf7-response-output {
    color: #000;
}

.register-form h4 {
    color: #0C0C0C;
    font: normal normal 400 60px/1.2 var(--font-family2);
    margin-bottom: 30px;
}

#passwordField label {
    color: #302E2C;
    font: normal normal 500 20px / 1.2 var(--font-family3);
    text-transform: capitalize;
    margin-bottom: 10px;
    text-align: start;
    width: 100%;
}

#passwordField input {
    padding: 16px 20px;
    width: 100%;
    background-color: #fff;
}

#passwordField input:focus {
    box-shadow: none;
    outline: none;
}

#joinWaitlistButton {
    padding: 15px 40px;
    font: normal normal 400 16px/1.6 var(--font-family3);
    color: var(--white);
    background-color: #563835;
    border: 1px solid transparent;
    display: inline-block;
    transition: all ease 0.6s;
}

div#join-waitlist {
    max-width: 800px;
    margin: 0 auto;
}

main#main {
    padding-top: 20px !important;
}
.product-template-default main#main {
    padding-top: 20px !important;
    position: relative;
    display: flex;
    flex-direction: column;
}

/*store plugin css */
div#asl-storelocator .asl-panel-inner .top-title.Num_of_store {
    display: none !important;
}

#asl-storelocator .sl-main-cont .inside.search_filter label {
    color: #333 !important;
}

#asl-storelocator .sl-main-cont .inside.search_filter button.span-geo {
    background-color: #333 !important;
}

#asl-storelocator .asl-panel-inner a {
    background-color: #333 !important;
    border-color: #333 !important;
}

.asl-panel-inner .sl-addr-sec .sl-addr i {
    color: #333 !important;
}

.asl-map .agile-modal-dialog .agile-modal-content h5 {
    color: #333 !important;
}

.asl-map .agile-modal-dialog .agile-modal-content button#asl-btn-geolocation {
    background-color: #333 !important;
}

.entry-content #asl-storelocator.asl-cont .sl-main-cont .asl-panel-inner .sl-main-cont-box ul.sl-list li.sl-item .sl-addr-sec .addr-loc li.sl-addr i.icon-location-1 {
    color: #333 !important;
}

.infoBox h3 {
    color: #333 !important;
}

.infoBox .asl-buttons.asl-btn-full a {
    background-color: #333 !important;
}

#agile-modal-direction .agile-modal-content h4 {
    color: #333 !important;
}

#agile-modal-direction .agile-modal-content button.btn.btn-default.btn-submit {
    background-color: #333 !important;
}

#asl-storelocator .agile-modal .sl-form-group .checkbox-inline input[type="radio"]:checked {
    color: #333 !important;
}

#asl-storelocator .asl-wrapper .sl-main-cont .agile-modal-content .sl-form-group .checkbox-inline input[type="radio"]:checked:before {
    background-color: #333 !important;
}

.woocommerce-shop #primary {
    padding-top: 141px;
}

/*filter by category*/
form.category-filter {
    display: flex;
    align-items: end;
    justify-content: end;
    /* width: 212px; */
}

.category-filter select {
    border-radius: unset;
    background: transparent;
    border: 1px solid #000000;
    color: #404040;
    padding: 5px 10px;
    border-color: #898989;
    width: 100%;
    max-width: 212px;
}

.category-filter select option {
    appearance: none;
    padding: 10px;
    max-width: 300px;
    background-color: #7B604B;
    color: #fff;
}

/*woocommerce style*/
.woocommerce-info {
    display: none;
}

.woocommerce-message {
    display: none;
}

/*cart icon*/
/*.cart-icon-wrapper{*/
/*    transition:all ease 0.6s;*/
/*}*/
/*.cart-icon-wrapper:hover .cart-preview {*/
/*    display: block;*/
/*}*/

/*.cart-icon-wrapper  .cart-preview {*/
/*    display: none;*/
/*    position: absolute;*/
/*    top: 100%;*/
/*    left: 0;*/
/*    background: white;*/
/*    border: 1px solid #ccc;*/
/*    z-index: 10;*/
/*    max-width: 300px;*/
/*    width: 100%;*/
/*    padding: 10px;*/
/* transition:all ease 0.6s;*/
/*}*/
/*.cart-preview {*/
/*    display: flex !important;*/
/*    align-items: start;*/
/*    gap: 10px;*/
/*    min-width: 300px;*/
/*    right: 0;*/
/*    left: auto !important;*/
/*}*/
/*.cart-preview a img{*/
/*aspect-ratio:1/1;*/
/*max-width:100px;*/
/*max-height:120px;*/
/*object-fit:cover;*/
/*}*/
/*.preview-detials h4 a{*/
/*    font-size:16px;*/
/*line-height:1.2;*/
/*}*/
/*.preview-detials  p{*/
/*    font-size:14px;*/
/*line-height:1.6;*/
/*}*/

/* Page Login */
section.logi-pg-form .input-group-text {
    background: #563835;
    border-color: #563835;
    display: block;
    margin-right: 40px;
    color: #fff;
}

.register-form label.input-group-text {
    left: 16px !important;
    top: 8%;
    border-radius: 4px !important;
    background-color: #563835 !important;
    color: #fff;
    border: transparent;
    font-size: 14px;
    height: 80%;
}

/* End Page Login */

/* remove view cart link */
.woocommerce a.added_to_cart {
    padding-top: .5em;
    /* display: inline-block; */
    display: none !important;
}

.custom-product .added_to_cart {
    display: none !important;
}

.responsive-cart-icon {
    filter: invert(1);
}

.page-id-77 .checkout {
    background-color: transparent !important;
}

.page-id-76 td.product-name a {
    color: #000;
}

/* a.button.product_type_simple {
    margin-top: 30px;
    background-color: #7b604c !important;
    color: #fff;
    border-radius: 0px;
}
a.button.product_type_simple:hover {
    background-color: #777d64 !important;
    color: #fff;
} */
p.stock.in-stock {
    display: none;
}


button.wpcbn-btn.wpcbn-btn-single.wpcbn-btn-variable.single_add_to_cart_button.button.alt {
    display: none !important;
}

/* ========================= */
.summary.entry-summary p.price {
    padding-bottom: 15px;
}

.woocommerce div.product form.cart .variations select {
    border: 1px solid #8d8077 !important;
    padding: 3px 10px !important;
    color: #ffffff !important;
    background-color: #8d8077 !important;
    font-weight: 500 !important;
    border-radius: 3px;
}

a.reset_variations {
    color: #333 !important;
    font-size: 16px !important;
}

.error-404 .cont-wrap {
    height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

h4.subscribe-heading {
    padding: 20px 0 0;
}

.woocommerce-cart-form .woocommerce a.remove {
    line-height: 0.9 !important;
}

.page-template-default .site-main article {
    height: 100% !important;
    min-height: 600px;
}

.return-to-shop {
    display: flex;
    justify-content: center;
}
a.button.wc-backward {
    color: #ffffff;
    background: #7b604c;
    padding: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    border-radius: 3px;
    text-transform: capitalize;
}

div#payment {
    margin-bottom: 30px;
}

/* my account profile */


header.woocommerce-Address-title.title {
    display: flex !important;
    align-items: start !important;
    margin-bottom: 10px !important;
    justify-content: start;
    flex-direction: column;
    gap: 15px;
}

.woocommerce-account .addresses .title .edit {
    padding: 7px;
    background: #7b604b;
    color: #fff;
    white-space: nowrap;
    border-radius: 4px;
}

.woocommerce-product-details__long-description {
    margin-bottom: 15px;
}

header.woocommerce-Address-title.title h2 {
    font-size: 24px;
    padding-right: 15px;
}

.woocommerce a.remove:hover {
    color: #fff !important;
    background: var(--wc-red);
    line-height: 0.8 !important;
}

.woocommerce-address-fields span#select2-billing_country-container, span#select2-billing_state-container {
    padding: 0px 5px !important;
}

.woocommerce-address-fields span.select2-selection__placeholder {
    font: normal normal 400 14px / 1.6 var(--font-family3);
    color: #000;
    padding: 0px;
}

.woocommerce-MyAccount-content button.button {
    padding: 12px 15px;
    line-height: 1;
}
.woocommerce-address-fields span.select2-selection.select2-selection--single {
    height: 43px;
}
h3#order_review_heading {
    padding: 25px 0 20px;
}
div#order_review .container {
    padding: 0;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 26px;
    position: absolute;
    top: 50%;
    right: 5px;
    width: 20px;
    transform: translate(-50%, -50%) !important;
}

button.remove-item-button {
    width: 20px;
    height: 20px;
    font-size: 14px;
    line-height: 14px;
    padding: 0;
    background: none;
    border: none;
    color: red;
    transition: all ease 0.6s;
    border-radius: 50%;
}

button.remove-item-button:hover {
    background: Red;
    color: #fff;

}

div#cart-drawer {
    width: 320px;
}

/* ===================== */
.select2-container--default .select2-selection--single {
    padding: 5px;
    height: 43px;
}
input[type=number]::-webkit-inner-spin-button, input[type=number]::-webkit-outer-spin-button {
    opacity: 1;
}

@media (max-width:575px){
    .avwp-av p {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }
    .avwp-av h2 {
        font-size: 30px !important;
        margin: 0 0 12px 0;
        padding-bottom: 0px;
    }
}