* {
box-sizing: border-box;
margin: 0px;
padding: 0px;
/* font-family: 'Roboto'; */

}

/* --------------------------header start--------------------------  */
.header-bar {
background: #fff;
padding: 10px 30px;
box-shadow: 0px 0px 38px 3px #80808030;
position: relative;
z-index: 99999;
top: 0px;
}


.header-container {
display: flex;
align-items: center;
justify-content: center;
gap: 5%;
}

/* Logo */
.logo img {
height: 35px;
object-fit: cover;
image-rendering: -webkit-optimize-contrast;
image-rendering: crisp-edges;
transform: translateZ(0);

}

/* Search box */
.search-box {
flex: 1;
max-width: 600px;
position: relative;
}

.search-box input {
width: 100%;
padding: 10px 45px 10px 15px;
border: 1px solid #c79b7b;
border-radius: 30px;
background-color: #faf5f1;
outline: none;
font-size: 14px;
}

.search-box i {
position: absolute;
right: 15px;
top: 50%;
transform: translateY(-50%);
color: #a67856;
font-size: 16px;
}

/* Icons section */
.icons {
display: flex;
align-items: center;
gap: 20px;
}

.icon {
position: relative;
font-size: 20px;
cursor: pointer;
color: #000;
}

.icon .count {
position: absolute;
top: -6px;
right: -8px;
background: #a51235;
color: #fff;
font-size: 10px;
width: 14px;
height: 14px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
}


/* Dropdown container */
.dropdown {
position: relative;
display: inline-block;
}

/* Button style */
.dropbtn {
background: none;
border: none;
font-size: 20px;
cursor: pointer;
display: flex;
align-items: center;
gap: 6px;
color: #333;
font-weight: 500;   
text-transform: capitalize;
}

/* Dropdown menu hidden by default */
.dropdown-contentform {
display: none;
position: absolute;
top: 100%;
/* button ke niche dropdown open hoga */
right: -34px;
/* button ke right edge se align */
background-color: #fff;
box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
z-index: 99;
border-radius: 6px;
overflow: hidden;

}


/* Links inside dropdown */
.dropdown-contentform a {
color: #333;
padding: 4px 10px;
text-decoration: none;
display: block;
transition: background 0.3s;
border-bottom: 1px solid #8080804d;
font-size: 15px;
text-transform: capitalize;
}

.dropdown:hover .dropdown-contentform {
display: block;
}

