/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

/* Collection Tabs */
.collection-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.tab-btn {
  background: linear-gradient(135deg, #fff8dc 0%, #fffacd 100%);
  border: 2px solid #daa520;
  color: #8b4513;
  padding: 1rem 2rem;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.1rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 200px;
  justify-content: center;
  position: relative;
}

.tab-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(184, 134, 11, 0.3);
}

.tab-btn.active {
  background: linear-gradient(135deg, #b8860b 0%, #daa520 100%);
  color: #fff8dc;
  border-color: #8b4513;
}

.tab-icon {
  font-size: 1.3rem;
  img {
    position: absolute;
  }
  .saree-icon {
    height: 40px;
    top: 7px;
    left: 45px;
  }
  .dress-icon {
    height: 30px;
    top: 10px;
  }
  .fabric-icon {
    height: 22px;
    width: 22px;
    top: 15px;
  }
}

.saree-text {
  margin-left: 30px;
}
.dress-text {
  margin-left: 25px;
}
.fabric-text {
  margin-left: 30px;
}

.product-card {
  background: linear-gradient(135deg, #fff8dc 0%, #fffacd 100%);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(184, 134, 11, 0.2);
  transition: all 0.3s ease;
  border: 2px solid #daa520;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(184, 134, 11, 0.3);
}

.product-image {
  width: 100%;
  height: 300px;
  overflow: hidden;
  position: relative;
  padding-top: 20px;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-info {
  padding: 1.5rem;
}

.product-title {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: #8b4513;
}

.product-price {
  font-size: 1.1rem;
  color: #b8860b;
  font-weight: bold;
  margin-bottom: 1rem;
}

.add-to-cart {
  background: #b8860b;
  color: #fff8dc;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  font-weight: bold;
}

.chat-on-whatsapp {
  display: block;
  text-decoration: none;
  text-align: center;
  padding: 5px 0px;
  background: #b8860b;
  color: #fff8dc;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  font-weight: bold;
}

.add-to-cart:hover {
  background: #daa520;
  transform: translateY(-2px);
}
.chat-on-whatsapp:hover {
  background: #daa520;
  transform: translateY(-2px);
}
