* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* -------------------------------------------font------------------------------------------ */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');
/*------------------------------------------------------------------------------------------*/

body {
  font-family: "Manrope" !important;
  margin: 0;
  padding: 0;
}

/* main navbar css */

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  padding: 10px 20px;
  margin-top: 40px;
}

.logo img {
  height: 40px;
}


.search-bar {
  display: flex;
  align-items: center;
  background-color: white;
  border-radius: 10px;
  border: 2px solid black;
  padding: 5px 10px;
  width: 70%;
}

.search-bar .search-icon {
  color: gray;
  margin-right: 10px;
}

.search-bar input {
  border: none;
  outline: none;
  width: 100%;
}

.nav-icons span {
  margin-left: 20px;
  cursor: pointer;
}

.nav-icons span:hover {
  color: #ddd;
}

/* main-navbar css ends */

/* sub nav bar css */


.sub-navbar {
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.sub-navbar .menu-icon {
  font-size: 24px;
  cursor: pointer;
}

.sub-navbar .dropdown {
  position: relative;
  display: inline-block;
}

.sub-navbar .dropbtn {
  color: black;
  padding: 10px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  font: 800 15px/24px Manrope;
  word-wrap: break-word;
  background: none;
}



.sub-navbar .dropdown-icon {
  font-size: 12px;
}

.sub-navbar .sub-nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.sub-navbar .sub-nav-links a {
  color: black;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
}

.sub-navbar .sub-nav-links a:hover {
  color: black;
}

.sub-navbar .sub-nav-links .icon {
  font-size: 18px;
}

/* sub navbar css  ends*/

/* hero slider */
#hero-slider {
  width: 100%;
  margin-top: 20px;
}

#hero-slider img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* hero slider css ends */


/*bestof area css */

.bestof_area {
  margin-top: 60px;
}

.headsector {
  display: flex;
  justify-content: space-between;
  margin-bottom: 24px;
}



.chip-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 0 auto;
  margin-bottom: 40px;
}

.chip {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  /* Adjusted padding for top/bottom */
  background-color: #F7F7F7;
  border-radius: 90px;
  /* Adjusted border-radius for a rounder look */
  font-size: 14px;
  color: #100303;
  margin: 5px;
  cursor: pointer;
}


.chip a {
  text-decoration: none;
  color: black;
  font-size: 15px;
  font-weight: 700;
}

.card-wrapper {
  width: 100%; 
  max-width: 300px; 
  height: auto; 
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 20px; 
}