.dropdown-contentform a:hover {
background-color: #f1f1f1;
color: #a51235;
text-decoration: none;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-contentform {
display: block;
}

.dropdown-contentform span {
margin-right: 10px;
}


/* Responsive */
@media (max-width: 768px) {
.header-container {
    flex-direction: column;
    gap: 10px;
}

.search-box {
    max-width: 100%;
}
}

/* maquee top slide start*/
.offer-showtext {
overflow: hidden;
background: #1b223c;
color: #fff;
font-size: 12px;
white-space: nowrap;
}

.scroll-text {
display: flex;
width: max-content;
animation: scroll-left 70s linear infinite;
}

@keyframes scroll-left {
0% {
    transform: translateX(0);
}

100% {
    transform: translateX(-50%);
}
}

.scroll-content {
padding-right: 50px;
}

/* maquee top slide end*/

/* categories section start */
.categories {
background-color: #f9f0ea;
/* padding: 10px 0px 0px 0px; */
    margin-top: 30px;

}

.colarage {
height: 300px;

}

.category-box {
position: relative;
overflow: hidden;
/* zoomed image box ke bahar na jaye */
cursor: pointer;
/* display: flex; */
align-items: center;
justify-content: center;
height: 250px;
/* default desktop height */
margin-bottom: 8px;
}

.category-box img {
width: 100%;
height: 100%;
/* box ke height ke hisaab se fit */
object-fit: cover;
/* crop karke box ke andar hi rakhega */
transition: transform 2s ease, opacity 2s ease;
image-rendering: -webkit-optimize-contrast;
image-rendering: crisp-edges;
transform: translateZ(0);
object-position: top;
}

.category-box:hover img {
transform: scale(1.1);
/* zoom effect box ke andar hi */
/* opacity: 0.9; */

}

.category-box::after {
content: "";
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 40%;
/* control overlay height */
background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
pointer-events: none;
}

.colarage-center {
height: 508px;
}

.category-text {
position: absolute;
bottom: 8px;
left: 50%;
transform: translateX(-50%);
color: #fff;
font-size: 1.5rem;
font-weight: bold;
text-transform: uppercase;
letter-spacing: 2px;
text-shadow: 0px 2px 6px rgba(0, 0, 0, 0.6);
text-align: center;
z-index: 9;
width: 100%;
}

.coolagr-padding {
padding: 0px !important;
padding-left: 8px !important;
padding-right: 8px !important;
}

@media (max-width: 767px) {

/* Parent row */
.categories .row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -4px;
    margin-right: -4px;
}

/* Left column */
.categories .col-md-4:nth-child(1) {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.categories .col-md-4:nth-child(1) .category-box {
    flex: 0 0 50%;
    /* side-by-side */
    max-width: 50%;
    height: 150px;
    /* fixed same height */
    padding: 4px;
}

/* Middle column full width */
.categories .col-md-4:nth-child(2) {
    width: 100%;
}

.categories .col-md-4:nth-child(2) .category-box {
    flex: 0 0 100%;
    max-width: 100%;
    height: 200px;
    /* full width height */
    padding: 4px;
}

/* Right column */
.categories .col-md-4:nth-child(3) {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.categories .col-md-4:nth-child(3) .category-box {
    flex: 0 0 50%;
    /* side-by-side */
    max-width: 50%;
    height: 150px;
    /* same height as left top row */
    padding: 4px;
}

.category-text {
    font-size: 16px;
}

.coolagr-padding {
    flex-direction: unset !important;
    padding-left: unset !important;
    padding-right: unset !important;
}

.category-box {
    margin-bottom: auto;
}
}


/* home slider start */
/* ------------------------------
   HOMESLIDER ITEM TRANSITION
--------------------------------*/
.homeslider .owl-item {
    transition: transform 1s ease-in-out, opacity 1s ease-in-out;
    margin-bottom: 0;  /* extra space remove */
}

/* ------------------------------
   OWL DOTS CONTAINER
--------------------------------*/
.homeslider .owl-dots {
    position: absolute;  /* slider ke neeche attach */
    bottom: 10px;        /* adjust according to your slider */
    width: 100%;
    text-align: center;
    margin: 0;
    padding: 0;
}

/* ------------------------------
   ALL DOTS STYLE (RESPONSIVE)
--------------------------------*/
.owl-carousel.homeslider .owl-dots button.owl-dot span {
    width: 0.5vw;
    height: 0.5vw;
    margin: 0 0.5vw;             /* horizontal spacing only */
    background-color: #D6D6D6;
    border: none;                /* border optional */
    display: block;
    border-radius: 50%;          /* perfect circle */
    -webkit-backface-visibility: visible;
    transition: all 0.2s ease;
}

/* ------------------------------
   FIRST DOT SPECIAL STYLE
--------------------------------*/
.owl-carousel.homeslider .owl-dots button.owl-dot:nth-child(1) span {
  width: 1.6vw;
    height: 0.5vw;
    border: 1px solid #fff;
    background-color: transparent;
    border-radius: 30%;
}

/* ------------------------------
   MEDIA QUERY FOR MOBILE
--------------------------------*/
@media (max-width: 768px){
    .owl-carousel.homeslider .owl-dots button.owl-dot span {
        width: 1.5vw;
        height: 1.5vw;
        margin: 0 1vw;
    }

    .owl-carousel.homeslider .owl-dots button.owl-dot:nth-child(1) span {
        width: 5vw;
        height: 1.8vw;
        border-radius: 34%;
    }

    .homeslider .owl-dots {
        bottom: 5px;  /* slightly closer on small screens */
    }
}

/* home slider end */
/* arrivals categories section start */
.heading-sectionnew {
text-align: center;
/* margin: 20px 0; */
}
.owl-theme .owl-dots .owl-dot span {
    width: 1vw;
    height: 1vw;
    margin: 1vw 1.5vw;
    background: #D6D6D6;
    display: block;
    -webkit-backface-visibility: visible;
    transition: all 0.2s ease;
    border-radius: 50%;
}

@media (max-width: 768px){
    .owl-theme .owl-dots .owl-dot span {
        width: 2vw;
        height: 2vw;
        margin: 1.5vw 2vw;
    }
}

.heading-sectionnew .title {
font-size: 30px;
font-weight: 700;
margin-bottom: 2px;
color: #181724;
padding-top: 25px;
font-family: "math" !important;
}



.dividerswction {
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 30px;

}

.dividerswction::before,
.dividerswction::after {
content: "";
height: 1px;
width: 60px;
background-color: #b38b45;
margin: 0 12px;
}

.dividerswction img {
width: 21px;
object-fit: cover;
}



.arival-main {
/*background-color: #fdfdfd;*/
padding-bottom: 20px;
}



/* ---------------------------- arrival slider start --------------------------*/
.product-card {
position: relative;
text-align: center;
cursor: pointer;
overflow: hidden;
margin-bottom: 10px;
padding: 5px;
background-color: #f0efef;
border-radius: 5px;
border: 1px solid #d1d1d1;
}


.product-card:hover {
box-shadow: 0 2px 7px 3px rgb(0 0 0 / 20%);
transition: 0.2s;
background-color: #f0efef;
border-radius: 5px;
}


.product-card img {
width: 100%;
object-fit: cover;
display: block;
transition: transform 0.6s ease, opacity 0.6s ease;
height: 310px !important;
image-rendering: -webkit-optimize-contrast;
image-rendering: crisp-edges;
object-position: top;
}
/* Small Mobile */
@media (max-width: 576px) {
  
.product-card img{
    height: 200px !important;
}
  .mobilerecent img{
        height: auto !important;
    }
.product-card{
    padding: unset;
}
.arival-main .row>* {
        padding-right: calc(var(--bs-gutter-x) * .2);
    padding-left: calc(var(--bs-gutter-x) * .2);
}
}

/* .product-card .back {
position: absolute;
top: 0;
left: 0;
transform: translateX(100%);
opacity: 0;
}


.product-card:hover .front {
transform: translateX(-100%);
opacity: 0;
transition: 2s;
}


.product-card:hover .back {
transform: translateX(0);
opacity: 1;
transition: 1s;
padding: 5px;
} */
.product-card .back {
    position: absolute;
    top: 0;
    left: 0;
    transform: translateX(100%);
    opacity: 0;
}

/* HOVER ONLY IF second image exists */
.product-card .double-image:hover .front {
    transform: translateX(-100%);
    opacity: 0;
    transition: 2s;
}

.product-card .double-image:hover .back {
    transform: translateX(0);
    opacity: 1;
    transition: 1s;
    padding: 5px;
}


.product-card .single-image .front {
    transform: translateX(0);
    opacity: 1;
}

.product-card .single-image .back {
    display: none;
}



.product-card .heart-icon {
position: absolute;
top: 13px;
right: 12px;
font-size: 16px;
color: #767676;
border-radius: 50%;
z-index: 10;
background-color: #ffffff;
border-radius: 50%;
height: 23px;
width: 23px
}


.product-card .discount-badge {
position: absolute;
top: 10px;
left: 10px;
background: #2a2a2a;
color: #fff;
font-size: 11px;
font-weight: bold;
height: 30px;
width: 30px;
border-radius: 50%;
z-index: 10;
padding-top: 7px;
}


.product-card .add-to-cart {
position: absolute;
bottom: 82px;
right: 5px;
background-color: #a3193a;
color: #fff;
border: none;
padding: 5px;
border-radius: 50%;
cursor: pointer;
z-index: 10;
display: flex;
align-items: center;
gap: 8px;
opacity: 0;
transition: all 0.4s ease;
width: 40px;
height: 40px;
overflow: hidden;
font-size: 14px;
}


.product-card .add-to-cart::before {
content: "";
font-weight: 900;
font-size: 16px;
display: inline-block;
transition: transform 0.4s ease;
}


.product-card:hover .add-to-cart {
opacity: 1;
}

.product-card p:nth-of-type(2) {
margin-top: -10px;
}

.product-card p:nth-of-type(2) a {
color: #636665;
font-size: 10px;
}

.product-card .add-to-cart:hover {
width: 125px;
border-radius: 20px;
padding: 8px 10px;
transition: 1s;
}


.product-card .add-to-cart span {
opacity: 0;
white-space: nowrap;
transition: opacity 0.3s ease;
}

.product-card .add-to-cart:hover span {
opacity: 1;
}

.product-dotss{
 display: block;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-card p a {
font-size: 13px;
color: #000000;
text-transform: capitalize;
text-decoration: none;
}

.product-card p {
text-align: start;
margin-bottom: 0px;
font-weight: 600;
padding-left: 5px;
}

.product-card .product-price {
display: flex;
align-items: center;
gap: 5px;
margin-top: -3px;
}



.product-card .product-price p:first-child {
color: #a3193a;
font-size: 14px;
margin-bottom: 10px;
}

.product-card .product-price p:nth-of-type(2) {
text-decoration: line-through !important;
font-size: 10px;
margin-top: -6px;
margin-left: -8px;
}

.subaddtocartall {
background-color: #1b223c;
border: unset;
cursor: not-allowed;
padding: 6px 8px 6px 8px;
margin-bottom: 10px;
border-radius: 6px;
color: #eeeeee;
box-shadow: unset !important;
font-size: 13px;
font-weight: 600;

}

.headrtopaddtocart {
bottom: 82px !important;
background-color: #1b223c !important;
cursor: not-allowed !important;
}

/* ---------------------------- arrival slider start end  --------------------------*/




/*------------------------ Trending Right Now section start -----------------------------*/
.trending-banner img {
object-fit: cover;
max-height: 353px !important;
object-position: top;
}

.home2ndbanner {
margin-top: 20px;
}

.scroll-img-bottom {
position: relative;
overflow: hidden;
width: 100%;
background-color: #fff;
position: fixed;
}

.scroll-track {
display: flex;
width: max-content;
animation: scroll-left 20s linear infinite;
}

.scroll-track img {
display: block;
width: auto;
height: 25px;

}

@keyframes scroll-left {
0% {
    transform: translateX(0);
}

100% {
    transform: translateX(-50%);
}
}

@media (max-width: 576px) {
.trending-banner img{
    height: 150px;
    object-position: 0% 0%;
}

.allbannerappy col-12 {
        padding-right: calc(var(--bs-gutter-x) * .2);
        padding-left: calc(var(--bs-gutter-x) * .2);
}

.banner2-section img{
    height: 150px;
    object-position: 0% 0%;
}
}

/*------------------------ Trending Right Now section end -----------------------------*/


/* ------------------------ recent view start ----------------------------- */
/* 🌟 ONLY Recent Products Section — 5 items per row */
.recent-products-row .col-custom-5-recent {
width: 20%;
/* 5 in one row */
float: left;
padding: 10px;
}

/* Tablet */
@media (max-width: 992px) {
.recent-products-row .col-custom-5-recent {
    width: 33.33%;
}
}

/* Mobile */
@media (max-width: 768px) {
.recent-products-row .col-custom-5-recent {
    width: 50%;
}
}

/* Small Mobile */
@media (max-width: 576px) {
.recent-products-row .col-custom-5-recent {
    width: 100%;
}
}

/* ------------------------ recent view end ----------------------------- */
/* ------------------------ Shop by Collection section start ----------------------------- */



.royal-frame {
position: relative;
width: 100%;
height: 383px;
overflow: hidden;
display: flex;
justify-content: center;
}

.royal-frame img {
width: 100%;
object-fit: cover;
display: block;
cursor: pointer;
transition: opacity 0.8s ease-in-out, transform 0.5s ease;
object-position: top;
image-rendering: -webkit-optimize-contrast;
image-rendering: crisp-edges;
transform: translateZ(0);
backface-visibility: hidden;
}

.royal-frame .Collection-hover-img {
position: absolute;
top: 0;
left: 0;
opacity: 0;
}

.royal-frame:hover .Collection-hover-img {
opacity: 1;
}

.royal-frame:hover .collection-main-img {
opacity: 0;
transform: scale(1.05);
}

.royal-frame::after {
content: "";
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 30%;
background: linear-gradient(to bottom, #00000000, rgb(0 0 0));
z-index: 3;
pointer-events: none;
}

.collection-main-img {
object-position: top;
}

.royal-frame:hover .collection-main-img {
opacity: 1;
}


.frame-text {
position: absolute;
bottom: -11px;
left: 50%;
transform: translateX(-50%);
width: 98%;
color: #fff;
text-align: center;
z-index: 9;
}

.frame-text h3 {
margin: 0px;
}

.frame-text h3 a {
font-size: 1.8rem;
margin: 0;
letter-spacing: 2px;
color: #ffffff;
text-decoration: none;
text-transform: capitalize;
}

.frame-text p {
font-size: 1rem;
color: #d4af37;
font-weight: 600;
}

.Collection-main {
background-color: #f9f0ea;
padding-bottom: 20px;
}

.allbannerappy {
/* padding: 30px 0px; */
background-color: #f9f0ea;
}

.freame-button {
padding: 10px;
background-color: #fff;
width: 43%;
margin: 10px auto;
text-align: center;
transition: background-color 0.3s;
border-radius: 5px;
}

.freame-button a {
font-size: 14px;
color: #000;
text-decoration: none;
display: block;
width: 100%;
height: 100%;
transition: color 0.3s;
text-transform: uppercase;
font-weight: 600;
}
/* Small Mobile */
@media (max-width: 576px) {
.royal-frame{
    height: 220px;
}
.royelmenul-paddign .col-6{
    padding-right: calc(var(--bs-gutter-x) * .2);
    padding-left: calc(var(--bs-gutter-x) * .2);
}

.explore-main .col-6{
    padding-right: calc(var(--bs-gutter-x) * .2);
    padding-left: calc(var(--bs-gutter-x) * .2);
}
.explore-text-sub{
  padding: 0px !important;
  height: 200px;
}

.frame-text h3 a{
          letter-spacing: normal;
            font-size: 1.2rem;
}
}



/* ------------------------ Shop by Collection section end ----------------------------- */


/* ------------------------ -----Shop By Trend start--------------------------------------*/


.trend-frame {
position: relative;
width: 100%;

height: auto;

/* background: #363535; */
padding: 3px;
box-sizing: border-box;
/* border: 4px dotted #d4af37; */
/* outline: 3px solid #6b3a00; */
/* box-shadow: 0 0 15px rgba(0, 0, 0, 0.4); */
overflow: hidden;
display: flex;
align-items: center;
justify-content: center;
}

.trend-frame img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
cursor: pointer;
transition: opacity 0.8s ease-in-out, transform 0.5s ease;
/* background: #a3193a; */
object-position: top;
image-rendering: -webkit-optimize-contrast;
image-rendering: crisp-edges;
transform: translateZ(0);
backface-visibility: hidden;
}


.trend-slider .item img {
width: 100%;
height: 345px !important;
object-fit: cover;
image-rendering: -webkit-optimize-contrast;
image-rendering: crisp-edges;
transform: translateZ(0);
}


/* ------------------------ -----Shop By Trend end--------------------------------------*/




/* ------------------------ Explore More section start ----------------------------- */
.heading-main-all .explore-main h4 {
margin-bottom: 20px;

}

.heading-main-all .explore-main p {
margin-bottom: 40px;

}

.explore-text-sub .frame-text h3 {
font-size: 2.5rem;
text-align: center;
text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
padding-bottom: 20px;
}

.explore-text-sub {
position: relative;
width: 100%;
padding: 3px;
box-sizing: border-box;
overflow: hidden;
display: flex;
justify-content: center;
}

.explore-text-sub img {
width: 100%;
/* height: 100%; */
object-fit: cover;
display: block;
cursor: pointer;
transition: opacity 0.8s ease-in-out, transform 0.5s ease;
object-position: top;
image-rendering: -webkit-optimize-contrast;
image-rendering: crisp-edges;
transform: translateZ(0);
backface-visibility: hidden;

}

.explore-text-sub .Collection-hover-img {
position: absolute;
top: 0;
left: 0;
opacity: 0;
}


.explore-text-sub:hover .Collection-hover-img {
opacity: 1;
}

.explore-text-sub:hover .collection-main-img {
/* opacity: 0; */
transform: scale(1.05);
}


.explore-text-sub::after {
content: "";
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 30%;
/* You can adjust this */
background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.85));
z-index: 3;
/* Above images */
pointer-events: none;
}


.frame-text-collention {
position: absolute;
bottom: 6px;
left: 50%;
transform: translateX(-50%);
width: 98%;
color: #fff;
text-align: center;
z-index: 9;
}

/* ------------------------ Explore More section end ----------------------------- */

/* ------------------------ Footer start ----------------------------- */
.hoind-footer {
background-color: #1b223c;
color: #ffffff;
font-size: 14px;
}

.hoind-footer .container {
max-width: 1200px;
margin: auto;
padding: 0 15px;
}


.footer-top {
gap: 40px;
}


.footer-column {
flex: 1 1 180px;
min-width: 180px;
}


.footer-logo {
max-width: 180px;
margin-bottom: 15px;
}

.footer-column .logo {
margin-bottom: 20px;
}

.footer-description {
font-size: 14px;
line-height: 1.5;
margin-bottom: 20px;
color: #ffffff;
}



.footer-social-icons a {
margin-right: 15px;
width: 40px !important;
aspect-ratio: 1;
border-radius: 50%;
border: 2px solid rgb(252, 244, 244);
line-height: 30px;
display: flex;
align-items: center;
justify-content: center;
}

:focus-visible {
outline: none !important;
box-shadow: none !important;
}


.footer-social-icons {
margin-top: 15px;
display: flex;
align-items: center;
justify-content: center;
}

.footer-social-icons a:hover {
color: #fff;
}


.footer-column h4 {
font-size: 15px;
font-weight: 600;
margin-bottom: 15px;
color: #fff;
text-transform: uppercase;
text-decoration: underline;
text-underline-offset: 5px;
text-decoration-thickness: 2px;
}


.footer-column ul {
list-style: none;
padding: 0;
margin: 0;
}

.footer-column ul li {
margin-bottom: 5px;
color: white;
}

.footer-column ul li a {
position: relative;
color: #ffffff;
text-decoration: none;
font-size: 18px;
transition: color 1s;
}


.footer-column ul li a::after {
content: "";
position: absolute;
left: 0;
bottom: -3px;
width: 0%;
height: 1px;
background-color: #afafaf;
transition: width 1s ease;
}


.footer-column ul li a:hover {
color: #afafaf;
}

.footer-column ul li a:hover::after {
width: 100%;

}

.footer-column ul li a i {
color: white;
transition: color 1s;
}

.footer-column ul li a:hover i {
color: #afafaf !important;
}


.footer-column p {
margin-bottom: 3px;
color: #ffffff;
font-size: 18px;
}

.footer-column i {
margin-right: 8px;
color: #fff;
}


.newsletter-column .newsletter-form {
display: flex;
gap: 10px;
margin-top: 10px;
flex-direction: column;
}

.newsletter-form input[type="email"] {
flex: 1;
padding: 8px 12px;
border: 1px solid #ccc;
border-radius: 2px;
font-size: 14px;
}

.newsletter-form button {
background-color: #e40046;
border: none;
color: rgb(255, 255, 255);
padding: 6px 15px;
cursor: pointer;
font-size: 18px;
border-radius: 2px;
transition: background-color 0.3s;
font-weight: 700;
letter-spacing: 1px;
}

.newsletter-form button:hover {
background-color: #c6003c;
color: #fff;
}


.footer-popular-searches {
padding-top: 20px;
}

.subfooter {
background-color: #232e4c;
}

.footer-popular-searches h4 {
color: #fff;
font-weight: 600;
margin-bottom: 15px;
font-size: 15px;
text-align: center;
text-transform: uppercase;
text-decoration: underline;
text-underline-offset: 5px;
text-decoration-thickness: 2px;
}

.popular-links {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 10px 0px;
}

.popular-links a {
position: relative;
display: inline-block;
font-size: 18px;
color: #ffffff;
text-decoration: none;
transition: color 0.3s ease;
padding: 6px 14px 14px 14px;
}


.popular-links a::after {
content: "";
position: absolute;
left: 14px;
bottom: 4px;
width: 0%;
height: 2px;
background-color: #afafaf;
transition: width 0.4s ease;
margin-bottom: 10px;
}


.popular-links a:hover {
color: #afafaf;
}

.popular-links a:hover::after {
width: calc(100% - 28px);
}



.footer-bottom {
background-color: #232e4c;
font-size: 13px;
color: #ffffff;
}

.footer-bottom p {
font-size: 18px;
}

.footer-payment-icons img {
height: 30px;
margin-left: 15px;
transition: filter 0.3s;
border-radius: 5px;
}

.footer-payment-icons img:hover {
filter: grayscale(0);
}


@media (max-width: 991px) {
.footer-top {
   
    padding: 15px;
}

.footer-column {
    max-width: 100%;
    margin-bottom: 0px;
}

.footer-payment-icons {
    margin-top: 10px;
}



.footer-top{
    gap: 20px;
}

}

@media (max-width: 576px) {

    .footer-top{
        flex-direction: unset;
    }

    .popular-links a{
        padding: unset;
        text-decoration: underline;
        margin-right: 10px;
    }

    .popular-links{
    justify-content: left;
    }

    .footer-bottom{
     display: flex !important;
     flex-direction: column;
    }

    .footer-column ul li a{
        font-size: 16px;
    }
        .footer-top {
        padding: 7px;
    }

    .footer-column p{
         font-size: 16px;
    }

    .popular-links a{
            font-size: 13px;
            padding-bottom: 10px;
    }

    .footer-bottom p{
        font-size: unset;
    }
    .footer-payment-icons img{
        margin-left: 2px;
    }
}

.serch-footer {
display: flex;
align-items: center;
justify-content: space-between;
background-color: #232e4c;
padding-left: 0 !important;
padding-right: 0 !important;
}

.footer-search {
margin: unset !important;
}


.footerprivercy {
display: flex;
align-items: center;
justify-content: space-between;
background-color: #232e4c;
}

/* ------------------------ Footer end ----------------------------- */


/* ------------------------ feature badges section start ----------------------------- */

.site-features {
background: linear-gradient(180deg, #0f0f0f 0%, #0b0b0b 100%);
color: #f5f5f5;

}

.feature-card {
background: rgba(255, 255, 255, 0.03);
border: 1px solid rgba(255, 255, 255, 0.04);
border-radius: 12px;
transition: transform .25s ease, box-shadow .25s ease;
min-height: 110px;
display: flex;
flex-direction: column;
justify-content: center;
}

.feature-card:hover {
transform: translateY(-6px);
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
}

.icon-wrap {
width: 56px;
height: 56px;
margin: 0 auto;
display: grid;
place-items: center;
border-radius: 50%;
background: linear-gradient(135deg, rgba(212, 175, 55, 0.12), rgba(212, 175, 55, 0.06));
color: #d4af37;
font-size: 1.35rem;
}

.feature-title {
font-size: 1.5rem;
font-weight: 700;
color: #fff;
}

.feature-sub {
font-size: 1.3rem;
color: #cfcfcf;
opacity: 0.9;
}

/* Responsive tweaks */
@media (max-width: 575px) {
.feature-card {
    min-height: 95px;
    padding: 12px;
}

.icon-wrap {
    width: 48px;
    height: 48px;
    font-size: 1.15rem;
}
}

/* ------------------------ feature badges section end ----------------------------- */
/* ===== Slider Images ===== */
.owl-carousel .item img {
width: 100%;
height: 430px;
object-fit: cover;
image-rendering: -webkit-optimize-contrast;
image-rendering: crisp-edges;
transform: translateZ(0);
cursor: pointer;
transition: 2s;
object-position: top;
}

  @media (max-width: 576px) {
       .owl-carousel .item img{
        height: 200px !important;
       }

       .dividerswction{
        margin-bottom: 10px;
       }

       .heading-sectionnew .title{
            font-size: 22px;
       }

       .homepage-viewall{
            margin-top: 5px !important;
            margin-bottom: 5px !important;
       }
    }

  @media (max-width: 768px) {
       .owl-carousel .item img{
        object-position: 0% 0% ;
       }
    }

   
/* ===== Navigation Buttons ===== */
.owl-nav button.owl-prev,
.owl-nav button.owl-next {
position: absolute;
top: 50%;
background: #fff !important;
border-radius: 8px;
width: 40px;
height: 40px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
transition: opacity 0.4s ease, transform 0.4s ease;
opacity: 0;
visibility: hidden;
transform: translateY(-50%);
pointer-events: none;
}

/* Left button */
.owl-nav button.owl-prev {
left: 20px;
transform: translate(-20px, -50%);
}

/* Right button */
.owl-nav button.owl-next {
right: 20px;
transform: translate(20px, -50%);
}

/* Hover par show hone ka effect (desktop) */
.owl-carousel:hover .owl-nav button.owl-prev,
.owl-carousel:hover .owl-nav button.owl-next {
opacity: 1;
visibility: visible;
transform: translate(0, -50%);
pointer-events: all;
}

/* Hover animation (zoom) */
.owl-nav button.owl-prev:hover,
.owl-nav button.owl-next:hover {
background: #a51235 !important;
transform: translate(0, -50%) scale(1.1);
}

/* Arrow icons */
.owl-nav button.owl-prev span,
.owl-nav button.owl-next span {
font-size: 24px;
color: #a51235;
line-height: 1;
}

.owl-nav button.owl-prev:hover span,
.owl-nav button.owl-next:hover span {
color: #fff;
}

/* === Responsive fix: Mobile/Tablet me hamesha visible === */
@media (max-width: 991px) {

.owl-nav button.owl-prev,
.owl-nav button.owl-next {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translate(0, -50%) !important;
    pointer-events: all !important;
    width: 24px;
    height: 24px;
    background: #ffffff4d !important;
}

.owl-nav button.owl-next{
    right: 10px;
   
}
.owl-nav button.owl-prev{
    left: 10px;
}

.owl-nav button.owl-prev span, .owl-nav button.owl-next span{
    font-size: 20px;
}

.homeslider .item img{
    object-fit: inherit;
}
}

/* ------------------------ Why Choose Us end----------------------------- */

.filter-sidebar {
border-right: 1px solid #eee;
padding-right: 25px;
}

.filter-title {

font-size: 22px;
font-weight: 700;
margin-bottom: 15px;
color: #111;
}

.accordion,
.sub-accordion {
width: 100%;
background: transparent;
border: none;
font-size: 15px;
font-weight: 600;
padding: 10px 0;
text-align: left;
cursor: pointer;
border-top: 1px solid #eee;
color: #222;
position: relative;
}

.accordion:hover,
.sub-accordion:hover {
color: #c2185b;
}

.arrow {
float: right;
transition: transform 0.3s ease;
}

.accordion.active .arrow,
.sub-accordion.active .arrow {
transform: rotate(180deg);
}

.panel,
.sub-panel,
.child-panel {
display: none;
padding: 8px 0 10px 10px;
animation: fadeIn 0.3s ease;
list-style: none;
}

.panel label,
.sub-panel label,
.child-panel label {
font-size: 14px;
color: #444;

}

.child-panel {
padding-left: 20px;
}

#priceRange {
width: 100%;
accent-color: #c2185b;
}

.price-text {
margin-top: 8px;
font-size: 14px;
}

/* Product card */
.card {
border: 1px solid #e5e5e5;
border-radius: 10px;
overflow: hidden;
transition: all 0.3s ease;
background: #fff;
margin-bottom: 20px;
}

.card:hover {
box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
}

.card-img-top {
height: 350px;
object-fit: cover;
}

.card-body {
text-align: center;
padding: 15px;
}

.card-title {
font-weight: 600;
color: #111;
}

.card-price {
font-weight: 700;
color: #000;
}


.pagination {
display: flex;
justify-content: center;
align-items: center;
gap: 8px;
margin: 40px 0 20px;
flex-wrap: wrap;
}

.pagination button {
background-color: #fff;
border: 1px solid #ddd;
color: #333;
padding: 8px 16px;
font-size: 15px;
font-weight: 500;
border-radius: 50px;
cursor: pointer;
transition: all 0.3s ease;
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.pagination button:hover {
background-color: #000;
color: #fff;
border-color: #000;
}

.pagination button.active {
background-color: #000;
color: #fff;
border-color: #000;
box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}

.pagination button:disabled {
opacity: 0.5;
cursor: not-allowed;
}

.pagination .arrow {
font-weight: bold;
font-size: 16px;
}


/* ------------------------ feature badges section start ----------------------------- */

.trust-icon img {
object-fit: contain;
width: 50%;


}

.trust-icon p {
font-size: 13px;
margin-top: 10px;
}

.trust-icon {
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
border: 1px solid grey;
height: 170px;
width: 200px;
overflow: hidden;
border-radius: 10%;
background-color: #fff;

}



/* ------------------------ feature badges section end ----------------------------- */


/* ------------------------ filter-sidebar section start ----------------------------- */


.breadcrumb {
background: #eee;
padding: 10px 10px;
font-size: 16px;
color: #666;
text-align: center !important;
}

.main-container {
display: flex;
padding: 20px 30px;
}

.breadcrumb p a {
color: #000;
text-decoration: none;
}

.breadcrumb p {
margin-bottom: 0px;
}

.sidebar {
width: 250px;
background: #fff;
padding: 20px;
margin-right: 20px;
border: 1px solid #ddd;
border-radius: 8px;
height: fit-content;
}

.sidebar h2 {
font-size: 20px;
margin-bottom: 15px;
color: #c2185b;
}

.filter-group {
margin-bottom: 20px;
}

.filter-group h3 {
font-size: 16px;
margin-bottom: 10px;
color: #333;
font-weight: 600;
border-bottom: 1px solid #80808040;
padding-bottom: 10px;
}

.filter-group label {
display: block;
margin-bottom: 6px;
font-size: 14px;
color: #444;
}

#priceRange {
width: 100%;
}

.products-area {
flex: 1;
}

.products-header {
display: flex;
justify-content: space-between;
margin-bottom: 20px;
}

.products-header p {
font-size: 16px;
}

.products-header select {
padding: 5px 10px;
font-size: 14px;
}

.product-list {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
gap: 10px;
}

@media (max-width: 576px) {
    .product-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
}


/* 🔄 Scroll only for Product Type */
.scrollable-filter {
max-height: 200px;
/* Control height of scrollable box */
overflow-y: auto;
border: 1px solid #ddd;
padding: 10px;
border-radius: 6px;
background-color: #fefefe;
scrollbar-width: thin;
}

/* 👇 Optional: Nice scroll look for Chrome */
.scrollable-filter::-webkit-scrollbar {
width: 6px;
}

.scrollable-filter::-webkit-scrollbar-thumb {
background-color: #c4c4c4;
border-radius: 4px;
}

.producttype {
height: 250px;
overflow-y: scroll;
}

/* ------------------------ filter-sidebar section end ----------------------------- */

/* Main layout */
.pproduct-details {
max-width: 1200px;
/* margin: 40px auto; */
display: grid;
grid-template-columns: 600px 1fr;
gap: 40px;
padding: 40px 0px;
margin: auto;
}

.pradeep121 {
background-image: url('/userassets/image/footerbg.webp');
}



.left {
display: flex;
gap: 15px;
position: relative;
overflow: visible !important;
/* VERY IMPORTANT */
}

.right-wrapper {
max-height: 547px;
overflow-y: auto;
scrollbar-width: none;
-ms-overflow-style: none;
}

.right-wrapper::-webkit-scrollbar {
display: none;
}

.right {
position: sticky;
/* top: 0; */
}

.right .title {
font-size: 1.6em;
font-weight: 700;
margin-bottom: 0px !important;
text-transform: capitalize;
}


.right .rating {
color: #ffa534;
/* margin-bottom: 10px; */
margin-top: -5px;
font-size: 11px;
}

.right-wrapper .right h1 {
margin-top: 5px !important;
margin-bottom: 5px !important;
}

.price-row {
margin-bottom: 15px;
font-size: 1.2em;
font-weight: 700;
color: #403e3e;
}

.product-details-sku a {
font-size: 10px;
color: #636665;
font-weight: 600;
margin-top: 20px;
text-decoration: none !important;
}

.product-details-sku {
margin-bottom: 0px;
margin-top: -10px;
}



.stage {
position: relative;
width: 100%;
overflow: hidden;
display: flex;
align-items: center;
justify-content: center;
height: 547px;
}


.stage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: crosshair;
    object-position: top;
    border-radius: 10px;
}


