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

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

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 99;
}

/*** Spinner End ***/


/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

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

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

.btn-md-square {
    width: 44px;
    height: 44px;
}

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

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

.btn.border-secondary {
    transition: 0.5s;
}

.btn.border-secondary:hover {
    background: var(--bs-secondary) !important;
    color: var(--bs-white) !important;
}

/*** Topbar Start ***/
.fixed-top {
    transition: 0.5s;
    background: var(--bs-white);
    border: 0;
}

.topbar {
    padding: 20px;
    border-radius: 230px 100px;
}

.topbar .top-info {
    font-size: 15px;
    line-height: 0;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
}

.topbar .top-link {
    font-size: 15px;
    line-height: 0;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
}

.topbar .top-link a {
    letter-spacing: 1px;
}

.topbar .top-link a small:hover {
    color: var(--bs-secondary) !important;
    transition: 0.5s;
}

.topbar .top-link a small:hover i {
    color: var(--bs-primary) !important;
}

/*** Topbar End ***/

/*** Navbar Start ***/
.navbar .navbar-nav .nav-link {
    padding: 10px 15px;
    font-size: 16px;
    transition: .5s;
}

.navbar {
    /* height: 100px; */
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active,
.fixed-top.bg-white .navbar .navbar-nav .nav-link:hover,
.fixed-top.bg-white .navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    vertical-align: middle;
    margin-left: 8px;
}

@media (min-width: 1200px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        transition: .5s;
        opacity: 0;
    }
}

.dropdown .dropdown-menu a:hover {
    background: var(--bs-secondary);
    color: var(--bs-primary);
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light) !important;
    border-radius: 10px !important;
    transition: .5s;
    opacity: 1;
}

#searchModal .modal-content {
    background: rgba(255, 255, 255, .8);
}

/*** Navbar End ***/

