/* Minification failed. Returning unminified contents.
(1000,19): run-time error CSS1030: Expected identifier, found '.'
(1000,30): run-time error CSS1031: Expected selector, found ')'
(1000,30): run-time error CSS1025: Expected comma or open brace, found ')'
(1004,20): run-time error CSS1030: Expected identifier, found '.'
(1004,31): run-time error CSS1031: Expected selector, found ')'
(1004,31): run-time error CSS1025: Expected comma or open brace, found ')'
(1694,19): run-time error CSS1030: Expected identifier, found '.'
(1694,32): run-time error CSS1031: Expected selector, found ')'
(1694,32): run-time error CSS1025: Expected comma or open brace, found ')'
(2432,9): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(3064,12): run-time error CSS1030: Expected identifier, found '.'
(3064,30): run-time error CSS1031: Expected selector, found ')'
(3064,30): run-time error CSS1025: Expected comma or open brace, found ')'
(3396,12): run-time error CSS1038: Expected hex color, found '#ffff'
(3446,19): run-time error CSS1030: Expected identifier, found '.'
(3446,28): run-time error CSS1031: Expected selector, found ')'
(3446,28): run-time error CSS1025: Expected comma or open brace, found ')'
(4069,21): run-time error CSS1039: Token not allowed after unary operator: '-color'
(5763,21): run-time error CSS1039: Token not allowed after unary operator: '-width'
(6436,12): run-time error CSS1030: Expected identifier, found '.'
(6436,26): run-time error CSS1031: Expected selector, found ')'
(6436,26): run-time error CSS1025: Expected comma or open brace, found ')'
(6440,26): run-time error CSS1030: Expected identifier, found '.'
(6440,40): run-time error CSS1031: Expected selector, found ')'
(6440,40): run-time error CSS1025: Expected comma or open brace, found ')'
 */

@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Satisfy&display=swap');

body {
    margin: 0px;
    padding: 0px;
    font-family: "Quicksand", sans-serif;
    position: relative;
    width: 100%;
    overflow-x: hidden;
}

input::placeholder {
    color: #ccc !important;
}

body input {
    outline: none !important;
}

/* ============================ top bar styling start ==================================== */

.toppart {
    background-color: #ddb492;
    height: 40px;
    padding: 5px 0;
}

ul.toplisting {
    list-style: none;
    text-align: right;
    max-width: 1400px;
    padding: 0 40px;
    margin: auto;
}

    ul.toplisting li {
        margin: 2px 0;
        padding: 0;
        display: inline-block;
    }

        ul.toplisting li span {
            padding: 0 0px 0 5px;
            color: #af6729;
        }

        ul.toplisting li a {
            color: #000;
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
        }

            ul.toplisting li a:hover {
                color: #8b4b1d;
            }

/* ============================ top bar styling end ==================================== */

/* ============================ main navbar styling start ==================================== */

#myHeader {
    background: #fff;
    padding: 0;
}

#myHeader.sticky {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 999;
}

.p-relative {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 30px 20px 30px;
    max-width: 1400px;
    margin: auto;
}

.mainserach {
    display: flex;
    margin-top: 25px;
    position: relative;
}

#searchResults {
    position: absolute;
    top: 100%;
    z-index: 999;
    background: white;
    max-height: 220px;
    width: 97% !important;
    overflow-y: scroll;
    box-shadow: 0 10px 10px rgba(0, 0, 0, .1);
}

.mainserach input {
    width: calc(100% - 40px);
    border: 1px solid #dec1a6;
    height: 40px;
    font-size: 16px;
    outline: none;
    border-right: none;
    padding: 10px;
    font-weight: 500;
    color: #000;
}

    .mainserach input::placeholder {
        color: #000;
    }

    .mainserach input[type="submit"] {
        width: 40px;
        background: url('../../assets/images/search2.png') no-repeat #bb8a61;
        border: 1px solid #dec1a6;
        background-position: center;
    }

ul.righttoplist {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 25px;
    padding-left: 0;
    margin: 0;
    margin-top: revert-layer;
}

    ul.righttoplist li {
        list-style: none;
        position: relative;
        font-size: 14px;
        font-weight: 600;
    }


        ul.righttoplist li .topcart {
            font-size: 18px;
            margin-right: 7px;
            color: #00531b;
            position: relative;
        }

.cart-count {
    color: red;
    position: absolute;
    top: 11px;
}

ul.righttoplist li .userpart {
    font-size: 18px;
    margin-right: 7px;
}

ul.righttoplist li a {
    text-decoration: none;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    line-height: 7px;
    height: 100%;
}

.righttoplist li select {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    height: 100%;
    cursor: pointer;
}

    .righttoplist li select option {
        color: #000;
        font-weight: 500;
        font-size: 16px;
        padding: 5px 10px;
    }

ul.righttoplist li a span {
    margin-top: 2px;
}

ul.righttoplist li .loginmenu {
    background: #fff;
    width: 250px;
    display: none;
    box-shadow: #7d7d7d 2px 2px 10px;
    border-top: #bb8a61 3px solid;
}

ul.righttoplist li:hover .loginmenu {
    display: block;
    position: absolute;
    top: 38px;
    z-index: 999;
    left: 35%;
    transform: translateX(-50%);
}

ul.righttoplist li .loginmenu ul {
    margin: 0;
    padding: 0;
}

    ul.righttoplist li .loginmenu ul li {
        display: block;
        text-align: left;
        margin-left: 0px;
    }

        ul.righttoplist li .loginmenu ul li:first-child {
            margin-right: 0px;
        }

        ul.righttoplist li .loginmenu ul li a {
            display: block;
            color: #000;
            text-align: left;
            padding: 12px 10px;
            font-size: 14px;
            border-bottom: #ccc 1px solid;
            font-weight: 600;
        }

            ul.righttoplist li .loginmenu ul li a:hover {
                background: #fef0e7;
            }

        ul.righttoplist li .loginmenu ul li:last-child a {
            border-bottom: none;
        }

        ul.righttoplist li .loginmenu ul li a img {
            margin: 0 10px 0 5px;
        }

        ul.righttoplist li .loginmenu ul li input[type="button"] {
            width: 90%;
            margin: 10px 0;
            padding: 6px 0;
            font-size: 14px;
            text-transform: uppercase;
        }

        ul.righttoplist li .loginmenu ul li input:hover[type="button"] {
            background: #703a14;
        }

ul.righttoplist .currency-dropdown {
    width: 110px !important;
}


    ul.righttoplist .currency-dropdown li a {
        display: flex !important;
        align-items: center;
        flex-direction: row;
        justify-content: start;
        padding: 5px 10px !important;
    }

.currency-dropdown li img {
    width: 35px;
    margin-right: 10px;
}

.dropdown-list.list-item ul {
    padding-left: 0;
}

.dropdown-list.list-item h4.title {
    padding: 0 !important;
    margin-top: 10px;
    font-weight: 600 !important;
}

.dropdown-list.list-item li a {
    padding: 5px 0 !important;
}

.main-menu-item {
    margin: 10px !important;
}

#category_menu_satya {
    overflow-y: scroll;
    height: 400px;
}

.login-user-name {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: start !important;
    line-height: 1.2 !important;
}

#wholediscountalert {
    width: 85%;
    margin: 10px auto;
    background: #fee2d4;
    color: #45362d;
    font-size:17px;
    padding: 10px;
    font-weight:500;
}

#wholediscountalert span {
    color: #914916 !important;
    font-weight:700;
}

/* ============================ main navbar styling end ==================================== */
/* ============================ mobile sidebar and categories styling start ==================================== */
.header {
    background: #fff;
    border-top: 1px solid #e4ccb7;
    position: relative;
    border-bottom: 1px solid #e5ccb6;
}

.menu-section {
    padding-left: 0;
    margin-bottom: 0;
}

.emptycart {
    position:absolute;
    width: 100%;
    height:100%;
    background:white;
    z-index:1000;
    margin: 0;
    padding: 20px;
    text-align: center; 
}

    .emptycart h2 {
        margin: 10px 0 3px;
        padding: 0;
        font-size: 23px;
    }

    .emptycart p {
        margin: 0 0 10px;
        padding: 0;
        font-size: 14px;
    }

    .emptycart input[type="button"] {
        background: #00531b;
        color: #fff;
        border-radius: 5px;
        border: none;
        font-size: 14px;
        margin: 0;
        padding: 6px 15px;
        font-weight: 600;
    }

    .emptycart input:hover[type="button"] {
        background: #20793c;
    }

.cartsummary {
    width: 100%;
    margin: 0;
    padding: 0;
    text-align: left;
}

    .cartsummary h2 {
        margin: 10px 0 3px;
        padding: 15px 0 10px 15px;
        font-size: 23px;
         color: #954706;
        border-top: #ccc 1px solid;
    }

.cart-pricesummary h2 {
    margin: 5px 0 3px;
    padding: 5px 0 10px 15px;
    font-size: 23px;
     color: #954706;
}

.cart-pricesummary ul {
    padding-left: 15px;
    list-style: none;
}

    .cart-pricesummary ul li {
        font-size: 18px;
        display: flex;
        justify-content: space-between;
        padding-right: 10px;
    }

        .cart-pricesummary ul li span {
            font-weight: bold;
            font-size: 18px;
        }