.share-btn {
position: absolute;
top: 15px;
right: 15px;
display: flex;
align-items: center;
justify-content: center;
font-size: 16px;
cursor: pointer;
}

/* cart page start */


.checkout-steps {
display: flex;
justify-content: center;
gap: 60px;
margin: 30px 0;
}

.checkout-steps span {
font-weight: 600;
color: #777;
position: relative;
font-size: 15px;
cursor: pointer;
}

.checkout-steps span.active {
color: #14cda8;
}

.checkout-steps span::after {
content: "";
position: absolute;
right: -40px;
top: 50%;
width: 30px;
height: 1px;
background-color: #ccc;
transform: translateY(-50%);
}

.checkout-steps span:last-child::after {
display: none;
}

.cart-container {
max-width: 1200px;
margin: auto;
display: flex;
gap: 25px;
margin-top: 20px;
}

.cart-left {
flex: 2;
}

.cart:hover {
background: #b93756;
color: white !important;
}

.section-box {
background: #fff;
border: 1px solid #ddd;
border-radius: 6px;
padding: 2px;
margin-bottom: 15px;
}

.product-box {
display: flex;
align-items: flex-start;
gap: 20px;
border: 1px solid #ddd;
border-radius: 6px;
padding: 15px;

}

.product-box img {
width: 120px;
height: auto;
object-fit: cover;
border-radius: 4px;
}

