body {
  background-color: #f7fff8;
  color: #2a2f2d;
  font-family: Arial, sans-serif;
}

h2 {
  font-weight: bold;
  color: #205e3b;
}

/* Kotak produk linear */
.product-box {
  background: #fff;
  border-radius: 15px;
  padding: 20px 25px;
  margin-bottom: 25px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: transform 0.8s ease, opacity 0.8s ease;
  opacity: 0;
  transform: translateY(30px) scale(0.8);
}

.product-box:hover {
  transform: translateY(-5px) scale(1);
  box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}

/* Gambar produk list - BESARKAN */
.product-img {
  width: 280px;
  height: 280px;
  border-radius: 12px;
  object-fit: contain;
  background-color: #fff;
  transition: transform 0.8s ease, opacity 0.8s ease;
}

/* Gambar detail page - BESARKAN */
.product-detail-img {
  width: 400px;
  height: 400px;
  border-radius: 12px;
  object-fit: contain;
  background-color: #fff;
  transition: transform 0.8s ease, opacity 0.8s ease;
}

/* Class animate triggered on scroll */
.animate {
  opacity: 1;
  transform: translateY(0) scale(1);
  animation: floatImage 3s ease-in-out infinite;
}

/* Floating animation */
@keyframes floatImage {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Maklumat produk */
.product-content h3, .product-detail h2 {
  color: #205e3b;
  font-weight: 600;
  margin-bottom: 10px;
}

.product-content .price, .product-detail .price {
  color: #45a049;
  font-weight: bold;
  margin-bottom: 10px;
}

.product-content p, .product-detail p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #444;
  margin-bottom: 15px;
}

/* Buttons */
.btn-success {
  background-color: #45a049;
  border: none;
  padding: 10px 20px;
  font-weight: 600;
  border-radius: 8px;
  text-transform: uppercase;
  transition: background 0.3s ease;
}

.btn-success:hover {
  background-color: #378f3c;
}
