@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root{
        --color:#8E8E8E;
        --heading: #5c5c5c;
        --primary:#583b0f;
        --theme:#FAF8F0;
        --anchor-color:#ff4c4c;
}

body {
    background: var(--theme);
    font-size:80%;
    font-family: "Poppins", sans-serif;
}

body::-webkit-scrollbar {
  width: 7px;             
  height: 10px;            
}

body::-webkit-scrollbar-track {
  background: #fafafa;         
}

body::-webkit-scrollbar-thumb {
  background: var(--color);
  border-radius: 5px;
}

body::-webkit-scrollbar-thumb:hover {
  background: var(-heading);
}

.container {
    width:100%;
    max-width: 1250px;
}

h1, h2, h3, h4, h5, h6, p {
    color:var(--heading);
}

.flex{
    display: flex;
}

.wrap{
    flex-wrap:wrap;
}

.justify-center{
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.items-center{
    align-items: center;
}

.flex-column{
    flex-direction: column;
}

a{
    text-decoration: none;
    transition: all .3s ease-in;
    font-weight: 300;
}

ul.slick-dots {
    width: 95%;
}

.text-primary {
    color: var(--color) !important;
}

i.text-danger, i.text-success, i.text-warning, i.text-primary, i.text-info{
    color:var(--primary) !important;
}

header {
    box-shadow: -2px -4px 9px 1px #bfbfbf;
    padding: 5px 0px;
    position:sticky;
    top:-500px;
    background:var(--theme);
    transition:all .8s ease;
    z-index:999;
}

.showHeader{
        top:-47px;
}

.social-icons {
    justify-content: center;
    align-items: center;
}
a.logo{
    display: block;
    height: auto;
    max-width: 300px;
    width: 100%;
}

a.logo img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.btn-primary {
    color: #fff;
    background-color: #583b0f !important;
    border-color: #583b0f !important;
}

.btn-primary:hover {
    color: #fff;
    background-color: #583b0f !important;
    border-color: #583b0f !important;
}
.btn-primary:focus{
    box-shadow:0px 0px 0px var(--anchor-color) !important;
    border:none;
    outline:none;
}

div#logo {
    margin-block: 5px;
}

nav#navMenu{
    transition:all .3s ease-in-out;
}

.social-icon-box {
    border-radius: 50%;
    background-color: rgb(248, 248, 248);
    height: 40px;
    width: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition:all .3s ease;
}

.social-icon-box:hover {
    background-color: rgb(227 226 221);
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.header-links{
    padding: 12px 0 5px 0;
}

.nav-links{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    list-style: none;
    margin:0;
    padding-left:0;
}

.nav-links li a, a{
    text-transform: uppercase;
    transition:all .3s ease;
}

.nav-links li a:hover{
    color:black;
    text-decoration:underline;
}

a:hover{
    color:black;
    text-decoration:underline;
}

.hero{
    background-image: url("../img/WhatsApp Image 2025-08-11 at 1.37.39 AM (1).jpeg");
    background-repeat: no-repeat ;
    background-size: cover;
    height: 100vh;
}

section{
    padding:30px 0px;
}

.thumbnail {
    height: 100%;
    min-height:180px;
    max-height:350px;
}
.imageContainer {
    height: 100%;
    width: 100%;
}

.imageContainer img {
    height: 100%;
    width: 100%;
    object-fit:cover;
    object-position: top;
}

.imageContainer {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
}

h2.main-title {
    text-align: center;
    margin-bottom: 35px;
    color:var(--heading);
}

.caption{
    text-align:center;
}

/*.main-video{*/
/*    background-image:url("../img/mrc 2022 ps.mp4");*/
/*     background-repeat: no-repeat ;*/
/*    background-size: cover;*/
/*    height: 100vh;*/
    
/*}*/

.main-video {
  position: relative;
  width: 100%;
  height: 100vh; /* full screen height */
  overflow: hidden;
  margin-bottom:50px;
}

.main-video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* crop to fill without distortion */
}