.product-info h6 {
font-weight: 600;
margin-bottom: -8px;
text-transform: capitalize;
}

.addtocartsku {
color: #636665;
font-size: 10px;
text-decoration: none;
}

.addtocartsku:hover {
text-decoration: underline;
}


.product-info p {
margin: 0;
font-size: 10px;

text-transform: capitalize;

}

.price {
font-weight: 600;
font-size: 12px;
}

.old-price {
text-decoration: line-through;
color: #777;
font-size: 10px;
font-weight: 500;
margin-left: 10px;
}


.actions {
display: flex;
gap: 10px;

align-items: center;
flex-wrap: wrap;
}


.actionsize {
margin-bottom: 20px;
margin-top: 20px;
}

.detailsbtncart {
padding: 8px 20px 8px 20px !important;
background-color: #a11e3d;
color: #fff;
margin-bottom: 10px;
margin-right: 5px !important;
}

.detailsbtncart:hover {
background-color: #e40046;
color: rgb(223, 221, 221);
}

.add-to-cart-btn {
padding: 5px 8px !important;
background-color: #a11e3d;
color: #fff;
margin-bottom: 10px;
margin-right: 5px !important;
border-color: transparent;
border-radius: 5px;
}

.add-to-cart-btn:hover {
background-color: #b50037;
color: rgb(223, 221, 221);
}