.cartsummary .cartdeatailpart {
    width: 92%;
    margin: 4%;
    padding: 0 0 20px 0px;
    border-bottom: #ccc 1px solid;
    color: #000;
    display: flex;
    justify-content: space-between;
}

    .cartsummary .cartdeatailpart .leftcart {
        width: 25%;
        height: auto;
        margin: 0 1% 0 0;
        padding: 0;
    }

        .cartsummary .cartdeatailpart .leftcart img {
            border: #ccc 1px solid;
            border-radius: 3px;
            width: 100%;
        }

    .cartsummary .cartdeatailpart .rightcart {
        width: 72%;
        height: auto;
        margin: 0;
        padding: 0;
    }

        .cartsummary .cartdeatailpart .rightcart h3 {
            margin: 0px 0 10px;
            padding: 0px;
            font-size: 18px;
        }

        .cartsummary .cartdeatailpart .rightcart ul {
            margin: 0px;
            padding: 0px;
            list-style: none;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

            .cartsummary .cartdeatailpart .rightcart ul li {
                margin: 0;
                padding: 0;
            }

                .cartsummary .cartdeatailpart .rightcart ul li.cartprice {
                    float: left;
                    width: 45%;
                    font-size: 18px;
                }

                .cartsummary .cartdeatailpart .rightcart ul li.cartqty {
                    float: right;
                    width: 45%;
                }

                    .cartsummary .cartdeatailpart .rightcart ul li.cartqty .input-group {
                        flex-wrap: nowrap;
                    }

                    .cartsummary .cartdeatailpart .rightcart ul li.cartqty input {
                        height: 29px;
                        min-width: 50px;
                    }

                    .cartsummary .cartdeatailpart .rightcart ul li.cartqty .cart-decrease {
                        border: #ccc 1px solid !important;
                        border-radius: 0px !important;
                        padding: 0px 11px;
                        height: 29px;
                    }

.offcanvas-body .bottomcart-col {
    width: 100%;
    position: absolute;
    bottom: 0;
    box-shadow: #b7b8b8 10px 10px 100px;
    background: #fff;
    z-index: 9;
}

    .offcanvas-body .bottomcart-col .left-col {
        width: 50%;
        margin: 0;
        padding: 17px 0 15px 15px;
        font-size: 17px;
        font-weight: 600;
        float: left;
        text-align: left;
    }

        .offcanvas-body .bottomcart-col .left-col .bottomcart-img {
            font-size: 22px;
            color: #fff;
            margin: 8px 10px 5px 0;
            background: #8b4b1d;
            border-radius: 100px;
            width: 40px;
            height: 40px;
            line-height: 40px;
            text-align: center;
        }

    .offcanvas-body .bottomcart-col .right-col {
        width: 32%;
        margin: 0 0px 0 0;
        padding: 0;
        font-size: 18px;
        float: right;
        color: #000;
    }

        .offcanvas-body .bottomcart-col .right-col a {
            width: 100%;
            margin: 0;
            padding: 3px;
            font-size: 20px;
            background: #8b4b1d;
            display: block;
            text-align: center;
            color: #fff;
            border-radius: 5px;
            margin-right: 0px;
            position: relative;
            right: 18px;
            top: 27px;
        }

            .offcanvas-body .bottomcart-col .right-col a:hover {
                background: #71360d;
            }

.offcanvas-body {
    padding: 0 0 100px 0;
    overflow-y: scroll;
}

.offcanvas-backdrop.show {
    opacity: 0.8;
}

.mnone {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.mp-none {
    margin: 0px;
    padding: 0px;
}

.header .menu > ul > li > a > i {
    position: relative;
    top: 2px;
    margin-left: 5px;
}

/*===================================== mobile categories styling ================================*/
.mobile-categories {
    display: none;
    padding: 10px 20px;
    margin-top: 10px;
}


    .mobile-categories .owl-nav {
        display: none;
    }

.categories-item {
    text-align: center;
}

   
.categories-item p {
    font-size: 16px;
    color: #000;
    font-weight: 500;
    margin: 10px 0 0 0;
}

    .categories-item img {
        width: 100px;
    }

.mobile-drop {
    visibility: hidden !important;
}

/* ============================ mobile sidebar and categories styling end ==================================== */

/*================================ feature section styling ================================= */
.features-section {
    background-color: #fef0e7;
    padding: 50px 0;
}

    .features-section .feature-box {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        text-align: center;
        border-right: 1px solid #edd0be;
        padding: 10px;
        margin: 10px 0;
    }

.feature-box.feature-3 {
    border-right: none;
}

.feature-box .feature-heading {
    margin-top: 10px;
    color: #000;
}

.feature-box p {
    color: #000;
    font-weight: 500;
}

/*======================= kind words from customer section =========================*/
.customer-section {
    background-color: #fdeadd;
    overflow: hidden;
    padding: 40px 0;
}

.customer-container {
    margin-top: 50px;
}

.customer-box {
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 316px;
    padding: 50px 10px;
    margin: 0 10px 40px 10px;
    position: relative;
}

    .customer-box .message {
        position: relative;
        font-weight: 600;
        text-align: center;
        padding: 0 20px;
        margin-bottom: 0;
        width: 90%;
        font-size: 16px;
    }

        .customer-box .message span {
            position: absolute;
        }

    .customer-box span img {
        width: 40px;
    }

    .customer-box .message span:first-of-type {
        top: -30px;
        left: -20px;
    }

    .customer-box .message span:last-of-type {
        right: -20px;
        bottom: -30px;
    }

    .customer-box .customer-name {
        position: absolute;
        bottom: -30px;
        font-weight: 700;
        color: #000;
        margin-bottom: 0;
        font-size: 16px;
        text-align: center;
    }

/*========================== safe standards section ============================*/
.safe-standard-section {
    padding: 30px 0;
}

.standard-container {
    margin-top: 40px;
}

    .standard-container > * {
        display: flex;
        align-items: center;
        margin: 10px 0;
    }

    .standard-container img {
        width: 100%;
        object-fit: cover;
    }

/* ============================== footer styling  ====================================== */

.footer {
    background-color: #ddb492;
    padding: 40px 0 10px 0;
    margin-top: 20px;
    color: #000;
    font-weight: 500;
}

    .footer .container {
        display: flex;
        align-items: start;
        justify-content: space-between;
    }

    .footer .footer-col {
        padding-right: 10px;
        width: 25%;
    }

    .footer .footer-col-1 {
        width: 30%;
    }

        .footer .footer-col-1 p {
            font-size: 15px;
            margin: 10px 0 0 0;
            margin-bottom: 0;
            padding-right: 20px;
        }

    .footer .footer-col-2 {
        width: 19%;
    }

    .footer .footer-col-3 {
        width: 19%;
    }

    .footer .footer-col-4 {
        width: 32%;
    }

.footer-heading {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.2;
    position: relative;
    margin-bottom: 30px;
}

    .footer-heading::after {
        content: '';
        position: absolute;
        width: 90px;
        height: 2px;
        background-color: #ebd2b7;
        bottom: -10px;
        left: 2px;
    }

.footer-col li a {
    color: #333;
    font-size: 16px;
}

.footer-col ul {
    padding-left: 0;
}

    .footer-col ul li {
        list-style: none;
        margin: 5px 0;
    }

        .footer-col ul li a {
            text-transform: capitalize;
            color: #000;
            transition: 0.2s all ease;
            transition: 0.3s all ease;
        }

            .footer-col ul li a:hover {
                color: #6e3a17;
                font-weight: 900;
            }

.offer-input {
    position: relative;
}

    .offer-input input[type=email] {
        width: 60%;
        border-radius: 0;
        outline: none;
        border: 1px solid #ccc;
        padding: 5px 10px 5px 40px;
    }

    .offer-input img {
        position: absolute;
        top: 50%;
        left: 10px;
        transform: translateY(-50%);
    }

    .offer-input .captcha {
        position: absolute;
        border: 1px solid #684332;
        top: 0;
        width: 39%;
        display: flex;
        align-items: center;
        height: 100%;
        right: 0;
        border-radius: 2px;
        gap: 5px;
        padding: 5px;
        background: #ffd2ae;
    }

        .offer-input .captcha p {
            font-size: 14px;
            margin-bottom: 0;
            color: #662b00
        }

.pay-protect {
    margin-top: 20px;
}

    .pay-protect h5 {
        margin-bottom: 3px;
    }

    .pay-protect p {
        margin-bottom: 0;
        font-size: 13px;
    }

.footer .social-media {
    display: flex;
    align-items: center;
    justify-content: start;
    font-size: 20px;
    gap: 0;
    margin: 0;
}

.social-media a {
    background-color: #39291c;
    margin: 10px 5px 10px 0;
    width: 30px;
    height: 30px;
    display: grid;
    place-content: center;
    border-radius: 50%;
    color: #ddb492;
    font-size: 16px;
    transition: .2s all ease;
}

    .social-media a:hover {
        transform: scale(1.1);
    }

.footer .copyright-container {
    border-top: 1px solid #e9ccaf;
    margin-top: 20px;
}

.copyright-container .copyright {
    width: 100%;
    font-size: 15px;
    color: #000;
    text-align: center;
    margin-bottom: 0;
    padding-top: 10px;
}

.footer .payment-cards {
    display: flex;
    align-items: center;
    justify-content: start;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.payment-cards span {
    border: 1px solid #ffd9ba;
    width: 70px;
    height: 40px;
    display: grid;
    place-content: center;
}

/*==================================== order tracking page ==============================*/
section.order-tracking {
    padding-bottom: 80px;
}

.order-tracking .track-banner {
    width: 100%;
    display: grid;
    place-content: center;
    background: linear-gradient(90deg, rgba(252, 209, 181, 1) 0%, rgba(252, 215, 191, 1) 100%);
}

.track-form {
    background-color: #fbf7f4;
    max-width: 570px;
    margin: 0 auto;
    transform: translateY(-60px);
    padding: 20px 50px;
    text-align: center;
    border: 2px solid #fff;
    height: 270px;
}

    .track-form .top-heading h3::after {
        width: 270px;
    }

.track-banner img {
    object-fit: cover;
    object-position: center;
}

.form-input {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    .form-input label {
        font-size: 17px;
        font-weight: 600;
        color: #4e3423;
        width: 100px;
        text-align: left;
    }

    .form-input input,
    .form-input textarea,
    .form-input select,
    .form-input a.form-btn {
        width: 100%;
        margin: 10px 0 10px 0px;
        padding: 5px 10px;
        border: 1px solid #a87c54;
        font-size: 18px;
        resize: none;
    }



    .form-input a.form-btn {
        padding: 7px 45px;
        width: fit-content;
        float: left;
    }

    .form-input p {
        font-size: 15px;
        font-weight: 600;
        text-align: left;
    }

    .form-input a {
        color: #904609;
        text-decoration: underline;
    }

        .form-input a:hover {
            text-decoration: none;
        }

.modal-dialog:has(.query-form) {
    max-width: 570px;
}

.modal-content:has(.query-form) {
    border-radius: 2px;
    border: 2px solid white;
}

.query-form {
    padding: 20px;
    background: #fbf7f5;
    position: relative;
}

    .query-form .captcha {
        margin: 10px 15px 10px 0;
    }

    .query-form input {
        margin: 5px 0;
        width: 50%;
    }

        .query-form input[type=email] {
            width: 100%;
        }

    .query-form textarea {
        height: 100px;
    }

.close-query-form {
    position: absolute;
    background-color: #8d450b;
    color: #fbf7f4;
    display: grid;
    place-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid #fbf7f4;
    top: -10px;
    right: -10px;
    cursor: pointer;
}

/*======================================= contact page styling ============================== */
.contact-banner {
    background: url('../assets/images/contact-banner.jpg') no-repeat center;
    background-size: cover;
    text-align: center;
    padding: 50px 0 70px 0;
}

    .contact-banner h1 {
        font-size: 42px;
        font-weight: 600;
        color: #552500;
    }

    .contact-banner p {
        font-size: 22px;
        background-color: #fcf5ef;
        padding: 5px 20px;
        display: inline-block;
        color: #662b03;
        font-weight: 600;
    }

.contact-details {
    font-size: 19px;
    margin-top: 20px;
    color: #7a4928;
    font-weight: 500;
}

    .contact-details a {
        background-color: #fae9d9;
        color: #7a4928;
        padding: 5px 10px;
        margin: 0px 0 20px 0;
        display: inline-block;
    }

.contact-address {
    margin-top: 20px;
}

    .contact-address h3 {
        color: #662c04;
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 15px;
    }

    .contact-address li {
        font-weight: 500;
        list-style-type: none;
        display: flex;
        align-items: center;
        gap: 0 10px;
        margin: 10px 0;
        font-size: 18px;
    }

.contact-form {
    background-color: #fbf7f5;
    position: relative;
    top: -50px;
    border: 2px solid #fff;
    padding: 20px 20px;
    border-radius: 2px;
}

    .contact-form input,
    .contact-form textarea {
        width: 100%;
        margin: 10px 0;
        padding: 5px 10px;
        border: 1px solid #a87c54;
        font-size: 18px;
    }

    .contact-form textarea {
        height: 220px;
        resize: none;
    }

        .contact-form input::placeholder,
        .contact-form textarea::placeholder {
            color: #41250f !important;
        }

    .contact-form label {
        height: 100%;
        padding: 17px 0px;
        color: #774520;
        font-size: 16px;
        width: 100%;
    }

    .contact-form .captcha {
        padding: 10px 0;
    }

    .contact-form input[type=submit] {
        width: 100%;
        padding: 10px 20px;
    }

/* =============================== product-detail-section ============================ */
.thumb-img {
    margin-right: 0;
    width: 100%;
    height: 130px;
    object-fit: cover;
}

.xzoom-thumbs {
    padding-left: 0;
}

.detail-cart-btn {
    background: #8a4a1e;
    color: #fff;
    border-radius: 5px;
    width: 100%;
    border: none;
    font-size: 15px;
    font-weight: 600;
    padding: 8px 0;
    margin: 7px 0 0;
}

    .detail-cart-btn:hover {
        background: #304421;
    }

.xzoom-container .owl-next {
    top: -100px;
}

.xzoom-container .owl-prev {
    top: -100px;
}

.detailslider .item {
    height: auto;
    border: none;
    margin-right: 10px;
    box-shadow: none;
    border: none !important;
    width: auto;
}

.item img {
    margin-right: 20px;
}

.prev {
    position: absolute;
    left: -15px;
    top: 16px;
    z-index: 1;
    display: none;
}

.next {
    position: absolute;
    right: 1px;
    top: 16px;
    z-index: 1;
    display: none;
}

.detailslider {
    position: relative;
    height: 150px;
}

    .detailslider .cont {
        border: none !important;
        min-height: 170px;
    }

    .detailslider:hover .prev {
        opacity: 10 !important;
        z-index: 10;
        display: block;
    }

    .detailslider:hover .next {
        opacity: 10 !important;
        z-index: 10;
        display: block;
    }

    .detailslider .item {
        padding: 0 10px;
        min-height: 0;
    }

.product-slide {
    list-style: none;
}

.xzoom-container img.xzoom5 {
    width: 100% !important;
}

.detail-topnav {
    width: 100%;
    margin: 0px;
    padding: 9px 0px 8px;
    float: left;
}

    .detail-topnav li {
        margin: 0;
        padding: 0;
        float: left;
        list-style: none;
    }

        .detail-topnav li span {
            padding: 0 10px;
            color: #8f8c8c;
            position: relative;
            top: 1px;
        }

        .detail-topnav li a {
            color: #000;
            font-size: 15px;
            font-weight: 500;
        }

            .detail-topnav li a:hover {
                color: #a0511a;
            }

.deatail-rightpart h1 {
    margin: 0px;
    padding: 0px;
    font-size: 28px;
    margin-bottom: 20px;
}


.topreviewlist {
    margin: 0;
    padding: 0;
    display: flex;
    position: relative;
    flex-wrap: wrap;
	padding-right: 40px;
}

.topreviewlist li a {
    font-size: 16px;
}

.topreviewlist li {
    margin-right: 10px;
    padding: 0;
    list-style: none;
    margin-top: 10px;
}

.pointersection ul li {
    margin: 0;
    padding: 0 0 10px 25px;
    background: url(../../assets/images/pointer-star.jpg) 6px 8px no-repeat;
    list-style: none;
    font-size: 18px;
}
.topworldwide-btn {
    background: #fdeadd;
    color: #000;
    padding: 7px 15px;
    font-size: 18px;
    font-weight: 500;
    border-radius: 5px;
}

    .topworldwide-btn:hover {
        background: #8a4a1e;
        color: #fff;
    }

.topreviewlist li img {
    position: relative;
    top: -2px;
    left: 0px;
}

.topreviewlist .review {
    position: absolute;
    right: 0;
    width: 30px;
    height: 30px;
    background: #efc8a8;
    display: grid;
    place-content: center;
    border-radius: 50%;
    border: 1px solid #ddb492;
}

    .topreviewlist .review a {
        color: #8b3e09;
        font-size: 14px;
    }

.pointersection {
    margin: 20px 0;
    padding: 0;
}

    .pointersection .other-info {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .pointersection ul {
        margin: 0;
        padding: 0;
    }

        .pointersection ul li {
            margin: 0;
            padding: 0 0 10px 25px;
            background: url(../../assets/images/pointer-star.jpg) 6px 8px no-repeat;
            list-style: none;
            font-size: 16px;
        }

            .pointersection ul li a {
                color: #6e3a17;
                font-weight: 600;
            }

                .pointersection ul li a:hover {
                    color: #000;
                }

    .pointersection .pricepart {
        margin: 10px 0;
        padding: 0 0 0 25px;
        font-size: 27px;
        color: #8b4a1d !important;
        font-weight: 500;
    }

    .pointersection .selectionpart {
        margin: 0 0 0 25px;
        padding: 0px;
    }

        .pointersection .selectionpart select {
            border: #a7a6a6 1px solid;
            margin: 5px 5px 0 0;
            padding: 5px 20px 5px 5px;
            font-size: 15px;
            border-radius: 5px;
            color: #000;
        }

    .pointersection .bottom-iconlisting {
        margin: 32px 0 0 25px;
        padding: 0px;
        display: flex;
    }

.bottom-iconlisting .icon-part {
    margin-right: 20px;
    padding: 0px;
    font-size: 14px;
    font-weight: 600;
}

.pointersection .bottom-iconlisting .icon-part span {
    background: #fdeadd;
    width: 55px;
    height: 55px;
    border-radius: 100%;
    margin: 0 auto 5px;
    border: #fdeadd 1px solid;
    line-height: 50px;
    display: grid;
    place-content: center;
}

.pointersection .bottom-iconlisting .icon-part:hover span {
    background: #fff;
    border: #d0af98 1px solid;
}

.read-more-link,
.read-less-link {
    color: #6e3a17;
    text-decoration: none;
    font-weight: 600;
    padding-left: 25px;
}

.deatail-rightpart {
    margin: 0;
    padding: 0;
    position: relative;
}

.deatail-cartsection {
    position: absolute;
    right: 0;
    bottom: 0px;
}

    .deatail-cartsection.fixed {
        position: fixed;
        right: 100px;
        bottom: 40px;
        z-index: 99;
    }

.deatilcartbox {
    width: 280px;
    border: #b3b3b3 1px solid;
    border-radius: 5px;
    padding: 15px;
    background: #fff;
}

    .deatilcartbox ul {
        margin: 0;
        padding: 0;
    }

        .deatilcartbox ul li {
            list-style: none !important;
            background: none;
            margin: 0 5px 5px 0;
            padding: 0;
            font-size: 16px;
            color: #000;
        }

            .deatilcartbox ul li .left-col {
                width: 35%;
                margin: 10px 0;
            }

            .deatilcartbox ul li .right-col {
                width: 50%;
                margin: 10px 0;
            }

                .deatilcartbox ul li .right-col .cart-decrease {
                    border: #ccc 1px solid !important;
                    border-radius: 0px !important;
                    padding: 0px 11px;
                    height: 29px;
                }

                .deatilcartbox ul li .right-col input {
                    height: 29px;
                }

    .deatilcartbox .innercart-btn {
        width: 100%;
        display: block;
        text-align: center;
        margin: 5px 0 0;
        background: #8a4a1e;
        border: none;
        color: #fff !important;
        border-radius: 2px;
        padding: 4px 0;
        font-size: 16px;
        font-weight: 500;
    }

    .deatilcartbox ul li .innercart-btn:hover {
        background: #a0511a;
    }

    .deatilcartbox ul li a {
        color: #000;
        top: -3px;
        margin: 0 10px 0 3px;
    }

        .deatilcartbox ul li a img {
            position: relative;
        }

    .deatilcartbox ul li.cprice {
        font-size: 22px;
    }

ul.bottomtab-part {
    margin: 50px 0 5px 0;
    padding: 0px;
    display: flex;
    list-style: none;
}

    ul.bottomtab-part li a {
        background: #fff;
        border: #deb494 1px solid;
        color: #000;
        padding: 10px 16px;
        margin-right: 7px;
        font-size: 19px;
        font-weight: 500;
        border-radius: 5px 5px 0px 0px;
        border-bottom: none;
    }

        ul.bottomtab-part li a:hover {
            background: #fef5ee;
        }

        ul.bottomtab-part li a.active {
            background: #fef5ee;
        }

.detail-dec {
    background: #fef5ee;
    padding: 20px 0;
}

    .detail-dec p {
        font-size: 17px;
        line-height: 28px;
    }

    .detail-dec ul {
        margin: 0px;
        padding: 0px 10px;
    }

        .detail-dec ul li {
            margin: 0px 0 2px;
            padding: 3px 0px 5px 33px;
            list-style: none;
            background: url(../../assets/images/pointer-tick.png) 0px 8px no-repeat;
            height: auto;
            font-size: 17px;
        }

.related-product {
    margin: 0px;
    padding: 0px;
}

    .related-product h2 {
        margin: 20px 0;
        padding: 0px;
        font-size: 27px;
        line-height: 35px;
        color: #000;
    }

    .related-product .item .productimg {
        margin-bottom: 20px;
    }

    .related-product .item .rating-list li {
        display: flex !important;
        align-items: center;
        justify-content: center;
    }

.detailbottom-reviewpart {
    margin: 0px;
    padding: 0px;
}

    .detailbottom-reviewpart h2 {
        margin: 0px 0 20px;
        padding: 0px;
        font-size: 27px;
        text-align: center;
        line-height: 35px;
        color: #000;
    }

        .detailbottom-reviewpart h2 span {
            font-weight: 400;
        }

.bottomreviewbox {
    margin: 0px 0 30px;
    padding: 30px;
    background: url(../../assets/images/review-men.png) 98% bottom no-repeat;
    width: 100%;
    min-height: 390px;
    border: #da8338 1px solid;
    border-radius: 5px;
}

    .bottomreviewbox ul {
        margin: 0px 0 30px;
        padding: 0px;
        display: inline-block;
        width: 45%;
    }

        .bottomreviewbox ul img {
            margin: 0 0 5px 35px;
            padding: 0;
        }

        .bottomreviewbox ul li {
            margin: 0px;
            padding: 0px;
            font-size: 17px;
            list-style: none;
        }

            .bottomreviewbox ul li a {
                color: #991313;
                text-decoration: underline;
            }

                .bottomreviewbox ul li a:hover {
                    text-decoration: none;
                    color: #000;
                }

.mini-slide img {
    width: 100%;
}

.mini-slide .owl-nav {
    display: none;
}

.related-product .homecart {
    background: #8b4b1d !important;
    border: none;
}

.homecart.outstock-btn {
    background: #F44336 !important;
}

    .related-product .homecart:hover {
        background: #743d17 !important;
    }

/* review modal popup  */
.modal-dialog:has(.review-popup) {
    max-width: 600px;
}

.review-popup .review-heading {
    text-align: center;
    font-size: 23px;
    padding: 20px 35px 10px 35px;
}

.review-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

    .review-container .review-box {
        padding: 10px 10px;
        margin: 10px 0;
    }

.review-box img {
    width: 100px;
}

.review-box li {
    list-style-type: none;
    margin: 0px 0;
}

    .review-box li a {
        font-size: 14px;
        color: #a0511a;
    }

/* =============================== product category ======================== */
.category-section .article {
    height: 70px;
    overflow: hidden;
    transition: .3s height ease;
}

.category-section #readmore {
    color: #903f07;
}

.category-card-container .category-card {
    padding: 10px 20px;
    text-align: center;
    margin: 10px 0;
    border: 1px solid #d2926e;
    min-height: 485px;
}

.default-breadcrumb {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    list-style: none;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    padding-left: 0;
}

    .default-breadcrumb li.crumb {
        position: relative;
        margin-bottom: 0.5em;
        padding: 0.25em;
        background-color: #fde6d6;
        color: #673c1c;
        font-weight: 500;
    }

        .default-breadcrumb li.crumb::after {
            content: "";
            display: block;
            position: absolute;
            top: 0;
            left: 100%;
            height: 100%;
            width: 1.5em;
            background-color: #fde6d6;
            clip-path: polygon(50% 50%, -50% -50%, 0 100%);
        }

        .default-breadcrumb li.crumb::before {
            content: "";
            display: block;
            position: absolute;
            top: 0;
            left: 1px;
            height: 100%;
            width: 1.5em;
            background-color: #fde6d6;
            clip-path: polygon(100% 0, 100% 100%, 0% 100%, 50% 50%, 0% 0%);
            transform: translateX(-100%);
        }

        .default-breadcrumb li.crumb:not(:first-child) {
            margin-left: 2em;
        }

        .default-breadcrumb li.crumb:first-child {
            padding-left: 0.5em;
            border-radius: 5px 0 0 5px;
        }

            .default-breadcrumb li.crumb:first-child::before {
                display: none;
            }

        .default-breadcrumb li.crumb:last-child {
            padding-right: 1em;
            border-radius: 0 5px 5px 0;
        }

            .default-breadcrumb li.crumb:last-child::after {
                display: none;
            }

        .default-breadcrumb li.crumb.active {
            background-color: #8a4a1e;
            color: #fff !important;
        }

            .default-breadcrumb li.crumb.active a {
                color: #fff !important;
            }

            .default-breadcrumb li.crumb.active::before,
            .default-breadcrumb li.crumb.active::after {
                background-color: #8a4a1e;
            }

        .default-breadcrumb li.crumb .link {
            max-width: 250px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .default-breadcrumb li.crumb a {
            color: #673c1c;
        }

            .default-breadcrumb li.crumb a:hover {
                color: #8a4a1e;
            }

.top-tab-container {
    margin: 20px 0 10px 0;
}

    .top-tab-container ul li button {
        border: 1px solid #833703;
        color: #833703;
        border-bottom: none;
        font-weight: 600;
        margin-right: 20px;
        font-size: 20px;
    }

        .top-tab-container ul li button:hover {
            color: #000;
        }

        .top-tab-container ul li button.active {
            background-color: #fdeadc;
            color: #833703;
            border-color: #eac8ad;
        }

    .top-tab-container .tab-content {
        position: relative;
        background-color: #fdeadc;
    }

.cat-tab-container {
    background-color: #fdeadc;
}

.top-tab-container .tab-content h2 {
    font-weight: 600;
    font-size: 30px;
    margin: 15px 0;
}

.top-tab-container .tab-content h5 {
    display: inline-block;
    padding: 10px;
    font-weight: 500;
    font-size: 18px;
    background-color: #f0d4bf;
    border-radius: 5px;
    margin-bottom: 15px;
}

    .top-tab-container .tab-content h5 p {
        margin-bottom: 0 !important;
        line-height: 1 !important;
    }

.top-tab-container .tab-content p {
    font-weight: 500;
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 10px;
}

.moretext {
    display: none;
}

.tab-content a {
    color: #823604;
    font-size: 18px;
    font-weight: 600;
}

.category-card .product-img {
    width: 100%;
}

.category-card .product-name {
    font-size: 18px;
    font-weight: 600;
    color: #000;
}

.category-card .price {
    font-weight: bolder;
    font-size: 24px;
    color: #903f07;
}

/* =============================== profile page ======================== */

.profile-section {
    padding: 30px 0;
}

.welcome-msg {
    font-size: 22px;
    color: #984705;
    font-weight: 600;
    margin-bottom: 30px;
}

.order-container {
    background-color: #fdeadc;
    padding: 20px 0;
}

.re-order h3 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
}

.re-order ul {
    list-style: none;
    padding-left: 0;
}

    .re-order ul li {
        background: #fcd5b8;
        margin: 10px 0;
        padding: 10px;
        position: relative;
    }

        .re-order ul li::after {
            content: '';
            position: absolute;
            width: 20px;
            height: 20px;
            background: url('../images/pointer-star.png') no-repeat center;
            background-size: 100% 100%;
            top: 50%;
            left: 10px;
            transform: translateY(-50%);
        }

        .re-order ul li a {
            color: #000;
            font-size: 21px;
            font-weight: 600;
            padding-left: 26px;
        }

.lower-banners .banner {
    width: 100%;
    height: 100%;
    display: grid;
    place-content: center;
    margin: 10px 0;
}

    .lower-banners .banner img {
        width: 100%;
        height: 100%;
    }

.product-brochure {
    margin-top: 30px;
}

    .product-brochure h2 {
        font-size: 34px;
    }

    .product-brochure .brochure-item {
        padding: 20px 10px 10px 0;
    }

.brochure-item img {
    width: 100%;
    height: 100%;
}

.brochure-item h4 {
    text-align: center;
    color: #000;
    font-size: 22px;
    font-weight: 600;
    margin-top: 10px;
}

.order-container .card-container {
    height: 100%;
    padding-left: 20px;
    display: flex;
    align-items: center;
}

.profile-card {
    width: 50%;
    margin-left: 20px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background-color: #fef7f1;
    padding: 30px 20px;
    position: relative;
    cursor: pointer;
}

    .profile-card .edit-icon {
        position: absolute;
        color: #8e4815;
        background-color: #fbdfca;
        border: 3px solid #fef7f1;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        right: -10px;
        top: -10px;
        cursor: pointer;
    }

        .profile-card .edit-icon a {
            color: #8e4815;
        }

    .profile-card .card-img {
        background-color: #fdeadc;
        border-radius: 50%;
        width: 80px;
        height: 80px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

.card-img img {
    width: 50px;
    height: 50px;
}

.card-content {
    margin: 0 10px;
}

    .card-content h3 {
        margin-bottom: 0;
        font-weight: 600;
        font-size: 22px;
    }

    .card-content p {
        margin-bottom: 0;
        font-weight: 500;
        font-size: 18px;
    }

/* ========================= checkoutpage css start ============================== */
/*------------------------ checkout left side start-------------------- */
.ckeckout-leftcol {
    margin: 0;
    padding: 10px;
}

    .ckeckout-leftcol .mainheaing1 {
        font-size: 18px;
        font-weight: 400;
    }


.login-popup .login-pop-btn {
    padding: 5px 10px;
    border: 3px solid #af642e;
    color: #af642e;
    font-weight: bold;
    margin: 0 10px;
}

.login-pop-btn:hover {
    background-color: #af642e;
    color: white;
}

.top-section .change-address {
    color: #6e3a17;
    text-decoration: underline;
    font-weight: 600;
    font-size: 14px;
    font-weight: 500;
}

.ckeckout-leftcol .top-section .contentapart {
    margin: 13px 0 0 0;
    padding: 10px;
    border: #ccc 1px solid;
    border-radius: 5px;
    line-height: 28px;
}

.contentapart {
    position:relative;
}
    .ckeckout-leftcol .top-section .contentapart .edit-icon {
        position: absolute;
        top: -10px;
        right: -10px;
        background: #fef5ee;
        color: #8d410d;
        width: 30px;
        height: 30px;
        display:grid;
        place-content:center;
        border-radius:50%;
    }

#selectedValueField .contentapart .edit-icon {
    display:none;
}

#selectedValueField .contentapart input[type="radio"] {
    display:none;
}

.ckeckout-leftcol .top-section .contentapart p {
    margin: 0px;
    padding: 0px;
    color: #000;
    font-size: 16px !important;
    font-weight: 400;
}


.ckeckout-leftcol .top-section .newadd-btn {
    margin: 14px 5px 0 0;
    padding: 5px 15px;
    background: #fef5ee;
    color: #8d410d;
    border: #deb494 1px solid;
    border-radius: 3px;
    display: inline-block;
    font-weight: 600;
}

.delivery-add .delivery-form {
    display: none;
}

    .delivery-add .delivery-form.show {
        display: flex;
    }

.delivery-form input,
.delivery-form select,
.delivery-form textarea {
    width: 100%;
    border: #dcdcdc 2px solid;
    border-radius: 5px;
    margin: 10px 0;
}

.delivery-form textarea {
    resize: none;
    padding: 5px 10px;
}

    .delivery-form textarea::placeholder {
        color: #000;
        font-size: 17px;
    }

.delivery-form ul.add-listing {
    margin: 0;
    padding: 0;
	height:0px;
}

.delivery-form .add-listing p {
    margin: 0px;
    padding: 0px;
    font-size: 15px;
}

.delivery-form .add-listing li {
    list-style: none;
    display: inline-block;
}

    .delivery-form .add-listing li button {
        background: #f3f1f1;
        border: #ccc 1px solid;
        padding: 4px 18px;
        color: #000;
        border-radius: 5px;
        display: block;
        font-size: 16px;
        margin: 10px 5px 10px 0;
        font-weight: 500;
    }

        .delivery-form .add-listing li button.active {
            background: #fef5ee;
            color: #8d410d;
            border: #deb494 1px solid;
        }

    .delivery-form .add-listing li input[type="checkbox"] {
        margin-right: 4px;
        position: relative;
        top: 1px;
        width: auto;
        height: auto;
    }

.delivery-form .add-address {
    display: block;
    width: 50%;
    margin: 10px auto;
}

.delivery-form h2,
.delivery-add h3,
.checkout-payment h2 {
    margin: 24px 0 15px;
    padding: 0;
    font-size: 18px;
    font-weight: 600;
    color: #000;
}

.address {
    margin-top: 20px;
}

.delivery-add h3 {
    margin: 0;
}

.bill-input {
    display: flex;
    align-items: center;
    border: 1px solid #fef0e7;
    padding: 10px 10px 10px 0;
    margin: 0px 10px 0 0;
    border-radius: 5px;
    width: 100%;
    background: #fef0e7;
}

input[type=radio] {
    width: 30px !important;
    height: fit-content !important;
    margin: 0 !important;
    accent-color: #703a14;
}

.new-form {
    display: none !important;
}

    .new-form.show {
        display: flex !important;
    }

/* shipping coupon section  */
.shipping-refferal {
    border: 1px solid #ccc;
    margin: 30px 0;
    display: flex;
}

    .shipping-refferal .left-side {
        padding: 15px;
        border-right: 1px dashed #ccc;
        height: 100%;
        position: relative;
        width: 40%;
    }

        .shipping-refferal .left-side img {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            right: -8px;
            width: 15px;
        }

        .shipping-refferal .left-side h3,
        .shipping-refferal .right-side h3 {
            font-size: 17px;
        }

        .shipping-refferal .left-side select {
            width: 100%;
            padding: 7px 10px;
            margin-top: 15px;
            font-size: 14px;
        }

    .shipping-refferal .right-side {
        padding: 15px;
        width: 60%;
    }

        .shipping-refferal .right-side p {
            font-size: 14px;
            color: #333;
        }

        .shipping-refferal .right-side .input {
            border: 1px solid #4f4f4f;
            padding: 5px;
            border-radius: 2px;
            width: 100%;
        }

        .shipping-refferal .right-side input {
            outline: none;
            border: none;
            font-size: 14px;
            width: 51%;
        }

            .shipping-refferal .right-side input[type=button] {
                padding: 5px;
                background-color: #8a4a1e;
                color: #fff;
                border-radius: 2px;
                font-size: 14px;
                width: fit-content;
            }

    .shipping-refferal .custom-form-control {
        border: 1px solid #000;
        padding: 5px 10px;
        margin: 10px 0;
        border-radius: 2px;
        height: 35px;
    }

/* change address form  */
.change-form {
    width: 600px;
    padding: 20px;
}

.change-form #list {
    width: 100%;
}

.addNewAddress:hover {
    border: 1px solid #743d17;
    background: #fef5ee !important;
    cursor: pointer;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
}

.change-form h3.main-heading {
    text-align: center;
    color: #6e3a17 !important;
}

    .change-form .address p {
        font-size: 14px !important;
    }

    .change-form .address {
        width: 100% !important;
    }

    .change-form #list .contentapart:hover {
        border: 1px solid #743d17;
        background: #fef5ee;
        cursor:pointer;
        box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
    }

    .change-form #list .contentapart.selected {
        border: 1px solid #743d17;
        background: #fef5ee;
        box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
    }