.owner-image-wrapper{
    padding:0 !important;
    width:100%;
    position:relative;
    height:100vh;
    overflow:hidden;
}

.owner-image {
    width: 100%;
    height: auto;
    display:inline-block;
}

.owner-image-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 16%); /* overlay color (50% black) */
  pointer-events: none; /* overlay doesn’t block clicks */
}

.explore{
    background-color:#333;
    padding:20px;
    color:white;
    display:flex;
    justify-content:center;
    align-items:center;
    margin-top: 70px;
}

section.explore-section {
    background: linear-gradient(to right, #dfc3c347, #ffffff00), url(../img/pooja-motwani-bg.jpg);
    height: auto;
    position: relative;
}

.explore-input{
    padding:5px;
    hieght:25px;
    border:none;
    border-bottom:1px solid white;
    max-width:350px;
    outline:none;
    background:transparent;
    color:white;
}

.explore-input::placeholder{
        color:white;
}


    .exploreForm {
    display: flex;
    align-items: center;
    background: #333;
    border-radius: 5px;
    padding: 5px 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.explore-input {
    border: none;
    outline: none;
    padding: 12px 20px;
    font-size: 16px;
    border-radius: 5px;
    background: transparent;
    color: #fff;
    width: 250px;
    transition: all 0.3s ease;
}

.explore-input::placeholder {
    color: #aaa;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.explore-input:focus::placeholder,
.explore-input:not(:placeholder-shown)::placeholder {
    opacity: 0;
    transform: translateY(-20px);
}

.exploreButton {
    cursor: pointer;
    background-color: var(--primary);
    border-radius: 50%;
    padding: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background 0.3s ease;
    border:none;
}

.exploreButton:hover {
    background-color: #7e5515;
    color: white;
}

.exploreButton i {
    color: #fff;
    font-size: 16px;
}


/* Form Input Luxury Style */
.explore-input {
    border: 2px solid var(--primary);
    border-radius: 50px;
    padding: 12px 20px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.exploreForm.explore-input::placeholder {
    color: white;
    transition: all 0.3s ease;
}

.explore-input:focus::placeholder,
.explore-input:not(:placeholder-shown)::placeholder {
    opacity: 0;
    transform: translateY(-15px);
}


form.exploreForm {
    display: flex;
    align-items: center;
    background: #333;
    border-radius: 5px;
    padding: 5px 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    max-width: 450px;
    justify-content: center;
    gap: 18px;
    width: 100%;
    border-bottom: 2px solid white;
}

form.exploreForm .explore-input {
    width: 100%;
    border: navajowhite;
    color: white;
}

.btn-pink {
    background-color: #583b0f;
    border: none;
    color: #fff;
    border-radius: 50%;
    padding: 12px 16px;
    transition: all 0.3s ease;
}

.btn-pink:hover {
      background-color: #7e5515;
    color: white;
}

.p-4.bg-white.luxury-card.border-bottom {
    min-height: 213px;
    transition: all .3s cubic-bezier(1, -0.68, 1, -0.22);
}



.luxury-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* Colors */
.text-pink { color: #583b0f; }
.text-gold { color: #c49b5f; }

footer{
    background-color:var(--theme);
}
footer ul li {
    color:var(--color) !important;
}
footer ul li a{
    color:var(--color) !important;
}

#menubar{
    display:none;
    cursor:pointer;
}

#menubar i{
    font-size:2rem;
}


.showNav{
    right:0 !important;
}


.contact-media {
    padding-block: 50px;
}

 .slider {
      width: 100%;
      margin: auto;
    }
    .slick-slide img {
      width: 100%;
      border-radius: 0px;
    }
    /*---------------------*/
    
    .fa-bars:before {
    content: "\f0c9";
    color: #7e5515;
}
    
button.slick-prev.slick-arrow {
    box-shadow: 1px 1px 0px 0px #dbd3d3;
    background: #fff;
    padding: 10px;
    height: 38px;
    width: 38px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    left: -1%;
    z-index: 9;
}
button.slick-next.slick-arrow {
    box-shadow: 1px 1px 0px 0px #dbd3d3;
    background: #fff;
    padding: 10px;
    height: 38px;
    width: 38px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    right: 0%;
}
.slick-prev:before, .slick-next:before {
    color: #4a4a4a;
    font-size: 16px;
}
  .profile-section {
      background: linear-gradient(to right, #fff, #f1f3f6);
    }
    .profile-img {
      border-radius: 5px;
      width: 100%;
      /*box-shadow: 0 10px 20px rgba(0,0,0,0.15);*/
      height:100%;
    }
    .highlight {
      color: #0d6efd;
      font-weight: 600;
    }
  
    .about-card {
      border: none;
      background: #fefefe;
      border-radius: 10px;
      box-shadow: 0 10px 20px rgba(0,0,0,0.08);
      padding: 30px;
      margin-bottom: 30px;
      min-height:300px;
    }
    .ajrak {
      background-color: #fff5e6;
      padding: 20px;
      border-radius: 10px;
      margin-bottom: 20px;
    }
    
    .nav-links li.active{
        text-decoration:underline;
        color:#000;
    }
    .nav-links li.active a{
          color:#000;
    }
    
    .text-primary{
      color:var(--primary) !important;  
    }
    
    .border-bottom {
    border-bottom: 3px solid var(--primary) !important;
}

button.btn.btn-danger {
    margin-bottom: 30px;
    background: transparent !important;
    color: var(--primary) !important;
    border: 1px solid var(--primary) !important;
}

button.btn.btn-danger:active{
    background: transparent !important;
    color: var(--primary) !important;
    border: 1px solid var(--primary) !important;
}

 #closeIcon{
      display:none;
  }
  
  .sidebarLogo{
      display:none;
  }
  
  
  .slick-slide {
    height: 360px;
    margin-right: 5px;
    overflow:hidden;
}

.slick-slider img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}
.sidebarLogo {
    padding: 13px;
    border: 1px solid #896f6f1f;
    width: 100%;
    max-width: 400px;
    margin-left: -61px;
    border-radius: 5px;
}



footer {
    width: 100%;
    padding-inline: 50px;
}


@media(max-width:991px){
    #first{
        display:none;
    }
    
      .sidebarLogo{
      display:block;
  }
    
  .profile-section{
      padding-top:20px;
  }
  

}


@media(max-width:790px){
        #menubar{
    display:block;
}

  #closeIcon{
      display:block;
  }
    ul.nav-links {
display:none;
}



    .product {
    max-height: 800px;
}
}

