/********** Template CSS **********/
:root {
    --primary: #FEA116;
    --light: #F1F8FF;
    --dark: #0F172B;
}

.fw-medium {
    font-weight: 500 !important;
}

.fw-semi-bold {
    font-weight: 600 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    text-transform: uppercase;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 2px;
}


/*** Navbar ***/
.navbar-dark .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: #FFFFFF;
    font-size: 15px;
    text-transform: uppercase;
    outline: none;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .navbar-dark .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 43, .7);
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.page-header {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.page-header-inner {
    background: rgba(15, 23, 43, .7);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}

.booking {
    position: relative;
    margin-top: -100px !important;
    z-index: 1;
}


/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
}

.section-title::before {
    position: absolute;
    content: "";
    width: 45px;
    height: 2px;
    top: 50%;
    left: -55px;
    margin-top: -1px;
    background: var(--primary);
}

.section-title::after {
    position: absolute;
    content: "";
    width: 45px;
    height: 2px;
    top: 50%;
    right: -55px;
    margin-top: -1px;
    background: var(--primary);
}

.section-title.text-start::before,
.section-title.text-end::after {
    display: none;
}


/*** Service ***/
.service-item {
    height: 320px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    background: #FFFFFF;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transition: .5s;
}

.service-item:hover {
    background: var(--primary);
}

.service-item .service-icon {
    margin: 0 auto 30px auto;
    width: 65px;
    height: 65px;
    transition: .5s;
}

.service-item i,
.service-item h5,
.service-item p {
    transition: .5s;
}

.service-item:hover i,
.service-item:hover h5,
.service-item:hover p {
    color: #FFFFFF !important;
}


/*** Youtube Video ***/
.video {
    position: relative;
    height: 100%;
    min-height: 500px;
    background: linear-gradient(rgba(15, 23, 43, .1), rgba(15, 23, 43, .1)), url(../img/video.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.video .btn-play {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    box-sizing: content-box;
    display: block;
    width: 32px;
    height: 44px;
    border-radius: 50%;
    border: none;
    outline: none;
    padding: 18px 20px 18px 28px;
}

.video .btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
}

.video .btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: var(--primary);
    border-radius: 50%;
    transition: all 200ms;
}

.video .btn-play img {
    position: relative;
    z-index: 3;
    max-width: 100%;
    width: auto;
    height: auto;
}

.video .btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 32px solid var(--dark);
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

#videoModal {
    z-index: 99999;
}

#videoModal .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

#videoModal .modal-body {
    position: relative;
    padding: 0px;
}

#videoModal .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #FFFFFF;
    background: #000000;
    opacity: 1;
}


/*** Testimonial ***/
.testimonial {
    background: linear-gradient(rgba(15, 23, 43, .7), rgba(15, 23, 43, .7)), url(../img/carousel-2.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.testimonial-carousel {
    padding-left: 65px;
    padding-right: 65px;
}

.testimonial-carousel .testimonial-item {
    padding: 30px;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 100%;
    height: 40px;
    top: calc(50% - 20px);
    left: 0;
    display: flex;
    justify-content: space-between;
    z-index: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 2px;
    font-size: 18px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--primary);
    background: #FFFFFF;
}


/*** Team ***/
.team-item,
.team-item .bg-primary,
.team-item .bg-primary i {
    transition: .5s;
}

.team-item:hover {
    border-color: var(--secondary) !important;
}

.team-item:hover .bg-primary {
    background: var(--secondary) !important;
}

.team-item:hover .bg-primary i {
    color: var(--secondary) !important;
}


/*** Footer ***/
.newsletter {
    position: relative;
    z-index: 1;
}

.footer {
    position: relative;
    /* margin-top: -110px; */
    padding-top: 100px;
}

.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid #FFFFFF;
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .3);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

/* @import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rozha+One&display=swap'); */


/* // root */
:root {
    /* --font-style: 'Rubik' sans-serif; */
    --gray-text: #3e445a;
    --dark-text: #202435;
    --primary-color: #F6957F;
    --light-primary-color: #fdd9b7;
    --color-price: #d51243;
    --color-rating: #ffcd00;
    --color-success: #00b853;
    --color-success-dark: #038e42;
    --color-badge: #2bbef9;
    --color-white: #fff;
    --light-gray: #9b9bb4;
    --placeholder-color: #bfc0cc;
}

/* customize scrollbar */
/* width */
::-webkit-scrollbar {
    width: 6px;
    height: 5px;
    background-color: var(--primary-color);
}

/* Track */
::-webkit-scrollbar-track {
    border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background-color: #FDD9B7;
    border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background-color: var(--base-dark-green);
}


/* =============================================================
    GENERAL STYLES
    ============================================================ */
html {
    overflow-x: hidden;
}

body {
    /* font-family: var(--font-style); */
    color: #6c7178;
    /* overflow-x: hidden; */
    position: relative;
}

p {
    letter-spacing: 1.5px;
    /* line-height: 25px; */
    color: #777
}

a {
    text-decoration: none;
    transition: color 0.2s ease-in 0s;
    letter-spacing: 1px;
    font-size: 14px;
}

a:hover {
    color: #000;
    text-decoration: none
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #170A01;
    /* font-family: 'Univers Next Pro', serif; */
    font-weight: 400;
    margin: 0;
    text-transform: none;
    letter-spacing: 1px;
}


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

.error {
    color: red;
}

.bg-light-color {
    background-color: var(--light-primary-color);
}

.gray_text {
    color: var(--light-gray);
}

.dark_text {
    color: var(--dark-text);
}

.rating_color {
    color: var(--color-rating);
}

.price_color {
    color: var(--color-price);
}

.logo-color {
    color: var(--primary-color);
}

.offer-text {
    color: var(--color-success-dark);
}

/* btn style  */
.db_btn {
    background-color: #F6957F;
    padding: 7px 15px;
    color: #000;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    box-shadow: 0 3px 2px rgba(0, 0, 0, .1);
    transition: color 0.8s ease-in-out
}

.db_btn>i {
    color: #271A17;
    margin-right: 5px;
}

.db_btn svg {
    width: 20px;
    height: 20px;
    color: #000;
}

.db_btn:hover {
    background-color: #FDD9B7;
    color: #000
}

.btn {
    font-family: var(--font-style) !important;
}
.ecombtn-border {
    border: 1px solid var(--light-gray);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 500;
    color: var(--gray-text);
    transition: all 0.3s;
    padding: 8px 18px;
    border-radius: 60px;
}

