* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
  
}

/* Dark Mode Header */
.top-bar {
  background: #111;
  color: white;
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar nav button {
  margin-left: 10px;
  padding: 8px 15px;
  background: linear-gradient(45deg, #ff416c, #ff4b2b);
  border: none;
  color: white;
  border-radius: 20px;
  cursor: pointer;
  font-weight: bold;
}

.top-bar nav button:hover {
  opacity: 0.8;
}

/* Gallery */
.gallery {
  padding: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  background: #f2f2f2;
}

/* Card */
.card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  transition: transform 0.3s;
}

.card:hover {
  transform: translateY(-8px);
}

.card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* Colorful Label */
.info {
  padding: 10px;
  text-align: center;
  font-weight: bold;
  background: linear-gradient(45deg, #6a11cb, #2575fc);
  color: white;
}

/* Mobile Friendly */
@media (max-width: 600px) {
  .top-bar {
    flex-direction: column;
    gap: 10px;
  }
}
.card {
  position: relative;
}

.model-number {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(0, 0, 0, 0.85);
  color: #fff;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: bold;
  z-index: 3;
  box-shadow: 0 4px 10px rgba(0,0,0,0.4);
}
.card img {
  width: 100%;
  aspect-ratio: 3 / 4;   /* common ratio (perfect for blouse/chudidhar) */
  object-fit: cover;     /* auto crop */
  display: block;
}




.footer {
  background: #0f0f0f;
  color: #ccc;
  margin-top: 40px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  padding: 40px 20px;
}

.footer-section h3 {
  color: #fff;
  margin-bottom: 15px;
}

.footer-section p {
  line-height: 1.7;
  font-size: 14px;
}

.footer-section a {
  color: #ff4b2b;
  text-decoration: none;
}

.footer-section a:hover {
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  padding: 15px;
  background: #000;
  font-size: 13px;
  color: #999;
}

/* Mobile Friendly */
@media (max-width: 600px) {
  .footer-container {
    text-align: center;
  }
}