.hero{
    background-image: url("../img/WhatsApp Image 2025-08-11 at 1.37.39 AM (1).jpeg");
    background-repeat: no-repeat ;
    background-size: cover;
    height: 100vh;
    background-position-x: center;
}


@media(min-width:1200px){
    .product {
    max-height: 630px;
}

.products-image {
    min-height: 450px;
}
}


/*======================================Styling for Men Page Starts==================================*/
.banner-image {
    width: 100%;
    max-height: 800px;
    overflow: hidden;
}

.banner-image img {
    width: 100%;
    object-fit: cover;
}


.product {
    max-height: 600px;
    min-height:450px;
}

.product img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.products-details{
    padding: 5px 10px;
    background: #fffcf7;
    height: 100%;
    min-height: 138px;
    display: flex
;
    flex-direction: column;
    justify-content: space-around;
}


.products-details h6 {
    color: #4c4c4c;
    font-weight: bolder;
}


.products-details h5 {
    color: #2fa129;
}


.products-image img {
    width: 100%;
    object-fit: cover;
    min-height: 386px;
}
.heart i {
  color: #bfbfbf;          
  cursor: pointer;       
  transition: color 0.3s;
}

.heart i.active {
  color: #855d5d;            
}
/*======================================Styling for Men Page Ends==================================*/





@media(max-width:500px){
  .products-image img {
    min-height: 300px;
}  
}

/*========12|12|25 starts=============*/
.nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    padding: 0;
    margin: 0;
    align-items: center;
}

.nav-links li {
    position: relative;
    list-style: none;
}

