.catalog-section {
  padding: 80px 6%;
  background: linear-gradient(120deg, #5d5d3f, #d4afd3);
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 10px;
}

.catalog-card {
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  width: 200px;           /* ukuran kartu katalog */
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

/* thumbnail image */
.catalog-img {
  width: 100%;
  height: 160px;          /* ⬅️ tinggi tetap ala katalog */
  object-fit: cover;     /* biar rapi & gak gepeng */
  border-radius: 12px;
  cursor: zoom-in;       /* UX: kasih tanda bisa diklik */
}


.catalog-info {
  margin-top: 14px;
  font-family: Poppins, sans-serif;
}

.catalog-actions {
  display: flex;
  gap: 12px;
  margin-top: 14px;
}

.btn {
  flex: 1;
  border: none;
  border-radius: 12px;
  padding: 10px;
  cursor: pointer;
  font-weight: 600;
}

.btn.shopee {
  background: #ff8f4a;
  color: #fff;
}



.btn.coming {
  background: #ffd3b5;
  color: #444;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.lightbox.show {
  display: flex;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;   /* ⬅️ INI PENTING */
  border-radius: 12px;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 26px;
  font-size: 36px;
  color: #fff;
  cursor: pointer;
}

/* SOCIAL FOLLOW SECTION */
.social-follow {
  margin: 80px auto 40px;
  text-align: center;
}

.social-text {
  font-size: 15px;
  color: #444;
  margin-bottom: 18px;
  letter-spacing: 0.3px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 18px;
}

.social-icons img {
  width: 34px;
  height: 34px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.social-icons a:hover img {
  transform: scale(1.15);
  opacity: 0.85;
}
