:root {
  --primary: #16a34a;
  --primary-dark: #15803d;
  --primary-light: #eef8f1;
  --text-main: #0f172a;
  --text-muted: #64748b;
  --bg-page: #fcfdfd;
}

* { box-sizing: border-box; margin: 0; padding: 0; font-family: 'Plus Jakarta Sans', -apple-system, sans-serif; }
body { background: var(--bg-page); color: var(--text-main); line-height: 1.6; }
a { text-decoration: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* HEADER */
.site-header { background: #fff; border-bottom: 1px solid #f1f5f9; position: sticky; top: 0; z-index: 100; }
.nav-wrapper { display: flex; align-items: center; justify-content: space-between; height: 80px; }
.nav-menu { display: flex; align-items: center; gap: 24px; list-style: none; font-size: 14px; font-weight: 600; color: #334155; }
.nav-menu a:hover { color: var(--primary); }
.btn-admin-nav { background: #dcfce7; color: #166534 !important; padding: 8px 18px; border-radius: 30px; font-weight: 700; font-size: 13px; }

/* HERO SECTION */
.hero-custom-section {
  background: radial-gradient(circle at top right, #dcfce7 0%, #eefbf3 50%, #f9fdfa 100%);
  padding: 50px 0 70px;
  border-radius: 0 0 45px 45px;
}
.hero-custom-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: center; }
.hero-main-title { font-size: 46px; font-weight: 800; line-height: 1.15; color: #0f172a; margin-bottom: 18px; letter-spacing: -1px; }
.highlight-green { color: #16a34a; }
.hero-main-subtitle { font-size: 15px; color: #475569; margin-bottom: 28px; line-height: 1.6; max-width: 460px; }

/* SEARCH PILL */
.search-pill-form {
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 50px;
  padding: 6px 6px 6px 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
  max-width: 480px;
  margin-bottom: 28px;
}
.search-icon-svg { margin-right: 10px; font-size: 14px; }
.search-pill-form input { border: none; outline: none; width: 100%; font-size: 14px; color: #1e293b; }
.btn-search-pill {
  background: #16a34a;
  color: #fff;
  border: none;
  padding: 10px 24px;
  border-radius: 40px;
  font-weight: 700;
  cursor: pointer;
  font-size: 14px;
  transition: 0.2s;
}
.btn-search-pill:hover { background: #15803d; }

/* MINI FEATURES */
.hero-mini-features { display: flex; gap: 15px; flex-wrap: wrap; }
.feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.75);
  border: 1px solid #e2e8f0;
  padding: 8px 12px;
  border-radius: 10px;
}
.feature-item .feat-icon { font-size: 16px; }
.feature-item strong { display: block; font-size: 12px; color: #0f172a; line-height: 1.2; }
.feature-item small { font-size: 10px; color: #64748b; }

/* BANNER & FLOATING BADGES */
.hero-banner-frame { position: relative; width: 100%; max-width: 500px; margin: 0 auto; }
.banner-main-img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  display: block;
}
.floating-badge {
  position: absolute;
  background: #fff;
  border-radius: 12px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
  border: 1px solid #f1f5f9;
}
.badge-top-right { top: -15px; right: -15px; }
.badge-bottom-left { bottom: -20px; left: -15px; }
.badge-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: bold;
}
.green-icon { background: #dcfce7; color: #16a34a; }
.yellow-icon { background: #fef9c3; color: #ca8a04; }
.badge-title { font-size: 12px; font-weight: 800; color: #0f172a; }
.badge-subtitle { font-size: 10px; color: #64748b; }

/* KATEGORI GRID (12 KOTAK) */
.cat-grid-exact { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.cat-exact-card {
  background: #fff;
  border: 1px solid #eef2f6;
  border-radius: 16px;
  padding: 24px 10px;
  text-align: center;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cat-exact-card:hover { transform: translateY(-4px); box-shadow: 0 12px 24px rgba(0,0,0,0.04); border-color: #cbd5e1; }
.cat-circle-icon { width: 54px; height: 54px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 12px; }
.cat-title-text { font-size: 14px; font-weight: 700; color: #1e293b; margin-bottom: 4px; }
.cat-count-text { font-size: 12px; color: #94a3b8; }
.btn-see-all-cats {
  display: inline-block;
  border: 1px solid #16a34a;
  color: #16a34a;
  padding: 10px 24px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  transition: 0.2s;
}
.btn-see-all-cats:hover { background: #16a34a; color: #fff; }

/* POPULAR CARDS */
.popular-grid-exact { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.popular-exact-card {
  background: #fff;
  border-radius: 14px;
  border: 1px solid #eef2f6;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.25s ease;
}
.popular-exact-card:hover { transform: translateY(-4px); box-shadow: 0 12px 25px rgba(0,0,0,0.06); }
.card-thumb-wrap { position: relative; width: 100%; aspect-ratio: 16/10; overflow: hidden; background: #f1f5f9; }
.card-thumb-wrap img { width: 100%; height: 100%; object-fit: cover; }
.card-badge-pill {
  position: absolute;
  bottom: 10px;
  left: 10px;
  font-size: 10px;
  font-weight: 800;
  padding: 4px 8px;
  border-radius: 4px;
}
.card-desc-wrap { padding: 14px; display: flex; flex-direction: column; flex-grow: 1; }
.card-item-title { font-size: 14px; font-weight: 700; color: #0f172a; line-height: 1.4; margin-bottom: 12px; flex-grow: 1; }
.card-meta-row { display: flex; justify-content: space-between; font-size: 11px; color: #94a3b8; border-top: 1px solid #f8fafc; padding-top: 8px; }
.btn-outline-pill { border: 1px solid #16a34a; color: #16a34a; padding: 6px 16px; border-radius: 20px; font-size: 12px; font-weight: 700; }

/* STATS BOTTOM BAR */
.stats-bottom-bar {
  background: #f0fdf4;
  border: 1px solid #dcfce7;
  border-radius: 16px;
  padding: 24px 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.stat-box { display: flex; align-items: center; gap: 14px; }
.stat-icon { font-size: 24px; }
.stat-number { font-size: 18px; font-weight: 800; color: #0f172a; line-height: 1.1; }
.stat-label { font-size: 12px; color: #64748b; font-weight: 500; }

/* RESPONSIVE */
.mobile-toggle { display: none; background: none; border: none; font-size: 24px; cursor: pointer; }
@media (max-width: 992px) {
  .hero-custom-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-main-subtitle, .search-pill-form, .hero-mini-features { margin-left: auto; margin-right: auto; justify-content: center; }
  .cat-grid-exact { grid-template-columns: repeat(3, 1fr); }
  .popular-grid-exact { grid-template-columns: repeat(2, 1fr); }
  .stats-bottom-bar { grid-template-columns: repeat(2, 1fr); }
  .nav-menu { display: none; }
  .mobile-toggle { display: block; }
}
@media (max-width: 576px) {
  .hero-main-title { font-size: 32px; }
  .cat-grid-exact { grid-template-columns: repeat(2, 1fr); }
  .popular-grid-exact { grid-template-columns: 1fr; }
  .stats-bottom-bar { grid-template-columns: 1fr; }
}