/* ===== COMMON STYLES ===== */
body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f8f8f8;
}

/* ===== SAREE CARDS STYLES ===== */
.card-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 50px;
  flex-wrap: wrap;
}

.saree-card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  overflow: hidden;
  width: 300px;
  transition: transform 0.2s;
}

.saree-card:hover {
  transform: scale(1.03);
}

.saree-card img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.saree-info {
  padding: 15px;
}

.saree-info h3 {
  font-size: 16px;
  margin: 0 0 10px;
  font-weight: bold;
}

.saree-info p {
  font-size: 14px;
  color: #555;
}

/* ===== PRODUCT CARDS STYLES ===== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
  padding: 40px;
}

.product-card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  overflow: hidden;
  transition: transform 0.2s;
  position: relative;
}

.product-card:hover {
  transform: translateY(-5px);
}

.image-container {
  position: relative;
}

.image-container img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: black;
  color: white;
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 5px;
  font-weight: bold;
}

.wishlist {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 18px;
  color: #ccc;
  cursor: pointer;
}

.product-info {
  padding: 15px;
}

.product-info h3 {
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 8px;
  text-transform: uppercase;
}

.product-info p {
  font-size: 13px;
  color: #666;
  margin: 0;
}