.ecombtn-border:hover {
    background-color: var(--light-gray);
    border-color: var(--gray-text);
    color: #000;
}

.btn-cart {
    background-color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 500;
    color: #fff;
    transition: all 0.3s;
    padding: 8px 18px;
    border-radius: 60px;
}

.btn-cart svg {
    width: 20px;
    height: 20px;
}

.btn-cart:hover {
    background-color: #fff;
    border: 1px solid var(--primary-color);
}

.btn-shop {
    background-color: var(--dark-text);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    transition: all 0.3s;
    padding: 8px 18px;
    border-radius: 60px;
}

.btn-shop:hover {
    background-color: #fff;
    border: 1px solid var(--primary-color);
}

.btn-shop svg {
    width: 20px;
    height: 20px;
    color: var(--primary-color);
    margin-left: 8px;
}

.btn-review {
    background-color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    transition: all 0.3s;
    padding: 8px 18px;
    border-radius: 60px;
}

.btn-review:hover {
    background-color: #fff;
    border: 1px solid var(--primary-color);
}

.btn-delete {
    background-color: var(--color-price);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 500;
    color: #fff;
    transition: all 0.3s;
    padding: 8px 18px;
    border-radius: 60px;
}

.btn svg {
    width: 20px;
    height: 20px;
}

.wishlist-active svg {
    fill: var(--color-price);
}

/* hero slider */
#homeslider {
    height: 550px;
    overflow: hidden;
}

#homeslider .carousel-inner,
#homeslider .carousel-item {
    height: 100% !important;
    overflow: hidden;
}

#homeslider .carousel-inner,
#homeslider .carousel-item a {
    display: block;
    height: 100% !important;
    overflow: hidden;
}

#homeslider .carousel-inner,
#homeslider .carousel-item a img {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
}

/* mobile slider */
#mobslider {
    height: 450px;
    overflow: hidden;
}

#mobslider .carousel-inner,
#mobslider .carousel-item {
    height: 100% !important;
    overflow: hidden;
}

#mobslider .carousel-inner,
#mobslider .carousel-item a {
    display: block;
    height: 100% !important;
    overflow: hidden;
}

#mobslider .carousel-inner,
#mobslider .carousel-item a img {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
}

#heroslider {
    position: relative;
}

#heroslider::after {
    background: linear-gradient(-45deg, transparent 16px, #fff 0), linear-gradient(45deg, transparent 16px, #fff 0);
    background-position-x: 0%, 0%;
    background-position-y: 0%, 0%;
    background-repeat: repeat, repeat;
    background-size: auto, auto;
    background-repeat: repeat-x;
    background-position: top;
    background-size: 18px 14px;
    content: "";
    display: block;
    width: 100%;
    height: 20px;
    position: absolute;
    top: -2px;
    left: 0px;
    z-index: 8;
}

.hero-heading h1 {
    font-size: 28px;
    font-weight: 600;
    color: var(--dark-text);
    /* font-family: "Rozha One", serif; */
}

.hero-heading h1 span {
    padding: 0 6px;
}

.heading h2 {
    font-size: 32px;
    font-weight: 600;
    color: var(--dark-text);
    /* font-family: "Rozha One", serif; */
}

/* prodcut box style  */
/* .product_box .carousel-indicators [data-bs-target] {
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 50%;
    opacity: 1;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3px;
    background: #cdcdcd;
} */
.product_box_variant_selection button {
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 50%;
    opacity: 1;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3px;
    background: #cdcdcd;
}

.product_box_variant_selection .active {
    opacity: 1;
    background: #6b5f5f;
}

#productboximages .carousel-item {
    height: 100%;
}

.product_box_variant_selection button img {
    width: 100%;
    height: 100%;
    z-index: 99999;
    left: 4px;
    top: 3px;
    border-radius: 50%;
    box-sizing: border-box;
    line-height: normal;
    object-fit: cover;
}

.product_box_variant_selection {
    display: flex;
    justify-content: center;
    padding-top: 5px;
    gap: 5px;
}

.product_box .detail-option {
    /* margin-top: 50px; */
    padding: 10px;
}

.product_box .detail-option p {
    font-size: 20px;
    /* font-variant: all-small-caps; */
    color: #363636;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-image {
    position: relative;
    border-bottom: 2px solid #495057;
    overflow: hidden;
    height: 400px !important;
    /* border-radius: 18px 0 18px 0; */
}

.product-image .pro-off {
    position: absolute;
    left: 0;
    font-size: 13px;
    top: 4%;
    background-color: var(--dark-text);
    color: #fff;
    padding: 4px 8px;
    z-index: 4;
}

.product-image .rating-view {
    background-color: hsla(0, 0%, 100%, .8);
    position: absolute;
    font-size: 12px;
    font-weight: 700;
    left: 20px;
    bottom: 20px;
    border-radius: 2px;
    padding: 4px;
    display: flex;
    gap: 2px;
    align-items: center;
    z-index: 5;
    justify-content: center;
}

.product-image .rating-view svg {
    width: 18px;
    height: 18px;
    color: var(--color-rating);
    fill: var(--color-rating);
}

.product-image .product-tag {
    position: absolute;
    right: 0;
    top: 3%;
    font-size: 12px;
    background-color: #fff;
    color: #000;
    padding: 4px 8px;
    z-index: 4;
}

.product-image .masking {
    /* -webkit-mask-image: url(../images/frame1.png);
    mask-image: url(../images/frame1.png);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat; */
    height: 100%;
    /* mask-size: cover;
    mask-position: top center; */
}

.product-image .img-product {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: 50% 50%;
    object-position: 50% 50%;
    font-family: "object-fit: cover; object-position: 50% 50%";
    transition: 0.5s all ease-in-out;

}

.product-image:hover {
    border-bottom: 2px solid #F6957F;
    transition: all 0.5s ease-in-out;
    /*transition: transform .5s;*/

}

.product-image:hover img {
    transform: scale(1.2);
    transition: transform .5s;
    /*transition: 0.5s all ease-in-out;*/
}

.product-image:hover .product-hover-overlay {
    opacity: 1
}

.product-image:hover .btn {
    -webkit-transform: none !important;
    transform: none !important;
    opacity: 1 !important
}

.product-hover-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    gap: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to top, #04040440, rgba(0, 0, 0, 0.0));
    opacity: 0;
    transition: opacity 0.3s
}

.product-hover-overlay .product-hover-overlay-buttons {
    z-index: 3
}