.nav-links li a {
    display: block;
    padding: 10px 18px 10px 10px;

    text-decoration: none;
    position: relative;
    transition:all 0.1s ease-in-out ;
}

.nav-links li:hover > a:not(.dropdown-menu a) {
    color: var(--anchor-color);
    text-decoration:underline;
}


/* ---------------- V-shaped arrow ---------------- */
.nav-links li a::after {
    content: "";
    position: absolute;
    right: 4px;
    top: 41%;
    width: 7px;
    height: 7px;
    border-right: 2px solid #000;
    border-bottom: 2px solid #000;
    transform: translateY(-42%) rotate(45deg);
    transition:all 0.1s ease-in-out ;
}

/* Rotate arrow on hover */
.nav-links li:hover > a::after {
    transform: translateY(-18%) rotate(-135deg);
    border-color: var(--anchor-color);
}

/* Hide arrow if no dropdown */
.nav-links li:not(:has(.dropdown-menu)) > a::after {
    display: none;
}

/* ---------------- Dropdown Menu ---------------- */
.dropdown-menu {
    position: absolute;
    left: 0;
    top: 100%;
    background: #fff;
    min-width: 220px;
    padding: 10px 0;
    margin: 0;
    list-style: none;

    border-radius: 8px;
    box-shadow: 0px 5px 25px rgba(0,0,0,0.15);

    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: 0.3s ease;
    z-index: 100;
}

/* Show dropdown on hover */
.nav-links li:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(55px);
}

/* Dropdown items */
.dropdown-menu li {
    width: 100%;
}

.dropdown-menu li a {
    padding: 10px 18px;
    font-weight: 500;
    color: inherit;
    display: block;
    width: 100%;
    white-space: nowrap;
    transition: 0.25s ease;
}

.dropdown-menu li a:hover {
    background: #f5f5f5;
    color: #000;
}

ul.dropdown-menu {
    display: block;
    position: absolute;
    height: fit-content;
    background: #fefefe;
    width: fit-content;
    top: 9px;
    z-index: 99;
}

/* ---------------- Responsive ---------------- */



.dropdown-menu .d-flex li a, .dropdown-menu li a {
    font-size: 13px;
    font-family: initial;
}

.dropdown-menu li a {
    padding:0px 10px;
    margin-top:15px;
    font-weight:600;
}

.dropdown-menu .d-flex h6 {
    font-size: 18px;
    font-weight:600;
}

ul.dropdown-menu {
    border-radius: 2px;
    padding-inline: 10px;
}
a.header-navbar-link {
    font-size: 13px !important;
    margin-right: 12px;
}
a.header-navbar-link {
    color: #000000;
    font-weight: 600;
}
.dropdown-menu li:hover a {
    background: #f3f2f2;
}

nav#navMenu {
    display: flex;
    justify-content: space-between;
    align-items:center;
}
.searchBox input {
    padding: 4px;
    outline: none;
    border-radius: 5px;
    border: 0;
}

.searchBox {
    border: .1px solid #b5abab;
    padding: 0px 7px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 5px;
}

.searchBox i.fa.fa-search {
    font-size: 16px;
    margin-right: 6px;
    color: #999898;
}

.image-container {
    min-height: 327px;
}

.image-container img {
    height: 100%;
    object-fit: cover;
}

.image-container img {
    width: 100%;
    min-height: 385px;
}

h4.product-title {
    font-size: 17px;
    margin-top: 11px;
    margin-bottom: 10px;
    font-weight: 600;
}

p.product-desc {
    font-size: 12px;
    margin: 0;
    max-height: 20px;
    overflow: hidden;
    border-bottom: .5px solid #e9e9e9;
}

 .product-img {
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        }
        .price {
            font-size: 28px;
            font-weight: 700;
        }
        .product-box {
            padding: 25px;
            border-radius: 10px;
            background: #fff;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        }
        
        .product-box h2.mb-3,.product-box p, .product-box h3 {
    border-bottom: .5px solid #e5d6d6;
    padding-bottom: 11px;
}
.social-icons a {
    text-decoration: none;
}
nav ol li {
    font-size: 13px;
}


span.breadcrumb-page {
    color: #000000;
    font-weight: bold;
}

ul#mobileNav {
    margin-top: 30px;
}


