/* ===== COLLECTION PAGE ===== */
.collection-main {
  padding: 0 0 90px;
}

.collection-hero {
  padding: 56px 50px 24px;
  text-align: center;
}

.collection-kicker {
  margin: 0 0 12px;
  color: #ff9fc0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
}

.collection-hero h1 {
  margin: 0 0 16px;
  font-family: "Audiowide", sans-serif;
  font-size: clamp(34px, 4.5vw, 62px);
  line-height: 1.05;
}

.collection-hero p {
  max-width: 760px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.7;
}

.collection-products {
  padding: 24px 50px 0;
}

.collection-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 28px;
}

.collection-toolbar h2 {
  margin: 0 0 8px;
  font-family: "Audiowide", sans-serif;
  font-size: clamp(24px, 3vw, 36px);
}

.collection-toolbar p {
  margin: 0;
  color: var(--text-muted);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.product-card {
  display: block;
  padding: 18px 18px 24px;
  border-radius: 24px;
  background: var(--surface-card);
  color: var(--text-main);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.2);
}

.product-card-image-wrap {
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.product-card-image {
  width: 100%;
  max-width: 255px;
  max-height: 250px;
  object-fit: contain;
}

.product-card-title {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
}

.product-card-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: #f5c58b;
  font-size: 13px;
}

.product-card-rating span {
  color: var(--text-muted);
}

.product-card-price {
  font-size: 20px;
  font-weight: 700;
}

.product-card-badge {
  display: inline-flex;
  align-items: center;
  margin-bottom: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 0, 80, 0.14);
  color: #ffb2c8;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.6px;
}

@media (max-width: 1180px) {
  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .collection-hero,
  .collection-products {
    padding-left: 22px;
    padding-right: 22px;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }
}

@media (max-width: 640px) {
  .collection-hero {
    padding-top: 34px;
  }

  .collection-hero p {
    font-size: 15px;
  }

  .collection-toolbar {
    display: block;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-card-image-wrap {
    height: 220px;
  }
}
