/* =========================
   Style Utama / Desktop
   ========================= */
#produk {
  margin-top: 80px;
}

#produk h2 {
  color: #ffd857;
  font-size: 40px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 10px;
}

#produk .sub-title {
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

#produk p {
  color: #fff;
  font-style: normal;
  font-weight: 500;
  font-size: 15px;
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
}

.card-img-top {
  height: 500px;
  object-fit: cover;
}

.card-title {
  color: var(--pr-color);
}

/* =========================
   Responsive: Mobile Max–480px
   ========================= */
@media (max-width: 480px) {
  #produk {
    margin-top: 40px;
    padding: 0 10px;
  }

  #produk h2,
  .title {
    font-size: 24px; /* proporsional di HP */
    font-weight: 600;
    text-align: center;
    margin-bottom: 10px;
  }

  #produk .sub-title {
    font-size: 13px;
    font-weight: 400;
    max-width: 100%;
    margin: 0 auto 40px;
    text-align: center;
  }

  #produk p {
    font-size: 13px;
    line-height: 1.5;
    text-align: center;
  }

  .card-img-top {
    height: 200px; /* proporsional di mobile */
    object-fit: cover;
  }

  .card-title {
    font-size: 15px;
    text-align: center;
  }

  .card-text {
    font-size: 12px;
    text-align: center;
  }

  .btn {
    font-size: 12px;
    padding: 5px 10px;
  }

  .card {
    margin-bottom: 15px;
  }

  .card-body {
    padding: 0.8rem 0.5rem;
  }
}

.produk-detail {
  margin-top: 60px;
  padding: 40px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0,0,0,.15);
  animation: fadeUp .4s ease;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