h5.mobile-list {
    margin-bottom: 0;
    margin-top: 14px;
    font-size: 16px;
    font-weight: 700;
    color: #000;
}

h5.mobile-sublist {
    color: #2b2525;
    font-size: 15px;
    font-weight: 700;
    margin-left: 5px;
}
.mobile-link {
    margin-left: 10px;
    background: #f5f5f5;
    padding: 5px;
}

.mobile-link a {
    margin-left: 5px;
}
.product-card {
    padding: 20px;
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #ebebeb;
    border-radius: 8px;
    min-height:170px;
    justify-content: center;
}

.product-card p {
    text-align: center;
    border: none;
    margin: 2px;
    padding: 0;
}

.product-card span {
    text-align: center;
    display:flex;
}


button.add-to-cart-button {
    padding: 5px 32px;
    border: 2px solid transparent;
    background: var(--anchor-color);
    color: white;
    border-radius: 28px;
    font-size: 16px;
    font-weight: 600;
    transition: all .1s ease-in;
}
button.add-to-cart-button:hover {
    background: white;
    color: var(--anchor-color);
    border: 2px solid var(--anchor-color);
}
button.buy-now-button {
    background: #009714;
    border: 2px solid transparent;
    padding: 5px 35px;
    font-size: 16px;
    font-weight: 600;
    color: white;
    border-radius: 20px;
    transition: all .1s ease-in;
}
button.buy-now-button:hover {
    border: 2px solid #009714;
    background: white;
    color: #009714;
}

.product-box h4 {
    margin-bottom: 30px;
    color: #000;
    border-bottom: .5px solid #d3d3d3;
    padding-bottom: 20px;
    font-size: 22px;
}


.product-box h5 p span {
    font-size: 13px;
    margin-top: 3px;
    display: block;
}

button.nav-link.active {
    background: #439728 !important;
}

.service-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap:10px;
    border: 1px solid #e0e0e0;
}

.service-box {
    padding: 35px 25px;
    border-right: 1px solid #e0e0e0;
}

.service-box:last-child {
    border-right: none;
}

.service-icon {
    font-size: 38px;
    margin-bottom: 15px;
    display: block;
    color: #ff3333;
}

.service-box h6 {
    font-weight: 600;
    margin-bottom: 10px;
}

.service-box p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}


.add-buy {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.service-box {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-box h6 {
    font-size: 15px;
    color: #000;
    font-weight: 100;
}

.service-box p {
    font-size: 13px;
    border: none;
    margin: 0;
}

.service-box {
    border: .5px solid #e3e3e3;
    border-radius: 5px;
}

.service-row {
    border: none;
}


section.banner {
    padding: 0;
    height: 100vh;
}

section.banner img {
    height: 100%;
    width: 100%;
    object-position: top;
    object-fit: cover;
}

/*============FOR OVAL SHAP BOXES============*/

/*========12|12|25 ends=============*/


/*=====16|12|25 starts=====*/
.search-result{
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    border: 1px solid #ddd;
    max-height: 300px;
    overflow-y: auto;
    display: none;
    z-index: 9999;
}

.search-item{
    display: block;
    padding: 10px;
    text-decoration: none;
    color: #333;
    border-bottom: 1px solid #eee;
}

.search-item:hover{
    background: #f5f5f5;
}

.search-item .category{
    font-size: 12px;
    color: #777;
    float: right;
}

.no-result{
    padding: 10px;
    color: #999;
}

#searchResult::-webkit-scrollbar {
    width: 5px;
        background:#fefefe;
}

#searchResult::-webkit-scrollbar-thumb{
    background:#ddd;
}

#searchResult::-webkit-scrollbar

div#searchResult a.search-item {
    font-size: 10px;

}

div#searchResult {
    width: 300px;
    left: -49px;
    top: calc(100% + 6px);
}

