

@media screen and (max-width: 974px) {
  .kurti, .western, .heels, .g-shoes, .shirts, .shoes, .joggers, .jeans {
    padding-left: 20px;
    padding-right: 20px;
  }
}





@media (max-width: 1200px) {
  .product-image {
    max-width: 120px;
  }
}

@media (max-width: 768px) {
  .product-image {
    max-width: 100px;
  }
}

@media (max-width: 480px) {
  .product-image {
    max-width: 80px;
  }
}




body {
  font-family: 'Roboto', sans-serif; /* Use a modern sans-serif font */
  background-color: #f9f9f9; /* Set a light background color */
  color: #333; /* Set default text color */
  margin: 0; /* Remove default margin */
  padding: 0; /* Remove default padding */
}
.kurti {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.image-container {
  position: relative;
  margin: 20px;
}

.image-container img {
  display: block;
  width: 250px;
  height: auto;
  transition: transform 0.3s ease, filter 0.3s ease;
  border-radius: 10px; /* Add rounded corners to the images */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Add a subtle shadow */
}

.image-container:hover img {
  transform: scale(1.05);
  filter: brightness(80%); /* Slightly dim the image */
}

.image-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(31, 234, 51, 0.648), rgba(0, 0, 0, 0.5));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.image-container:hover::before {
  opacity: 1;
}

.image-container::after {
  content: '';
  position: absolute;
  bottom: -10;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: transparent;
  transition: background-color 0.3s ease;
}

.image-container:hover::after {
  background-color: #ccc;
}

.tooltip {
  display: block;
  position: absolute;
  bottom: -20px; /* Adjust tooltip position */
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background-color: rgba(255, 255, 255, 0.9);
  color:#00A36C;
  padding: 10px 15px;
  border-radius: 5px;
  white-space: nowrap;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  font-size: 16px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.image-container:hover .tooltip {
  opacity: 1;
  transform: translateX(-50%) translateY(-10px); /* Move tooltip up slightly */
}

.row {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh; /* Set the height of the row to fill the viewport */
}

.flex-col {
  position: relative; /* Position the flex-col relatively */
  top: -60px; /* Adjust the value to move it up or down */
  text-align: center; /* Center the content horizontally */
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh; /* Set the height of the container to fill the viewport */
}



img {
  float: left;
  width:  100px;
  height: 100px;
  object-fit: cover;
}