/* ------------------------------ checkout left side end ------------------------------- */

/* ------------------------------ checkout right side start ------------------------------- */
.checkout-heading {
    margin: 20px 0;
    font-size: 23px;
    color: #c98a61;
}

.price-summary {
    background-color: #fef5ee;
    padding: 10px 20px;
    margin-bottom: 20px;
}

    .price-summary table.table {
        --bs-table-bg: transparent;
    }

    .price-summary .table th {
        font-weight: normal;
    }

    .price-summary .table td {
        text-align: right;
    }

.table .grand-total {
    font-size: 20px;
}

.checkout-rightcol h2:first-child {
    border: none;
    padding: 10px 0;
}

.checkout-rightcol .cartdeatailpart {
    margin: 10px 0;
}

.checkout-rightcol .cartqty .input-group-btn, .checkout-rightcol .prod-delete {
    display: none;
}



    /* ------------------------------ checkout right side end ------------------------------- */
    /* ------------------------------ checkout payment section ------------------------------- */
    .payment-selection {
        border: 1px solid #d8d8d8;
        border-radius: 5px;
        margin-bottom: 10px;
        display:flex;   
        
    }

    .payment-selection .selection-btn:first-of-type {
        border-bottom:none;
        border-radius: 5px 5px 0 0;
    }

    .payment-selection .selection-btn:last-of-type {
        border-radius: 0 0 5px 5px;
        border-bottom: none;
    }
.payment-selection.usd .selection-btn {
        width: auto;
    }
        .payment-selection .selection-btn {
            border-bottom: 1px solid #d8d8d8;
            display: flex;
            align-items: center;
            justify-content: start;
            padding: 10px 10px 10px 20px;
            border-left: 4px solid transparent;
            position: relative;
        }

.selection-btn .check-circle {
    display: block;
    width: 20px;
    height: 20px;
    border: 1px solid #8a4a1e;
    border-radius: 50%;
    margin-right: 10px;
    padding: 3px;
}

.selection-btn .btn-text {
    font-size: 14px;
}

.selection-btn.isActive {
    background-color: #fef5ee;
    border-left: 4px solid #8a4a1e;
}

    .selection-btn.isActive .check-circle span {
        display: block;
        width: 100%;
        height: 100%;
        background-color: #8a4a1e;
        border-radius: 50%;
    }


    .payment-form-container > * {
        display: none;
        border-radius:5px;
        border: 1px solid #ccc;
        padding: 10px 20px;
    }

    .payment-form-container .selected {
        display: block;
    }

    .payment-form-container .payment-heading {
        font-size: 18px;
        margin-bottom: 5px;
    }

    .payment-form-container .payment-desc {
        font-size: 14px;
        color: #7d7d7d;
    }

    .payment-form-container .payment-form-btn {
        background-color: #8a4a1e;
        color: white;
        width: 100%;
        margin: 10px 0;
        border-radius: 5px;
        text-transform: uppercase;
        padding: 5px 0;
        font-size: 15px;
        font-weight: 600;
        border: none;
    }

    .payment-form-container .terminate {
        width: 100%;
        margin: 10px auto;
        text-align: center;
        position: relative;
    }

.terminate span {
    display: inline-block;
    background-color: white;
    padding: 10px 30px;
}

.terminate::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: #b7b8b8;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.payment-input {
    width: 100%;
    padding: 5px 10px;
    border: 1px solid #b7b8b8;
    border-radius: 5px;
    margin: 5px 0;
}
.vpa-details {
    display: flex;
    align-items: center;
    margin: 10px 0;
}

    .vpa-details p {
        font-size: 12px;
        margin-bottom: 0;
        margin-left: 10px;
    }

.protection-msg {
    font-size: 12px;
    text-align: center;
    color: green;
    margin: 10px 0;
}

.payment-options {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0 10px;
    padding: 10px 20px;
}

    .payment-options img {
        width: 50px;
    }

.accept-privacy p {
    font-size: 11px !important;
}

/* qr popup  */
.qr-popup {
    position: fixed;
    width: 250px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    z-index: 9999;
    border-radius: 5px;
    padding: 10px 20px;
    display: none;
}

    .qr-popup.show {
        display: flex;
    }

body.bg-blur::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.7) 100%);
    top: 0;
    left: 0;
    z-index: 1000;
}

.qr-popup p {
    font-size: 14px;
    margin-bottom: 0;
}

.qr-popup hr {
    background-color: black;
    height: 1px;
    width: 100%;
}