.search-flex img {
    width: 50px !important;
    height: 50px;
}

.search-flex {
    display: flex;
    gap: 20px;
    align-items: center;
}

a.search-item {
    font-size: 12px;
}

.search-flex img {
    width: 50px;
    height: 100%;
}

/*=== navigation bar ==*/
div#mobileNavContainer {
    display: none;
}

.showOverlay{
    display:none;
}

div#mobileNavContainer {
    display: flex;
    flex-direction: column;
    max-width: 100%;
    width: 100%;
    position: fixed;
    right: -100%;
    background: white;
    padding: 20px;
    height: 100vh;
    border-top: 2px solid #f9f1f1;
    padding-left: 30px;
    transition: all .3s linear;
    top: 0;
    overflow-y: scroll;
}

.two-columns {
    display: flex;
    flex-wrap: wrap;
}

.two-columns .mobile-link {
    background: transparent;
}

.two-columns {
    background: #f5f5f5;
    gap: 10px;
    padding-left: 5px;
}

li#bridgroomheader, li#suitheader, li#sareeheader, li#kurtisheader, li#suitsheader, li#jewelleryheader {
    cursor: pointer;
    width: 60%;
    margin:0 auto;
    display: flex;
    flex-direction: column;
    margin-top: 7px;
}

div#bridgroomcontent, div#sareecontent, div#kurtiscontent, div#suitcontent, div#jewelleryContent {
    width: 100%;
    background: #F7F7D9;
    padding: 10px;
    height: 0px;
    overflow: hidden;
    padding: 0;
    transition: all .2s ease;
}


button#closeIcon {
    max-width: 100px;
    margin: 0 auto;
}
li#bridgroomheader, li#suitheader, li#sareeheader, li#kurtisheader, li#suitsheader, li#jewelleryheader {
    border: 1px solid #313131;
    padding: 5px;
    border-radius: 5px;
}

ul#mobileNav {
    padding: 0;
    list-style: none;
}

li#sareeheader {}

ul#mobileNav li * a {
    display: block;
    color: black;
    width: 100%;
    font-size: 12px;
    font-weight: 500;
}

div#mobileNavContainer  ul#mobileNav li {
    font-weight: 500;
}

.showContent {
    height: 100px;
    overflow: scroll;
}

.showContent {
    height: 149px !important;
    overflow-y: scroll !important;
    padding: 10px !important;
}
/*=== navigation bar ==*/

/*=====16|12|25 ends=====*/

.searchBox form {
    height: 100%;
    display: block;
}

.searchBox form input {
    display: block;
    height: 100%;
    background: transparent;
}

.searchBox {
    padding: 0;
    height: 42px;
}
footer li span {
    font-size: 14px;
}

footer li.mb-2 {
    font-size: 13px;
}

.searchBox i.fa.fa-search {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(-50%, -50%);
}

.searchBox form#myForm {
    width: 185px;
}

.searchBox i.fa.fa-search {right: -8px;}

@media(max-width:1030px){
    a.logo {
    max-width: 250px;
}
}

@media(max-width:767px){
a.logo {
    max-width: 380px;
    width: 100%;
}
}

@media (max-width: 991px) {
    .service-row {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .searchBox.position-relative {
    display: none;
}
}

@media (max-width: 575px) {
    a.logo {
    max-width: 300px;
    width: 100%;
}

footer ul li a {
    font-size: 11px;
}

    .searchBox.position-relative {
    display: none;
}
    
    section{
        padding:30px 15px;
    }
    .service-row {
        grid-template-columns: 1fr;
    }
    
    .add-buy {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}
    .service-box {
    padding: 13px;
}

    .service-box {
        border-right: none;
        border-bottom: 1px solid #e0e0e0;
    }

    .service-box:last-child {
        border-bottom: none;
    }
    
     div#mobileNavContainer #mobileNav a.logo{max-width: 400px;margin: 0 auto;}

    div#mobileNavContainer #mobileNav a.logo img {
    max-width: 100%;
    margin: 0 auto;
    display: block;
}

.owner-image-wrapper{
    padding:0 !important;
    width:100%;
    position:relative;
    height:auto;
    overflow:scroll;
}

.product-card:nth-child(1) {
    margin-top: 15px;
}
.product-card {
    margin-top: 0px;
}

}
button#closeIcon {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 112px;
    display: block;
    background: var(--anchor-color) !important;
    color: white !important;
    font-weight: 600;
    border: 1px solid var(--anchor-color) !important;
    border-top-left-radius: 0px !important;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 0px;
    border-top-right-radius: 40px;
    margin: 0;
}

