@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --cream:      #FBF7F0;
  --cream-alt:  #FFF8EF;
  --cream-deep: #F5ECD8;
  --border:     #EDD9B8;
  --ink:        #5C3010;
  --ink-soft:   #8B6040;
  --ink-mute:   #B8916A;
  --terra:      #D4622A;
  --terra-dark: #A84C2F;
  --terra-lt:   #FFF0D6;
  --green:      #2D9E75;
  --green-lt:   #EEF7F1;
  --white:      #FFFFFF;
  --r:          14px;
  --px:         48px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--cream); color: var(--ink); }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* NAV */
.nav-wrap {
  position: sticky; top: 0; z-index: 100;
}
.nav {
  background: var(--cream); border-bottom: 1.5px solid var(--border);
  padding: 0 var(--px); height: 64px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-brand { display: flex; align-items: center; gap: 10px; }
.nav-brand img { width: 36px; height: 36px; border-radius: 10px; object-fit: cover; }
.nav-brand-name { font-size: 16px; font-weight: 600; color: var(--ink); letter-spacing: .02em; }
.nav-links { display: flex; gap: 4px; }
.nav-a { font-size: 13px; color: var(--ink-soft); padding: 7px 16px; border-radius: 30px; transition: background .18s, color .18s; }
.nav-a:hover { background: var(--cream-deep); color: var(--ink); }
.nav-a.on { background: var(--terra); color: #fff; font-weight: 500; }

.nav-toggle {
  display: none;
  flex-direction: column; justify-content: center; gap: 5px;
  width: 36px; height: 36px; cursor: pointer;
  background: none; border: none; padding: 4px;
}
.nav-toggle span {
  display: block; height: 2px; border-radius: 2px;
  background: var(--ink); transition: transform .25s, opacity .25s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-drawer {
  display: none; flex-direction: column;
  background: var(--cream); border-bottom: 1.5px solid var(--border);
  padding: 12px 20px 16px; gap: 4px;
}
.nav-drawer.open { display: flex; }
.nav-drawer .nav-a { padding: 10px 16px; border-radius: 10px; font-size: 14px; }

/* BANNER */
.banner {
  padding: 56px var(--px) 48px;
  background: linear-gradient(135deg, #FFF3E0 0%, var(--cream) 100%);
  border-bottom: 1.5px solid var(--border);
}
.banner-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--terra); margin-bottom: 10px;
}
.banner-eyebrow::before { content: ''; display: block; width: 18px; height: 1.5px; background: var(--terra); }
.banner-title { font-size: 36px; font-weight: 500; color: var(--ink); margin-bottom: 6px; }
.banner-sub { font-size: 14px; color: var(--ink-mute); }

/* MERCH SECTION */
.merch-sec { padding: 56px var(--px) 72px; }
.merch-inner { max-width: 960px; margin: 0 auto; }

/* PRODUCT ROW */
.product-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  margin-bottom: 48px;
  text-align: center;
}

.product-imgs {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.product-img-wrap {
  width: 340px;
  background: var(--cream-deep);
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  aspect-ratio: 3/4;
}
.product-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.product-img-label { text-align: center; font-size: 11px; color: var(--ink-mute); margin-top: 6px; }

.product-info { max-width: 560px; padding-top: 0; }
.product-tag {
  display: inline-block;
  background: var(--terra-lt); color: var(--terra-dark);
  font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 4px 12px; border-radius: 20px; border: 1px solid var(--border);
  margin-bottom: 14px;
}
.product-name {
  font-size: 30px; font-weight: 500; color: var(--ink);
  line-height: 1.2; margin-bottom: 14px;
}
.product-name em { color: var(--terra); font-style: normal; }
.product-desc { font-size: 14px; color: var(--ink-soft); line-height: 1.75; margin-bottom: 18px; }
.product-price { font-size: 22px; font-weight: 600; color: var(--ink); margin-bottom: 14px; }
.stok-pill {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 500;
  padding: 5px 14px; border-radius: 20px; margin-bottom: 18px;
}
.stok-pill.ada { background: var(--green-lt); color: #1B6B50; border: 1px solid #9FE1CB; }
.stok-pill.habis { background: #FDE8EC; color: #7C1D2A; border: 1px solid #F4A7B0; }
.btn-beli {
  display: inline-block;
  background: var(--terra); color: #fff;
  font-size: 14px; font-weight: 500;
  padding: 12px 28px; border-radius: 30px;
  transition: background .18s;
}
.btn-beli:hover { background: var(--terra-dark); }

/* DIVIDER */
.section-divider { border: none; border-top: 1.5px solid var(--border); margin: 0 0 48px; }

/* TUMBLER STRIP */
.tumbler-strip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
}
.tumbler-strip-img {
  width: 380px;
  height: 380px;
  background: var(--cream-deep);
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
}
.tumbler-strip-img img { width: 100%; height: 100%; object-fit: cover; }
.tumbler-strip-body { max-width: 560px; padding-top: 0; }

/* UNAVAIL */
.unavail {
  text-align: center; padding: 80px 40px;
  border: 1.5px dashed var(--border); border-radius: var(--r);
  color: var(--ink-mute);
}
.unavail-icon { font-size: 48px; margin-bottom: 16px; }
.unavail h3 { font-size: 20px; font-weight: 500; color: var(--ink); margin-bottom: 8px; }
.unavail p { font-size: 14px; line-height: 1.7; }

/* FOOTER */
.footer {
  background: var(--ink); padding: 36px var(--px);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-name { font-size: 16px; font-weight: 600; color: #FFF3E0; letter-spacing: .04em; }
.footer p { font-size: 12px; color: var(--ink-mute); }

@media (max-width: 768px) {
  :root { --px: 20px; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .banner { padding: 40px 20px 32px; }
  .banner-title { font-size: 28px; }
  .merch-sec { padding: 36px 20px 56px; }
  .product-img-wrap { width: 260px; }
  .tumbler-strip-img { width: 280px; height: 280px; }
  .footer { padding: 28px 20px; flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .product-imgs { flex-direction: column; align-items: center; }
  .product-img-wrap { width: 100%; max-width: 320px; }
  .product-name { font-size: 24px; }
  .btn-beli { display: block; text-align: center; }
  .tumbler-strip-img { width: 100%; max-width: 300px; height: auto; aspect-ratio: 1/1; }
}