/* =================view cart========= */
.cartSec_card {
    border: none;
    border-right: 1px solid #dee2e6;
    /* box-shadow: 0px 0px 2px #fdd9b7; */
    padding-top: 10px;
}
.coupon-card {
    padding: 20px;
    border-radius: 12px !important;
    background-color: #fff;
    border: 1px solid #E7C246;
}
.coupon-card button.btn-cart {
    width: 70%;
    font-size: 18px;
}

.cartSecCard_product {
    width: 100%;
    margin: auto;
    /* border-bottom: 1px solid #fdd9b7; */
    padding-bottom: 10px;
}

.cart_Sec .cartSec_card h2 {
    font-size: 19px;
    padding: 5px;
    padding-left: 20px;
    margin-bottom: 10px;
}

.cartSec_card .cartSecCard_product .order_img_Pro {
    height: 160px;
    overflow: hidden;
    border-radius: 8px;
    width: 100%;
}
.cartSec_card .cartSecCard_product .order_img_Pro img {
    object-fit: cover;
    object-position: center;
    height: 100%;
    width: 100%;
}

.cartSec_card .cartSecCard_product p {
    font-size: 12px;
    line-height: 1.4;
}

.checkout_price span,
.checkout_price del {
    font-weight: 500;
    font-size: 13px;
    margin-right: 5px;
}

.checkout_price del {
    color: gray;
}

.theme_color {
    color: #f6957f;
}

.Checkout_BtnDiv button {
    border: none;
    background: #f6957f;
    color: #ffffff;
    padding: 5px 10px;
    border-radius: 3px;
}

.checkout_total .table th {
    font-weight: 500;
}

.checkout_total .table th,
.checkout_total .table td {
    padding: 5px;
    font-size: 14px;
}

.address_card, .address_box  {
    height: 100%;
}

.address_card h4 {
    font-size: 15px;
    margin: 3px;
    margin-left: 0;
    font-weight: 500;
    letter-spacing: 0.5px;
    font-family: 'Roboto';
}

.address_card p {
    font-size: 12px;
    line-height: 17px;
    text-align: left;
    letter-spacing: 1px;
    color: #393838;
}
.address_card .action-btn .btn svg {
    width: 16px;
    height: 16px;
}
.address_card input[type="radio"] {
    display:none;
}
.address_card input[type=radio]:checked + .address_label {
    background-color: var(--light-primary-color);
}
.cart_Sec .accordion-button:not(.collapsed) {
    color: var(--bs-accordion-active-color);
    background-color: #fff1e4;
    box-shadow: inset 0 calc(-1* var(--bs-accordion-border-width)) 0 #fdd9b7;
}

.cart_Sec .accordion-button:focus {
    box-shadow: none !important;
}

.cart_Sec .accordion-item {
    border-bottom: none;
}

.coupon_div h3 {
    font-size: 20px;
}

.coupon_div .couponDiv_box {
    border: 2px solid #E7C246;
    border-radius: 30px;
    font-size: 14px;
    overflow: auto;
}
.coupon_div .couponDiv_box .apply-coupon-btn {
    background-color: #E7C246;
    padding: 8px 18px;
    height: 100%;
    color: var(--dark-text);
    font-size: 18px;
    cursor: pointer;
}
.coupon_div .couponDiv_box .remove-coupon-btn {
    background-color: #E7C246;
    padding: 8px 18px;
    height: 100%;
    color: var(--color-price);
    font-size: 18px;
    cursor: pointer;
}
.coupon_div .couponDiv_box .remove-coupon-btn svg {
    width: 18px;
    height: 18px;
}
.coupon_div button {
    background: #f6957f;
    border: none;
    color: #ffff;
    padding: 3px 15px;
    font-weight: bold;
    border-radius: 3px;
}


/* prodcut detail style  */
.slider {
    padding: 0 32px;
    color: var(--dark-text);
}

.swiper-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.best-offer {
    background-color: var(--dark-text);
    padding: 6px 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase !important;
    line-height: normal !important;
    color: #fff !important;    
}
.green_color {
    color: #198754 !important;
}

.green_border {
    border: 1px dashed #198754 !important;
    background: #f5fff4;
}

.slider__flex {
    display: flex;
    align-items: flex-start;
}

.slider__col {
    display: flex;
    flex-direction: column;
    width: 80px;
    margin-right: 32px;
}

.slider__prev,
.slider__next {
    cursor: pointer;
    text-align: center;
    font-size: 14px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.slider__prev svg,
.slider__next svg {
    width: 22px;
    height: 22px;
}

.slider__prev:focus,
.slider__next:focus {
    outline: none;
}

.slider__thumbs {
    height: calc(600px - 110px);
}

.slider__thumbs .slider__image {
    transition: 0.25s;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    opacity: 0.5;
}

.slider__thumbs .slider__image:hover {
    opacity: 1;
}

.slider__thumbs .swiper-slide-thumb-active .slider__image {
    -webkit-filter: grayscale(0%);
    filter: grayscale(0%);
    opacity: 1;
}

.slider__images {
    height: 600px;
}

.slider__images .slider__image img {
    transition: 3s;
}

.slider__images .slider__image:hover img {
    transform: scale(1.1);
}

.slider__image {
    width: 100%;
    height: 100%;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}

.slider__image img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.slider__image img.visible {
    opacity: 0;
}

.slider__image .zoo-item {
    top: 0;
}

.product___slider {
    width: 50%;
    position: sticky;
    top: 0;
    height: 600px;
    padding: 20px;
}

.product-wrapper-detail .prodcut__info {
    min-height: 800px;
    padding: 30px 35px;
}

.product-wrapper-detail .prodcut__info h1 {
    color: var(--dark-text);
    font-size: 24px;
    font-weight: 500;
    font-family: var(--font-style);

}

.prodcut__info .product-block-price {
    font-size: 22px;
    font-weight: 600;
}

.text-small {
    font-size: 12px;
    letter-spacing: 1.5px;
    line-height: 18px;
}

.prodcut__info .colors__view {
    display: flex;
    gap: 8px;
}

.prodcut__info .colors__view li {
    width: 60px;
    height: 60px;
    border-radius: 100%;
    display: block;
    border: 3px solid var(--light-primary-color);
    opacity: 0.5;
    overflow: hidden;
}

.prodcut__info .colors__view li a {
    display: block;
    width: 100%;
    height: 100%;
    filter: grayscale(100%);
}

.prodcut__info .colors__view li a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.prodcut__info .colors__view li.active {
    opacity: 1;
}

.prodcut__info .colors__view li.active a {
    filter: grayscale(0%);
}

.prodcut__info .btn__wrapper {
    display: grid;
    grid-template-columns: 7fr 5fr;
}
.size-button {
    background-color: var(--dark-text);
    color: #fff;
}
.size-button-outline {
    border: 1px solid var(--dark-text);
    color: var(--dark-text);
}
.share__wrapper a {
    color: #000;
    text-transform: uppercase;
}

.share__wrapper a:hover {
    color: var(--primary-color);
}

.btn-add-cart {
    background-color: var(--dark-text);
    padding: 15px 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--dark-text);
    font-size: 16px;
    color: #fff;
    min-height: 22px;
    font-weight: 700;
    gap: 8px;
}
.btn-add-cart:hover {
    background-color: #fff;
    border-color: var(--dark-text);
    color: var(--dark-text);
}

