/* Filter Section */
.filter-section {
  padding: 40px 0;
  background: var(--white);
  border-bottom: 1px solid var(--blush);
}
.filter-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}
.filter-btn {
  background: var(--white);
  border: 2px solid var(--primary);
  color: var(--dusty-rose);
  padding: 10px 28px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s;
  font-family: 'Poppins', sans-serif;
}
.filter-btn:hover, .filter-btn.active {
  background: linear-gradient(135deg, var(--accent), var(--dusty-rose));
  color: var(--white);
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(184,115,126,0.3);
}

/* Products Gallery */
.products-gallery {
  padding: 60px 0 80px;
  background: linear-gradient(180deg, var(--white) 0%, var(--soft-bg) 100%);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 25px;
}
.gallery-item {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.35s ease;
}
.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.gallery-image {
  position: relative;
  height: 320px;
  overflow: hidden;
}
.gallery-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}
.gallery-item:hover .gallery-image img { transform: scale(1.07); }

.overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(155, 100, 112, 0.92) 0%, transparent 100%);
  padding: 25px 20px 20px;
  transform: translateY(100%);
  transition: transform 0.35s ease;
}
.gallery-item:hover .overlay { transform: translateY(0); }
.overlay h3 {
  color: var(--white);
  font-family: 'Dancing Script', cursive;
  font-size: 1.6rem;
  margin-bottom: 4px;
}
.overlay p {
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
  margin-bottom: 14px;
}
.btn-detail {
  display: inline-block;
  background: var(--white);
  color: var(--dusty-rose);
  text-decoration: none;
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.3s;
}
.btn-detail:hover {
  background: var(--soft-bg);
  transform: translateX(4px);
}

/* CTA */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--dusty-rose), var(--dark));
  text-align: center;
}
.cta-content h2 {
  font-family: 'Dancing Script', cursive;
  font-size: 3rem;
  color: var(--white);
  margin-bottom: 12px;
}
.cta-content p {
  color: rgba(255,255,255,0.88);
  font-size: 1.05rem;
  max-width: 500px;
  margin: 0 auto;
}

.gallery-item.hidden { display: none; }

@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); }
  .cta-content h2 { font-size: 2.2rem; }
}