.qr-popup .qr-img {
    width: 100px;
    margin-bottom: 10px;
}

.qr-popup .payment-method-img {
    margin-top: 10px;
}

.qr-popup .cancel-payment {
    margin-top: 10px;
    color: #8a4a1e;
    font-weight: 600;
    cursor: pointer;
}

.time {
    font-weight: bold;
}

#timer {
    display: inline-block;
    color: red;
    margin-left: 2px;
}

/* =============================== payment selection section end ======================== */

/* ======================== about us page styling ========================= */
.about-us .about-banner {
    width: 100%;
    height: 270px;
     background: url('../assets/images/about-us-banner.jpg') no-repeat center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.banner-heading {
    min-width: 300px;
    max-width: 500px;
    text-align: center;
}

    .banner-heading h1 {
        color: #653615;
        font-weight: 600;
    }

    .banner-heading p {
        font-size: 20px;
        font-weight: 600;
    }

        .banner-heading p span {
            color: #b9580a;
            font-weight: 700;
        }

.about-heading {
    display: inline-block;
    padding: 10px 0px;
}

.about-content .form-heading h3::after {
    width: 104%;
}

.about-content {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    height: 100%;
}

    .about-content p {
        font-size: 19px;
        line-height: 1.5;
        font-weight: 500;
    }

.about-slider {
    position: relative;
}

    .about-slider .nav-buttons {
        display: block;
    }

        .about-slider .nav-buttons img {
            cursor: pointer;
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
        }

.nav-buttons .prev-btn {
    left: -50px;
}

.nav-buttons .next-btn {
    right: -40px;
}

.about-slider .owl-nav {
    display: none;
}

.about-slider-item {
    border: 1px solid #dbb8a5;
    width: 99%;
    padding: 20px 10px 10px 10px;
    min-height: 470px;
}

    .about-slider-item a {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: #000;
    }

    .about-slider-item h3 {
        color: #652b00;
        font-weight: 600;
        margin-top: 10px;
    }

    .about-slider-item p {
        font-size: 16px;
        font-weight: 500;
    }

/* ======================== inner pages categories section =========================== */

li.has-inner-items {
    border-bottom: 1px solid #ddb492;
}

    li.has-inner-items:hover {
        background-color: #fef0e7;
        border-bottom: 1px solid #fbbb98;
    }

    li.has-inner-items ul {
        position: absolute;
        left: 100%;
        top: -10px;
        background: #fef0e7;
        width: 200px;
        border-radius: 2px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
        visibility: hidden;
        transition: 0.5s all ease-out;
        opacity: 0;
        padding: 0;
    }

        li.has-inner-items ul li {
            list-style-type: none;
            padding: 9px 10px;
            font-weight: 500;
            border-bottom: 1px solid #fbbb98;
        }

            li.has-inner-items ul li:last-child {
                border-bottom: none;
            }

            li.has-inner-items ul li a {
                color: #000;
                line-height: 1.4;
                font-size: 15px;
            }

                li.has-inner-items ul li a:hover {
                    color: #793503;
                }

    li.has-inner-items:hover ul {
        visibility: visible;
        top: 0px;
        opacity: 1;
    }

/* ===================================================================================== */

.banner-padding {
    padding-top: 300px;
}

.inner-page-section {
    position: relative;
}

    .inner-page-section .banner {
        position: absolute;
        width: 100%;
        height: 275px;
        left: 0;
        top: 0;
        padding: 0;
    }

        .inner-page-section .banner img {
            width: 100%;
            object-fit: cover;
            object-position: center;
            height: 100%;
        }

    .inner-page-section .inner-content p {
        font-size: 18px;
        font-weight: 500;
    }

    .inner-page-section .inner-content ul li {
        font-size: 18px;
        font-weight: 500;
        list-style-type: none;
        margin: 10px 0;
        position: relative;
    }

.inner-content ul li::after {
    content: '';
    position: absolute;
    background: url('https://healthandyoga.com/assets/images/list-style.png') no-repeat center;
    background-size: cover;
    width: 22px;
    height: 22px;
    left: -30px;
    top: 5px;
}

.inner-content a {
    color: #ae6027;
    font-weight: 600;
    text-decoration: underline;
}

.inner-page-section .inner-heading {
    align-items: flex-start;
    text-align: left;
    margin: 40px 0 10px 0;
}

.inner-heading h3:after {
    width: 102%;
}

.inner-related-product {
    border: 1px solid #b56c38;
    margin-top: 40px;
}

    .inner-related-product .top {
        background-color: #b56c38;
        color: white;
        padding: 10px 10px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-right: 20px;
    }

.top .nav-buttons img {
    width: 25px;
    cursor: pointer;
}

.inner-related-product .top h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 0;
}

.related-item {
    padding: 10px;
}

.inner-related-product .product {
    display: flex;
    padding: 10px;
    gap: 10px;
    border-bottom: 2px solid #fcdec9;
}

    .inner-related-product .product:last-child {
        border-bottom: none;
    }

.product .product-name {
    color: #000;
    font-weight: 500;
    margin-bottom: 0;
}

.product .product-price {
    font-weight: 700;
    color: #ab4d09;
    font-size: 18px;
}

.product img {
    width: 90px;
    height: 90px;
    border: 1px solid #ab4d09;
}

.inner-ad img {
    margin-top: 20px;
    width: 100%;
}

.related-slider .owl-nav {
    display: none;
}

.inner-content label {
    font-size: 18px;
    font-weight: 500;
    margin-right: 20px;
}

.inner-content select {
    padding: 5px 10px;
}

.exercise-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    display: none;
}

    .exercise-table tr th {
        background: #ddb492;
        color: #662b00;
        text-align: center;
    }

    .exercise-table tr th,
    .exercise-table tr td {
        border: 1px solid #662b00;
        padding: 5px;
        font-size: 15px;
        font-weight: 500;
    }

    .exercise-table ul li {
        font-size: 15px !important;
        margin: 5px 0 !important;
    }

    .exercise-table .ex-name {
        font-weight: 700;
        text-align: center;
    }