.actionsize label {

font-size: 14px;
font-weight: 500;
margin-bottom: 5px;
}

.colordetailhead {
font-size: 14px;
font-weight: 500;
margin-bottom: 5px;
}

.discount {
color: #0b7a3b;
margin-left: 0px;
font-weight: 500;
font-size: 10px;
}

.buttonincrege {
margin-top: 20px;
margin-bottom: 20px;
}

.btn {
padding: 6px 18px;
border: none;
border-radius: 6px;
font-weight: 600;
cursor: pointer;
font-size: 0.95em;
}

.action-btns {
display: flex;
gap: 20px;
margin-top: 10px;
}

.action-btns button {
border: none;
background: transparent;
font-size: 16px;
font-weight: 500;
color: #e58282;
cursor: pointer;
}

.cart-right {
flex: 1;
position: sticky;
top: 20px;
height: fit-content;
padding-bottom: 20px;
}

.cart-right .price-row span{
    font-size: 1rem;
    font-weight: 500;
}
.total span{
    font-size: 1.2rem !important;
}

.cart-right .price-box .price-row {
    margin-bottom: 0px;
}

.cart {
background: #a11e3d;
color: #fff;
}

.buy {
background: #dadada;
color: #111;
}

.buy:hover {
background: #a11e3d;
color: white !important;
}



