* {
  font-family: 'Poppins', sans-serif;
}

body {
  padding-top: 70px;
  color: #222;
}

/* ===== NAVBAR ===== */
.navbar-brand {
  letter-spacing: 1px;
}

/* ===== HERO ===== */
.hero {
  min-height: 90vh;
  background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
  padding-top: 60px;
  padding-bottom: 60px;
}

.hero-img {
  max-height: 480px;
  object-fit: cover;
  width: 100%;
}

/* ===== PRODUK ===== */
.product-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border-radius: 16px;
  overflow: hidden;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08) !important;
}

.product-img {
  height: 220px;
  object-fit: cover;
  width: 100%;
}

/* ===== TESTIMONI ===== */
.avatar-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #222;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

/* ===== GENERAL ===== */
section h2 {
  letter-spacing: 0.5px;
}

footer a:hover {
  color: #fff !important;
}

.btn-dark {
  background-color: #1a1a1a;
  border-color: #1a1a1a;
}

.btn-dark:hover {
  background-color: #333;
  border-color: #333;
}

@media (max-width: 768px) {
  .hero {
    text-align: center;
    min-height: auto;
    padding: 60px 0;
  }
}