.btn-wishlist {
    background-color: #fff;
    border: 1px solid var(--primary-color);
    padding: 15px 8px;
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    min-height: 22px;
    font-weight: 700;
}
.btn-wishlist:hover {
    background-color: var(--primary-color);
    color: var(--dark-text);
}
.btn-buy-now {
    background-color: var(--primary-color);
    padding: 15px 8px;
    display: flex;
    align-items: center;
    border: 1px solid var(--primary-color);
    justify-content: center;
    font-size: 16px;
    min-height: 22px;
    font-weight: 500;
    text-transform: uppercase;
    gap: 8px;
}
.btn-buy-now:hover {
    background-color: #fff;
    border-color: var(--dark-text);
    color: var(--dark-text);
}
.btn-write-review {
    background-color: #fff;
    border: 1px solid var(--dark-text);
    padding: 15px 8px;
    display: flex;
    gap: 8px;
    text-transform: uppercase;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    min-height: 22px;
    font-weight: 700;
}

.prodcut__info h6 {
    font-weight: 500;
    margin-bottom: 8px;
}

.prodcut__info h6 svg {
    width: 20px;
    height: 20px;
}

.delivery-check-input {
    height: 45px;
    padding: 2px 10px;
    background-color: #fff;
    max-width: 350px;
    display: flex;
    justify-content: space-between;
}

.delivery-check-input input {
    border: none;
    background-color: #fff;
}

.delivery-check-input button {
    border: none;
    background-color: #fff;
    color: var(--color-price);
    font-weight: 600;
    height: 100%;
    padding: 0 8px;
}

.product-detail-content p {
    color: var(--dark-text);
    font-size: 14px;
}

.product-detail-content strong,
.product-detail-content b {
    color: #000;
}

.index-tableContainer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}

.index-tableContainer .index-row:nth-child(odd) {
    margin-right: 10%;
}

.index-tableContainer .index-row {
    position: relative;
    border-bottom: 1px solid #eaeaec;
    margin: 0 0 12px;
    padding-bottom: 10px;
    -ms-flex-preferred-size: 40%;
    flex-basis: 40%;
}

.index-tableContainer .index-row .index-rowKey {
    position: relative;
    color: #7e818c;
    font-size: 12px;
    line-height: 1;
    margin-bottom: 5px;
}

.index-tableContainer .index-row .index-rowValue {
    position: relative;
    color: #282c3f;
    font-size: 16px;
    line-height: 1.2;
}

.total_rating_view {
    border: 1px solid var(--primary-color);
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 600;
    display: inline-flex;
    color: #000;
    align-items: center;
    gap: 6px;
    font-size: 16px;
}

.total_rating_view svg {
    color: var(--color-rating);
    width: 22px;
    fill: var(--color-rating);
}

.total_rating_view span {
    color: var(--light-gray);
    font-weight: 500;
}

ul.best-offers {
    display: flex;
    align-items: center;
}

ul.best-offers li {
    padding-bottom: 15px;
    border-bottom: 1px solid #eaeaec;
    margin-bottom: 10px;
}

.best-offers li .inside {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: var(--dark-text);
    text-align: left;
}

.best-offers li .inside p {
    color: var(--dark-text);
    margin-bottom: 0;
}

.best-offers li .inside p strong {
    color: var(--color-price);
}

.best-offers li .inside span {
    border: 1px dashed var(--color-price);
    padding: 3px 20px;
    margin-top: 4px;
    display: inline-block;
    font-size: 12px;
}

/* rating review box style */
.rating {
    display: flex;
    width: 100%;
    justify-content: center;
    overflow: hidden;
    flex-direction: row-reverse;
    height: 150px;
    position: relative;
}

.rating-0 {
    filter: grayscale(100%);
}

.rating>input {
    display: none;
}

.rating>label {
    cursor: pointer;
    width: 40px;
    height: 40px;
    margin-top: auto;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 24 24' stroke-width='1.5' stroke='currentColor' class='size-6'%3E %3Cpath stroke-linecap='round' stroke-linejoin='round' d='M11.48 3.499a.562.562 0 0 1 1.04 0l2.125 5.111a.563.563 0 0 0 .475.345l5.518.442c.499.04.701.663.321.988l-4.204 3.602a.563.563 0 0 0-.182.557l1.285 5.385a.562.562 0 0 1-.84.61l-4.725-2.885a.562.562 0 0 0-.586 0L6.982 20.54a.562.562 0 0 1-.84-.61l1.285-5.386a.562.562 0 0 0-.182-.557l-4.204-3.602a.562.562 0 0 1 .321-.988l5.518-.442a.563.563 0 0 0 .475-.345L11.48 3.5Z' /%3E %3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 76%;
    transition: 0.3s;
}

.rating>input:checked~label,
.rating>input:checked~label~label {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='yellow' viewBox='0 0 24 24' stroke-width='1.5' stroke='currentColor' class='size-6'%3E %3Cpath stroke-linecap='round' stroke-linejoin='round' d='M11.48 3.499a.562.562 0 0 1 1.04 0l2.125 5.111a.563.563 0 0 0 .475.345l5.518.442c.499.04.701.663.321.988l-4.204 3.602a.563.563 0 0 0-.182.557l1.285 5.385a.562.562 0 0 1-.84.61l-4.725-2.885a.562.562 0 0 0-.586 0L6.982 20.54a.562.562 0 0 1-.84-.61l1.285-5.386a.562.562 0 0 0-.182-.557l-4.204-3.602a.562.562 0 0 1 .321-.988l5.518-.442a.563.563 0 0 0 .475-.345L11.48 3.5Z' /%3E %3C/svg%3E");

}