.size-chart-btn {
padding: 4px;
background: #eee;
border: none;
border-radius: 5px;
cursor: pointer;
font-weight: 500;
font-size: 0.6em;
}



.size-chart-btn:hover {
background: #ddd;
}

/* size buttons */
.size-btn {
padding: 6px 12px;
margin-right: 5px;
border: 1px solid #ccc;
border-radius: 6px;
cursor: pointer;
background: #fff;
}

.size-btn.active {
border-color: #a11e3d;
background: #a11e3d;
color: #fff;
}


.color-swatch {
width: 60px;
height: 60px;
border-radius: 6px;
/* border: 2px solid #ccc; */
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
position: relative;
overflow: hidden;

}

.addandsize {
display: flex;
flex-wrap: wrap;
}



.sizechartbutton button {
padding: 4px 8px;
font-size: 8px;
line-height: 1;
border-radius: 2px;
background-color: #1b223c;
color: #fff;
box-shadow: unset !important;
transition: 2s;
}

.sizechartbutton:hover button {
background-color: #971c39;
color: #dbdada;
}

.chart-closebtn button {
background-color: #971c39;
transition: 2s;
margin-top: 0px !important;
}

.chart-closebtn:hover button {
background-color: #1b223c;
color: #fff;
}

.sizegudie img {
object-fit: cover;
width: 100%;
}

.sizegudie {
padding: 0px;
}

.sizemian-sub {
padding: 0px !important;
width: 100% !important;
max-width: 500px !important;
}

.color-swatch.active {
border-color: #d5d5d5;
}

.color-name {
font-size: 0.8em;
text-align: center;
margin-top: 4px;
}

.qty-container {
display: flex;
align-items: center;
gap: 5px;
}

.qty-btn {
padding: 5px 16px;
border: 1px solid #ccc;
background: #fff;
cursor: pointer;
border-radius: 4px;
font-weight: 600;
}


.qty-input {
width: 40px;
text-align: center;
padding: 5px;
border: 1px solid #ccc;
border-radius: 4px;
}






.desc h3 {
cursor: pointer;
font-size: 18px;
justify-content: space-between;
align-items: center;
background: #f5f5f5;
padding: 10px;
border-radius: 6px;
transition: background 0.3s;
margin: 0px !important;
display: flex;
}


.desc-content {
max-height: 0;
overflow: hidden;
opacity: 0;
transition: all 0.4s ease;
padding-left: 10px;
}

.desc.active .desc-content {
max-height: 800px;
/* large enough to fit content */
opacity: 1;
margin-top: 10px;
}

.desc span {
font-weight: bold;
font-size: 22px;
}

.desc {
margin-bottom: 15px;
}

.desc h3:hover {
background: #e9e9e9;
}

.desc h3 span {
font-size: 1.4em;
}

.desc p,
.specs {
color: #555;
line-height: 1.5;
display: none;
margin-bottom: 12px;
}

.specs li {
margin-bottom: 6px;
}




.modal,
.popup-img {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
display: none;
align-items: center;
justify-content: center;
z-index: 999;
flex-direction: column;
background: rgba(0, 0, 0, 0.8);
}

.modal-content {
background: #fff;
padding: 20px;
border-radius: 10px;
text-align: center;
max-width: 400px;
width: 90%;
position: relative;
/* align-items: center; */
}

.modal-content input,
.modal-content select {
width: 80%;
padding: 10px;
margin-top: 10px;
border: 1px solid #ccc;
border-radius: 6px;
}

.modal-content button {
margin-top: 15px;
padding: 10px 20px;
border: none;
border-radius: 6px;
color: #fff;
cursor: pointer;
}


.modal-content .close {
position: absolute;
top: 10px;
right: 15px;
font-size: 20px;
cursor: pointer;
color: #555;
}

.popup-img img {
max-width: 80%;
max-height: 80%;
border-radius: 10px;
margin-bottom: 15px;
}

.popup-thumbs {
display: flex;
gap: 10px;
flex-wrap: wrap;
}

.popup-thumbs img {
width: 50px;
height: 50px;
object-fit: cover;
border-radius: 6px;
border: 2px solid transparent;
cursor: pointer;
}

.popup-thumbs img.active {
border-color: #a11e3d;
}





.popup-img {
display: none;
position: fixed;
}

.popup-img.active {
display: flex;
}



.price-box {
background: #fff;
border: 1px solid #ddd;
border-radius: 6px;
padding: 20px;
}

.price-box h6 {
font-weight: 600;
margin-bottom: 15px;
font-size: 1.2rem;
}

.price-row-productdetails {
/* display: flex;
justify-content: space-between; */
font-size: 14px;
margin-bottom: 8px;
}

#couponSection input[type="text"] {
width: 65%;
padding: 8px;
font-size: 14px;
border: 1px solid #ccc;
border-radius: 4px;
}

#couponSection button {
padding: 8px 25px;
font-weight: 600;
background-color: #e40046;
border: none;
color: white;
cursor: pointer;
border-radius: 4px;
margin-left: 8px;
}

#couponSection button:hover {
background-color: #c6003c;
}

hr {
margin: 20px 0;
border: none;
border-top: 1px solid #9d9d9d;
}

.total {
font-weight: 600;
border-top: 1px solid #ddd;
padding-top: 10px;
}

.cartsizecolor span {
font-size: 10px;
color: #e40046;
font-weight: 800;
}

.place-order {
background-color: #e40046;
color: #fff;
font-weight: 600;
width: 100%;
border: none;
padding: 10px;
border-radius: 6px;
margin-top: 15px;
}

.place-order:hover {
background-color: #c6003c;
}

.wishlist-box {
border: 1px solid #ddd;
border-radius: 6px;
padding: 20px;
background: #fff;
margin-top: 20px;
}

.actions.qty-container.buttonincrege {
display: flex;
align-items: center;
gap: 10px;
margin: 10px 0;
}

.actions.qty-container .qty-btn {
width: 30px;
height: 30px;
border: 1px solid #ddd;
background: #f8f9fa;
border-radius: 4px;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
font-weight: bold;
}

.actions.qty-container .qty-btn:hover {
background: #e9ecef;
}

.actions.qty-container .qty-input {
width: 50px;
height: 30px;
border: 1px solid #ddd;
border-radius: 4px;
text-align: center;
background: white;
}
@media (max-width: 371px) {
.actions.qty-container.buttonincrege {
  gap: 5px;
}
.actions.qty-container .qty-btn{
    width: 25px;
    height: 25px;
}
.actions.qty-container .qty-input{
    width: 32px;
    height: 25px;
}
#applyCouponBtn{
margin-top: 10px;
}
}
@media (max-width: 992px) {
.cart-container {
    flex-direction: column;
}
}

/* cart page end */

/* thumbs css scroll start*/
.thumbs-wrapper {
position: relative;
width: 100px;
height: 547px;
/* overflow: hidden; */
}

.thumbs {
display: flex;
flex-direction: column;
/* vertical thumbnails */
gap: 10px;
}

.thumbs img {
width: 80px;
height: 100px;
object-fit: cover;
border-radius: 6px;
border: 2px solid transparent;
cursor: pointer;
transition: .3s;
}


.thumbs img.active {
border-color: #d5d5d5;
}

#thumbs {
height: 100%;
overflow-y: scroll;
scroll-behavior: smooth;
/* padding: 5px 5px; */
/* space for arrows */
}

/* ✅ Hide scrollbar */
#thumbs::-webkit-scrollbar {
display: none;
}

#thumbs {
-ms-overflow-style: none;
scrollbar-width: none;
}

/* thumbs style */
#thumbs img {
width: 90px;
height: 90px;
object-fit: cover;
margin-bottom: 8px;
cursor: pointer;
border-radius: 4px;
border: 1px solid #ddd;
object-position: top;
}

/* Arrow button styles */
.scroll-btn {
position: absolute;
left: 50%;
transform: translateX(-50%);
background-color: #fff9;
color: #6e6e6e;
border: none;
width: 100%;
height: 32px;
cursor: pointer;
font-size: 18px;
z-index: 10;
display: flex;
justify-content: center;
align-items: center;
opacity: 0;
pointer-events: none;
transition: all 0.25s ease-in-out;
}

