:root {
  --bg: #0d1117;
  --card: #161b22;
  --muted: #8b949e;
  --text: #e2e8f0;
  --brand: #3fb950;
  --brand-2: #2ea043;
  --ok: #ffd700;
  --danger: #eb2626;
  --line: #21262d;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: linear-gradient(180deg, #0d1117, #161b22);
  color: var(--text);
}

a { color: inherit; text-decoration: none; }

.wrap {
  width: min(1150px, 92%);
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}
.brand {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
}
/* MODIFIKASI: Glow pada Logo Bakery */
.brand span { 
  color: var(--brand); 
  text-shadow: 0 0 12px rgba(63, 185, 80, 0.5);
}

.nav {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.nav a {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--muted);
  transition: all 0.3s ease;
}
/* MODIFIKASI: Glow pada Nav Active */
.nav a.active,
.nav a:hover {
  color: #fff;
  border-color: var(--brand);
  background: rgba(63, 185, 80, 0.05);
  box-shadow: 0 0 10px rgba(63, 185, 80, 0.2);
}

/* MODIFIKASI: Hero Section dengan aura hijau */
.hero {
  margin: 28px 0 18px;
  padding: 28px;
  border: 1px solid rgba(63, 185, 80, 0.3);
  border-radius: 16px;
  background: linear-gradient(135deg, #0d2818, #0d1117);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(63, 185, 80, 0.05);
}
.hero h1 { margin: 0 0 8px; }
.hero p { margin: 0; color: var(--muted); }

.section-title {
  margin: 24px 0 12px;
  font-size: 22px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
}
/* MODIFIKASI: Card Hover Glow */
.card {
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: var(--card);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.card:hover {
  border-color: rgba(63, 185, 80, 0.4);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5), 0 0 15px rgba(63, 185, 80, 0.1);
}
.card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.card:hover img {
  transform: scale(1.05);
}
.card-body { padding: 12px; }
.card-title { margin: 0 0 8px; font-size: 16px; }
/* MODIFIKASI: Price Glow Gold */
.price { 
  color: #ffd700; 
  font-weight: 700; 
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.3);
}

.btn {
  display: inline-block;
  padding: 9px 13px;
  border-radius: 10px;
  border: 0;
  cursor: pointer;
  font-weight: 700;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
/* MODIFIKASI: Tombol Brand Glow Premium */
.btn-brand { 
  background: var(--brand); 
  color: #052e16; 
  box-shadow: 0 4px 12px rgba(63, 185, 80, 0.2);
}
.btn-brand:hover { 
  background: var(--brand-2); 
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(63, 185, 80, 0.4);
}

.btn-dark { background: #1e293b; color: #fff; }
.btn-ok { background: var(--ok); color: #052e16; }
.btn-danger { background: var(--danger); color: #fff; }

.panel {
  margin: 20px 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #0b1226;
  padding: 18px;
}

.muted { color: var(--muted); }

.detail {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr 1fr;
}
.detail img {
  width: 100%;
  border-radius: 14px;
  border: 1px solid var(--line);
}

table {
  width: 100%;
  border-collapse: collapse;
}
th, td {
  border-bottom: 1px solid var(--line);
  padding: 10px;
  text-align: left;
}
th { color: #cbd5e1; }

input, textarea, select {
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #334155;
  background: #0f172a;
  color: #fff;
}
textarea { min-height: 140px; }

.footer {
  margin: 30px 0 40px;
  color: var(--muted);
  text-align: center;
}

@media (max-width: 860px) {
  .detail { grid-template-columns: 1fr; }
}

label {
    display: block;
    margin-top: 14px;
    margin-bottom: 4px;
    color: #94a3b8;
    font-size: 14px;
}

/* MODIFIKASI: Tab Group Glow Edition */
.tab-group {
  display: inline-flex;
  background: #0f172a; 
  border: 1px solid var(--line);
  border-radius: 50px;
  padding: 5px;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

.tab-group a {
  padding: 10px 24px;
  color: var(--muted);
  font-weight: 600;
  font-size: 14px;
  text-transform: capitalize;
  border-radius: 50px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.tab-group a:hover:not(.active) {
  color: #fff;
  background: rgba(255, 255, 255, 0.03);
}

.tab-group a.active {
  background: var(--brand); 
  color: #052e16; 
  font-weight: 700;
  box-shadow: 0 0 15px rgba(63, 185, 80, 0.4), 0 2px 4px rgba(0, 0, 0, 0.2);
  transform: scale(1.02);
}