.card-wrapper:hover {
transform: translateY(-5px);
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.wishlist {
position: absolute;
top: 10px;
right: 10px;
cursor: pointer;
z-index: 1;
}

.image-plot {
position: relative;
}

.image-plot img {
width: 100%;
display: block;
}

.hover-cart-btn {
position: absolute;
bottom: 10px;
left: 50%;
transform: translateX(-50%);
display: none;
}

.image-plot:hover .hover-cart-btn {
display: block;
}

.custom-btn {
padding: 8px 16px;
background-color: #007BFF;
color: #fff;
border: none;
border-radius: 4px;
cursor: pointer;
font-size: 14px;
transition: background-color 0.3s ease;
}

.custom-btn:hover {
background-color: #0056b3;
}

.text-area {
padding: 16px;
display: flex;
justify-content: space-between;
align-items: center;
}

.product-dtls {
flex: 1;
}

.text-head {
color: #3C4242;
font-size: 16px;
font-family: Manrope, sans-serif;
font-weight: 600;
margin: 0;
}

.over-through {
font-size: 14px;
color: #888;
text-decoration: line-through;
margin: 4px 0 0 0;
}

.product-price {
display: flex;
align-items: center;
}

.product-price h5 {
padding: 8px 16px;
background: #F6F6F6;
border-radius: 8px;
font-size: 16px;
font-weight: 700;
margin: 0;
}


.fashion-wrapper {
  display: flex;
  justify-content: space-between;
}

.cat-wrapper {
  position: relative;

}

.text-overlay {
  position: absolute;
  top: 10px;
  left: 10px;
}

.twobanner {
  margin-top: 60px;
  margin-bottom: 60px;
}

.total-area {
  display: flex;
  gap: 60px;
}

.left {
  background-color: #C6DFFF;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  border-radius: 20px;
  height: 416px;


}

.left .custom-btn{
  width: 180px;
}
.left .custom-btn span img{
  color: white;
}

.right img{ 
  background-size: cover;
  width: 100%;
  height: 416px;
}


/* button styling */

.custom-btn {
  padding: 12px 24px;
  border-radius: 90px;
  color: white;
  font-size: 15px;
  font-family: Manrope;
  font-weight: 800;
  line-height: 24px;
  background-color: #100303;
  border: none;
}

.best-product-area {
  margin-bottom: 60px;
}

.fashion-wrapper p {
  margin-bottom: 0px;
  color: #5C5757;
  font-size: 13px;
}

.fashion-wrapper h6 {
  font-size: 20px;
  color: #100303;
  font-weight: 700;
  line-height: 24px;
}

.image-plot {
  position: relative;
}

.hover-cart-btn {
  position: absolute;
  bottom: 0%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
}

.image-plot:hover .hover-cart-btn {
  display: block;
}


/* megamenu */
.product-dropdown {
  display: none;

  background-color: #ffffff33;
  position: absolute;
  left: 0;
  top: 40px;
  width: 1300px;
  z-index: 999;
}

.sub-navbar .dropdown:hover .product-dropdown {
  display: block;
}

.product-dropdown-list {
  padding: 10px 40px;
  background-color: #ffffff;
  max-height: 100%;
  border-bottom: 1px solid #454545;
}

.product-dropdown-list ul {
  padding-left: 0%;

}

.product-dropdown-list ul li {
  list-style: none;

}

.product-dropdown-list ul li a {
  text-decoration: none;
  color: black;
  line-height: 36px;
}

.product-dropdown-list ul li a:hover {
  color: #9747FF;
  font-weight: 600;
}



.dropdownitemlabel {
  font-size: 18px;
  font-family: Manrope;
  font-weight: 700;
  padding-top: 40px;
  padding-bottom: 8px;
}

.dropdownitemlabel ul li a {
  color: black;
  font-size: 18px;
  font-family: Manrope;
  font-weight: 500;
  line-height: 32px;

}

.image-area img {
  width: 100%;
}

.over-through {
  text-decoration: line-through;
  color: #807D7E;
  font-size: 14px;
  font-weight: 500;
}
.menu-icon{
  display: none;
}

/* .product-dropdown-list{
  display: flex;
  gap: 150px;
} */

.image-file img{
  padding: 20px;
}
.slider {
  width: 80%;
  max-width: 300px; /* Adjust as needed */
  margin: 0 auto;
  overflow: hidden;
  position: relative;
 
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.slides {
  display: flex;
  width: 100%; /* 4 slides */
  animation: slideAnimation 20s infinite;
}

.slide {
  width: 100%;
  flex-shrink: 0;
}

.slide img {
  width: 100%;
  display: block;
}

/* Keyframes for the sliding animation */
@keyframes slideAnimation {
  0% { transform: translateX(0%); }
  20% { transform: translateX(0%); }
  25% { transform: translateX(-100%); }
  45% { transform: translateX(-100%); }
  50% { transform: translateX(-200%); }
  70% { transform: translateX(-200%); }
  75% { transform: translateX(-300%); }
  95% { transform: translateX(-300%); }
  100% { transform: translateX(0%); }
}

.single-product-dropdown1{
  display: flex;
  justify-content: center;
  align-items: center;
}


footer{
  margin-top: 60px;
}

.banner-plot img{
  width: 100%;
}

.hamburger {
  display: none;
}
.sub-nav-links{
  list-style: none;
  font-size: 16px;
  font-weight: 400;
  line-height: 32px;
}
.nav-links2{
  padding-left: 1rem !important;
}
.sub-nav-links a{
  text-decoration: none;
  color: #100303;
}

.sub-nav-links a:hover{
  color: #9747FF;
  font-weight: 600;
}
 .search-mob-area{
  display: none;
 }
 .offcanvas-backdrop.show {
  opacity: 0 !important;
 }

 .wishlist-icon, .cart-icon{
  position: relative;
 }

 .wishlist-icon .badge, .cart-icon .badge{
  position: absolute;
  background-color: red;
  left: 4px;
 }