.scroll-btn.show {
opacity: 1;
pointer-events: auto;
transform: translateX(-50%) translateY(0);
}

.thumb-up {
top: 0px;
transform: translateX(-50%) translateY(-8px);
/* slide down entry */
}

.thumb-down {
bottom: 0px;
transform: translateX(-50%) translateY(8px);
/* slide up entry */
}


/* thumbs css scroll end*/

/* search css start */
.list-group .list-group-item {
cursor: pointer !important;
}

.search-results {
position: absolute;
z-index: 9;
max-height: 180px;
text-overflow: ellipsis;
white-space: nowrap;
max-width: 240px;
overflow-x: hidden;
overflow-y: auto;
}

.search-results .list-group li a {
display: block;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
width: 247px;
/* adjust as you want */
}



.stage {
position: relative;

}



#lens {
position: absolute;
width: 120px;
height: 120px;
background: rgba(255, 255, 255, 0.3);
border: 2px solid #aaa;
pointer-events: none;
display: none;
}


.zoom-result {
position: absolute;
top: 0;
left: calc(100% + 15px);
background-repeat: no-repeat;
border: 1px solid #ccc;
display: none;
z-index: 200;
}

/* search css end */








/* navbar start */
.nav-main-menu-dropdown {
position: absolute;
width: 80%;
left: 157px;
top: 100%;
/* border-top: 1px solid #eee; */
z-index: 9999;
display: none;
padding: 20px 0;
box-shadow: 0 6px 10px -4px rgba(0, 0, 0, 0.5);

display: none;
border: 1px solid #e0e0e0 !important;
border-top: none !important;
border-radius: 0px 0px 10px 10px !important;
}

.nav-main-menu-dropdown.show {
display: block;
}

.tab-content>.tab-pane {
display: none;
}

.tab-content>.active,
.tab-content>.show {
display: block;
}

.nav-menu-dropdown-content-box {
display: flex;
gap: 40px;
padding: 0 40px;
}

#scrollContainer {
max-width: 100%;
overflow-x: auto;
white-space: nowrap;
}

.dropcontainer1 {

display: flex;
justify-content: flex-start;
flex-wrap: wrap;
max-height: 260px;

}

.dropcontainer1 a:first-child img {
width: 64px;
height: 64px;
object-fit: cover;
object-position: unset !important;
margin-left: 6px;

}

.dropdown-menu {
border: none;
border-radius: 0px;
}

.dropcontainer1 a img {
object-fit: cover;
width: 64px;
height: 64px;
border-radius: unset;
border-radius: 50%;
object-position: top !important;
margin-bottom: 10px;
}

.dropcontainer {
display: flex;
justify-content: flex-start;
flex-wrap: wrap;
margin-left: 5px;
}

.dropcontainer a {
display: flex;
width: 33%;
flex-direction: column;
align-items: center;
font-size: 14px;
color: #222222;
text-align: center;
text-decoration: none;
padding: 10px;
font-family: "poppins" !important;
font-weight: 600;
letter-spacing: 0.5px;
}

.dropcontainer img {
object-fit: cover;
width: 64px;
height: 64px;
border-radius: unset;
border-radius: 50%;
object-position: top !important;
margin-bottom: 10px;
}


.dropcontainer1 {

display: flex;
justify-content: flex-start;
flex-wrap: wrap;
max-height: 260px;
margin-bottom: 15px;
}


.dropcontainer a:first-child img {
width: 64px;
height: 64px;
object-fit: cover;
object-position: unset !important;


}

.dropcontainer1 a img {
object-fit: unset;
object-position: unset;
width: 64px;
height: 64px;
border-radius: unset;
border-radius: 50%;
object-position: top !important;
}

.dropcontainer1 a {

display: flex;
width: 25%;
 flex-direction: column;
    align-items: center;
    font-size: 14px;
    color: #222222;
    text-align: center;
    text-decoration: none;
    padding: 10px;
    font-family: "poppins" !important;
    font-weight: 600;
    letter-spacing: 0.5px;

}


.horizontalline {
width: 1px;
height: 100%;
background: #ccc;
margin: 0 auto;
}


.menu-right-scroll {
max-height: 420px;
overflow-y: auto;
padding-right: 5px;
}


.menu-left-scroll {
max-height: 420px;
overflow-y: auto;
padding-right: 5px;
}

.fw-bold {
margin-left: 15px;
text-transform: uppercase;
font-size: 15px;
color: #970101;
}


.menu-left-scroll::-webkit-scrollbar-track,
.menu-right-scroll::-webkit-scrollbar-track {
background: #f1f1f1;
}


.menu-left-scroll::-webkit-scrollbar-thumb,
.menu-right-scroll::-webkit-scrollbar-thumb {
background: #888;
border-radius: 10px;
}


.menu-left-scroll::-webkit-scrollbar-thumb:hover,
.menu-right-scroll::-webkit-scrollbar-thumb:hover {
background: #555;
}

.menu-left-scroll,
.menu-right-scroll {
scrollbar-width: thin;
scrollbar-color: #888 #f1f1f1;
}


.menu-left-scroll::-webkit-scrollbar,
.menu-right-scroll::-webkit-scrollbar {
width: 10px !important;

}

.navbar-light .navbar-nav .nav-link {
    letter-spacing: 0.6px;
    color: #1b1a2a;
    font-weight: 600;
    font-size: 14px !important;
    text-transform: uppercase;
    font-family: math;
    overflow: hidden;
}

.navbar {
padding-bottom: 0px;
padding-top: 0px;

}



 .navbar-light .navbar-nav .nav-link:hover {
color: #d97000;
transition: 0.5s;
} 


.mainlink {
position: relative;
padding-right: 18px !important;
/* arrow ke liye proper space */
display: inline-block;
}

.mainlink::after {
content: "\F229";
    font-family: "bootstrap-icons" !important;
    font-weight: normal;
    font-size: 15px;
    position: absolute;
    right: 0px;
    top: 45%;
    transform: translateY(-50%);
    pointer-events: none;
}


.mainlink.active {
color: #e5005f !important;
background: #ffe8d6;
font-weight: 800;
}

/* Mobile + Tablet */
@media (max-width: 991px) {
    .mainlink::after {
        transform: translateY(-50%) rotate(-90deg); /* > jaisa dikhega */
    }
}

/* navbar End */


/* customer reviews start */

.review {

display: flex;
justify-content: space-between;

}

.reviewmaincol {
box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 22px -20px, rgba(0, 0, 0, 0.3) 0px 30px 37px -52px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
border-radius: 10px;
padding: 20px 20px;
background-color: #fff;
margin-bottom: 20px;
}

.reviewmaincol .review .customernamerev {
margin: 0px;

}

.revieimg {
object-fit: cover;
width: 100%;

}



.summaryreview p {
font-weight: 500;
font-size: 13px;
margin-right: 10px;
text-align: left;
margin-top: 8px;
max-height: 60px;
overflow-y: auto;
}


.stars {
color: #f5c518;
font-size: 1.2rem;
}



.rating-bar {
display: flex;
align-items: center;
margin-bottom: 8px;
font-size: 14px;
}



.bar {
flex: 1;
height: 8px;
background: #eee;
border-radius: 5px;
position: relative;
margin: 0 10px;
}

.bar-fill {
height: 100%;
background: #9f2240;
border-radius: 5px;
position: absolute;
top: 0;
left: 0;
}

.verified {
background: #1b9f13;
color: #fff;
font-size: 10px;
padding: 2px 6px;
border-radius: 3px;
text-transform: uppercase;
}






.review .date {
font-size: 13px;
color: #666;
margin-top: 10px;
}

.btn-open-review {
background: #9f2240;
color: #fff;
border: none;
padding: 10px 25px;
font-weight: bold;
border-radius: 2px;
}

.btn-open-review:hover {
background: #333;
}

/* --- Sort Dropdown --- */
.sort-section {
margin-top: 20px;
padding-bottom: 10px;
margin-bottom: 20px;
display: flex;
justify-content: space-between;
align-items: center;
}

.sort-select {
border: 1px solid #ccc;
border-radius: 4px;
padding: 6px 10px;
}

