/* ===== COLLECTION SECTION ===== */
.collections-section {
  padding: 80px 5%;
  background: #f8f8f8;
  text-align: center;
  margin-top: 100px;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
  font-family: "Poppins", sans-serif;
}

.section-subtitle {
  color: #666;
  font-size: 1rem;
  margin-bottom: 50px;
}

.collections-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 25px;
}

.collection-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.collection-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.img-box {
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid #d4af37;
}

.img-box img {
  width: 100%;
  height: 270px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.collection-card:hover .img-box img {
  transform: scale(1.1);
}

.collection-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #222;
  margin-top: 15px;
  font-family: "Poppins", sans-serif;
}

.btn-view {
  display: inline-block;
  background: #d4af37;
  color: #fff;
  text-decoration: none;
  padding: 8px 18px;
  border-radius: 25px;
  font-size: 0.95rem;
  margin: 15px 0 20px 0;
  transition: all 0.3s ease;
}

.btn-view:hover {
  background: #b18f2a;
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 600px) {
  .collection-card img {
    height: 100%;
  }

  .section-title {
    font-size: 1.8rem;
  }
}
