:root {
  --primary-green: #d6e8a2;
  --secondary-green: #b1cc79;
  --accent-yellow: #f4ba66;
  --accent-hover: #e29d3a;
  --bg-light: #ffffff;
  --text-dark: #111111;
  --text-muted: #666666;
  --coklat: #5c452a;
  --white: #ffffff;
  --shadow: rgba(0, 0, 0, 0.1);

  /* Tambahan */
  --pastel-pink: #f7caca;
  --pastel-peach: #ffe5b4;
  --soft-olive: #a9b388;
  --soft-brown: #8c6a4f;
  --pastel-krem: #fdf5e4;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--primary-green);
  overflow-x: hidden;
}

/* Hero Title & Highlight */
.hero-title {
  font-family: 'Chewy', cursive;
  font-size: 3rem;
  color: var(--soft-brown); 
}

/* CSS */
.hero-wrapper {
  background-color: var(--pastel-krem);
  position: relative;
  z-index: 1;
  padding-top: 0.5rem; /* untuk beri jarak dari navbar */
}

.highlight {
  font-weight: 800;
  font-size: 3rem;
  color: var(--secondary-green);
}

/* Menu Button */
.menu-btn {
  background-color: var(--accent-yellow);
  border: none;
  padding: 0.6rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  color: var(--text-dark);
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.menu-btn:hover {
  background-color: var(--accent-hover);
}

.judul-produk {
  font-size: 28px;
  font-weight: 700;
  color:  var(--coklat); 
  margin-bottom: 5px;
  position: relative;
  display: inline-block;
}

/* Produk Container */
.produk-container {
  display: flex;
  overflow-x: auto;
  gap: 2px;
  padding: 12px 8px;
  flex-wrap: nowrap;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--shadow) transparent;
  padding: 20px 16px;
}

/* Produk Card */
.card {
  flex: 0 0 auto;
  width: 250px;
  border: none;
  box-shadow: 0 4px 10px var(--shadow);
  border-radius: 15px;
  background-color: var(--bg-light);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
  min-width: 220px;
  max-width: 90vw;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px var(--shadow);
}

.card-body {
  padding: 1rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-img {
  height: 200px;
  overflow: hidden;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  background-color: #f0f0f0;
}

.product-img img.img-product {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px 15px 0 0;
}

.card-title {
  font-size: 1.2rem;
  font-weight: bold;
   color: var(--coklat);
}

.deskripsi-singkat {
  display: -webkit-box;
  -webkit-line-clamp: 3; 
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: 60px;
}

.harga {
  color: var(--coklat);
  font-weight: 700;
  font-size: 1.2rem;
}

/* Button Style */
.d-flex {
  margin-top: 10px;
  justify-content: center;
  gap: 0.5rem;
}

.btn {
  border-radius: 20px;
  display: inline-flex; 
  align-items: center;   
  justify-content: center; 
  font-size: 0.9rem;
  padding: 6px 16px;
  background-color: var(--accent-yellow);
  color: var(--white);
  border: 1px solid var(--accent-yellow);
  font-weight: 600;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn:hover {
  background-color: var(--accent-hover);
  border-color: var(--accent-hover);
  color: var(--white);
}

.btn-outline-dark {
  background-color: transparent;
  color: var(--text-dark);
  border: 1px solid var(--text-dark);
}

.btn-outline-dark:hover {
  background-color: var(--soft-olive);
  color: var(--white);
}

/* Responsive */
@media (max-width: 576px) {
  .card-title {
    font-size: 1rem;
  }

  .card-text {
    font-size: 0.85rem;
  }

  #aboutImage {
    width: 200px;
  }
  .product-img {
    height: 160px;
  }
}

@media (max-width: 768px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .row > .col {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    margin-bottom: 1rem;
  }
}