.skeleton {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

map area {
    cursor: pointer;
}

.listContent > div {
    display: none;
    margin-top: 50px;
}

.listContent h2 {
    color: #662b00;
    font-weight: 600;
}

.inner-content.bordered {
    border: double #662b00;
    background: #ffdfc4c0;
    padding: 10px 10px 0 10px;
}

.inner-content.bordered-dashed {
    background: #ffdfc4c0;
    padding: 10px 10px 0 10px;
    border: 2px dashed #662b00;
    border-radius: 5px;
}

.modal:has(.inner-modal-popup) {
    --bs-modal-width: 800px;
}

.inner-modal-popup {
    border-radius: 5px;
    text-align: center;
}

.inner-content.showContent {
    display: none;
}

/* ================================== review and ratings page ========================= */
.review-wrapper {
    min-height: 100vh;
    background: #fcd2b6;
    padding: 30px 0;
}

    .review-wrapper .form-heading {
        justify-content: center;
        align-items: center;
    }

        .review-wrapper .form-heading h3::after {
            background-color: #fbf7f4;
        }

.review-form {
    background: #fbf7f4;
    max-width: 700px;
    justify-content: center;
    padding-bottom: 20px;
}

.review-wrapper .ratings-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ratings-container .form-input {
    display: flex;
    align-items: start;
    flex-direction: column;
    margin-top: 15px;
}

    .ratings-container .form-input input,
    .ratings-container .form-input textarea {
        margin: 0 0 10px 0;
    }

.form-input .add-img {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    padding: 20px;
    border: 2px dashed #a87c54;
    width: 70px;
    height: 70px;
    border-radius: 5px;
    margin-top: 10px;
    color: #a87c54;
    cursor: pointer;
    position: relative;
}

.ratings-container .form-input input[type=file] {
    opacity: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    cursor: pointer;
}

.ratings-container .form-input label {
    width: 100%;
}

.review-form h5 {
    font-size: 20px;
    margin-top: 20px;
    font-weight: 600;
    color: #662b00;
}

    .review-form h5 span {
        font-size: 15px;
    }

.review-form .rating-input {
    justify-content: start;
}

.rating-input label {
    width: 160px !important;
}

.rating-input .star-input img {
    width: 20px;
    margin: 0 2px;
    cursor: pointer;
}

.review-form .divider {
    width: 98%;
    border-top: 1px dashed #ddb492;
    margin: 0px auto;
    margin-top: 20px;
}

.rating-box {
    background: #fbf7f4;
}

.ratings-container .topbar {
    background-color: #955a2a;
    color: white;
    align-items: center;
}

    .ratings-container .topbar > * {
        color: white;
        font-weight: 600;
        padding: 5px;
        margin-bottom: 0;
    }

.rating-item {
    display: grid;
    grid-template-columns: 80% 20%;
    padding: 20px 0;
    margin: 0 20px;
    border-bottom: 1px solid #ddb492;
}

    .rating-item p {
        margin-bottom: 0;
        text-align: justify;
    }

    .rating-item .left-side {
        border-right: 1px solid #ddb492;
        padding: 0px 30px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: start;
    }

        .rating-item .left-side p {
            font-weight: 500;
        }

    .rating-item .right-side {
        padding: 10px 10px 10px 30px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

/*==================================== testimonial reviews styling ======================================== */
.testimonial-box {
    padding: 20px 20px;
    background: #fff0e4;
    border-radius: 3px;
    margin: 20px 0;
}

    .testimonial-box p {
        margin-bottom: 0;
        font-weight: 500;
        position: relative;
    }

        .testimonial-box p span:last-child {
            position: absolute;
        }

        .testimonial-box p span i {
            font-size: 30px;
            margin: 0 10px;
        }

    .testimonial-box > span {
        display: block;
        text-align: right;
        margin-top: 10px;
    }

/* =============================== verify subscription page ============================================== */
.verify-msg {
    margin-top: 30px;
}

    .verify-msg p {
        font-weight: 500;
        color: #662b00;
        font-size: 25px;
        margin-bottom: 0;
    }

.optional-form-container {
    margin-top: 50px;
}

    .optional-form-container .form-heading {
        align-items: start;
    }

    .optional-form-container .optional-form {
        background: #fbf7f4;
        padding: 10px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        padding-bottom: 60px;
        position: relative;
    }

.optional-form > * {
    margin: 0 20px;
}


.optional-form .right-side span {
    display: flex;
    align-items: start;
    justify-content: start;
    gap: 0 10px;
    font-size: 18px;
    margin: 10px 5px;
}

    .optional-form .right-side span input{
        margin-top:8px !important;
    }

    .optional-form .right-side span input[type="radio"] {
        margin-top: 10px;
    }

    .optional-form label {
        padding: 10px 0;
        font-size: 18px;
        font-weight: 500;
    }

.optional-form .left-side input,
.optional-form .left-side select {
    width: 100%;
    border: 1px solid #8d450a;
    padding: 5px;
    margin: 10px 0;
}

.optional-form .left-side > * {
    display: flex;
    align-items: center;
}

.optional-form .form-btn {
    position: absolute;
    width: 100px;
    display: block;
    padding: 5px 10px;
    margin: 0 auto;
    left: 50%;
    bottom: 10px;
    transform: translateX(-50%);
    text-align:center;
}
/* ======================================== login.signup popup ====================================== */
.popup-container {
    max-width: 450px;
    margin: 0 auto;
}

.login-form {
    padding: 20px 30px;
    position: relative;
    font-size: 14px !important;
}

    .login-form .divider {
        position: relative;
    }

.divider span {
    background-color: white;
    position: absolute;
    left: 50%;
    top: -13px;
    transform: translateX(-50%);
    color: #222;
    font-weight: 500;
    padding: 0 10px;
    font-size: 18px;
}

.login-form hr {
    margin: 30px 0 25px 0 !important;
    border: none;
    border-bottom: 1px dotted #000;
    background-color: #000;
}

.modal .close-btn {
    position: absolute;
    right: 10px;
    top: 6px;
    font-size: 22px;
}

.login-form h3 {
    font-size: 20px;
    text-align: center;
    font-weight: 400;
}

.login-form .login-container input {
    height: 44px;
    padding: 0 0 0 5px;
    border: #dcdcdc 2px solid;
    border-radius: 5px;
    width: 100%;
}

.login-form input.login-btn {
    color: #ffff;
    background-color: #af642c;
    padding: 5px 10px;
    font-size: 17px;
    border-radius: 5px;
    margin-top: 10px;
    width: 100%;
    border: none;
}

.login-form .input-group input#password,
.login-form .input-group input#password1 {
    width: 80%;
}

.login-form .input-group button {
    height: 39px;
    margin: 5px 0;
    border: #dcdcdc 2px solid;
}

.login-form .otp-input{
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
    margin-top: 20px;
}

.otp-input input {
    width: calc(100% - 100px);
    height: 39px;
    padding: 0 0 0 15px;
    border: #dcdcdc 2px solid;
    border-radius: 5px;
    border-right: none;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.otp-input .otp-btn {
    background-color: #af642c;
    color: white;
    width: 100px;
    height: 39px;
    border-radius: 0;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    border: none;
}

.modal-dialog:has(.otp-form) {
    width: 320px;
}

.otp-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.otp-form .otp-input {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-top: 10px;
}
    .otp-form .otp-input input {
        width: 100%;
        border: 2px solid #ccc;
        border-radius: 5px;
        margin-bottom: 10px;
    }
.social-media {
    display: flex;
    gap: 4px;
    margin-top: 20px;
}

    .social-media > * {
        width: 33%;
        padding: 0;
    }

        .social-media button img {
            width: 100%;
            height: 100%;
        }

.modal {
    transform: translateY(4%);
}

/* ==================== forget password form ================================== */
.forget-form {
    padding: 20px;
    max-width: 400px;
    margin: auto;
    width: 100%;
}

    .forget-form h3 {
        text-align: center;
        font-size: 19px;
    }

    .forget-form p {
        font-size: 14px;
        text-align: center;
    }

    .forget-form label {
        display: block;
        margin-top: 10px;
        font-size: 14px;
        color: #333;
    }

.forget-input input {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 16px;
}

.forget-form .forget-submit a {
    display: inline-block;
    margin-top: 10px;
    color: #fff;
    border: none;
    border-radius: 4px;
    background-color: #af642c;
    text-align: center;
    padding: 5px;
}



/* ====================================================== dirctory-form-css start ====================================================== */

.comm-form{
  background: #fcd2b6;
  margin-bottom: 20px;
}

.comm-form .top{
  padding: 5px 10px;
  color: #fff;
  background: #b56c38;
  font-weight: 600;
}

.comm-form .content{
  padding: 10px;
}

.comm-form .content label{
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

.comm-form .content select, .comm-form .content input{
  width: 100%;
  margin: 5px 0;
}




/* ====================================================== repeat last order page page ====================================================== */

.repeat-last-order table {
    border: 1px solid #ccc;
    font-size: 14px;
}

    .repeat-last-order table thead tr th {
        border: 1px solid #ccc;
        background-color: #ddd !important;
        border-top: none;
    }

    .repeat-last-order table tbody tr td {
        border: 1px solid #ccc;
        place-content: center;
        min-width: 100px;
    }

    .repeat-last-order table tbody tr a {
        color: #00531b;
    }

        .repeat-last-order table tbody tr a:hover {
            text-decoration: underline;
        }

.user-info .link {
    color: #6b3816;
    text-decoration: underline;
}

.back-btn {
    padding: 5px 10px;
    border-radius: 4px;
    background-color: #6b3816;
    color: #fff;
}

.repeat-last-order .invoice-download {
    font-size: 20px;
    text-align: center;
}

.amount-table {
    padding: 30px 10px 0 10px;
}

    .amount-table table {
        border: 1px solid #ccc;
    }

        .amount-table table th {
            border-right: 1px solid #ccc;
            font-weight: 400;
        }

#amountModal .modal-content {
    max-width: 400px;
}

#amountModal .close-btn {
    top: 0;
    right: 5px;
}

/* ====================================================== EDIT info page styling ====================================================== */

.edit-info {
    padding: 50px 0;
}

    .edit-info .container {
        overflow: hidden;
        position: relative;
        padding: 10px 0;
    }

    .edit-info .back-btn {
        position: absolute;
        right: 0px;
        top: 0px;
        font-weight: 400;
        padding: 5px 10px;
    }

ul.tabs {
    margin: 0;
    padding: 0;
    float: left;
    list-style: none;
    width: 100%;
}

    ul.tabs li {
        float: left;
        margin: 0;
        cursor: pointer;
        padding: 0px 21px;
        height: 31px;
        line-height: 31px;
        border-top: 1px solid #ccc;
        border-left: 1px solid #ccc;
        background-color: #eee;
        color: #6b3816;
        overflow: hidden;
        position: relative;
    }

.tab_last {
    border-right: 1px solid #ccc;
}

ul.tabs li:hover {
    background-color: #ccc;
    color: #333;
}

ul.tabs li.active {
    background-color: #8a4a1e;
    color: #fff;
    border: 1px solid #8a4a1e;
    display: block;
}

.tab_container {
    border-top: 1px solid #ccc;
    clear: both;
    float: left;
    width: 100%;
    background: #fff;
    overflow: auto;
}

.tab_content {
    padding: 20px 10px 20px 0;
    display: none;
}

.tab_drawer_heading {
    display: none;
}

.tab_content h3 {
    font-weight: 400 !important;
}

.update-profile.password,
.update-profile.address {
    width: 80%;
    margin: auto;
    background: #fff1e6;
    padding: 20px;
    border-top: 5px solid #6b3816;
    margin-top: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.update-profile.password {
    width: 100%;
    max-width: 300px;
}

    .update-profile.password .offer-btn {
        width: 100%;
        max-width: 100%;
    }

.update-profile label {
    color: #000;
    font-size: 17px;
    font-weight: 400;
}

.update-profile input,
.update-profile select {
    width: 100%;
    padding: 5px 10px;
    border-radius: none;
    margin: 5px 0;
    font-size: 15px;
    background-color: #fcfcfcb3;
    border: 1px solid #ccc;
}

.update-profile select {
    padding: 7px 10px;
}

.profile-input {
    padding: 10px 10px 0 10px;
}

.outer-profile-input {
    display: flex;
    gap: 10px;
}

.inner-profile-input {
    width: calc(100% / 3);
    padding: 10px 0;
}

.update-profile .offer-btn {
    display: block;
    margin-top: 20px !important;
    font-size: 18px;
    max-width: 170px;
    width: 100%;
    margin: auto;
    border-radius: 0;
}

.addresses {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

    .addresses .address {
        padding: 10px;
        border: 1px solid #ccc;
        border-radius: 5px;
        width: 49%;
        position: relative;
    }

        .addresses .address:hover {
            border: 1px solid #333;
            background-color: #fcfcfc;
        }

.address p {
    margin-bottom: 0;
    color: #333;
    font-weight: 400;
}

.add-btn {
    padding: 5px 10px;
    background-color: #00531b;
    color: #fff;
    border: none;
    cursor: pointer;
    margin: 10px 0;
}

    .add-btn.delete {
        background-color: #6b3816;
        margin-left: 10px;
    }

.address .edit-btn {
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: #f9e3d0;
    display: grid;
    place-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    transition: 0.2s all ease;
    color: #6b3816;
}

.edit-btn:hover {
    background-color: #ffc49d;
    color: #6b3816;
    transform: scale(1.1);
}

.edit-form {
    padding: 20px 30px;
}

    .edit-form input,
    .edit-form select {
        font-size: 14px;
    }

/*==================================== wish list section styling =============================================*/

.wishlist-heading {
    padding: 40px 0 40px 0;
    background: #895020;
    color: white;
}

.heading-btn-container {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
}

    .heading-btn-container a {
        display: inline-block;
        margin: 10px 10px 10px 0;
    }

.wishlist-heading a {
    padding: 5px 10px;
    color: #542803;
    background-color: #ddb492;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    margin: 10px 10px 10px 0;
    font-weight: bold;
}

.wishlist-heading p {
    margin-bottom: 0;
}

.wishlist-heading .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.item-date {
    padding: 10px;
    background-color: #fff1e6;
    border: 1px solid #ccc;
    border-bottom: none;
}

    .item-date:first-of-type {
        margin-top: 20px;
    }
	
	.whishlist_date{
    overflow-x: auto;
    width: 100%;
}

.wish-item {
    width: 100%;
    height: 100%;
    min-width: 600px;
}

.item-date {
    min-width: 600px;
    width: 100%;
}

    .wish-item tr td {
        border: 1px solid #ccc;
        padding: 10px;
		text-align: center;
		vertical-align: middle;
    }
        .wish-item tr td:first-child {
            width: 100px;
            height: 100px;
        }

        .wish-item tr td:nth-child(2) {
            width: 55%;
        }


    .wish-item .item-img {
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .wish-item .item-img img {
            width: 100px;
            height: 100px;
        }

     .wish-item .item-add a {
        padding: 5px 10px;
        background-color: #895020 !important;
        color: white;
        border-radius: 30px;
        display: block;
        text-align: center;
        width: 70%;
        margin: auto;
        font-size: 14px;
		cursor: pointer;
    }

    .wish-item .item-add a.outstockBtn {
        background-color: #F44336 !important;
    }


    .wish-item svg {
        width: 35px;
    }

    .wish-item .item-media {
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .wish-item .item-media a {
            color: #333;
            font-size: 20px;
        }

    .wish-item .item-delete a {
        font-size: 20px;
        color: red;
    }

/* ================================== animated slider ======================= */

.slide-content {
    position: absolute;
    top: 0;
    height: 100%;
    max-width: 2000px;
    width: 100%;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    display: grid;
    grid-template-columns: 1fr 2fr;
}

    .slide-content.diff {
        display: flex;
    }

        .slide-content.diff > * {
            width: calc(100%/3);
        }

.img-side img {
    height: 100%;
}

.slide-content.diff.slide3 .img-side {
    width: 30%;
}

.slide-content.diff .img-side {
    display: flex;
    align-items: center;
    justify-content: center;
}

    .slide-content.diff .img-side img {
        width: 100%;
        height: auto;
    }

    .slide-content.diff .img-side.diff img {
        height: 100% !important;
    }

.slide-content .content-side {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 50px;
}

.slide-content.diff .content-side {
    align-items: center;
    text-align: center;
    padding-right: 0;
}

.slide-content.diff.slide3 .content-side {
    width: 40%;
}

.slide-content.diff .content-side img.new-fixed {
    position: absolute;
    top: -50px;
    left: -89px;
    /* width: 110px; */
}

    .slide-content.diff .content-side h3 {
        font-size: 60px;
        margin-top: 3px;
        margin-bottom: 0;
    }
	
	
.slide-content.slide3 .content-side .slide3-heading {
    color: #743202;
    font-size: 35px;
}


    .slide-content.diff .content-side .top-heading {
        color: var(--color);
        font-weight: 600;
        text-shadow: 1px 1px 00px white;
    }

    .slide-content.diff .content-side .other-heading {
        color: black;
        text-shadow: 1px 1px 00px white;
    }

.content-side .cursive-heading {
    font-family: "Satisfy", cursive;
    color: #000;
    font-size: 50px;
    margin-top: 10px;
    margin-left: 20px;
}

.slide-content h3 {
    font-size: 50px;
    font-weight: 500;
    margin-top: 5px;
}

.slide-content .divider {
    display: block;
    width: 100%;
    height: 5px;
}

.slide-content .lower-heading {
    margin-top: 5px;
    margin-bottom: 20px;
    width: fit-content;
}

.slide-btn {
    display: inline-block;
    text-align: center;
    margin: 40px 0 15px 0;
    width: fit-content;
    padding: 10px 20px;
    background-image: linear-gradient(to bottom, #a7631f, #9f5e1b, #965818, #8e5314, #864e10);
    border-radius: 5px;
    font-size: 20px;
}

.bottom-tag {
    display: flex;
    gap: 10px;
}

    .bottom-tag img {
        width: 100%;
    }

/* =============================== privacy policy ======================== */

.privacy-container {
    background-color: #fff6ef;
    padding: 0 20px 20px 20px;
}
.pop-content {
    background-color: #eed4bb;
    padding: 10px;
    font-weight: 500;
    text-align: justify;
    margin: 15px 0;
}

.radio-input label {
    cursor: pointer;
    font-weight: 500;
}

.radio-input > div {
    margin: 5px 0;
}

.view-more {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
}



ul#searchResults li {
    padding: 5px 10px;
    border-bottom: 1px solid #f3dfce;
    background: #fef0e7;
    cursor: pointer;
}

ul#searchResults li:hover {
    background: #ffd6b3 !important;
}

.highlight {
    background: #ffd6b3 !important;
}

#searchResults {
    position: absolute;
    top: 100%;
    z-index: 999;
    background: #fef0e7;
    max-height: 220px;
    width: 97% !important;
    overflow-y: scroll;
    box-shadow: 0 10px 10px rgba(0, 0, 0, .1);
    list-style: none;
    padding-left: 0px;
}

.hny-box {
    padding: 10px;
    margin-bottom: 20px;
    display: flex;
    align-items: end;
    justify-content: center;
}

    .hny-box img {
        width: 150px;
    }

    .hny-box a {
        text-decoration: underline;
        color: #662b00;
        margin-bottom: 5px;
        margin-left: 10px;
    }
	
	.paypal-custom {
    position:absolute;
    height:100%;
    width: 100%;
}


.bootstrap-select.form-control {
    margin: 9px auto;
    border: 2px solid #dcdcdc !important;
}

    .bootstrap-select.form-control button {
        background:transparent;
    }
	
	.search-history{
		display:none !important;
	}
	

.hny-box {
    padding: 10px;
    margin-bottom: 20px;
    display: flex;
    align-items: end;
    justify-content: center;
}

    .hny-box img {
        width: 150px;
    }

    .hny-box a {
        text-decoration: underline;
        color: #662b00;
        margin-bottom: 5px;
        margin-left: 10px;
    }

.item.rel-item .productimg {
    width: 100%;
    height: 100%;
    text-align: center !important;
    vertical-align: middle;
    line-height: 200px;
}

.item.rel-item .productdetail {
    width: 100%;
    margin: 0;
    text-align: center;
    padding: 0;
}

    .item.rel-item .productdetail h4 {
        margin: 0 0 5px;
        padding: 0;
        font-size: 17px;
        font-weight: 500;
        height: 55px;
    }

.quick-modal {
    padding: 20px 25px 5px 15px;
    text-align: center;
    background-color: #653615;
    color: white;
}

    .quick-modal .whole-btn {
        background-color: #e2b697;
        width: 150px;
        padding: 10px;
        font-weight: 500;
        margin: 20px auto;
        box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
        color: #000;
    }

    .quick-modal h3 {
        color: #fdeadc;
        font-weight: 300;
    }
	
	.prod-delete {
    display: block;
    margin: 0 10px;
    color: #c10d1c;
    cursor:pointer;
}

.description .detaillisting a{
            margin-left: 20px;
            font-weight: 500;
            color: #8a4a1e;
        }
		
.accor-sign{
    display:none;
    right: 10px;
    position:absolute;
}

.tab_drawer_heading .fa-plus{
    display:inline-block
}

.tab_drawer_heading.d_active .fa-plus {
    display: none;
}


.tab_drawer_heading.d_active .fa-minus {
    display: inline-block;
}

.bottomreviewbox.no-review {
    background: none;
    min-height: 100%;
}

.file-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2px;
    width: 70px;
    height: 70px;
    position: relative;
    border: 1px solid #a87c54;
    border-radius: 5px;
    margin-top: 10px;
}

.file-list a {
    background-color: #f44336;
    color: white;
    border: none;
    padding: 0px 8px;
    cursor: pointer;
    text-decoration: none;
    position: absolute;
    border-radius: 50%;
    top: -10px;
    right: -10px;
}


/* ============================ Yoga Teacher Form Start Here 23-04-2025 ================================ */

.yogaregister-form
{
  width: 95%;
  margin:0px 0 15px 0;
  padding: 0px;
}

.yogaregister-form a
{
  color:#8d450a;
  text-decoration: underline;
}

.yogaregister-form a:hover
{
  text-decoration:none;
}

.yogaregister-form h2
{
  margin: 0;
  padding: 7px;
  font-size: 18px;
  background: #fbf2e5;
  color: #6b2d01;
  font-weight: 600;
  border-bottom: #6b2d01 2px solid;
  border-top: #6b2d01 2px solid;
}

.yogaregister-form  .forminnerpart
{
  padding: 0px;
}

.yogaregister-form  .forminnerpart .inner-rightpart
{
  background: #fbf2e5;
  padding: 10px;
  border: #e9d0ae 2px dashed;
  margin: 0px 0 20px;
}

.yogaregister-form  .forminnerpart span.bottom-txt
{
  color: red;
    font-weight: 600;
    font-size: 12px;
    position: relative;
    top: -6px;
    left: 3px;
}

.yogaregister-form  .forminnerpart .inner-rightpart p
{
  margin: 0px 0 8px;
  padding: 0px;
  font-size: 14px;
  font-style: italic;
  font-weight: 600;
}

.yogaregister-form  .forminnerpart .radiopart
{
  width: auto;
  float: left;
  margin: 5px 0 10px 0;
}

.yogaregister-form  .forminnerpart .radiopart span
{
  position: relative;
    left: -12px;
    top: -1px;

}

.yogaregister-form  .forminnerpart label
{
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-weight: 600;
  color: #000;
}

.yogaregister-form  .forminnerpart label span
{
  color: red;
  font-weight: 600;
  font-size: 12px;
  position: relative;
  top: -2px;
  left: 3px;
}


.yogaregister-form  .forminnerpart input[type=radio]
{
  position: relative;
  left: -10px;
}

.yogaregister-form  .forminnerpart input.innerbt[type=radio]
{
  left: 3px;
  top:1px
}

.yogaregister-form  .forminnerpart p.textpart
{
 color: #000;
 font-size: 15px;
 font-weight: 500;
}

.yogaregister-form  .forminnerpart input[type=file]
{
  border:none;
  padding: 0px;
}

.yogaregister-form  .forminnerpart input[type=button]
{
   margin:10px 6px 0 0;
    background: #8d450a;
    color: #fff;
    font-weight: 600;
    border-radius: none;
    padding: 5px 15px;
    font-size: 17px;
    border:none;
    width: auto;
}

.yogaregister-form  .forminnerpart input:hover[type=button]
{
    background: #b5611c;
    color: #fff;
}

.yogaregister-form  .forminnerpart input.reset-btn[type=button]
{
   margin:10px 6px 0 0;
    background: #e8c09d;
    color: #5d2c05;
    font-weight: 600;
    border-radius: none;
    padding: 5px 15px;
    font-size: 17px;
    border:none;
}


.yogaregister-form  .forminnerpart input
{
  margin: 0 0 10px;
  padding: 3px 5px;
  font-size: 15px;
  border: #8d5e1f 1px solid;
  width: 80%;
}

.yogaregister-form .forminnerpart input::placeholder
{
  color: #7f7f7f !important;
  opacity: 0.6;
  font-weight: 600  ;
}

.yogaregister-form .forminnerpart textarea::placeholder
{
  color: #7f7f7f !important;
  opacity: 0.6;
  font-weight: 600  ;
}

.yogaregister-form  .forminnerpart input[type="checkbox"]
{
  width: auto;
}

.yogaregister-form  .forminnerpart textarea
{
  margin: 0 0 0px;
  padding: 5px;
  font-size: 15px;
  border: #8d5e1f 1px solid;
  resize: none;
}

.yogaregister-form  .forminnerpart textarea.wfull
{
  width: 80%;
}

.yogaregister-form  .forminnerpart span.divider
{
  float: right;
  font-weight: 600;
  color: #000;
}

.yogaregister-form  .forminnerpart span.divider1
{
  float: right;
  font-weight: 600;
  color: #000;
  position: relative;
  top: -24px;
}

.yogaregister-form  .forminnerpart span.divider2
{
  float: right;
  font-weight: 600;
  color: #000;
  position: relative;
  top: -45px;
}


.yogaregister-form  .forminnerpart ul.yogalisting
{
  margin: 0px 0 10px;
  padding: 0px;
}

.yogaregister-form  .forminnerpart ul.yogalisting li
{
  margin: 0px 15px 0 0;
  padding: 0px;
  list-style: none;
  width: 40%;
  display: inline-block;
  font-size: 15px;
  color: #000;
}


.yogaregister-form  .forminnerpart ul.yogalisting li.sfull
{
  width: 46%;
}

.yogaregister-form  .forminnerpart ul.yogalisting li.s1full
{
  width: 100%;
}

.yogaregister-form  .forminnerpart ul.yogalisting li.s1full div.othelisting
{
  margin-left: 20px;
}

.yogaregister-form  .forminnerpart ul.yogalisting li.s1full div.othelisting h6
{
  margin: 3px 0 5px 0;
  padding: 0px;
  font-weight: 600;
  color:#db1c07;
}


.yogaregister-form  .forminnerpart ul.yogalisting li input[type=checkbox]
{
  margin-right: 5px;
  position: relative;
  top: 1px;
  width: auto;
}

.yogaregister-form  .forminnerpart ul.yogalisting li::after
{
  background: none !important;
}

.yogaregister-form  .forminnerpart select
{
  margin: 0 0 10px;
  padding: 5px;
  font-size: 13px;
  border: #8d5e1f 1px solid;
  width: 60%;
}

.yogaregister-form  .forminnerpart select.w-30
{
  width: 30%;
}

.yogaregister-form  .forminnerpart .formp20
{
      padding: 20px 0 0 0;
      color: #000;
      font-size: 15px;
}

.m-bottom20
{
   margin-bottom: 20px;
}

.m-top18
{
   margin-top: 20px;
}

a.yogapath{
 
  text-decoration: underline ;
  color: #000;
}

a.yogapath:hover{ 
  text-decoration: none;
 }

 span.redtext
 {
color: red;
font-weight: 500;
font-size: 15px;
position: relative;
top: 6px;
 }

/* ============================ Directory Search Page 23-05-2025 ================================ */

.directory_wrap
{
width: 100%;
margin: 0px;
padding: 0px;
}

.directory_wrap h4
{
margin: 10px 0 0;
padding: 7px 17px;
background: #814b0d;
color: #fff;
font-size: 21px;
display: inline-block;
border-radius: 8px 8px 0 0;
}

.directory_wrap .inner_directory
{
  background: #fff;
  width: 95%;
  margin: 0px 0 35px;
  padding: 40px 20px 30px;
  box-shadow: #dbdbda 2px 2px 10px;
  border-radius: 0px 10px 10px 10px;
}

.directory_wrap .inner_directory label
{
font-size: 16px;
font-weight: 600;
margin-right: 20px;
}

.directory_wrap .inner_directory select
{
margin: 0 0 15px;
padding: 5px;
font-size: 13px;
border: #8d5e1f 1px solid;
width: 60%;
}

.directory_wrap .inner_directory select:focus
{
  outline: none;
}

.directory_wrap .inner_directory input
{
margin: 0 0 15px;
padding: 5px;
font-size: 13px;
border: #8d5e1f 1px solid;
width: 50%;
}

.directory_wrap .inner_directory input.w80
{
  width: 80%;
  margin-bottom: 2px;
}

.directory_wrap .inner_directory input::placeholder
{
  color: #7f7f7f !important;
  opacity: 0.7;
  font-size: 16px;
  font-weight: 600  ;
}

.directory_wrap .inner_directory input[type="button"]
{
  background: #814b0d;
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  margin: 20px 0 0 0;
  padding: 5px 20px;
  width: auto;
}

.fr_1
{
  float: right;
  font-weight: 600;
  color: #000;
}

.form_text
{
font-weight: 500;
font-size: 14px;
color: #c51010;
}


.directory_wrap .inner_directory input:hover[type="button"]
{
  background: #92530a;
}



 /* ============================ Yoga Teacher Login Form Start 26-04-2025 ================================ */

.yogo-loginwrap
{
   background:#fff2f1;
   padding: 20px;
   width: 70%;
   margin: 20px auto;
}

.yogo-loginwrap .inneryogalogin
{
   width:100%;
   margin:0;
   padding:0;
   float: left;
   border:#9b4f26 2px solid;
}

.yogo-loginwrap .inneryogalogin .left-col
{
  width: 50%;
  margin: 0;
  padding: 15px 0 0;
  float: left;
  background:#fff2f1;
  text-align: center;
}

.yogo-loginwrap .inneryogalogin .left-col h3
{
  font-size:21px;
  color:#552606;
  font-weight: 600;
  padding: 11px 0px 0;
}

.yogo-loginwrap .inneryogalogin .left-col a.signup-btn
{
  background: #914116;
  color: #ffffff;
  font-size: 17px;
  font-weight: 600;
  padding: 8px 20px;
  margin: 0px 0 13px 0;
  display: inline-block;
}

.yogo-loginwrap .inneryogalogin .left-col a.signup-btn:hover
{
  background: #cb642d;
}


.yogo-loginwrap .inneryogalogin .right-col
{
  width: 50%;
  margin: 0;
  padding: 15px 15px 30px 15px;
  float: right;
  background: #9b4f26;
 }

.yogo-loginwrap .inneryogalogin .right-col h4
{
  font-size: 23px;
  color: #ffd9c4;
  font-weight: 600;
  padding: 20px 0 0 0;
}

.yogo-loginwrap .inneryogalogin .right-col ul.form-listing
{ 
   width:100%;
   margin: 30px 0 0 0;
   padding: 0;
}

.yogo-loginwrap .inneryogalogin .right-col ul.form-listing li
{
  margin: 0px 0 11px;
  padding: 0px;
  list-style: none;
}

.yogo-loginwrap .inneryogalogin .right-col ul.form-listing li a
{
  text-decoration: underline;
  color: #feccb1;
  font-size:16px;
}

.yogo-loginwrap .inneryogalogin .right-col ul.form-listing li a:hover
{
  text-decoration: none;
  color: #fff;
}

.yogo-loginwrap .inneryogalogin .right-col ul.form-listing li label
{
  font-size: 16px;
  color: #fff;
  margin-bottom: 7px;
}

.yogo-loginwrap .inneryogalogin .right-col ul.form-listing li input
{
  width: 100%;
  border:none;
  padding: 5px;
}

.yogo-loginwrap .inneryogalogin .right-col ul.form-listing li input::placeholder
{
  color: #7f7f7f !important;
  opacity: 0.6;
  font-weight: 600;
  font-size: 15px;
}

.yogo-loginwrap .inneryogalogin .right-col ul.form-listing li input[type="button"]
{
  background: #783917;
    color: #ffd6c0;
    font-size: 19px;
    font-weight: 600;
    border: #e49a72 1px solid;
    padding: 4px 25px;
    width: auto;
  }
  
    .yogo-loginwrap .inneryogalogin .right-col ul.form-listing li input:hover[type="button"]
  {
    background: #64371e;
  }

.yogo-loginwrap .inneryogalogin .right-col ul.form-listing li::after
{
  background-image: none;
}

.heading-space
{
  margin:20px 0 0 0px;
}


/* ============================ Yoga Teacher Form Resonsive ================================ */

@media screen and (max-width: 992px) 
{
  .yogo-loginwrap
  {
    width: 80%;
  }
}



 @media screen and (max-width: 425px)
 {

  .yogaregister-form
  {
    width:100%;
    margin: 0 auto
  }

  .yogaregister-form .forminnerpart .formp20
  {
    width: 100%;
    margin: 0 auto;
  }

  .yogaregister-form .forminnerpart select
  {
    width: 100%;
  }

  .yogaregister-form .forminnerpart span.divider
  {
    display: none;
  }
  .yogaregister-form .forminnerpart input.w50
  {
    width: 100%;
  }

  .yogaregister-form .forminnerpart input.w80
  {
    width: 100%;
  }
 
  .yogaregister-form .forminnerpart input
  {
    width: 100%;
  }

  .yogaregister-form .forminnerpart ul.yogalisting li input[type=checkbox]
  {
    width:auto;
  }

  .yogaregister-form .forminnerpart input[type=checkbox]
  {
    width:auto;
  }

  .yogaregister-form .forminnerpart ul.yogalisting li 
  {
    width:100%;
  }

  .yogaregister-form .forminnerpart textarea.wfull
  {
    width:100%;
  }

  .yogaregister-form .forminnerpart label br
{
  display: none;
}

.yogaregister-form .forminnerpart ul.yogalisting li.sfull
{
  width: 100%;
}

.yogo-loginwrap
{
  width:100%;
}

.yogo-loginwrap .inneryogalogin .left-col
{
  width: 100%;
}

.yogo-loginwrap .inneryogalogin .right-col 
{
  width: 100%;
}

.yogo-loginwrap .inneryogalogin .right-col ul.form-listing li input[type="button"]
{
  width: 100%;
}




 }
/*========================== loader styling ==========================*/
.loader-container {
    width: 100%;
    height: 100%;
    display: grid;
    place-content: center;
    position: fixed;
    background: rgba(255,255,255,.7);
    top: 0;
    left: 0;
    height: 100%;
    z-index: 100000;
}

.loader-container.hide {
        display:none;
}

/* HTML: <div class="loader"></div> */
.loader {
    width: fit-content;
    font-weight: bold;
    font-family:monospace;
    color:#8b4b1d;
    font-size: 30px;
    clip-path: inset(0 3ch 0 0);
    animation: l4 1s steps(4) infinite;
}

    .loader:before {
        content: "HealthandYoga..."
    }

@keyframes l4 {
    to {
        clip-path: inset(0 -1ch 0 0)
    }
}
/*======================== button styling  =========================*/

.btn-style-1 {
    background-color: #8b4b1d;
    color: #fef0e7;
    padding: 7px 15px;
    border-radius: 5px;
    outline: none;
    font-weight: 500;
    border: none;
}

    .btn-style-1:hover {
        background-color: #703a14;
    }

.btn-style-2 {
    background: #304421;
    color: #fff;
    border-radius: 5px;
    width: 80%;
    border: none;
    font-size: 15px;
    font-weight: 600;
    padding: 8px 0;
    margin: 7px 0 0;
}

    .btn-style-2:hover {
        background: #8b4b1d;
    }

    .btn-style-2.invert {
        background: #8b4b1d;
    }

        .btn-style-2.invert:hover {
            background-color: #743d17;
        }

.offer-btn {
    display: block;
    background-color: #39291c;
    color: #ddb492;
    padding: 5px 10px;
    border-radius: 0px;
    margin: 10px 0;
    width: 100%;
    transition: .2s all ease;
    font-weight: 600;
    text-align: center;
}

    .offer-btn:hover {
        font-weight: 800;
    }

.form-btn {
    font-size: 20px;
    display: inline-block;
    background-color: #8d450a;
    color: #fdeee7;
    font-weight: 600;
}

    .form-btn.invert {
        background-color: #e8c09d;
        color: #472816;
        border-color: #e8c09d;
    }

.btn-style-3 {
    padding: 5px 10px;
    border: 2px solid #af642e;
    color: #af642e;
    font-weight: bold;
    margin: 0 10px;
}

    .btn-style-3:hover {
        background-color: #af642e;
        color: #fff;
    }

/* =============================== heading styling ====================================== */
.section-heading {
    text-align: center;
    margin-bottom: 10px;
}

    .section-heading h1 {
        font-size: 35px !important;
        font-weight: 600;
        color: #000;
    }

    .section-heading p {
        font-weight: 500;
        font-size: 20px !important;
    }

.form-heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

    .form-heading h3 {
        position: relative;
        color: #662b00;
        font-weight: 600;
        font-size: 30px;
        z-index: 1;
        margin-bottom: 0;
    }

        .form-heading h3::after {
            content: '';
            position: absolute;
            height: 5px;
            width: 101%;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background-color: #eddacb;
            z-index: -2;
        }

    .form-heading p {
        color: #5f2801;
        font-size: 20px;
        font-weight: 500;
        margin-top: 10px;
    }

/* Toast Styling  */
.toast {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-weight: 500;
    font-size: 16px;
    overflow: hidden;
    text-align: center;
    padding: 10px;
    z-index: 1051;
    min-width: 235px !important;
    width: fit-content;
    padding-right: 40px;
    border: none;
    z-index:10000;
}

    .toast .toast-close {
        position: fixed;
        right: 10px;
        font-size: 30px;
        top: -3px;
        color: white;
    }

.toast-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background-color: #fff0ed;
}

.toast.error {
    background-color: #df4f34;
    color: #fff !important;
}

.toast.success {
    background-color: #46af46;
    color: white !important;
}

.toast.warrning {
    background-color: #fba200;
    color: white !important;
}
.toast.warning {
    background-color: #fba200;
    color: white !important;
}
/* utility classes  */
.not-clickable {
    pointer-events: none;
    color: inherit;
    text-decoration: none;
}

.Hide {
    display: none !important;
}

/* =============================== media queries ======================== */
@media screen and (max-width: 1920px) {
    .banner-padding {
        padding-top: 290px;
    }

    .inner-page-section .banner {
        height: 268px;
    }

    .slide-content h3 {
        font-size: 35px;
    }

    .slide-content.diff .content-side h3 {
        font-size: 40px;
    }

    .slide-content.diff .cursive-heading {
        font-size: 35px;
    }

    .slide-btn {
        font-size: 20px;
    }

    .bottom-tag img {
        width: 50%;
    }
}

@media screen and (max-width: 1440px) {
    .inner-page-section .banner {
        height: 290px;
    }

    .inner-page-section .banner-padding {
        padding-top: 280px;
    }
}

@media screen and (max-width: 1200px) {
    .logo img {
        max-width: 100% !important;
    }

    .bottom-iconlisting .icon-part {
        font-size: 13px;
        text-align: center;
    }

        .bottom-iconlisting .icon-part span {
            width: 40px !important;
            height: 40px !important;
        }

            .bottom-iconlisting .icon-part span img {
                width: 25px;
            }

    .about-us .nav-buttons {
        display: none;
    }

    .slide-content {
        align-items: start;
    }

        .slide-content.diff {
            align-items: center;
        }

        .slide-content h3 {
            font-size: 25px;
        }

        .slide-content .slide-btn {
            font-size: 20px;
            margin: 30px 0 10px 0;
        }
}

@media screen and (min-width: 1200px) {
    .container {
        max-width: 1150px !important;
    }
}

@media screen and (max-width: 1024px) {
    body {
        width: 100%;
        overflow-x: hidden !important;
    }
	    .wish-item tr td {
    padding: 5px;
    min-width: 100px;
    
}

    .footer .container {
        flex-wrap: wrap;
    }

    .footer .footer-col {
        width: 50%;
    }

    .footer .footer-col-2,
    .footer .footer-col-3 {
        width: 25%;
    }

    .cartsummary .cartdeatailpart .rightcart h3 {
        font-size: 14px !important;
    }

    .cartsummary .cartdeatailpart .rightcart ul .cartprice {
        font-size: 13px !important;
    }

    .deatail-cartsection.fixed {
        position: fixed;
        right: 30px;
        bottom: 20px;
        z-index: 99;
    }

    .slide-content .img-side img {
        width: 100%;
    }

    .slide-content.diff .content-side h3 {
        font-size: 30px;
    }

    .slide-content.diff .cursive-heading {
        font-size: 20px;
    }

    .payment-selection .selection-btn {
        padding: 10px;
    }

    .selection-btn .btn-text {
        font-size: 12px;
        text-align: left;
    }

    .inner-page-section .banner {
        height: 200px;
    }

    .inner-page-section .banner-padding {
        padding-top: 200px;
    }
}

@media screen and (max-width: 992px) {
	.view-more{
		display:none;
	}
	#category_menu_satya{
			height:100%;
			top: 43px;
			padding-bottom: 40px !important;
	}
	.header .menu > ul > li{
		padding: 0 !important;
	}
	.main-menu-item{
		margin: 0 !important;
	}
    .feature-box.feature-2 {
        border-right: none;
    }

    .header {
        height: 0;
        padding: 0;
    }

    .mobile-categories {
        display: block;
    }

    .custom-drop {
        display: none !important;
    }

    .mobile-drop {
        visibility: visible !important;
    }

    .order-container .card-container {
        flex-direction: column;
        padding-left: 0;
    }

    .profile-card {
        width: 100%;
        margin: 10px 0;
    }

    .about-us .about-img {
        display: block;
        margin: auto;
    }

    .inner-page-section .inner-heading h3 {
        font-size: 21px !important;
    }

    .slide-content h3 {
        font-size: 18px;
    }

    .slide-content .lower-heading {
        margin-bottom: 05px;
    }

    .slide-content .slide-btn {
        margin: 10px 0;
        font-size: 18px;
        padding: 5px 10px;
    }
	.payment-selection{
		flex-direction:column;
	}
	.innerheader ul.righttoplist {
        display: none !important;
    }
	.innerheader .menu > ul > li.diff{
		background: transparent !important;
	}
	.header .menu > ul > li.diff > a{
		z-index: 1;
		color: #000 !important;
	}
}