.rating>input:not(:checked)~label:hover,
.rating>input:not(:checked)~label:hover~label {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='yellow' viewBox='0 0 24 24' stroke-width='1.5' stroke='currentColor' class='size-6'%3E %3Cpath stroke-linecap='round' stroke-linejoin='round' d='M11.48 3.499a.562.562 0 0 1 1.04 0l2.125 5.111a.563.563 0 0 0 .475.345l5.518.442c.499.04.701.663.321.988l-4.204 3.602a.563.563 0 0 0-.182.557l1.285 5.385a.562.562 0 0 1-.84.61l-4.725-2.885a.562.562 0 0 0-.586 0L6.982 20.54a.562.562 0 0 1-.84-.61l1.285-5.386a.562.562 0 0 0-.182-.557l-4.204-3.602a.562.562 0 0 1 .321-.988l5.518-.442a.563.563 0 0 0 .475-.345L11.48 3.5Z' /%3E %3C/svg%3E");

}

.emoji-wrapper {
    width: 100%;
    text-align: center;
    height: 100px;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
}

.emoji-wrapper:before,
.emoji-wrapper:after {
    content: "";
    height: 15px;
    width: 100%;
    position: absolute;
    left: 0;
    z-index: 1;
}

.emoji-wrapper:before {
    top: 0;
    background: linear-gradient(to bottom, white 0%, white 35%, rgba(255, 255, 255, 0) 100%);
}

.emoji-wrapper:after {
    bottom: 0;
    background: linear-gradient(to top, white 0%, white 35%, rgba(255, 255, 255, 0) 100%);
}

.emoji {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: 0.3s;
}

.emoji>svg {
    margin: 15px 0;
    width: 70px;
    height: 70px;
    flex-shrink: 0;
}

#rating-1:checked~.emoji-wrapper>.emoji {
    transform: translateY(-100px);
}

#rating-2:checked~.emoji-wrapper>.emoji {
    transform: translateY(-200px);
}

#rating-3:checked~.emoji-wrapper>.emoji {
    transform: translateY(-300px);
}

#rating-4:checked~.emoji-wrapper>.emoji {
    transform: translateY(-400px);
}

#rating-5:checked~.emoji-wrapper>.emoji {
    transform: translateY(-500px);
}

.write-review-box h5 {
    font-weight: 600;
    text-transform: uppercase;
}

.write-review-box form textarea {
    border: 1px solid var(--dark-text);
    padding: 16px;
    color: var(--dark-text);
    border-radius: 8px;
}

.write-review-box .upload-label {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f5;
    border-radius: 8px;
}
.write-review-box .upload-label svg {
    width: 50px;
    height: 50px;
}
.write-review-box .upload-img-view {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.write-review-box .upload-img-view img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}


/* user review view style  */
.user-review {
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

.user-review .rating {
    height: auto;
    display: flex;
    gap: 5px;
    font-size: 14px;
    flex-direction: row;
    color: var(--color-rating);
    align-items: center;
}

.user-review .rating span {
    color: var(--dark-text)
}

.user-review h4 {
    font-size: 16px;
    color: #000;
    font-family: var(--font-style);
    text-transform: uppercase;
    margin-bottom: 0px;
}

.user-review p {
    font-size: 14px;
    color: var(--gray-text);
    margin-bottom: 0px;
    line-height: 21px;

}

.user-review-img-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px
}

.user-review .review-img {
    width: 80px;
    height: 80px;
    padding: 0;
    overflow: hidden;
}

.user-review .review-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* prodcut slider swiper style */

.products-wrapper .swiper-button-next,
.products-wrapper .swiper-button-prev {
    position: absolute;
    bottom: 0 !important;
    top: 45%;
    width: 2.5rem;
    height: 2.5rem;
    z-index: 10;
    border: 1px solid #edeef5;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.07);
    border-radius: 50%;
    background-image: none !important;
}

.products-wrapper .swiper-button-next svg,
.products-wrapper .swiper-button-prev svg {
    width: 16px;
    height: 16px;
    color: var(--dark-text);
}

.products-wrapper .swiper-button-next::after,
.products-wrapper .swiper-button-prev::after {
    display: none;
}

/* search bar listing design */
#search_product_list {
    position: absolute;
    max-height: 400px;
    overflow-y: auto;
    width: 100%;
    background-color: #f5f5f5;
    padding: 10px 20px;
    border-radius: 12px;
    z-index: 1055;
    display: flex;
    gap: 8px;
    flex-direction: column;
}
#search_product_list li a {
    color: #000;
}
/* home [age style  */

/* category collection style  */

.category__collection {
    height: 400px;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.category__collection img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.35s;
}

.category__collection:hover img {
    transform: scale(1.2);
    transition: transform .5s;
}

.category__collection .content_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    padding: 20px;
    background-image: linear-gradient(to top, #04040440, #36363633);
}

.category__collection .content_overlay h3 {
    font-size: 28px;
    font-weight: 600;
    color: #fff;
}

.category__collection .content_overlay p {
    font-size: 18px;
    font-weight: 500;
    color: #fff
}

.category__collection .content_overlay button {
    border: 2px solid #fff;
    padding: 8px 16px;
    font-size: 14px;
    color: #fff;
    font-weight: 500;
    text-transform: uppercase;
}

/* Collection section design */
.collection__section .collection__img {
    width: 350px;
    height: 450px;
    position: relative;
}

.collection__section .collection__img2 {
    height: 400px;
    width: 325px;
}

.collection__section .collection__img::after {
    content: '';
    width: 100%;
    height: 100%;
    top: -20px;
    left: -20px;
    border: 4px solid #E7C246;
    position: absolute;
    background-color: transparent;

}

.collection__img2::after {
    border-color: var(--color-price) !important;
    right: -20px;
    left: initial !important;
}

.collection__section .collection__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Deal of the day section style  */
.deal__of__the__day {
    background-color: #fff;
    background-image: url(../images/slide5.webp);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: 0 324%;
    margin-bottom: 30px;
}

.deal__of__the__day .deal_content {
    border: 8px solid #E7C246;
    right: -25px;
    position: relative;
    height: 361px;
    background-color: rgba(0, 0, 0, 0.5);
}

.deal__of__the__day .deal_content>label {
    background-color: #E7C246;
    padding: 6px 15px;
    color: #000;
}

.deal__of__the__day .deal_content p {
    color: #fff;
}