/* --- Popup Overlay --- */
.review-overlay {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.5);
backdrop-filter: blur(2px);
justify-content: center;
align-items: center;
z-index: 9999;
}

/* --- Popup Box --- */
.review-popup {
background: #fff;
border-radius: 8px;
padding: 25px;
width: 90%;
max-width: 450px;
box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
position: relative;
animation: fadeIn 0.3s ease-in-out;
}

/* --- Close Button --- */
.btn-close-popup {
position: absolute;
top: 12px;
right: 12px;
background: #8B1E3F;
color: #fff;
border: none;
border-radius: 4px;
font-weight: bold;
cursor: pointer;
width: 25px;
height: 25px;
line-height: 1;
text-align: center;
padding: 0;
}

.btn-close-popup:hover {
background: #a3264c;
}

/* --- Form Styling --- */
.review-popup h3 {
text-align: center;
font-weight: bold;
/* margin-bottom: 20px; */
color: #121212;
}

.review-popup label {
font-weight: bold;
color: #8B1E3F;
margin-bottom: 5px;
}

.review-popup input,
.review-popup select,
.review-popup textarea {
width: 100%;
border: 1px solid #ccc;
border-radius: 5px;
padding: 8px;
font-size: 14px;
}

.btn-submit-review {
background: #8B1E3F;
color: #fff;
border: none;
width: 100%;
padding: 10px;
border-radius: 5px;
font-weight: bold;
cursor: pointer;
}

.btn-submit-review:hover {
background: #111c27;
}

.rating-stars {
display: flex;
gap: 5px;
margin-bottom: 15px;
}

.rating-stars .star {
font-size: 20px;
color: #ccc;
cursor: pointer;
transition: 0.2s;
}

.rating-stars .star.selected {
color: gold;
}

.rating-stars .star:hover {
color: orange;
}

@keyframes fadeIn {
from {
    opacity: 0;
    transform: translateY(-20px);
}

to {
    opacity: 1;
    transform: translateY(0);
}
}

.reviewheding {
text-align: center;
border-top: 1px solid rgb(224, 224, 224);
padding: 20px 0px;
}

/* customer reviews end */

/* login signup start */
.dropdown_modalTop {
display: none;
position: fixed;
z-index: 5000;
left: 0;
top: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.6);
}

.dropdown_modalTop-content {
background-color: #fff;
margin: 10% auto;
padding: 25px;
border-radius: 10px;
width: 90%;
max-width: 400px;
position: relative;
}

.dropdown_modalTop-close {
color: #fcfcfc;
float: right;
font-size: 28px;
cursor: pointer;
padding: 0px 10px 0px 10px !important;
background-color: #e40046;
border-radius: 5px;
margin-bottom: 10px;
}

.dropdown_modalTop-close:hover {
color: #fff;
background-color: #94042f;
}

.logisign-colur {
background-color: #e40046;
color: #fff;
}

.logisign-colur:hover {
background-color: #94042f;
color: #e0dfdf;
}

/* login signup end */

.accordion-button:focus {
box-shadow: unset;
background-color: unset;
}

.accordion-button:not(.collapsed) {
color: #000;
background-color: #fff;
box-shadow: unset;

}

.discripmennul {
color: #3b3b3b;
font-weight: 400;
border-top: 1px solid #ebe6e6;
}

.accordion {
border-top: unset;
}

/* pincode details page start */
.pincodemannulwork .modal-content .modal-header button {
/* background-color: unset; */
color: #fff;
}

.pincodemannulwork .modal-content .modal-footer button {
background-color: #dc143c;

}

.pincodemannulwork .modal-content input {
width: 100%;

}

.pincodemannulwork .modal-content label {
font-size: 18px;
font-weight: 600;
color: #e40046;
}

.pincodemannulwork .modal-content .modal-header .modal-title {
padding-right: 10px;
}

.modal-backdrop {
position: unset;
}

/* pincode details page end */

/* contactus start */
.contact-section {
padding: 50px 0;
}

.contact-title {
font-size: 32px;
font-weight: 700;
margin-bottom: 20px;
position: relative;
}

.contact-title::before {
content: "■";
color: #a57a00;
margin-right: 10px;
font-size: 22px;
}

.contact-text {
color: #555;
font-size: 16px;
line-height: 1.7;
margin-bottom: 20px;
}

.right-content p {
margin-bottom: 12px;
line-height: 1.6;
font-size: 16px;
}

.social-icons a {
font-size: 28px;
margin-right: 20px;
color: #777;
transition: 0.3s;
}

.social-icons a:hover {
color: #bf003b;
}

.contact-bor {
border: 4px double #d7d6d6;
padding: 13px;
border-radius: 10px;
}

.contact-bor button {
background-color: #bf003b;
width: 100%;
margin-left: auto;
margin-right: auto;
color: #fff;
display: block;
padding: 10px;
font-size: 18px;
}

.contact-bor:hover button {
background-color: #db074a;
width: 100%;
margin-left: auto;
margin-right: auto;
color: #fff;
}

.contact-bor h3 {
margin-bottom: 20px;
color: #bb0039;
text-decoration: underline;
text-underline-offset: 6px;
text-align: center;
font-size: 24px;
font-weight: 700;

}

.contact-map {
/* box-shadow: -2px -1px 6px rgb(0 0 0 / 10%), 3px 3px 8px rgb(0 0 0 / 10%); */
position: relative;
top: 0;

}

.cont-us {
position: relative;
top: -20px;
box-shadow: -2px -1px 6px rgb(0 0 0 / 10%), 3px 3px 8px rgb(0 0 0 / 10%);
background-color: white;
border-radius: 10px;
}

.imag-cont-bac {
background-color: #bf003b;
width: 94%;
position: relative;
left: 44px;
bottom: 560px;
z-index: -11;
box-shadow: 0px 0px 8px #020202;
height: 90%;
border-radius: 5px;
}

.left-cont {
padding: 20px;
}

.right-con {
padding: 20px;
}

.checkoutsumm button {
background-color: #bf003b;
padding: 20px;
}

/* contactus end*/


/* blog start  */
/* .blogcard {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 20px;
padding: 20px;
}

.blogcard .card-blog {
background: linear-gradient(135deg, #ff6ad5, #6366f1);
color: white;
padding: 20px;
border-radius: 16px;
box-shadow: 0 8px 20px rgb(150, 150, 150);
font-size: 20px;
z-index: 1;
}

.blogcard .card-blog::before {
content: "";
background-color: rgba(0, 0, 0, 0.2);
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border-radius: 16px;
z-index: 0;
} */

/* blog end */


/* ------------------------ customer trust info start ----------------------------- */
.trusted-customers-section {
display: grid;
grid-template-columns: repeat(4, 1fr);
/*background: #fdfdfd;*/
padding: 30px 20px;
gap: 10px;
text-align: center;
}

.trusted-customers-section .info-box .icon {
font-size: 35px;
background: linear-gradient(135deg, #ff6ad5, #6366f1);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}

.trusted-customers-section .info-box h3 {
font-size: 14px;
font-weight: 700;
margin-bottom: 6px;
color: #333;
letter-spacing: 1px;
text-transform: uppercase;
}

.trusted-customers-section .info-box p {
font-size: 13px;
color: #444;
line-height: 1.4;
}

/* Responsive */
@media (max-width: 768px) {
.trusted-customers-section {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 25px;
}
}

/* @media (max-width: 480px) {
.trusted-customers-section {
    grid-template-columns: 1fr;
}
} */


/* ------------------------ customer trust info end ----------------------------- */


/* product rating start */

.product-rating .stars {
font-size: 0.6rem;
color: #a1a100;
}

.product-rating {
padding-left: 10px;
}

.skucombind {
display: flex;
align-items: center;
    margin-top: -6px;
}

.product_listbanner img{
width: 100%;
object-fit: cover;
}

/* product rating end */

/* home page view all btn */
.homepage-viewall{
display: flex;
align-items: center;
justify-content: center;
text-decoration: none;
margin-top: 20px;
margin-bottom: 20px;
}

.homepage-viewall button{
padding: 8px 30px;
border: 1px solid #d7d5d5;
border-radius: 5px;
font-weight: 500;
color: #222222;
}

/* home page view all btn */