@media screen and (max-width: 768px) {
	#myHeader.innerheader{
		padding-top: 0px;
	}
	 .rating-item {
        grid-template-columns: 60% 40%;
    }

	ul.righttoplist li:hover .loginmenu.notLogin{
		display:none !important;
	}
ul.bottomtab-part li a {
    display: block;
    padding: 10px 5px;
font-size: 16px;
}
    ul.righttoplist li .topcart {
        font-size: 22px;
    }

    ul.righttoplist li .userpart {
        font-size: 22px;
    }

    .offcanvas-body .bottomcart-col {
        width: 100%;
    }

    .footer .footer-col-2,
    .footer .footer-col-3 {
        width: 50%;
    }

    .feature-box.feature-1 {
        border-right: none;
    }

    .categories-item img {
        width: 95px;
    }

    .track-banner img {
        width: 100%;
    }

    .track-form {
        max-width: 90%;
        padding: 20px 34px;
    }

    .contact-form {
        top: 15px;
        margin-bottom: 20px;
    }

    .deatail-cartsection.fixed {
        right: 20px;
        bottom: 10px;
        z-index: 9;
    }

    ul.bottomtab-part li a {
        padding: 10px 5px;
        font-size: 12px;
    }

    .detail-dec p {
        font-size: 15px;
    }

    .col-sm-10 {
        margin: auto;
    }

    .deatail-rightpart {
        padding: 10px;
    }

    .bottomreviewbox {
        background: none;
    }

        .bottomreviewbox ul {
            width: 49%;
        }

    .about-content p {
        font-size: 16px;
        text-align: justify;
    }

    .about-us .nav-buttons {
        display: block;
    }

    .about-slider .nav-buttons img {
        cursor: pointer;
        position: static;
        transform: translateY(0);
    }

    .about-slider .nav-buttons {
        width: 100px;
        margin: 10px auto;
    }

    .inner-page-section .inner-heading h3 {
        font-size: 25px !important;
    }

    .slide-content.diff .content-side h3 {
        font-size: 20px;
    }

    .slide-content.diff .content-side .cursive-heading {
        font-size: 17px;
    }

    .user-info .chat {
        position: static;
    }

    .profile-card {
        margin-top: 20px;
    }

    .col-banner-container {
        margin: 10px 0;
        flex-direction: column;
    }

    .col-banner {
        width: 100%;
    }

    .addresses .address {
        width: 100%;
        margin: 10px 0;
    }

    .inner-profile-input {
        width: 100%;
        flex-direction: column;
        padding: 5px 0;
    }

    .outer-profile-input {
        flex-direction: column;
        gap: 0;
    }

    .tab_content {
        padding: 20px;
    }

    .repeat-last-order {
        overflow-x: scroll;
    }

    .wish-item svg {
        width: 25px;
        margin: 5px;
    }

    .wish-item tr td {
    padding: 5px;
    min-width: 100px;
    
}

    .wish-item .item-title {
        font-size: 14px;
    }

        .wish-item .item-title a {
            color: #000;
        }

    .wish-item .item-add a {
        text-wrap: nowrap;
        width: 100%;
    }

    .wish-item .item-img {
        min-width: 50px;
    }



    .popup-container {
        width: 320px;
    }

    .login-form,
    .side-form {
        padding: 10px;
    }

        .side-form .otp-input {
            flex-direction: column !important;
        }

            .side-form .otp-input input {
                width: 100%;
                border-radius: 5px;
                border: 2px solid #dcdcdc;
            }

            .side-form .otp-input .otp-btn {
                width: 100%;
                border-radius: 5px;
            }

        .side-form .social-media button {
            width: 120px;
        }

        .payment-selection .selection-btn {
            width: fit-content;
            border-bottom: 3px solid transparent;
            padding: 10px 5px;
            border-right: 0;
        }
		
		.payment-selection.usd .selection-btn img{
			width:175px;
		}

    .selection-btn.isActive {
        border-left: 0;
    }

    .payment-options {
        flex-wrap: wrap;
        gap: 10px;
    }

    .selection-btn .check-circle {
        width: 10px;
        height: 10px;
        padding: 1px;
    }

    .selection-btn .btn-text {
        width: var(--width);
    }
	.innerheader .menu > ul > li > a{
        z-index: 1;
    }
	 .rating-item {
        grid-template-columns: 100%;
    }

        .rating-item .left-side {
            border-right: none;
            padding: 0;
        }

        .rating-item .right-side {
            padding: 10px 0;
        }
}

