:root {
  --navy: #0c3b5e;
  --navy-2: #164a73;
  --gold: #c4a35a;
  --gold-2: #e8d5a3;
  --cream: #f7f3ea;
  --paper: #fffcf7;
  --ink: #1c2833;
  --muted: #5d6d7e;
  --line: #e6dfd2;
  --ok: #1e6b4f;
  --shadow: 0 18px 50px rgba(12, 59, 94, .08);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(1200px 500px at 10% -10%, #eaf3fb 0%, transparent 55%),
    radial-gradient(900px 400px at 100% 0%, #f8efd8 0%, transparent 50%),
    var(--paper);
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

.wrap { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }

header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(255,252,247,.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; gap: 16px;
  padding: 12px 0;
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo {
  width: 42px; height: 42px; border-radius: 12px;
  background: linear-gradient(145deg, var(--navy), var(--navy-2));
  color: var(--gold-2); display: grid; place-items: center;
  font-weight: 700; letter-spacing: .04em; font-size: 13px;
}
.brand b { display: block; font-size: 15px; color: var(--navy); letter-spacing: .12em; }
.brand small { color: var(--muted); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.search {
  flex: 1; display: flex; align-items: center; gap: 8px;
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: 8px 14px;
}
.search input {
  border: 0; outline: 0; width: 100%; background: transparent;
  font: inherit; font-size: 15px;
}
.nav-wa {
  flex: none;
  background: #128C7E;
  color: #fff;
  border-radius: 999px;
  padding: 9px 16px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
}
.cart-btn {
  flex: none;
  background: var(--navy);
  color: #fff;
  border: 0;
  border-radius: 999px;
  padding: 9px 14px;
  font: inherit;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
}
.badge {
  display: inline-grid;
  place-items: center;
  min-width: 20px;
  height: 20px;
  margin-left: 4px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--navy);
  font-size: 11px;
}

.hero {
  padding: 48px 0 18px;
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 36px; align-items: center;
}
.kicker {
  color: var(--gold); font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; font-size: 12px; margin-bottom: 10px;
}
h1 { font-family: "Cormorant Garamond", Georgia, serif; font-size: clamp(36px, 5vw, 58px); line-height: 1.08; color: var(--navy); }
h1 em { font-style: italic; color: #8a6d2d; }
.hero p.lead { margin-top: 14px; color: var(--muted); font-size: 18px; max-width: 52ch; }
.stats { display: flex; gap: 22px; margin-top: 26px; }
.stat b { display: block; font-size: 28px; color: var(--navy); font-family: "Cormorant Garamond", serif; }
.stat span { color: var(--muted); font-size: 13px; }
.hero-art {
  background: #fff; border: 1px solid var(--line); border-radius: 28px;
  padding: 18px; box-shadow: var(--shadow);
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
}
.hero-art img { width: 100%; aspect-ratio: 1; object-fit: contain; background: #faf7f0; border-radius: 16px; }

.filters { display: flex; gap: 8px; overflow: auto; padding: 8px 0 18px; }
.chip {
  flex: none; border: 1px solid var(--line); background: #fff; color: var(--navy);
  border-radius: 999px; padding: 8px 14px; font-size: 13px; font-weight: 600;
  cursor: pointer;
}
.chip.active { background: var(--navy); color: #fff; border-color: var(--navy); }

.grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 18px; padding-bottom: 70px;
}
.card {
  background: #fff; border: 1px solid var(--line); border-radius: 22px;
  overflow: hidden; cursor: pointer; transition: transform .2s, box-shadow .2s;
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.thumb { background: linear-gradient(180deg, #f6f1e6, #fff); padding: 16px; }
.thumb img { width: 100%; height: 200px; object-fit: contain; }
.body { padding: 0 16px 16px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.tag { font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--ok); font-weight: 700; }
.body h3 { font-size: 16px; color: var(--navy); line-height: 1.3; }
.excerpt { color: var(--muted); font-size: 13.5px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.more { margin-top: auto; color: var(--gold); font-weight: 700; font-size: 13px; }
.card-actions {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}
.add-mini {
  border: 0;
  background: var(--navy);
  color: #fff;
  border-radius: 999px;
  padding: 7px 12px;
  font: inherit;
  font-weight: 700;
  font-size: 12px;
  cursor: pointer;
}

.empty { text-align: center; padding: 50px 0; color: var(--muted); }

.modal {
  position: fixed; inset: 0; background: rgba(12, 28, 43, .55);
  display: none; align-items: center; justify-content: center; z-index: 80; padding: 18px;
}
.modal.open { display: flex; }
.sheet {
  width: min(920px, 100%); max-height: min(90vh, 860px); overflow: auto;
  background: #fff; border-radius: 24px; display: grid;
  grid-template-columns: 1fr 1.15fr;
}
.sheet-img { background: #f6f1e6; padding: 28px; display: grid; place-items: center; }
.sheet-img img { width: 100%; max-height: 420px; object-fit: contain; }
.sheet-body { padding: 28px 28px 32px; }
.sheet-body h2 { font-family: "Cormorant Garamond", serif; font-size: 32px; color: var(--navy); line-height: 1.15; }
.close {
  float: right; border: 0; background: #f0ece3; width: 36px; height: 36px;
  border-radius: 50%; cursor: pointer; font-size: 18px;
}
.block { margin-top: 16px; }
.block h4 { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.block p { color: #2c3e50; }
.wa-cta {
  display: inline-flex;
  margin-top: 22px;
  background: #25D366;
  color: #083318;
  font-weight: 800;
  text-decoration: none;
  border-radius: 999px;
  padding: 12px 18px;
  border: 0;
  cursor: pointer;
  font: inherit;
}
.add-cta {
  display: inline-flex;
  margin: 10px 12px 0 0;
  background: var(--navy);
  color: #fff;
  font-weight: 800;
  border: 0;
  border-radius: 999px;
  padding: 12px 18px;
  cursor: pointer;
  font: inherit;
}
.cart-panel {
  position: fixed;
  inset: 0;
  background: rgba(12, 28, 43, .55);
  z-index: 95;
  display: flex;
  justify-content: flex-end;
}
.cart-panel[hidden] { display: none; }
.cart-sheet {
  width: min(420px, 100%);
  height: 100%;
  background: #fff;
  overflow: auto;
  padding: 22px;
}
.cart-head { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.cart-head h2 { font-family: "Cormorant Garamond", serif; color: var(--navy); font-size: 28px; }
.cart-items { margin: 16px 0; display: grid; gap: 10px; }
.cart-row { display: grid; grid-template-columns: 56px 1fr; gap: 10px; align-items: center; }
.cart-row img { width: 56px; height: 56px; object-fit: contain; background: #f6f1e6; border-radius: 10px; }
.cart-row b { color: var(--navy); font-size: 14px; }
.qty { display: flex; align-items: center; gap: 8px; margin-top: 4px; }
.qty button {
  width: 28px; height: 28px; border-radius: 8px; border: 1px solid var(--line);
  background: #fff; cursor: pointer; font-size: 16px;
}
.order-form { display: grid; gap: 10px; }
.order-form label { display: grid; gap: 4px; font-size: 13px; font-weight: 700; color: var(--navy); }
.order-form input, .order-form select, .order-form textarea {
  border: 1px solid var(--line); border-radius: 12px; padding: 10px 12px;
  font: inherit; font-weight: 400;
}
.ongkir {
  background: #f6f1e6;
  border-radius: 14px;
  padding: 12px;
  color: var(--navy);
  font-size: 14px;
}
.ongkir small { color: var(--muted); font-weight: 400; }
.dest-list { display: grid; gap: 4px; max-height: 180px; overflow: auto; }
.dest-item {
  text-align: left;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 10px;
  padding: 8px 10px;
  font: inherit;
  font-size: 12px;
  cursor: pointer;
  color: var(--navy);
}
.dest-item:hover { background: #f6f1e6; }
.order-submit { width: 100%; justify-content: center; margin-top: 4px; }
.pay-cta {
  width: 100%;
  border: 0;
  background: var(--navy);
  color: #fff;
  font: inherit;
  font-weight: 800;
  border-radius: 999px;
  padding: 12px 18px;
  cursor: pointer;
}
.pay-box {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px;
  text-align: center;
  font-size: 13px;
  color: var(--navy);
}
.pay-box img { margin: 8px auto; width: 180px; height: 180px; }
.pay-box a { color: var(--navy-2); font-weight: 700; }

.wa-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #083318;
  text-decoration: none;
  font-weight: 800;
  border-radius: 999px;
  padding: 12px 16px 12px 12px;
  box-shadow: 0 14px 30px rgba(18, 140, 126, .35);
}
.wa-float svg { display: block; }

footer {
  border-top: 1px solid var(--line); padding: 28px 0 40px; color: var(--muted); font-size: 13px;
}
.foot { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }

@media (max-width: 860px) {
  .hero, .sheet { grid-template-columns: 1fr; }
  .hero-art { display: none; }
  .nav-wa { display: none; }
  .wa-float span { display: none; }
  .wa-float { padding: 14px; }
  .cart-btn { padding: 9px 10px; font-size: 12px; }
}
.seo {
  margin: 12px 0 72px;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
}
.seo h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 28px;
  color: var(--navy);
  margin-bottom: 10px;
}
.seo h3 { font-size: 16px; color: var(--navy); margin: 18px 0 8px; }
.seo p { color: var(--muted); margin-bottom: 10px; }
.seo a { color: var(--navy-2); font-weight: 600; }
.seo details { border-top: 1px solid var(--line); padding: 12px 0; }
.seo summary { cursor: pointer; font-weight: 700; color: var(--navy); }
.seo details p { margin: 8px 0 0; }