.deal__of__the__day .deal__product_image {
    position: relative;
    height: 550px;
    overflow: hidden;
}
.deal__product_image .maskimg {
    overflow: hidden;
    position: relative;
}
.deal__product_image .product_content {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    left: 0;
    background-image: linear-gradient(to bottom,rgba(0,0,0,0.0), rgba(0,0,0,0.5) );
}
.deal__product_image .product_content label.price {
    position: absolute;
    left: 0;
    background-color: var(--dark-text);
    padding: 4px 12px;
    border-radius: 0 0 4px 4px;
    color: #fff;
    top: 30%;
}
.deal__product_image .product_content .rating_view {
    position: absolute;
    bottom: 40px;
    left: 10px;
}
.deal__product_image .product_content .rating_view label {
    border: 1px solid var(--primary-color);
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 600;
    display: inline-flex;
    color: #000;
    align-items: center;
    width: fit-content;
    gap: 6px;
    margin-top: 6px;
    font-size: 14px;
}
.rating_view svg {
    color: var(--color-rating);
    width: 18px;
    fill: var(--color-rating);
}

.deal__product_image .product_content label.price span {
    font-weight: 600;
}
.single-product .swiper-button-next,
.single-product .swiper-button-prev {
    bottom: 30px !important;
    top: initial;
}

.single-product .swiper-button-prev {
    left: initial;
    right: 60px;
}

.maskimg {
    -webkit-mask-image: url(../images/frame1.png);
    mask-image: url(../images/frame1.png);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    height: 100%;
    mask-size: cover;
    mask-position: top center;
}

.img-product {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: 50% 50%;
    object-position: 50% 50%;
    font-family: "object-fit: cover; object-position: 50% 50%";
    transition: 0.5s all ease-in-out;

}

.count-circle {
    display: block;
    width: 80px;
    height: 80px;
    border: 2px solid #ffb9ad;
    border-radius: 20px;
    position: relative;
    color: var(--primary-color);
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    flex-direction: column;
    gap: 2px;
    justify-content: center;
}

.count-circle span {
    font-size: 30px;
    line-height: 20px;
    /* font-family: "Rozha One", serif; */
    font-weight: 700;
    color: #fff;
}

.weave {
    display: block;
    width: 100px;
    height: 100px;
    border: 2px solid #ffb9ad;
    border-radius: 25px;
    border-radius: 36px;
    position: relative;
    color: #fff;
    position: absolute;
    top: 20px;
    right: 40px;
    z-index: 8;
    text-align: center;
    font-size: 30px;
    font-weight: 700;
    display: flex;
    flex-direction: column;
    gap: 2px;
    justify-content: center;
}

.weave:before,
.weave:after {
    display: block;
    width: 100px;
    height: 100px;
    border: 2px solid #ffb9ad;
    border-radius: 25px;
    content: "";
    position: absolute;
    top: -4px;
    left: -4px;
}

.weave:before {
    -moz-transform: rotate(30deg);
    -ms-transform: rotate(30deg);
    -webkit-transform: rotate(30deg);
    transform: rotate(30deg);
}

.weave:after {
    -moz-transform: rotate(60deg);
    -ms-transform: rotate(60deg);
    -webkit-transform: rotate(60deg);
    transform: rotate(60deg);
}

/* footer */
footer {
    background-color: var(--light-primary-color);
    padding: 60px 0 0 0;
    position: relative;
}

footer::after {
    background-image: url(../images/maheshwar.svg);
    background-size: contain;
    background-position: bottom left;
    content: '';
    background-repeat: no-repeat;
    opacity: 0.5;
    position: absolute;
    width: 500px;
    height: 100%;
    bottom: 30px;
    left: -60px;
    z-index: 0;
}

footer .container {
    z-index: 10;
    position: relative;
}

footer ul li a {
    font-size: 12px;
    margin-bottom: 13px;
    font-weight: 500;
    display: block;
    color: var(--dark-text);
    transition: all 0.3s;
}

footer ul li a svg {
    width: 16px;
    height: 16px;
    color: var(--primary-color);
}

footer ul li a:hover {
    color: var(--primary-color);
    padding-left: 4px;
}

footer h4 {
    font-size: 20px;
    margin-bottom: 12px;
    text-transform: uppercase;
    font-family: var(--font-style);
}

footer p {
    font-size: 12px;
    color: var(--dark-text);
}