@media screen and (max-width: 576px) {
	.innerheader .menu-mobile-trigger {
        top: -40px !important;
    }
    .footer .container {
        flex-wrap: wrap;
    }

    .footer .footer-col {
        width: 100%;
        margin: 10px 0;
    }

    .categories-item img {
        width: 95px;
    }

    .track-form {
        height: 295px;
        transform: translateY(-25px);
    }

    .form-input input[type=submit] {
        padding: 7px 20px;
        font-size: 16px;
        margin: 10px 15%;
        width: 70%;
    }

    .form-input p {
        text-align: center;
    }

    .query-form input {
        width: 100%;
    }

        .query-form input[type=submit],
        .contact-form input[type="submit"] {
            margin: 10px 0;
        }

    .contact-banner h1 {
        font-size: 30px;
    }

    .contact-banner p {
        font-size: 18px;
    }

    .contact-form input[type="submit"] {
        width: 100%;
    }

    .shipping-refferal {
        flex-direction: column;
    }

        .shipping-refferal > * {
            width: 100% !important;
        }

        .shipping-refferal .left-side {
            border-bottom: 1px dashed #ccc;
        }

            .shipping-refferal .left-side img {
                top: auto;
                bottom: -15px;
                transform: rotate(90deg) translateX(-50%);
                right: 50%;
            }

    .brochure-item h4 {
        font-size: 16px;
    }

    .product-brochure h2 {
        font-size: 22px;
    }

    .pointersection .other-info {
        flex-direction: column;
        align-items: start;
    }

    .deatail-rightpart h1 {
        font-size: 24px;
    }

    .bottomreviewbox {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 10px;
    }

        .bottomreviewbox ul {
            width: 100%;
            text-align: center;
        }

    .inner-page-section .inner-heading h3::after {
        display: none;
    }

    .slide-content.diff .content-side h3 {
        font-size: 15px;
    }

    .slide-content.diff .content-side .cursive-heading {
        font-size: 14px;
    }

    .update-profile {
        width: 100%;
    }

        .update-profile.password {
            width: 100%;
        }

    .wishlist-heading .container {
        flex-direction: column;
        text-align: center;
        gap: 20px 0;
    }

    .footer .container {
        flex-wrap: wrap;
    }

    .footer .footer-col {
        width: 100%;
        margin: 10px 0;
    }

    .payment-selection {
        overflow-y: scroll;
    }

        .payment-selection .selection-btn {
            border-bottom: 3px solid transparent;
        }

    .inner-page-section .banner {
        height: 150px;
    }

    .inner-page-section .banner-padding {
        padding-top: 130px;
    }
	
	.popup-container {
        width: 100%;
    }
	.pointersection .bottom-iconlisting{
	display: flex;
    align-items: start;
    justify-content: space-around;
    margin-top: 20px;
	}
	.pointersection .bottom-iconlisting .icon-part span {
    width: 55px !important;
    height: 55px !important;
}

.bottom-iconlisting .icon-part span img {
    width: 30px;
}

.bottom-iconlisting .icon-part {
    font-size: 15px;
    text-align: center;
}

.selection-btn.inr.upi{
	display:none;
}
.review-container {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media screen and (max-width: 480px) {
	.top-tab-container ul li button{
		margin-right: 0 !important;
	}
    .tabs {
        display: none;
    }

    .tab_drawer_heading {
        background-color: #eee;
        color: #6b3816;
        border-top: 1px solid #ccc;
        margin: 0;
        padding: 5px 20px;
        display: block;
        cursor: pointer;
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -khtml-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        font-size: 15px;
    }

    .d_active {
        background-color: #8a4a1e;
        color: #fff;
        border: 1px solid #8a4a1e;
        display: block;
    }

    .edit-info .container {
        overflow: visible;
    }

    .edit-info .back-btn {
        top: -30px;
    }

    .wish-item .item-add a {
        font-size: 12px;
    }

    .wish-item svg {
        width: 20px;
    }
}

@media screen and (max-width: 425px) {
	.review-container {
        grid-template-columns: repeat(1, 1fr);
    }

    .review-container ul, .review-container .review-box{
        text-align:center;
    }
    ul.toplisting {
        padding: 0 10px;
    }

        ul.toplisting li a {
            font-size: 13px;
        }

    .p-relative {
        padding: 10px 0px 10px 10px;
        align-items: end;
    }

    ul.righttoplist {
        gap: 10px;
    }

        ul.righttoplist li img {
            width: 30px;
        }


    .form-heading h3 {
        font-size: 24px;
    }

    .form-heading p {
        font-size: 16px;
    }

    .track-form {
        padding: 10px 20px;
        height: 270px;
    }

    .form-input label {
        font-size: 15px;
    }

    .form-input input[type=submit] {
        width: 90%;
        margin: 10px 5%;
    }

    .query-form input[type=submit] {
        margin: 10px 0;
    }

    .pointersection .selectionpart {
        display: flex;
    }

    .deatail-rightpart {
        padding: 10px 0 0 10px !important;
    }

    ul.bottomtab-part li a.last {
        display: none;
    }

    .topworldwide-btn {
        padding: 7px 8px;
        font-size: 14px;
    }

    .topreviewlist li a {
        font-size: 14px;
    }

   

    .about-heading.line-none h3::after {
        display: none;
    }
	#pagination-controls .pagination .page-link {
        font-size: 13px;
        padding: 5px 10px;
    }

    #uploadButton {
        width: 100%;
        text-align: center;
    }
}

@media screen and (max-width:992px) {

    #myHeader {
        padding-top: 50px;
    }

    .owl-theme .owl-nav {
        display: none;
    }

    .toppart {
        display: none;
    }

    ul.toplisting {
        display: none;
    }

    ul.righttoplist {
        position: absolute;
        top: 0px;
        width: 100%;
        padding: 10px 20px;
        right: 0;
        gap: 15px;
        margin: 0;
        background: #ddb492;
    }

        ul.righttoplist li a {
            flex-direction: row;
            gap: 5px;
        }
}

@media screen and (max-width: 768px) {
    #myHeader {
        padding-bottom: 50px;
        position:relative;
    }

    .cart-count {
        left:15px;
    }

    .p-relative {
        padding: 10px 20px;
    }

.mainserach {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    bottom: 0px;
    padding: 0 10px;
    z-index: 99;
}
        .mainserach input {
            padding: 25px 15px;
        }

    .header {
        border: none;
    }

    .mainserach div {
        margin-top: 0 !important;
        display:flex;
        width:100%
    }

    .mainserach #searchHistory {
        display:none !important;
    }

    .slide-content h3 {
        font-size: 15px;
    }

    .slide-content .slide-btn {
        font-size: 15px;
    }

    .carousel-inner {
        height: 240px;
    }
	
	.change-form{
		width:100%;
	}
}

@media screen and (max-width: 576px) {
    .slide-content.diff .img-side:last-of-type {
        display: none;
    }

    .slide-content.diff .img-side {
        width: 45%;
    }

    .slide-content.diff .content-side {
        width: 50%;
    }

        .slide-content.diff .content-side h3 {
            font-size: 20px;
        }

        .slide-content.diff .content-side .cursive-heading {
            font-size: 20px;
        }

    .slide-content .bottom-tag {
        flex-wrap: wrap;
    }

    .bottom-tag img {
        width: 100%;
    }

    .carousel-inner .carousel-item {
        height: 100%;
    }

    .slide-content .img-side {
        height: 100%;
    }
    .carousel-inner {
        height: 200px;
    }
	
	.pointersection .bottom-iconlisting {
            display: flex;
            align-items: start;
            justify-content: space-around;
            margin-top: 20px;
        }

            .pointersection .bottom-iconlisting .icon-part span {
                width: 55px !important;
                height: 55px !important;
            }

        .bottom-iconlisting .icon-part span img {
            width: 30px;
        }

        .bottom-iconlisting .icon-part {
            font-size: 15px;
            text-align: center;
        }
}

@media screen and (max-width: 425px) {
    .carousel-inner {
        height: 215px;
    }

    .slide-content {
        grid-template-columns: 1fr;
    }

        .slide-content h3 {
            font-size: 15px;
        }

        .slide-content .content-side {
            text-align: center;
            padding: 5px;
        }

        .slide-content .lower-heading {
            margin: 5px auto;
        }

        .slide-content .img-side {
            display: none;
        }

        .slide-content .slide-btn {
            font-size: 12px;
            margin: 5px auto;
        }

        .slide-content .bottom-tag {
            flex-wrap: wrap;
            align-items: center;
            justify-content: center;
        }

            .slide-content .bottom-tag img {
                width: 60%;
            }

    .p-relative {
        padding: 10px 0px;
    }

    .header .menu-mobile-trigger {
        top: -45px;
        right: 20px;
    }
}

.cart-pricesummary {
    position:relative;
}

.min-loader-container {
    background: white;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    display:none;
}

.lds-spinner,
.lds-spinner div,
.lds-spinner div:after {
    box-sizing: border-box;
}

.lds-spinner {
    color: currentColor;
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
    scale: .7;
}

    .lds-spinner div {
        transform-origin: 40px 40px;
        animation: lds-spinner 1.2s linear infinite;
    }

        .lds-spinner div:after {
            content: " ";
            display: block;
            position: absolute;
            top: 3.2px;
            left: 36.8px;
            width: 6.4px;
            height: 17.6px;
            border-radius: 20%;
            background: #5f2801;
        }

        .lds-spinner div:nth-child(1) {
            transform: rotate(0deg);
            animation-delay: -1.1s;
        }

        .lds-spinner div:nth-child(2) {
            transform: rotate(30deg);
            animation-delay: -1s;
        }

        .lds-spinner div:nth-child(3) {
            transform: rotate(60deg);
            animation-delay: -0.9s;
        }

        .lds-spinner div:nth-child(4) {
            transform: rotate(90deg);
            animation-delay: -0.8s;
        }

        .lds-spinner div:nth-child(5) {
            transform: rotate(120deg);
            animation-delay: -0.7s;
        }

        .lds-spinner div:nth-child(6) {
            transform: rotate(150deg);
            animation-delay: -0.6s;
        }

        .lds-spinner div:nth-child(7) {
            transform: rotate(180deg);
            animation-delay: -0.5s;
        }

        .lds-spinner div:nth-child(8) {
            transform: rotate(210deg);
            animation-delay: -0.4s;
        }

        .lds-spinner div:nth-child(9) {
            transform: rotate(240deg);
            animation-delay: -0.3s;
        }

        .lds-spinner div:nth-child(10) {
            transform: rotate(270deg);
            animation-delay: -0.2s;
        }

        .lds-spinner div:nth-child(11) {
            transform: rotate(300deg);
            animation-delay: -0.1s;
        }

        .lds-spinner div:nth-child(12) {
            transform: rotate(330deg);
            animation-delay: 0s;
        }

@keyframes lds-spinner {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

/* register form  */
.modal:has(.register-form) {
    transform: translateY(-3%);
}

.modal .modal-dialog:has(.register-form) {
    max-width: 800px;
}

.register-form {
    margin: 50px auto;
    padding: 20px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

    .register-form h2 {
        margin-top: 0;
        text-align: center;
        color: #6e3a17;
    }

    .register-form p {
        font-size: 14px;
        text-align: center;
        margin-bottom: 4px;
        color: #8d450a;
    }

    .register-form label {
        display: block;
        margin-top: 10px;
        font-size: 15px;
        color: #000;
        font-weight: 500;
    }

    .register-form input[type="text"],
    .register-form input[type="email"],
    .register-form input[type="password"],
    .register-form input[type="tel"],
    .register-form select {
        width: 100%;
        padding: 7px;
        margin-top: 5px;
        border: 1px solid #bbb;
        border-radius: 4px;
        box-sizing: border-box;
        font-size: 14px;
    }


    .register-form .captcha-display {
        display: flex;
        align-items: end;
        justify-content: space-between;
        gap: 0 10px;
    }

        .register-form .captcha-display > * {
            width: 50%;
        }

        .register-form .captcha-display img {
            width: 90%;
        }

    .register-form input[type="submit"] {
        width: 100%;
        padding: 10px;
        margin-top: 20px;
        background-color: #6e3a17;
        color: #fff;
        border: none;
        border-radius: 4px;
        font-size: 15px;
        cursor: pointer;
    }

.item.rel-item .productimg {
    width: 100%;
    height: 100%;
    text-align: center !important;
    vertical-align: middle;
    line-height: 200px;
}

.item.rel-item .productdetail {
    width: 100%;
    margin: 0;
    text-align: center;
    padding: 0;
}

.item.rel-item .productdetail h4 {
        margin: 0 0 5px;
        padding: 0;
        font-size: 17px;
        font-weight: 500;
        height: 55px;
}

.payment-form-btn.disabled {
    background: #b7947c;
    border: 1px solid #876f5f;
}
    @media screen and (max-width: 576px) {
        .deatail-cartsection.fixed {
            position: fixed;
            bottom: 0;
            width: 100%;
            right: 0;
            padding:0;
        }
		
		.deatail-cartsection.mobileFixed {
            position: fixed;
            bottom: 0;
            width: 100%;
            right: 0;
            padding: 0;
        }

        .deatilcartbox {
            width: 100%;
            padding: 0;
            border-radius: 0;
        }

            .deatilcartbox ul {
                display: flex;
                align-items: center;
                justify-content: space-between;
                flex-wrap: wrap;
            }

                .deatilcartbox ul li {
                    margin: 0;
                    padding: 5px 10px;
                }

                    .deatilcartbox ul li:last-child {
                        width: 100%;
                    }

                    .deatilcartbox ul li.cprice {
                        color: #8b4b1d;
                        font-weight: 600;
                        font-size: 24px;
                    }

                    .deatilcartbox ul li.cprice, .deatilcartbox ul li.d-flex {
                        width: 50%;
                    }

                    

                    .deatilcartbox ul li .right-col {
                        width: 100px;
                        margin: 0;
                    }

                    .deatilcartbox ul li .left-col {
                        display: none;
                    }

                    .deatilcartbox ul li.d-flex .input-group button, .deatilcartbox ul li.d-flex .input-group input {
                        height: 44px;
                        text-align: center;
                    }
        ul.bottomtab-part {
            margin:0;
        }

        .deatilcartbox .innercart-btn {
            margin: 0;
            padding: 10px 10px;
        }
    }
	
	.item-title a{
		color:#000;
	}
	
	@media screen and (max-width: 768px){
  .slide-content.slide3.diff .slide3-heading.diff{
    font-size: 30px !important;
  }
  .slide-content.slide3.diff .slide3-heading{
    font-size: 25px !important;
  }

  .slide-content.diff .content-side img.new-fixed {
    top: -40px;
    left: -60px;
    width: 110px;
}
}

@media screen and (max-width: 576px){
  .slide-content.diff.slide3 .content-side{
    width: 60%;
  }
}

@media screen and (max-width: 425px){
  .slide-content.diff.slide3 .img-side{
    width: 40%;
  }

  .slide-content.diff.slide3 .content-side{
    width: 55%;
  }

  .slide-content.slide3.diff .slide3-heading.diff{
    font-size: 20px !important;
  }

  .slide-content.slide3.diff .slide3-heading{
    font-size: 15px !important;
  }

  .slide-content.slide3.diff .content-side .cursive-heading{
    font-size: 16px;
    margin-left: 0;
  }

  .slide-content.diff .content-side img.new-fixed {
    top: -29px;
    left: -38px;
    width: 70px;
  }
}
@font-face {
    font-family: Ionicons;
    src: url("https://cdnjs.cloudflare.com/ajax/libs/ionicons/4.6.3/fonts/ionicons.eot?v=4.6.3");
    src: url("https://cdnjs.cloudflare.com/ajax/libs/ionicons/4.6.3/fonts/ionicons.eot?v=4.6.3#iefix") format("embedded-opentype"), url("https://cdnjs.cloudflare.com/ajax/libs/ionicons/4.6.3/fonts/ionicons.woff2?v=4.6.3") format("woff2"), url("https://cdnjs.cloudflare.com/ajax/libs/ionicons/4.6.3/fonts/ionicons.woff?v=4.6.3") format("woff"), url("https://cdnjs.cloudflare.com/ajax/libs/ionicons/4.6.3/fonts/ionicons.ttf?v=4.6.3") format("truetype"), url("https://cdnjs.cloudflare.com/ajax/libs/ionicons/4.6.3/fonts/ionicons.svg?v=4.6.3#Ionicons") format("svg");
    font-weight: 400;
    font-style: normal;
}

@-webkit-keyframes slideLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes slideLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@-webkit-keyframes slideRight {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }
}

@keyframes slideRight {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }
}

