.collections-hero {
  padding: 60px 40px;
  text-align: center;
  background: #F9F7F5;
}

.collections-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  color: #3E2723;
}

.collections-hero p {
  margin-top: 10px;
  font-size: 16px;
}

.collections-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  padding: 40px;
}

.collection-card {
  background: white;
  text-align: center;
  text-decoration: none;
  color: #1C1C1C;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.2s ease;
}

.collection-card:hover {
  transform: translateY(-6px);
}

.collection-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.collection-card h2 {
  margin: 15px 0 5px;
  font-size: 20px;
}

.collection-card p {
  font-size: 14px;
  padding-bottom: 15px;
  color: #555;
}

.collections-text {
  padding: 40px;
  background: white;
}

.collections-text h2 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 10px;
  color: #3E2723;
}

/* MOBILE */
@media(max-width: 900px) {
  .collections-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 480px) {
  .collections-grid {
    grid-template-columns: 1fr;
    padding: 20px;
  }
}