.slider-image {border: 3px solid var(--anchor-color);border-radius: 147px;}

.slider-image {
    position: relative;
}

.slider-image::after {
    position: absolute;
    content: "";
    height: 50%;
    width: 100%;
    background: linear-gradient(to bottom, #00000047, #ffffff7d);
    visibility: hidden;
    transition: all .3s ease-in;
    opacity: 0;
    bottom: -50px;
}

.slider-image:hover::after {
    visibility: hidden;
    opacity: 0;
    bottom: 0;
}

.slider-image:hover img {
    transform: scale(1.1);
}

.slider-image img {
    transition: all .3s ease;
}

.dropdown-menu .d-flex li a, .dropdown-menu li a {padding: 9px 20px;margin: 0;font-family: 'Poppins';font-variant: traditional;max-width: fit-content;}
.nav-links li:hover > a:not(.dropdown-menu a) {text-decoration: none;border-bottom: 2px solid var(--anchor-color);}
a.header-navbar-link {border-bottom: 2px solid transparent;}
ul.dropdown-menu {
    position: fixed;
    opacity: 0;
    top: 75px;
    left: 260px;
    width: 800px;
}

.nav-links li:hover .dropdown-menu {
    width: 800px;
    position: fixed;
    left: 260px;
    top: 75px;
    transform: translateY(55px);
}

ul.dropdown-menu {
    transform: translateY(56px);
}

a.women-products .image-container img {
    min-height: 400px;
    max-height: 400px;
}

ul.dropdown-menu {
    position: fixed;
    opacity: 0;
    top: 75px;
    left: 50%;
    transform: translate(-48%, 58px);
    padding-top: 30px;
    width: 55vw;
    height:55vh;
    box-shadow: 0px 0px 0px 0px #f3f3f3b5;
    transition:all .2s ease;
    border: 1px solid #898989;
}


.nav-links li:hover .dropdown-menu {
    position: fixed;
    opacity: 1;
    top: 52px;
    left: 50%;
     width: 70vw;
    height:70vh;
    transform: translate(-48%, 54px);
}

.dropdown-menu .d-flex li a, .dropdown-menu li a {
    font-weight: 900;
    color: #000;
}


ul.dropdown-menu>.d-flex {
    gap: 4vw;
}

.dropdown-menu li a {
    transition: all .1s ease;
}

.dropdown-menu li:hover a {
    background: white;

}

.dropdown-menu li a:hover {
     background: var(--anchor-color);
    color: white !important;
}


li.nav-item {
    border: 1px solid var(--anchor-color);
    margin-right: 10px;
    border-radius: 5px;
    color: black;
}
.nav-pills .nav-link {
    background: 0 0;
    border: 0;
    border-radius: .25rem;
    color: var(--anchor-color);
}

.nav-pills .nav-link.active, .nav-pills .show>.nav-link {
    background: var(--anchor-color) !important;
}


p.search-box-desc {
    color: #000;
    font-weight: 500;
    height: 20px;
    overflow: hidden;
    margin-bottom: 6px;
}

p.search-box-desc + p {
    font-weight: 600;
}
.product-box {
    position: sticky;
    top: 5px;
}

.pointer {
    cursor: pointer;
}

span.position-absolute.top-0.right-0.text-danger {font-size: 7px;padding: 4px 6px;right: -3px !important;background: #ff0000;color:  white !important;border-radius: 50%;top: -5px !important;}
.fas.fa-cart-plus.fs-4.text-muted.fw-bold.pointer.position-relative {font-size: 30px !important;}