/* style.css */

/* Umum */
body {
  scroll-behavior: smooth;
  font-family: 'sans-serif';
}

/* Box Kategori */
.kategori-box {
  background-color: #fde8f0;
  padding: 1.5rem;
  border-radius: 0.75rem;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: all 0.2s ease-in-out;
}

.kategori-box:hover {
  box-shadow: 0 8px 12px rgba(0,0,0,0.15);
  background-color: #fbcfe8;
}

/* Produk Card */
.produk-card {
  background-color: white;
  padding: 1rem;
  border-radius: 0.75rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  transition: all 0.2s ease;
}

.produk-card:hover {
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

/* Tombol WhatsApp */
.wa-btn {
  background-color: #ec4899;
  color: white;
  padding: 0.5rem 1.25rem;
  border-radius: 0.5rem;
  display: inline-block;
  margin-top: 0.75rem;
  transition: background-color 0.2s;
  text-align: center;
  font-weight: bold;
}

.wa-btn:hover {
  background-color: #db2777;
}

/* Judul Section */
.section-title {
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  color: #be185d;
  margin-bottom: 1.5rem;
}