.ion,
.ion-ios-arrow-back:before,
.ion-ios-arrow-down:before,
.ion-ios-close:before,
.ion-md-cart:before,
.ion-ios-add:before,
.ion-ios-arrow-forward:before,
.ionicons {
    display: inline-block;
    font-family: Ionicons;
    speak-as: none;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    text-rendering: auto;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.brand,
.header .menu > ul > li > a {
    text-rendering: optimizeLegibility;
}

.brand,
a,
button {
    font-family: inherit;
    line-height: inherit;
    border: none;
    outline: 0;
}

.ion-ios-arrow-back:before {
    content: "";
}

.ion-ios-arrow-down:before {
    content: "";
}

.ion-ios-arrow-forward:before {
    content: "";
}

.ion-ios-close:before {
    content: "";
}

.ion-md-cart:before {
    content: "";
}

.ion-ios-add:before {
    content: "";
}

a,
button {
    font-size: inherit;
    cursor: pointer;
    background: 0 0;
    text-decoration: none;
}

@media only screen and (max-width: 768px) {

    a,
    button {
        cursor: default !important;
        border: none;
        outline: 0;
    }
}

img,
video {
    /* max-width: 100%; */
    height: auto;
    -o-object-fit: cover;
    object-fit: cover;
}

.menu-container {
    max-width: 80rem;
    width: 100%;
    height: auto;
    padding: 0 2rem;
    margin: 0 auto;
}

.brand {
    font-size: 1.75rem;
    font-weight: 700;
    color: #e91e63;
    text-transform: uppercase;
}

.header .wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.header-item-center,
.header-item-left {
    display: -webkit-box;
    display: -ms-flexbox;
    -webkit-box-flex: 0;
}

.header-item-left {
    display: flex;
    -ms-flex: 0 0 17%;
    flex: 0 0 17%;
}

.header-item-center {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.header-item-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 17%;
    flex: 0 0 17%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

    .header-item-right .menu-icon {
        font-size: 1.35rem;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        gap: 1rem;
        margin-left: 1rem;
        border: none;
        outline: 0;
        color: #121212;
        -webkit-transition: 0.3s;
        -o-transition: 0.3s;
        transition: 0.3s;
    }

.header .menu > ul > li {
    display: inline-block;
    margin-right: 0;
    padding: 10px 0;
}

    .header .menu > ul > li.diff {
        background-color: #b56d39;
    }

        .header .menu > ul > li.diff:hover {
            background-color: #9e5a2a;
        }

            .header .menu > ul > li.diff a, .header .menu > ul > li.diff:hover a {
                color: #fff;
            }


    .header .menu > ul > li > a {
        position: relative;
        font-family: Quicksand, sans-serif;
        font-size: 15px;
        font-weight: 600;
        line-height: 1.25;
        border: none;
        outline: 0;
        color: #000;
        text-transform: capitalize;
        -webkit-transition: color 0.3s ease-in-out;
        -o-transition: color 0.3s ease-in-out;
        transition: color 0.3s ease-in-out;
        padding: 0 10px;
    }

    .header .menu > ul > li .menu-subs {
        position: absolute;
        width: 100%;
        height: auto;
        margin-top: 1.75rem;
        padding: 0;
        border: none;
        outline: 0;
        z-index: 500;
        opacity: 0;
        visibility: hidden;
        border-radius: 0.25rem;
        border-top: 3px solid #793503;
        background: #fafafa;
        -webkit-box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
        -webkit-transition: 0.5s ease-in-out;
        -o-transition: 0.5s ease-in-out;
        transition: 0.5s ease-in-out;
    }
.menu-subs ul {
    padding-left: 0;
}

        .header .menu > ul > li .menu-subs.menu-column-4 > .list-item .title,
        .header .menu > ul > li .menu-subs.menu-mega > .list-item > ul > li > a,
        .header .menu > ul > li .menu-subs > ul > li > a {
            font-family: inherit;
            font-weight: 500;
            border: none;
            outline: 0;
            text-transform: capitalize;
            text-rendering: optimizeLegibility;
        }

        .header .menu > ul > li .menu-subs > ul > li {
            line-height: 1;
            list-style: none;
            padding: 0 10px;
        }


            .header .menu > ul > li .menu-subs > ul > li > a {
                display: inline-block;
                font-size: 1rem;
                line-height: 1.25;
                padding: 0.75rem 0;
                color: #121212;
                -webkit-transition: 0.3s ease-in-out;
                -o-transition: 0.3s ease-in-out;
                transition: 0.3s ease-in-out;
            }

    .header .menu > ul > li .menu-column-1 {
        min-width: 10rem;
        max-width: 14rem;
    }

    .header .menu > ul > li .menu-subs.menu-mega {
        left: 50%;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
    }

        .header .menu > ul > li .menu-subs.menu-mega > .list-item > ul > li {
            display: block;
            line-height: 1;
        }

            .header .menu > ul > li .menu-subs.menu-mega > .list-item > ul > li > a {
                display: inline-block;
                font-size: 1rem;
                line-height: 1.25;
                padding: 0.5rem 0;
                color: #121212;
                -webkit-transition: color 0.3s ease-in-out;
                -o-transition: color 0.3s ease-in-out;
                transition: color 0.3s ease-in-out;
            }

    .header .menu > ul > li .menu-subs.menu-column-4 {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        max-width: 68rem;
        width: 100%;
        padding: 1.25rem 1rem 2.25rem 1rem;
    }

        .header .menu > ul > li .menu-subs.menu-column-4 > .list-item {
            -webkit-box-flex: 0;
            -ms-flex: 0 0 25%;
            flex: 0 0 25%;
            padding: 0 1rem;
        }

    .header .menu > ul > li .menu-subs.menu-column-5 > .list-item {
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
    }

    .header .menu > ul > li .menu-subs.menu-column-4 > .list-item .title, .header .menu > ul > li .menu-subs.menu-column-4 > .list-item .title a{
        font-size: 16px;
        line-height: 22px;
        padding: 0.75rem 0;
        color: #000;
        -webkit-transition: 0.3s ease-in-out;
        -o-transition: 0.3s ease-in-out;
        transition: 0.3s ease-in-out;
    }

    .header .menu > ul > li .menu-subs.menu-column-4 > .list-item.text-center .title {
        text-align: center;
    }

    .header .menu > ul > li .menu-subs.menu-column-4 > .list-item img.responsive {
        max-width: 100%;
        width: 100%;
        height: auto;
        margin-top: 0.75rem;
        -o-object-fit: cover;
        object-fit: cover;
        vertical-align: middle;
    }

.header .menu > ul > li .menu-subs.menu-mega > .list-item > ul > li > a:hover,
.header .menu > ul > li .menu-subs > ul > li > a:hover,
.header .menu > ul > li > a:hover,
.header-item-right a:hover {
    color: #793503;
}

@media only screen and (min-width: 993px) {
    .header .menu > ul > li.menu-item-has-children .menu-subs.show-menu {
        margin-top: 0.5rem;
        opacity: 1;
        visibility: visible;
    }
}

.menu-mobile-header,
.menu-mobile-trigger {
    display: none;
}

@media only screen and (max-width: 992px) {
    .menu-container {
        padding: 0 1rem;
        margin: 0 auto;
    }

    .header .menu .menu-mobile-header .menu-mobile-arrow,
    .header .menu > ul > li > a i.ion {
        font-size: 1.25rem;
        line-height: 3.125rem;
        width: 3.125rem;
        height: 3.125rem;
        text-align: center;
    }

    .header-item-center {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3;
    }

    .header-item-left,
    .header-item-right {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    }

    .wrapper {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .header .menu-mobile-trigger {
        position: absolute;
        display: block;
        cursor: pointer;
        width: 1.75rem;
        height: 1rem;
        border: none;
        outline: 0;
        margin-left: 0;
        background: 0 0;
        top: -50px;
        right: 30px;
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        -webkit-transition: 0.35s ease-in-out;
        -o-transition: 0.35s ease-in-out;
        transition: 0.35s ease-in-out;
    }

        .header .menu-mobile-trigger span {
            display: block;
            position: absolute;
            width: 100%;
            height: 2px;
            left: 0;
            border: none;
            outline: 0;
            opacity: 1;
            border-radius: 0.25rem;
            background: #121212;
            -webkit-transform: rotate(0);
            -ms-transform: rotate(0);
            transform: rotate(0);
            -webkit-transition: 0.25s ease-in-out;
            -o-transition: 0.25s ease-in-out;
            transition: 0.25s ease-in-out;
        }

            .header .menu-mobile-trigger span:first-child {
                top: 0;
            }

            .header .menu-mobile-trigger span:nth-child(2),
            .header .menu-mobile-trigger span:nth-child(3) {
                top: 0.5rem;
            }

            .header .menu-mobile-trigger span:nth-child(4) {
                top: 1rem;
            }

    .header-item-right {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .header .menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 20rem;
        height: 100%;
        z-index: 1099;
        overflow: hidden;
        background: #fafafa;
        -webkit-transform: translate(-100%);
        -ms-transform: translate(-100%);
        transform: translate(-100%);
        -webkit-transition: 0.5s ease-in-out;
        -o-transition: 0.5s ease-in-out;
        transition: 0.5s ease-in-out;
    }

        .header .menu.active {
            -webkit-transform: translate(0);
            -ms-transform: translate(0);
            transform: translate(0);
        }

        .header .menu > ul > li {
            display: block;
            line-height: 1;
            margin: 0;
        }

            .header .menu > ul > li > a {
                display: block;
                line-height: 3.125rem;
                height: 3.125rem;
                padding: 0 3.125rem 0 1rem;
                border-bottom: 1px solid rgba(0, 0, 0, 0.1);
                color: #000;
				z-index: -1;
            }

                .header .menu > ul > li > a:hover {
                    color: #1fa72a !important;
                }

                .header .menu > ul > li > a i.ion {
                    position: absolute;
                    top: 0;
                    right: 0;
                    -webkit-transform: rotate(-90deg);
                    -ms-transform: rotate(-90deg);
                    transform: rotate(-90deg);
                }

        .header .menu .menu-mobile-header {
            position: relative;
            position: -webkit-sticky;
            position: sticky;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            -webkit-box-pack: justify;
            -ms-flex-pack: justify;
            justify-content: space-between;
            top: 0;
            height: 3.125rem;
            z-index: 501;
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
            background: #fafafa;
        }

            .header .menu .menu-mobile-header .menu-mobile-arrow {
                display: none;
                cursor: pointer;
                border-right: 1px solid rgba(0, 0, 0, 0.1);
                color: #121212;
            }

            .header .menu .menu-mobile-header.active .menu-mobile-arrow,
            .header .menu > ul > li .menu-subs.active,
            .header .menu > ul > li .menu-subs.menu-mega > .list-item > ul > li > a,
            .header .menu > ul > li .menu-subs > ul > li > a {
                display: block;
            }

            .header .menu .menu-mobile-header .menu-mobile-title {
                font-family: inherit;
                font-size: 1rem;
                font-weight: 500;
                line-height: inherit;
                color: #121212;
                text-transform: capitalize;
                text-rendering: optimizeLegibility;
            }

            .header .menu .menu-mobile-header .menu-mobile-close {
                font-size: 2.25rem;
                line-height: 3.125rem;
                cursor: pointer;
                width: 3.125rem;
                height: 3.125rem;
                border-left: 1px solid rgba(0, 0, 0, 0.1);
                color: #121212;
                text-align: center;
            }

        .header .menu .menu-section {
            height: 100%;
            overflow-y: auto;
            overflow-x: hidden;
            width: 100%;
            padding-left: 0;
        }

        .header .menu > ul > li .menu-subs,
        .header .menu > ul > li .menu-subs.menu-mega {
            position: absolute;
            display: none;
            top: 0;
            left: 0;
            max-width: none;
            min-width: auto;
            width: 100%;
            height: 100%;
            margin: 0;
            padding: 4rem 1rem 1rem;
            opacity: 1;
            overflow-y: auto;
            visibility: visible;
            -webkit-transform: translateX(0);
            -ms-transform: translateX(0);
            transform: translateX(0);
            -webkit-box-shadow: none;
            box-shadow: none;
        }

            .header .menu > ul > li .menu-subs.menu-column-4 > .list-item {
                -webkit-box-flex: 0;
                -ms-flex: 0 0 100%;
                flex: 0 0 100%;
                padding: 0;
            }

                .header .menu > ul > li .menu-subs.menu-column-4 > .list-item img.responsive {
                    margin-top: 0;
                }

                .header .menu > ul > li .menu-subs.menu-column-4 > .list-item.text-center .title {
                    margin-bottom: 1.25rem;
                }

                .header .menu > ul > li .menu-subs.menu-column-4 > .list-item.text-center:last-child .title {
                    margin-bottom: 0;
                }

            .header .menu > ul > li .menu-subs.menu-mega > .list-item > ul {
                margin-bottom: 1rem;
            }

    .overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1098;
        opacity: 0;
        visibility: hidden;
        background: rgba(0, 0, 0, 0.55);
        -webkit-transition: 0.5s ease-in-out;
        -o-transition: 0.5s ease-in-out;
        transition: 0.5s ease-in-out;
    }

        .overlay.active {
            opacity: 1;
            visibility: visible;
        }

    .header .menu > ul > li .menu-subs.active {
        display: block;
    }
}

.main {
    display: block;
    width: 100%;
    min-height: 100vh;
    background-image: url(https://source.unsplash.com/pkhBlvTLyog/1920x1280);
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
}

.menu-mega.categories {
    padding: 0 10px 10px 10px !important;
}

@media screen and (max-width: 1150px) {
    .header .menu > ul > li > a {
        font-size: 12px;
    }
}

#category_menu_satya .title a {
    color: #b14c02;
    font-weight: 700;
}

.custom-divider {
    border: 1px solid #e0b799;
    border-radius: 50%;
    display: inline-block;
    padding: 5px 6px;
    margin: 0 16px;
    background: #8a4a1e;
    position: relative;
    color: white;
    font-weight: 600;
}