footer .subscribe__wrapper {
    border-bottom: 2px solid var(--dark-text);
    padding: 2px 0;
    height: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

footer .subscribe__wrapper input {
    border: none;
    background-color: transparent;
    color: var(--dark-text);
    font-size: 14px;
    font-weight: 400;
    height: 100%;
    padding: 4px 12px;
}

footer .subscribe__wrapper button {
    font-size: 14px;
    text-transform: uppercase;
    height: 100%;
    background-color: var(--primary-color);
}

footer .social__wrapper {
    display: flex;
    margin-top: 20px;
    align-items: center;
    gap: 12px;
}

footer .social__wrapper a i {
    font-size: 22px;
    color: var(--dark-text);
}


/* Shop by color */
.shop__by__color .nav-pills .nav-link {
    color: #000;
    text-transform: uppercase;
}

.shop__by__color .nav-pills .nav-link.active {
    background-color: var(--primary-color);
    color: var(--dark-text);
}

/* product filter */
aside.filter_aside {
    position: sticky !important;
    top: 0;
    padding: 20px;
    visibility: visible !important;
    transform: translateX(0%) !important;
}

aside .ul_height_scroll {
    max-height: 250px;
    overflow-y: auto;
}

aside.filter_aside h4 {
    font-family: var(--font-style);
    padding-top: 10px;
    text-transform: uppercase;
}

aside.filter_aside h4 a {
    float: right;
    background-color: #E7C246;
    color: #000;
    font-size: 14px;
    padding: 4px 12px;
    text-transform: capitalize;
}

.show-list-filter-apply-name>label {
    border: 1px solid var(--light-primary-color);
    color: var(--dark-text);
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px
}

.show-list-filter-apply-name>label svg {
    color: var(--color-price);
    width: 14px;
    height: 14px;
    stroke: 1.5px;
}

.filter-show svg,
.filter-hide svg {
    width: 13px;
    height: 13px;
}

.mega-menu-fillter {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 0 4px;
}

.show-list-filter-apply-name>label>.btn {
    --bs-btn-font-size: 12px
}

.product-filter-accordion .accordion-button {
    font-family: var(--font-style) !important;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
}

.product-filter-accordion .accordion-button:not(.collapsed) {
    background-color: transparent !important;
    color: var(--primary-color) !important;
    box-shadow: none !important;
}

.accordion-button::after {
    width: 16px;
    height: 16px;
    background-size: 16px;
}

.product-filter-accordion .accordion-body ul li {
    font-size: 13px;
    color: var(--gray-text);
}

.color-checkbox label {
    width: 25px;
    height: 25px;
    border-radius: 100%;
    border: 2px solid var(--light-gray);
    opacity: 0.5;
    cursor: pointer;
}

.color-check:checked+.color-active {
    border-color: var(--light-gray);
    opacity: 1;
}

/* User profile  */
.user-sidebar {
    position: sticky;
    top: 0;
    padding: 20px 0;
}

.user-sidebar .user-profile {
    width: 60px;
    height: 60px;
    overflow: hidden;
    background-color: var(--placeholder-color);
    color: var(--primary-color);
    border-radius: 100%;
    margin: 0 auto;
}

.user-sidebar .user-bg {
    background-color: #233a9508;
}

.user-sidebar .user-profile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.user-sidebar h4 {
    font-size: 20px;
    text-align: center;
    color: var(--primary-color);
}

.user-sidebar ul li {
    list-style: none;
    font-size: 14px;
    font-weight: 400;
    padding: 14px 8px;
    border-bottom: 1px solid #d3d3d333;
    padding-left: 20px;
}

.user-sidebar ul li a {
    color: #000;
}

.user-sidebar ul li:hover {
    background: #f9fafb;
    color: var(--primary-color);
}

.user-sidebar .active {
    /* background: #f9fafb; */
    color: var(--primary-color);
    font-weight: 500;
    border-left: 2px solid var(--primary-color);
}

.prodcut_order_box {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    padding: 10px 6px;
    border: 1px solid var(--primary-color);
    position: relative;
}
.prodcut_order_box .card-header {
    font-size: 12px;
}
.prodcut_order_box .order__status {
    position: absolute;
    top: 0;
    font-size: 11px;
    right: 0;
}

.prodcut_order_box .item_content {
    font-size: 14px;
}

.prodcut_order_box .item_content h5 {
    font-weight: 600;
    font-size: 16px;
    color: #000;
    font-family: var(--font-style);
}

.prodcut_order_box .item_content p {
    margin-bottom: 0;
}

.prodcut_order_box .action_wrapper {
    display: flex;
    gap: 5px;
    justify-content: space-between;
    gap: 15px;
}

.prodcut_order_box .action_wrapper .btn-track {
    background-color: var(--primary-color);
    /* padding: 8px 15px; */
    text-align: center;
    color: #000;
    border: 1px solid #fff;
}

.prodcut_order_box .action_wrapper .btn-track:hover {
    border-color: var(--primary-color);
}

/* about us tyle */

.about-shop-bg {
    background-image: url(../images/aboutbg.webp);
    background-position: center;
    background-size: cover;
    height: 550px;
    position: relative;
}
.about-shop-bg .container {
    height: 100%;
}
.about-shop-bg:after {
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: var(--dark-text);
    opacity: 0.8;
    z-index: 2;
    position: absolute;
}
.about-shop-bg .content-about {
    padding: 40px 0;
    height: 100%;
    position: relative;
    z-index: 4;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    justify-content: center;

}
.about-shop-bg .content-about img {
    width: 120px;
}
.about-shop-bg .content-about h2 {
    text-transform: uppercase;
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 28px;
}
.about-shop-bg .content-about h3  {
    font-size: 42px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
}
.about-shop-bg .content-about p {
    color: #fff;
    font-weight: 500;
    font-size: 16px;
    text-align: center;
}
.about-shop-bg .content-about button svg {
    width: 20px;
    height: 20px;
}
.about-shop-bg .content-about button {
    border-width: 2px;
    border-radius: 0px;
    font-weight: 500;
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: 16px;
}

/* My cart  */
/* .cart__head .head,
.cart__head .cart__items {
    display: grid;
    grid-template-columns: 6fr 2fr 2fr 2fr;
} */

.QTY {
    display: grid;
    max-width: 150px;
    height: 40px;
    grid-template-columns: 2fr 4fr 2fr;
}

.QTY .minus,
.QTY .plus {
    background-color: var(--light-primary-color);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.QTY input {
    border: 1px solid var(--light-primary-color);
    height: 100%;
    text-align: center;
    width: 100%;
}

/* Track Order */
.order-track-detail h4 {
    font-family: var(--font-style);
}

.order-track-detail svg {
    width: 25px;
    height: 25px;
}
.items-detail-img {
    width: 100%;
    height: 180px;
    overflow: hidden;
}
.items-detail-img img {
    object-fit: cover;
    object-position: top center;
    width: 100%;
    height: 100%;
}
.hh-grayBox {
    background-color: #F8F8F8;
    margin-bottom: 20px;
    padding: 35px;
    margin-top: 20px;
}

.pt45 {
    padding-top: 45px;
}

.order-tracking {
    text-align: center;
    max-width: 24%;
    position: relative;
    display: block;
    min-width: 8%;
}

.order-tracking .is-complete {
    display: block;
    position: relative;
    border-radius: 50%;
    height: 30px;
    width: 30px;
    border: 0px solid #AFAFAF;
    background-color: #f7be16;
    margin: 0 auto;
    transition: background 0.25s linear;
    -webkit-transition: background 0.25s linear;
    z-index: 2;
}

.order-tracking .is-complete:after {
    display: block;
    position: absolute;
    content: '';
    height: 14px;
    width: 7px;
    top: -2px;
    bottom: 0;
    left: 5px;
    margin: auto 0;
    border: 0px solid #AFAFAF;
    border-width: 0px 2px 2px 0;
    transform: rotate(45deg);
    opacity: 0;
}

.order-tracking.completed .is-complete {
    border-color: #27aa80;
    border-width: 0px;
    background-color: #27aa80;
}

.order-tracking.completed .is-complete:after {
    border-color: #fff;
    border-width: 0px 3px 3px 0;
    width: 7px;
    left: 11px;
    opacity: 1;
}

.order-tracking p {
    color: #A4A4A4;
    font-size: 13px;
    margin-top: 8px;
    margin-bottom: 0;
    line-height: 20px;
}

.order-tracking p span {
    font-size: 12px;
}

.order-tracking.completed p {
    color: #000;
}

.order-tracking::before {
    content: '';
    display: block;
    height: 3px;
    width: calc(100% - 6px);
    background-color: #f7be16;
    top: 13px;
    position: absolute;
    left: calc(-60% + 20px);
    z-index: 0;
}

.order-tracking:first-child:before {
    display: none;
}

.order-tracking.completed:before {
    background-color: #27aa80;
}

.blog_card img {
    height: 180px;
    object-fit: cover;
}

.blog_card p {
    letter-spacing: 1px;
    line-height: 23px;
    color: #777;
    font-size: 15px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.suggest_blog {
    border-radius: 5px;
    box-shadow: 0px 0px 5px #f1f1f1;
    padding: 5px;
}

.suggest_blog img {
    height: 115px;
    object-fit: cover;
    object-position: center;
}

.suggest_blog h4 {
    font-size: 18px;
}

.suggest_blog .btn-cart {
    padding: 3px 14px;
    margin-top: 20px !important;
}

.suggest_parent_div {
    position: sticky;
    top: 20px;
}

.suggest_blog p {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    margin: 0;
    font-size: 13px;
    letter-spacing: 1px;
}

.remove-btn {
    position: absolute;
    top: 13%;
    padding: 1px 5px;
    font-size: 12px;
    border-radius: 0;
}

/* loader css animation */
.loader-backdrop {
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    position: fixed;
    z-index: 999;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

.loader {
    width: 150px;
    height: 150px;
}

svg {
    width: 90%;
    fill: none;
}

.load {
    transform-origin: 50% 50%;
    stroke-dasharray: 570;
    stroke-width: 20px;
}

.load.one {
    stroke: #fcdbd4;
    animation: load 1.5s infinite;
}

.load.two {
    stroke: #f9b3a4;
    animation: load 1.5s infinite;
    animation-delay: 0.1s;
}

.load.three {
    stroke: #F6957F;
    animation: load 1.5s infinite;
    animation-delay: 0.2s;
}

.point {
    animation: bounce 1s infinite ease-in-out;
}

.point.one {
    fill: #F6957F;
    animation-delay: 0s;
}

.point.two {
    fill: #f9b3a4;
    animation-delay: 0.1s;
}

.point.three {
    fill: #fcdbd4;
    animation-delay: 0.2s;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes load {
    0% {
        stroke-dashoffset: 570;
    }

    50% {
        stroke-dashoffset: 530;
    }

    100% {
        stroke-dashoffset: 570;
        transform: rotate(360deg);
    }
}

/*===============
        Contact Us -=================*/

.contact_info {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact_info li {
    display: flex;
    align-items: start;
    gap: 10px;
}

.contact_info li .infotext {
    width: 80%;
}

.contact_info li .icon {
    width: 40px;
    height: 40px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
}

.contact_info li .icon svg {
    width: 20px;
    height: 20px;
    color: #000;
}

.contact_info li h5 {
    color: #000;
    font-weight: 600;
    font-size: 16px;
}

.contact_info li p,
.contact_info li p a {
    color: #363636;
    font-size: 14px;
}

.form_contact {
    border-radius: 30px;
}

.gmap_canvas iframe {
    width: 100%;
}

/*=============
        Breadcrumb Style  ===*/
.breadcrumb_bg {
    background-image: url(../images/aboutbg.webp);
    background-size: cover;
    background-position: center;
    position: relative;
    height: 170px;
    padding: 40px 0
}
.breadcrumb_bg::after {
    background-color: rgba(0, 0, 0, 0.7);
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
}
.breadcrumb_bg .container {
    position: relative;
    z-index: 20;
}
.breadcrumb_bg h3 {
    color: #E7C246;
    text-transform: uppercase;
}

.breadcrumb_bg h3>span {
    width: 5%;
    height: 2px;
    display: block;
    margin-top: 10px;
    background-color: #F6957F;
}

.breadcrumb_bg .breadcrumb {
    background-color: transparent;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.breadcrumb_bg .breadcrumb>li>a {
    color: #fff;
    font-size: 14px;
}

.breadcrumb_bg .breadcrumb>li>a:hover {
    color: #ff5e62
}
.breadcrumb-item + .breadcrumb-item::before {
    color: #fff;
}
.breadcrumb_bg .breadcrumb>.breadcrumb-item.active {
    color: var(--primary-color);
    font-weight: 600;
}

.breadcrumb {
    background-color: transparent;
    padding: 0;
    margin: 0
}

.breadcrumb>li>a {
    color: #fff;
}

.breadcrumb>li>a:hover {
    color: #ff5e62
}

.breadcrumb>.breadcrumb-item.active {
    color: #fff;
}

.social_media {
    border-top: 1px solid var(--primary-color);
}

.social_media ul li a {
    width: 40px;
    height: 40px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
}

.social_media ul li a i {
    color: #fff;
    font-size: 20px;
}

/* media responsive */
@media (max-width: 767.98px) {
    .slider__flex {
        flex-direction: column-reverse;
    }

    .slider__col {
        flex-direction: row;
        align-items: center;
        margin-right: 0;
        margin-top: 24px;
        width: 100%;
    }

    .slider__images {
        width: 100%;
    }

    .slider__thumbs {
        height: 100px;
        width: calc(100% - 96px);
        margin: 0 16px;
    }

    .slider__prev,
    .slider__next {
        height: auto;
        width: 32px;
    }
}

@media (max-width:470px) {

    .product-image {
        height: 500px !important
    }

    aside.filter_aside {
        position: fixed !important;
        top: 0;
        padding: 20px;
        visibility: hidden !important;
        transform: translateX(-100%) !important;
    }

    .offcanvas.show:not(.hiding),
    .offcanvas.showing {
        transform: none !important;
    }

    .offcanvas.hiding,
    .offcanvas.show,
    .offcanvas.showing {
        visibility: visible !important;
        width: 350px;
    }

    .filter-footer {
        z-index: 999;
        display: grid !important;
        grid-template-columns: 4fr 8fr;
    }

    aside.filter_aside {
        padding: 10px;
    }

    footer::after {
        width: 100%;
        left: 0;
    }

    .collection__section {
        overflow-x: hidden;
    }

    .collection__section .collection__img img {
        object-position: left;
    }

    .shop__by__color .nav-pills .nav-link {
        font-size: 14px;
    }

    .cart__head .head,
    .cart__head .cart__items {
        grid-template-columns: 12fr 1fr;
        grid-auto-rows: 2fr;
    }

    .product___slider {
        width: 100%;
        position: relative;
        top: 0;
        height: auto;
        padding: 0;
    }

    .slider {
        padding: 0 20px;
    }

    .product-wrapper-detail .prodcut__info {
        padding: 30px 20px !important;
    }

    .prodcut__info .btn__wrapper {
        grid-template-columns: auto;
    }

    .category__collection {
        height: 500px;
    }
}
.contact_mssg{
    padding-top: 18px;
    width: 100%;  
}