/*** Hero Header ***/
.hero-header {
    background: linear-gradient(rgba(248, 223, 173, 0.1), rgba(248, 223, 173, 0.1)), url(../img/background/b.webp);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.carousel-item {
    position: relative;
}

.carousel-item a {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 25px;
    background: linear-gradient(rgba(255, 181, 36, 0.7), rgba(255, 181, 36, 0.7));
}

.carousel-control-next,
.carousel-control-prev {
    width: 48px;
    height: 48px;
    border-radius: 48px;
    border: 1px solid var(--bs-white);
    background: var(--bs-primary);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.carousel-control-next {
    margin-right: 20px;
}

.carousel-control-prev {
    margin-left: 20px;
}

.page-header {
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(../img/background/b.webp);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

@media (min-width: 992px) {

    .hero-header,
    .page-header {
        margin-top: 152px !important;
    }

}

@media (max-width: 992px) {

    .hero-header,
    .page-header {
        margin-top: 97px !important;
    }

}

/*** Hero Header end ***/


/*** featurs Start ***/
.featurs .featurs-item .featurs-icon {
    position: relative;
    width: 120px;
    height: 120px;
}

.featurs .featurs-item .featurs-icon::after {
    content: "";
    width: 35px;
    height: 35px;
    background: var(--bs-secondary);
    position: absolute;
    bottom: -10px;
    transform: translate(-50%);
    transform: rotate(45deg);
    background: var(--bs-secondary);

}

/*** featurs End ***/


/*** service Start ***/
.service .service-item .service-content {
    position: relative;
    width: 250px;
    height: 130px;
    top: -50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/*** service End ***/


/*** Fruits Start ***/
.fruite .tab-class .nav-item a.active {
    background: var(--primary) !important;
}

.fruite .tab-class .nav-item a.active span {
    color: var(--bs-white) !important;
}

.fruite .fruite-categorie .fruite-name {
    line-height: 40px;
}

.fruite .fruite-categorie .fruite-name a {
    transition: 0.5s;
}

.fruite .fruite-categorie .fruite-name a:hover {
    color: var(--bs-secondary);
}

.fruite .fruite-item {
    height: 100%;
    transition: 0.5s;
}

.fruite .fruite-item:hover {
    box-shadow: 0 0 55px rgba(0, 0, 0, 0.4);
}

.fruite .fruite-item .fruite-img {
    overflow: hidden;
    transition: 0.5s;
    border-radius: 10px 10px 0 0;
}

.fruite .fruite-item .fruite-img img {
    transition: 0.5s;
}

.fruite .fruite-item .fruite-img img:hover {
    transform: scale(1.3);
}

/*** Fruits End ***/


/*** vesitable Start ***/
.vesitable .vesitable-item {
    height: 100%;
    transition: 0.5s;
}

.vesitable .vesitable-item:hover {
    box-shadow: 0 0 55px rgba(0, 0, 0, 0.4);
}

.vesitable .vesitable-item .vesitable-img {
    overflow: hidden;
    transition: 0.5s;
    border-radius: 10px 10px 0 0;
}

.vesitable .vesitable-item .vesitable-img img {
    transition: 0.5s;
}

.vesitable .vesitable-item .vesitable-img img:hover {
    transform: scale(1.2);
}

.vesitable .owl-stage {
    margin: 50px 0;
    position: relative;
}

.vesitable .owl-nav .owl-prev {
    position: absolute;
    top: -8px;
    right: 0;
    color: var(--bs-primary);
    padding: 5px 25px;
    border: 1px solid var(--bs-secondary);
    border-radius: 20px;
    transition: 0.5s;

}

.vesitable .owl-nav .owl-prev:hover {
    background: var(--bs-secondary);
    color: var(--bs-white);
}

.vesitable .owl-nav .owl-next {
    position: absolute;
    top: -8px;
    right: 88px;
    color: var(--bs-primary);
    padding: 5px 25px;
    border: 1px solid var(--bs-secondary);
    border-radius: 20px;
    transition: 0.5s;
}

.vesitable .owl-nav .owl-next:hover {
    background: var(--bs-secondary);
    color: var(--bs-white);
}

/*** vesitable End ***/


/*** Banner Section Start ***/
.banner .banner-btn:hover {
    background: var(--bs-primary);
}

/*** Banner Section End ***/


/*** Facts Start ***/
.counter {
    height: 100%;
    text-align: center;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
}

.counter i {
    font-size: 60px;
    margin-bottom: 25px;
}

.counter h4 {
    color: var(--bs-primary);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.counter h1 {
    margin-bottom: 0;
}

/*** Facts End ***/


/*** testimonial Start ***/
.testimonial .owl-nav .owl-prev {
    position: absolute;
    top: -58px;
    right: 0;
    color: var(--bs-primary);
    padding: 5px 25px;
    border: 1px solid var(--bs-secondary);
    border-radius: 20px;
    transition: 0.5s;
}

.testimonial .owl-nav .owl-prev:hover {
    background: var(--bs-secondary);
    color: var(--bs-white);
}

.testimonial .owl-nav .owl-next {
    position: absolute;
    top: -58px;
    right: 88px;
    color: var(--bs-primary);
    padding: 5px 25px;
    border: 1px solid var(--bs-secondary);
    border-radius: 20px;
    transition: 0.5s;
}

.testimonial .owl-nav .owl-next:hover {
    background: var(--bs-secondary);
    color: var(--bs-white);
}

/*** testimonial End ***/


/*** Single Page Start ***/
.pagination {
    display: inline-block;
}

.pagination a {
    color: var(--bs-dark);
    padding: 10px 16px;
    text-decoration: none;
    transition: 0.5s;
    border: 1px solid var(--bs-secondary);
    margin: 0 4px;
}

.pagination a.active {
    background-color: var(--bs-primary);
    color: var(--bs-light);
    border: 1px solid var(--bs-secondary);
}

.pagination a:hover:not(.active) {
    background-color: var(--bs-primary)
}

.nav.nav-tabs .nav-link.active {
    border-bottom: 2px solid var(--bs-secondary) !important;
}

/*** Single Page End ***/


/*** Footer Start ***/
.footer .footer-item .btn-link {
    line-height: 35px;
    color: rgba(255, 255, 255, .5);
    transition: 0.5s;
}

.footer .footer-item .btn-link:hover {
    color: var(--bs-secondary) !important;
}

.footer .footer-item p.mb-4 {
    line-height: 35px;
}

/*** Footer End ***/

/* scro card */
.fp-section {
    padding: 50px 20px;
    max-width: 1400px;
    margin: auto;
}

.fp-title {
    text-transform: uppercase;
    font-weight: 600;
    line-height: 1.2;
    color: #45595b;
    text-align: center;
}

.fp-subtitle {
    color: #777;
    margin-bottom: 30px;
    font-size: 15px;
    text-align: center;
}

.fp-slider-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.fp-arrow-btn {
    background: ;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
    flex-shrink: 0;
}

.fp-arrow-btn:hover {
    background: #d4a230;
}

.fp-cards-wrapper {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 10px;
    flex: 1;
}

.fp-cards-wrapper::-webkit-scrollbar {
    height: 6px;
}

.fp-cards-wrapper::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}

/* .fp-card {
        width: 300px;
        background: #fff;
        border-radius: 12px;
        overflow: hidden;
        border: 1px solid #ddd;
        flex-shrink: 0;
        position: relative;
        transition: transform 0.3s;
    } */

.fp-card:hover {
    transform: translateY(-5px);
}



.fp-card-body {
    padding: 18px;
}

/* LABELS */
.fp-label {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 6px;
    color: #fff;
    text-transform: uppercase;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

/* .fp-label.sale {
        background: #e84343;
    }

    .fp-label.new {
        background: #f5c146;
        color: #000;
    }

    .fp-label.premium {
        background: #6f42c1;
    } */

.fp-price-box {
    margin: 10px 0;
    font-size: 18px;
    font-weight: 600;
}

.fp-old-price {
    text-decoration: line-through;
    color: #888;
    font-size: 14px;
    margin-left: 8px;
    font-weight: 400;
}

.fp-btn-row {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}




/* GRID FIXED LAYOUT */
.fp-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

@media(max-width:992px) {
    .fp-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:600px) {
    .fp-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

.fp-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #ddd;
    position: relative;
    transition: transform 0.3s;
}

.fp-card:hover {
    transform: translateY(-5px);
}

.fp-card img {
    width: 100%;
    /* height: 380px; */
    object-fit: cover;
    transition: 0.4s;
}

@media(max-width:600px) {
    .fp-card img {
        /* height: 300px; */
    }
}

.fp-card-body {
    padding: 18px;
}

/* LABELS */




.fp-btn {
    flex: 1;
    border: 1px solid #880e4f;
    padding: 10px;
    border-radius: 6px;
    background: transparent;
    color: #000;
    cursor: pointer;
    font-weight: 500;
    transition: 0.3s;
}

.fp-btn:hover {
    background: #c59f5b;
    color: #fff;
}

/* BOTTOM BUTTON */
.view-all-btn {
    margin: 40px auto 0;
    display: block;
    padding: 14px 40px;
    font-size: 18px;
    border-radius: 6px;
    background: #000;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

.view-all-btn:hover {
    background: #444;
}



/* card discount and title descount */
.badge-wrapper {
    position: relative;
    width: 100%;
}

/* BESTSELLER TAG */
.tag-bestseller {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #f28b82;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 3px;
    letter-spacing: 1px;
    font-family: 'Poppins', sans-serif;

    /* Ribbon Shape Right Side */
    clip-path: polygon(0 0, 100% 0, 92% 50%, 100% 100%, 0 100%);
}


/* DISCOUNT BADGE (Red Ribbon) */
.discount-badge {
    position: absolute;
    top: -5px;
    right: 10px;
    background: linear-gradient(#d00, #b00);
    width: 70px;
    height: 90px;
    padding-top: 18px;
    text-align: center;
    color: #fff;
    font-family: 'Poppins', sans-serif;

    border-radius: 4px 4px 0 0;

    /* ribbon triangle bottom */
    clip-path: polygon(0 0, 100% 0, 100% 75%, 50% 100%, 0 75%);
}

.discount-badge .big {
    font-size: 18px;
    font-weight: 700;
    line-height: 20px;
}

.discount-badge .small {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-top: -3px;
    display: block;
}

/* end design card suntitle descound */


/* new-car-nwe design */
/* ---------- Container ---------- */
.wd-container {
    display: flex;
    gap: 20px;
    padding: 20px;
    flex-wrap: nowrap;
    /* row layout */
    overflow: hidden;
    /* scroll removed */
}

/* ---------- Card ---------- */
.wd-card {
    position: relative;
    flex: 1;
    /* default width */
    height: 480px;
    /* fixed height */
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    align-items: flex-end;
    transition: all 0.6s ease;
    background: #000;
    box-shadow: 0 7px 25px rgba(0, 0, 0, 0.2);
    border: 3px solid transparent;
    background: linear-gradient(#000, #000) padding-box,
        linear-gradient(135deg, #ffb6d9, #ffc198, #b27cff, #ff88a9) border-box;
}

/* ---------- Image ---------- */
.wd-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.35;
    transition: 0.5s ease;
}

.wd-card.active img {
    opacity: 4;
    transform: scale(1.05);
}

/* ---------- Title ---------- */
.wd-title {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    padding: 20px;
    position: relative;
    z-index: 2;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
}

/* ---------- Plus Icon ---------- */
.wd-plus {
    position: absolute;
    right: 18px;
    bottom: 18px;
    background-color: var(--primary);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    color: white;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    backdrop-filter: blur(6px);
    z-index: 3;
    transition: 0.3s;
    border: 2px solid #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.wd-card:hover .wd-plus {
    transform: scale(1.12);
}

/* ---------- Active Card ---------- */
.wd-card.active {
    flex: 2;
    /* width expanded */
    border: 3px solid #ff7db5;
}

/* ---------- Content ---------- */
.wd-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 18px;
    background: rgba(0, 0, 0, 0.55);
    color: white;
    opacity: 0;
    transform: translateY(30px);
    transition: 0.4s ease;
    z-index: 4;
    font-size: 14px;
    line-height: 20px;
}

.wd-card.active .wd-content {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media(max-width:900px) {
    .wd-container {
        flex-direction: column;
    }

    .wd-card.active {
        height: 180px;
    }

    .wd-card {
        width: 100%;
        min-height: 85px;
        height: auto;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
    }

    /* .wd-card img{
        opacity:0;
        height:0;
    } */

    .wd-card.active {
        min-height: 340px;
    }

    .wd-card.active img {
        /* height: 100%; */
        opacity: 2.36;
        object-fit: fill;
    }

    .wd-content {
        display: none;
    }

    .wd-card.active .wd-content {
        display: block;
    }
}

@media(max-width:600px) {
    .wd-card {
        min-height: 80px;
    }
}

@media(max-width:900px) {
    .wd-container {
        flex-direction: column;
    }

    .wd-card {
        width: 100%;
        flex: none;
        height: 91px;
        overflow: hidden;
        transition: 0.4s ease;
    }

    .wd-card.active {
        height: auto;
        min-height: 300px;
     
    }

    .wd-content {
        display: none;
    }

    .wd-card.active .wd-content {
        display: block;
        padding: 20px;
        background: rgba(0, 0, 0, 0.7);
        opacity: 1;
        transform: none;
    }
}


/* end */

/* saree video section */
.banner-section {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.banner-section video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 1;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.banner-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.white-box {

    padding: 40px 50px;
    border-radius: 20px;
    text-align: center;
    max-width: auto;
}

.white-box h1 {
    font-weight: 700;
    color: #ffffff;
}

.white-box p {
    color: #ffffff;
}

.white-box .btn {
    margin-top: 15px;
}


/* testonimial */
:root {
    --w: 260px;
    --h: 320px;
    --gap: 213px;
    --tilt: 22deg;
    --speed: 900ms;

    --primary: #911a19;
    --primary-light: #b83b3f;
    --soft-bg: #fff;
    --rose-gold: #C5A35A;
    --soft-border: #fff;
}

* {
    box-sizing: border-box;
}



.rc-wrap {
    padding: 32px 16px 24px;
    border-radius: 30px;
    background: linear-gradient(180deg, #fff, var(--soft-bg));
    box-shadow: 0 20px 50px rgba(0, 0, 0, .08);
    position: relative;
    overflow: hidden;
}

.rc-title {
    font-weight: 900;
    font-size: clamp(22px, 4vw, 38px);
    margin-bottom: 8px;
    color: var(--primary);
    text-align: center;
}

.rc-subtitle {
    font-size: 14px;
    color: #775555;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 30px;
    text-align: center;
}

.rc-stage {
    position: relative;
    height: calc(var(--h) + 36px);
    perspective: 1200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rc-card {
    position: absolute;
    top: 50%;
    left: 50%;
    width: var(--w);
    height: var(--h);
    transform: translate(-50%, -50%);
    border-radius: 22px;
    padding: 20px;
    background: #fff;
    border: 2px solid var(--soft-border);
    text-align: center;
    box-shadow: 0 14px 32px gray;
    transition: transform var(--speed), opacity var(--speed);
}

.rc-photo {
    width: 82px;
    height: 82px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary);
    margin-bottom: 14px;
}

.rc-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.rc-stars {
    color: var(--rose-gold);
    font-size: 18px;
    margin-bottom: 10px;
}

.rc-text {
    font-size: 14px;
    line-height: 1.45;
    color: #6d5562;
    padding: 0 5px;
}

.rc-pos-2 {
    transform: translate(calc(-50% - var(--gap)*1.7), -50%) rotateY(var(--tilt)) scale(.82);
    opacity: .35;
    z-index: 1;
}

.rc-pos-1 {
    transform: translate(calc(-50% - var(--gap)*.85), -50%) rotateY(var(--tilt)) scale(.9);
    opacity: .6;
    z-index: 2;
}

.rc-pos0 {
    transform: translate(-50%, -50%) scale(1.05);
    opacity: 1;
    z-index: 5;
}

.rc-pos1 {
    transform: translate(calc(-50% + var(--gap)*.85), -50%) rotateY(calc(-1*var(--tilt))) scale(.9);
    opacity: .6;
    z-index: 2;
}

.rc-pos2 {
    transform: translate(calc(-50% + var(--gap)*1.7), -50%) rotateY(calc(-1*var(--tilt))) scale(.82);
    opacity: .35;
    z-index: 1;
}

.rc-hidden {
    opacity: 0;
}

.rc-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 18px;
}

.rc-dot {
    width: 10px;
    height: 10px;
    border-radius: 10px;
    background: #debcbc;
    transition: 0.3s;
    cursor: pointer;
}

.rc-dot.active {
    width: 26px;
    background: var(--primary);
}

.rc-nav {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    pointer-events: none;
}

.rc-btn {
    pointer-events: auto;
    border: none;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #c59f5b;
    color: var(--primary);
    font-size: 22px;
    display: grid;
    place-items: center;
    cursor: pointer;
    box-shadow: 0 6px 16px rgba(139, 30, 35, 0.25);
}


/* scroll card images */
.featured-section {
    padding: 50px 20px;
    max-width: 1400px;
    margin: auto;
}

.featured-title {
    font-size: 34px;
    margin-bottom: 5px;
    text-align: center;
}

.featured-subtitle {
    color: #777;
    margin-bottom: 30px;
    font-size: 15px;
    text-align: center;
}

.featured-slider-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.featured-arrow-btn {
    background: #f5c146;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
    flex-shrink: 0;
}

.featured-arrow-btn:hover {
    background: #d4a230;
}

.featured-cards-wrapper {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 10px;
    padding: 10px 10px;
    flex: 1;
}

.featured-cards-wrapper::-webkit-scrollbar {
    height: 6px;
}

.featured-cards-wrapper::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}

.featured-card {
    width: 300px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #ddd;
    flex-shrink: 0;
    position: relative;
    transition: transform 0.3s;
}

.featured-card:hover {
    transform: translateY(-5px);
}

.featured-card img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    transition: 0.4s;
}

.featured-card-body {
    padding: 18px;
}

/* LABELS */




.featured-old-price {
    text-decoration: line-through;
    color: #888;
    font-size: 14px;
    margin-left: 8px;
    font-weight: 400;
}

.featured-btn-row {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.featured-btn {
    flex: 1;
    border: 1px solid #f5c146;
    padding: 10px;
    border-radius: 6px;
    background: transparent;
    color: #f5c146;
    cursor: pointer;
    font-weight: 500;
    transition: 0.3s;
}

.featured-btn:hover {
    background: #f5c146;
    color: #000;
}

/* RESPONSIVE */
@media(max-width:900px) {
    .featured-card {
        width: 260px;
    }

    .featured-card img {
        height: 300px;
    }
}

@media(max-width:600px) {
    .featured-card {
        width: 220px;
    }

    .featured-card img {
        height: 260px;
    }
}

/* end */

/* deail page */

/* ---------- LEFT SIDE FIXED (STICKY) ---------- */
.left-sticky {
    position: sticky;
    top: 20px;
}

/* ---------- MAIN IMAGE (LARGE IMAGE) ---------- */
.sareewebsite-detail-page .main-img {
    height: 830px !important;
    /* Increase big image height */
    width: 100%;
    object-fit: cover;
    border-radius: 12px;
    cursor: zoom-in;
    transition: transform 0.4s ease;
}

.sareewebsite-detail-page .main-img:hover {
    transform: scale(1.02);
}

/* ---------- VERTICAL THUMBNAILS COLUMN ---------- */
.thumb-column {
    width: 110px;
    max-height: 830px;
    overflow-y: auto;
}

.thumb-column .thumbnail-img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border: 2px solid #eee;
    border-radius: 8px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.thumb-column .thumbnail-img.active,
.thumb-column .thumbnail-img:hover {
    border-color: var(--rose-gold);
    transform: scale(1.05);
}

/* ---------- REMOVE SCROLLBAR FOR CLEAN UI ---------- */
.thumb-column::-webkit-scrollbar {
    width: 0;
}

/* ---------- ALIGN IMAGES PERFECTLY ---------- */
.image-wrapper {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

/* ---------- COLOR SWATCH ---------- */
.sareewebsite-detail-page .color-swatch {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    position: relative;
    transition: 0.3s;
}

.sareewebsite-detail-page .color-swatch.active::after {
    content: "✓";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 18px;
}

/* ---------- BLOUSE OPTION ---------- */
.sareewebsite-detail-page .blouse-option {
    padding: 12px 20px;
    border: 2px solid #ddd;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

.sareewebsite-detail-page .blouse-option.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--rose-gold);
}

/* ---------- TAG ---------- */
.sareewebsite-detail-page .tag {
    background: #f0f0f0;
    padding: 6px 14px;
    border-radius: 30px;
    display: inline-block;
    margin: 4px;
}

/* ---------- BUY BUTTON ---------- */
.sareewebsite-detail-page .btn-buy {
    background: var(--rose-gold);
    color: white;
    font-weight: 600;
    padding: 14px 0;
    border: none;
}

.sareewebsite-detail-page .btn-buy:hover {
    background: var(--primary-light);
    color: white;
}


/* end */

/* Category Dropdown Styling */
.category-dropdown {
    /* max-width:300px; */
    margin: 20px auto;
}

.category-select {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #ced4da;
    border-radius: 8px;

    color: #7f7c7c;
    font-size: 16px;
    font-weight: 500;
}

@media(max-width:600px) {}

/* shop page filter */

.filter-box {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
    padding: 25px;
    max-width: 300px;
}

.filter-title {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 10px;
    color: #333;
}

.filter-list {
    list-style: none;
    padding: 0;
    max-height: 200px;
    overflow-y: auto;
    margin: 0;
}

.filter-list li {
    padding: 6px 10px;
    cursor: pointer;
    border-radius: 8px;
    transition: 0.2s;
    font-size: 14px;
    background: #f0f0f0;
    color: #333;
    margin-bottom: 5px;
}

.filter-list li:hover {
    background: #333;
    color: #fff;
}

/* Price Progress Bar */


.btn-go {
    width: 100%;
    border-radius: 6px;
    margin-bottom: 20px;
}

/* Scrollbar styling */
.filter-list::-webkit-scrollbar {
    width: 6px;
}

.filter-list::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}

/* Color badges */
.color-badge {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    border: 2px solid #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    transition: 0.3s;
    margin-right: 5px;
}

.color-badge:hover {
    transform: scale(1.2);
    border: 2px solid #333;
}

/* end */
/* zoom image */
/* Zoom Effect */
.image-zoom-container {
    position: relative;
    overflow: hidden;
    cursor: none;
}

.zoom-lens {
    position: absolute;
    border: 4px solid #fff;
    border-radius: 50%;
    width: 180px;
    height: 180px;
    pointer-events: none;
    display: none;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.7);
    background-repeat: no-repeat;
    background-size: 1000% 1000%;
    /* 5x zoom */
    z-index: 10;
    opacity: 0.95;
}

.thumbnail-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border: 2px solid #ddd;
    cursor: pointer;
    border-radius: 8px;
}

.thumbnail-img.active {
    border-color: #000;
}

/* button s css */
.color-swatch {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid #ddd;
    cursor: pointer;
    transition: all 0.3s;
}

.color-swatch.active {
    border-color: #000;
    transform: scale(1.2);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
}

.size-option,
.blouse-option {
    padding: 10px 20px;
    border: 2px solid #ddd;
    border-radius: 8px;
    cursor: pointer;
    background: #f9f9f9;
    transition: all 0.3s;
}

.size-option.active,
.blouse-option.active {
    border-color: #ffffff;
    background: var(--primary);
    color: white;
}

.tag {
    display: inline-block;
    background: #eee;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 13px;
    margin-right: 8px;
    margin-bottom: 8px;
}

/* end */

/* cart */
.product {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding-bottom: 15px;
}

.product img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.product h3 {
    margin: 15px 10px 5px;
    font-size: 18px;
}

.product .price {
    color: #0d6efd;
    font-size: 22px;
    font-weight: bold;
}

.add-to-cart {
    background: #0d6efd;
    color: white;
    border: none;
    padding: 14px 30px;
    border-radius: 12px;
    font-size: 16px;
    cursor: pointer;
    margin: 10px;
}

.cart-float {
    /* position: fixed;
      bottom: 30px;
      right: 30px; */
    width: 70px;
    height: 70px;
    /* background: #0d6efd; */
    color: #C5A35A;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3); */
    cursor: pointer;
    z-index: 1000;
}

.cart-float .badge {
    position: absolute;
    top: 11px;
    right: -1px;
    background: var(--primary);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-size: 16px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid white;
}

.sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 0;
    height: 100%;
    background: white;
    overflow-y: auto;
    transition: 0.4s;
    z-index: 9999;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.2);
}

.sidebar.open {
    width: 100%;
}

@media (min-width: 768px) {
    .sidebar.open {
        width: 430px;
    }
}

.sidebar-header {
    padding: 20px;
    text-align: end;

    font-weight: bold;
    color: var(--rose-gold);
    border-bottom: 1px solid #eee;
    position: relative;
}

.close-sidebar {
    position: absolute;
    top: 9px;
    left: 20px;
    font-size: 30px;
    cursor: pointer;
}

.cart-item {
    display: flex;
    align-items: center;
    padding: 18px;
    border-bottom: 1px solid #eee;
    gap: 15px;
}

.cart-item img {
    width: 85px;
    height: 85px;
    object-fit: cover;
    border-radius: 12px;
}

.cart-item-info {
    flex: 1;
}

.cart-item-name {
    font-weight: 600;
    margin-bottom: 5px;
}

.cart-item-price {
    color: #0d6efd;
    font-weight: bold;

}

.quantity {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 8px;
}

.quantity button {
    width: 36px;
    height: 36px;
    border: 1px solid #ddd;
    background: white;
    border-radius: 10px;

    cursor: pointer;
}

.quantity span {
    font-weight: bold;
    min-width: 30px;
    text-align: center;

}

.delete-item {
    color: #880e4f;

    cursor: pointer;
}

.cart-footer {
    position: sticky;
    bottom: 0;
    background: white;
    padding: 20px;
    border-top: 1px solid #eee;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.05);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 15px;
}

.checkout-btn {
    width: 100%;
    padding: 16px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    cursor: pointer;
}

/* cart end */

.vesitable-img {
    position: relative;
}

.vesitable-img img {
    transition: opacity 0.4s ease;
}

.img-hover {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.vesitable-img:hover .img-hover {
    opacity: 1;
}

.vesitable-img:hover .img-main {
    opacity: 0;
}