* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html,
body {
  height: 100%;
  width: 100%;
}

.nav-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;

  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: white;
}
.left-side {
  flex: 1;
}
.fa-bars {
  margin-left: 20px;
  font-size: 30px;
}
.right-side {
  display: flex;

  flex: 1;
  justify-content: end;
  align-items: center;
}
.middle-side {
  display: flex;

  flex: 1;
  justify-content: center;
}
.logo {
  height: 40px;

  object-fit: cover;
}
.search-bar {
  height: 40px;
  width: 220px;
  font-size: 17px;
}
.ri-user-line {
  font-size: 25px;
  padding-left: 20px;
}

.ri-shopping-bag-4-line {
  font-size: 25px;
  padding-left: 15px;
  padding-right: 15px;
}
.image-slide {
  padding-top: 70px;
  overflow: hidden; /* add this — clips images outside the window */
}

.track {
  display: flex; /* moved flex here to the track */
  gap: 16px;
  width: max-content;
  animation: scroll-left 20s linear infinite;
  margin-left: 30px;
}

.track:hover {
  animation-play-state: paused;
}

.img {
  object-fit: cover;
  width: 500px; /* changed from 30% — % doesn't work well inside max-content */
  height: 700px;
  flex-shrink: 0;
  border-radius: 8px;
}

@keyframes scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.mid-heading {
  text-align: center;
  padding-top: 20px;
  padding-bottom: 20px;
}
.Grid-mid-section {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  cursor: pointer;
  justify-items: center;
  justify-content: center;
  gap: 10px;
  margin-left: 20px;
 
}
.flex-box {
  display: flex;
  justify-content: center;
  gap: 15px;
  cursor: pointer;
}
.big-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  margin-left: 10px;
  margin-right: 0px;
  position: fixed;
}
.grid-img{
  position: relative;
  
}
  
.CLOTH-SECTIONS{
  position: relative;
  background-color:transparent;
  color: white;
  text-align: center;
  bottom: 40px;
  font-weight: bold;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  font-size: 18px;
  
}
.flex-button {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}
.button {
  padding: 3px 6px 3px 6px;
  margin: 5px;
  background-color: white;
  transition:
    background-color 0.43s,
    color 0.23s;
}
.button:active {
  background-color: black;
  color: white;
}
.Grid-clothes {
  display: grid;

  grid-template-columns: repeat(5, 295px);
  gap: 10px;
  row-gap: 50px;
  margin-left: 10px;
  margin-bottom: 80px;
  cursor: pointer;
}
.image-cloth-grid {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.description {
  width: 100%;
  height: 100%;
  border-style: solid;
  background-color: rgb(247, 238, 232);
  
}
.heading {
  margin-top: 30px;
  margin-left: 40px;
  font-family: "Google Sans" ;
}
.sub-details{
  margin-top: 10px;
  margin-left: 40px;
  font-family: "Google Sans";
font-size: 12px;
}
.des{
  margin-left: 150px;
  
}
