/* =============================================================
   BONEKAKU — STYLESHEET RESMI FULLSTACK (CPANEL READY)
   Palet: Krem, Emas, Cokelat, Hijau. Font: Plus Jakarta Sans
   ============================================================= */

:root {
  --cream: #FBF6EE;
  --cream-2: #F4EAD9;
  --paper: #FFFFFF;
  --brown-ink: #3A2610;
  --brown: #5C3A15;
  --brown-2: #8B5E24;
  --gold: #C89B3C;
  --gold-2: #A06B1F;
  --green: #2E9E5B;
  --green-dark: #1F7A45;
  --muted: #7A6B58;
  --line: #EADFCB;
  --shadow: 0 14px 40px rgba(92, 58, 21, .10);
  --shadow-lg: 0 24px 60px rgba(92, 58, 21, .16);
  --radius: 22px;
  --radius-sm: 14px;
  --font: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
[hidden], .modal-overlay[hidden] { display: none !important; }
[data-perchance-server-plugin-emulator-warning] { display: none !important; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--cream);
  color: var(--brown-ink);
  text-align: left;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.wrap { width: min(1180px, 92%); margin: 0 auto; }

/* ---------- tombol & aksen ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px; border-radius: 999px; border: 0; cursor: pointer;
  font-family: var(--font); font-weight: 700; font-size: 15px; letter-spacing: .3px;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn-green { background: var(--green); color: #fff; box-shadow: 0 10px 24px rgba(46,158,91,.32); }
.btn-green:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 14px 30px rgba(46,158,91,.4); }
.btn-gold { background: linear-gradient(135deg, var(--gold), var(--gold-2)); color: #fff; box-shadow: 0 10px 24px rgba(192,138,49,.35); }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(192,138,49,.45); }
.btn-ghost { background: transparent; color: var(--brown); box-shadow: inset 0 0 0 2px var(--gold); }
.btn-ghost:hover { background: rgba(200,155,60,.12); transform: translateY(-2px); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(200,155,60,.14); color: var(--gold-2);
  font-size: 12.5px; font-weight: 800; letter-spacing: 2.4px; text-transform: uppercase;
  padding: 8px 16px; border-radius: 999px;
}
.sec-head { margin-bottom: 44px; }
.sec-head h2 {
  font-size: clamp(28px, 4vw, 42px); font-weight: 800; letter-spacing: -.5px;
  line-height: 1.15; color: var(--brown-ink);
}
.sec-head .gold-bar { width: 58px; height: 5px; border-radius: 4px; background: linear-gradient(90deg, var(--gold), var(--gold-2)); margin-top: 16px; }
.sec-head p.lead { color: var(--muted); margin-top: 14px; max-width: 620px; font-size: 16px; }
.sec-head.center { text-align: center; }
.sec-head.center .gold-bar { margin: 16px auto 0; }
.sec-head.center p.lead { margin-left: auto; margin-right: auto; }

/* ---------- header ---------- */
header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  background: rgba(251,246,238,.86); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(234,223,203,.8);
}
header .bar { height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-right: 56px; }
.brand img { height: 46px; width: auto; }
nav.main { display: flex; align-items: center; gap: 6px; }
nav.main a {
  position: relative; padding: 10px 14px; font-size: 15px; font-weight: 600; color: var(--brown-ink);
  border-radius: 10px; transition: color .15s ease;
}
nav.main a::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 4px; height: 3px; border-radius: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  transform: scaleX(0); transform-origin: left; transition: transform .2s ease;
}
nav.main a:hover { color: var(--gold-2); }
nav.main a.active { color: var(--gold-2); }
nav.main a.active::after { transform: scaleX(1); }
.hamburger {
  display: none; background: none; border: 0; cursor: pointer; padding: 8px;
  border-radius: 10px;
}
.hamburger span { display: block; width: 24px; height: 2.5px; background: var(--brown); border-radius: 3px; margin: 5px 0; transition: .25s ease; }

/* ---------- hero ---------- */
.hero { padding: 150px 0 70px; position: relative; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; width: 620px; height: 620px; border-radius: 50%;
  background: radial-gradient(circle, rgba(200,155,60,.18), transparent 65%);
  top: -180px; right: -120px;
}
.hero::after {
  content: ""; position: absolute; width: 460px; height: 460px; border-radius: 50%;
  background: radial-gradient(circle, rgba(139,94,36,.12), transparent 65%);
  bottom: -180px; left: -140px;
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 60px; align-items: center; position: relative; z-index: 2; }
.hero h1 {
  font-size: clamp(40px, 6vw, 68px); font-weight: 800; letter-spacing: -1.5px; line-height: 1.02;
  margin: 22px 0 18px; text-shadow: 0 2px 22px rgba(251,246,238,.9);
}
.hero h1 .grad { color: var(--gold-2); }
.hero p.lead { font-size: 17px; color: #5a4a36; max-width: 560px; }
.hero .cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero .mini-stats { display: flex; gap: 34px; margin-top: 40px; flex-wrap: wrap; }
.hero .mini-stats b { display: block; font-size: 24px; color: var(--gold-2); }
.hero .mini-stats span { font-size: 13px; color: var(--muted); font-weight: 600; }

.hero-visual { position: relative; }
.hero-visual .photo {
  border-radius: 34px; overflow: hidden; box-shadow: var(--shadow-lg);
  border: 6px solid #fff;
  position: relative; z-index: 1;
}
.hero-visual .photo img { width: 100%; height: 480px; object-fit: cover; }
.float-card {
  position: absolute; z-index: 3; left: -34px; bottom: -26px;
  background: #fff; border-radius: 22px; box-shadow: var(--shadow-lg);
  padding: 22px 26px; max-width: 300px;
  border-top: 5px solid var(--gold);
}
.float-card .tag { font-size: 11px; font-weight: 800; letter-spacing: 2px; color: var(--muted); text-transform: uppercase; }
.float-card h3 { font-size: 19px; font-weight: 800; margin: 6px 0 4px; line-height: 1.25; }
.float-card p { font-size: 13.5px; color: var(--muted); margin-bottom: 12px; }
.float-card .btn { padding: 10px 20px; font-size: 13.5px; }
.chip-float {
  position: absolute; z-index: 3; top: 26px; right: -18px;
  background: var(--green); color: #fff; font-weight: 800; font-size: 12.5px; letter-spacing: 1.5px;
  padding: 10px 18px; border-radius: 999px; box-shadow: 0 12px 26px rgba(46,158,91,.4);
  transform: rotate(4deg);
}
.chip-float.small { top: auto; right: auto; left: 30px; bottom: 120px; background: var(--gold); box-shadow: 0 12px 26px rgba(192,138,49,.4); transform: rotate(-5deg); }

/* ---------- jagonya strip ---------- */
.jagonya { padding: 34px 0; background: linear-gradient(90deg, var(--cream-2), #fff 55%, var(--cream-2)); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.jagonya-in { display: flex; align-items: center; gap: 30px; flex-wrap: wrap; justify-content: space-between; }
.jagonya-in h3 { font-size: clamp(22px, 3vw, 30px); font-weight: 800; letter-spacing: -.5px; }
.jagonya-in .gold-bar { width: 58px; height: 5px; border-radius: 4px; background: linear-gradient(90deg, var(--gold), var(--gold-2)); margin-top: 12px; }
.jagonya-in .q { font-size: 16px; color: #5a4a36; font-weight: 600; max-width: 560px; }
.jagonya-in .q b { color: var(--gold-2); }

/* ---------- sections ---------- */
section.pad { padding: 84px 0; }

.svc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.svc-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px; box-shadow: 0 6px 18px rgba(92,58,21,.05);
  transition: transform .2s ease, box-shadow .2s ease;
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.svc-card .ico {
  width: 72px; height: 72px; border-radius: 20px; background: linear-gradient(135deg, rgba(200,155,60,.16), rgba(160,111,31,.14));
  display: grid; place-items: center; margin-bottom: 20px;
}
.svc-card .ico img { width: 46px; height: 46px; object-fit: contain; }
.svc-card h4 { font-size: 18px; font-weight: 800; letter-spacing: .3px; }
.svc-card .gold-bar { width: 34px; height: 4px; border-radius: 3px; background: linear-gradient(90deg, var(--gold), var(--gold-2)); margin: 12px 0 12px; }
.svc-card p { font-size: 14.5px; color: var(--muted); }

.prod-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.prod-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; transition: transform .2s ease, box-shadow .2s ease;
}
.prod-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.prod-card .ph { position: relative; aspect-ratio: 1/1; background: var(--cream-2); overflow: hidden; }
.prod-card .ph img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.prod-card:hover .ph img { transform: scale(1.06); }
.prod-card .body { padding: 18px 20px 20px; display: flex; flex-direction: column; gap: 8px; }
.prod-card h4 { font-size: 16.5px; font-weight: 700; line-height: 1.35; }
.prod-card .link { font-size: 13.5px; font-weight: 700; color: var(--gold-2); display: inline-flex; align-items: center; gap: 6px; }
.prod-card .link:hover { text-decoration: underline; }

.special { background: linear-gradient(135deg, #4a2f14 0%, #2e1d0b 100%); color: #f6ecdb; position: relative; overflow: hidden; }
.special::before { content: ""; position: absolute; width: 520px; height: 520px; border-radius: 50%; background: radial-gradient(circle, rgba(200,155,60,.22), transparent 65%); top: -200px; right: -160px; }
.special-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 54px; align-items: center; position: relative; z-index: 2; }
.special h2 { font-size: clamp(28px, 4vw, 40px); font-weight: 800; letter-spacing: -.5px; color: #fff; }
.special .gold-bar { width: 58px; height: 5px; border-radius: 4px; background: linear-gradient(90deg, var(--gold), #e6b45a); margin: 16px 0 20px; }
.special p { color: #dcc9a8; font-size: 15.5px; }
.price-box { margin-top: 26px; display: grid; gap: 14px; }
.price-group { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: 16px; padding: 18px 20px; }
.price-group h5 { font-size: 14px; font-weight: 800; letter-spacing: 1.5px; color: var(--gold); text-transform: uppercase; margin-bottom: 10px; }
.price-row { display: flex; justify-content: space-between; gap: 16px; padding: 7px 0; font-size: 14.5px; border-bottom: 1px dashed rgba(255,255,255,.12); }
.price-row:last-child { border-bottom: 0; }
.price-row span { color: #e9dcc3; }
.price-row b { color: #fff; white-space: nowrap; }
.special .visual { position: relative; }
.special .visual img { border-radius: 28px; box-shadow: 0 30px 60px rgba(0,0,0,.4); border: 6px solid rgba(255,255,255,.08); width: 100%; height: auto; }
.special .badge-float { position: absolute; top: 22px; left: -18px; background: #fff; color: var(--brown); font-weight: 800; padding: 10px 18px; border-radius: 14px; font-size: 13px; box-shadow: var(--shadow-lg); }
.video-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: 26px; padding: 14px 14px 16px; box-shadow: 0 24px 60px rgba(0,0,0,.35); }
.video-card .video-head { display: flex; align-items: center; gap: 10px; padding: 4px 8px 14px; }
.video-card .video-head b { color: #fff; font-size: 15px; letter-spacing: .3px; }
.video-card .video-head .vplay { width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; background: linear-gradient(135deg, var(--gold), var(--gold-2)); color: #fff; flex-shrink: 0; }
.video-card .video-wrap { width: 100%; aspect-ratio: 16/9; border-radius: 16px; overflow: hidden; background: #000; box-shadow: inset 0 0 0 1px rgba(255,255,255,.1); }
.video-card .video-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }
.video-card .video-thumb { position: relative; display: block; width: 100%; height: 100%; background: #000; }
.video-card .video-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; opacity: .9; transition: transform .35s ease; }
.video-card .video-thumb:hover img { transform: scale(1.04); }
.video-card .play-badge { position: absolute; inset: 0; display: grid; place-items: center; }
.video-card .play-badge::before { content: ""; width: 62px; height: 62px; border-radius: 50%; background: rgba(0,0,0,.55); }
.video-card .play-badge svg { position: absolute; width: 26px; height: 26px; color: #fff; margin-left: 4px; }
.video-card .yt-note { position: absolute; left: 0; right: 0; bottom: 12px; text-align: center; color: #fff; font-size: 12.5px; font-weight: 700; text-shadow: 0 1px 4px rgba(0,0,0,.7); }

.chips { display: flex; flex-wrap: wrap; gap: 10px; margin: 26px 0 30px; }
.chip {
  padding: 10px 18px; border-radius: 999px; border: 1.5px solid var(--line); background: #fff;
  font-family: var(--font); font-size: 14px; font-weight: 700; color: var(--brown-ink); cursor: pointer;
  transition: .18s ease;
}
.chip:hover { border-color: var(--gold); color: var(--gold-2); }
.chip.on { background: var(--brown); border-color: var(--brown); color: #fff; }

.cat-preview { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.cat-preview .mini .ph { aspect-ratio: 4/3; }

.workshop { background: linear-gradient(135deg, #33200d 0%, #241505 100%); border-radius: 34px; overflow: hidden; box-shadow: var(--shadow-lg); position: relative; }
.workshop::before { content: ""; position: absolute; width: 520px; height: 520px; border-radius: 50%; background: radial-gradient(circle, rgba(200,155,60,.16), transparent 65%); top: -180px; left: -120px; }
.workshop::after { content: ""; position: absolute; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(200,155,60,.12), transparent 65%); bottom: -160px; right: -100px; }
.w-in { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center; padding: clamp(36px, 5vw, 64px); }
.w-txt h2 { color: #fff; font-size: clamp(24px, 3.2vw, 36px); font-weight: 800; letter-spacing: -.5px; line-height: 1.2; }
.w-txt .gold-bar { width: 58px; height: 5px; border-radius: 4px; background: linear-gradient(90deg, var(--gold), #e6b45a); margin: 16px 0 18px; }
.w-txt p { color: #e8dcc4; font-size: 15.5px; }
.w-txt .btn { margin-top: 22px; }
.w-photo { position: relative; }
.w-photo img { border-radius: 24px; box-shadow: 0 30px 60px rgba(0,0,0,.45); border: 6px solid rgba(255,255,255,.08); width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.w-tag { position: absolute; bottom: 20px; left: 20px; background: rgba(255,255,255,.94); color: var(--brown); font-weight: 800; font-size: 12.5px; letter-spacing: 1.2px; padding: 8px 14px; border-radius: 999px; box-shadow: var(--shadow); }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; counter-reset: step; }
.step {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 26px;
  position: relative; transition: transform .2s ease, box-shadow .2s ease;
}
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.step .num { font-size: 40px; font-weight: 800; color: rgba(200,155,60,.22); line-height: 1; }
.step h4 { font-size: 18px; font-weight: 800; margin: 14px 0 8px; letter-spacing: .3px; }
.step p { font-size: 14.5px; color: var(--muted); }
.process-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 54px; align-items: center; }
.process-media { position: relative; }
.process-media img { border-radius: 28px; box-shadow: var(--shadow-lg); }
.process-media .cap {
  position: absolute; left: 24px; right: 24px; bottom: 20px; background: rgba(255,255,255,.97);
  border-radius: 16px; padding: 14px 18px; font-size: 14px; color: var(--brown); font-weight: 600; box-shadow: var(--shadow);
}
.process-media .cap b { color: var(--gold-2); }

.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testi {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 28px;
  display: flex; flex-direction: column; gap: 18px; transition: transform .2s ease, box-shadow .2s ease;
}
.testi:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.testi .qmark { width: 44px; height: 44px; border-radius: 12px; background: linear-gradient(135deg, var(--gold), var(--gold-2)); color: #fff; font-size: 24px; font-weight: 800; display: grid; place-items: center; }
.testi p { font-size: 15px; color: #55463a; font-style: italic; }
.testi .who { display: flex; align-items: center; gap: 14px; border-top: 1px dashed var(--line); padding-top: 16px; }
.testi .who img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; border: 3px solid var(--cream-2); }
.testi .who b { font-size: 15px; }
.testi .who span { font-size: 13px; color: var(--muted); display: block; }

.clients { display: flex; align-items: center; justify-content: center; gap: 26px; flex-wrap: wrap; }
.client {
  background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 20px 36px;
  transition: .2s ease; text-align: center; min-width: 200px;
}
.client:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.client .nm { font-size: 22px; font-weight: 800; letter-spacing: .5px; line-height: 1.1; }
.client .nm.red { color: #C8102E; }
.client .nm.blue { color: #1D3E8F; }
.client .tg { font-size: 11.5px; color: var(--muted); margin-top: 6px; font-weight: 600; letter-spacing: .3px; }
.client .tm { font-size: 15px; color: var(--gold-2); font-weight: 800; font-style: italic; letter-spacing: .4px; }

/* ---------- catalog page ---------- */
.page-top { padding: 132px 0 0; }
.cat-layout { display: grid; grid-template-columns: 250px 1fr; gap: 36px; align-items: start; }
.cat-side { position: sticky; top: 100px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.cat-side h4 { font-size: 13px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
.cat-side .list { display: grid; gap: 4px; }
.cat-side .list button {
  display: flex; justify-content: space-between; align-items: center; gap: 10px;
  background: none; border: 0; border-radius: 10px; padding: 9px 12px; cursor: pointer;
  font-family: var(--font); font-size: 14px; font-weight: 600; color: var(--brown-ink); text-align: left; transition: .15s ease;
}
.cat-side .list button:hover { background: var(--cream); color: var(--gold-2); }
.cat-side .list button.on { background: linear-gradient(135deg, rgba(200,155,60,.16), rgba(160,111,31,.12)); color: var(--gold-2); font-weight: 700; }
.cat-side .list button .cnt { font-size: 12px; color: var(--muted); background: var(--cream-2); border-radius: 999px; padding: 2px 9px; font-weight: 700; }
.cat-tools { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.search {
  flex: 1; min-width: 200px; max-width: 340px; display: flex; align-items: center; gap: 10px;
  background: #fff; border: 1.5px solid var(--line); border-radius: 999px; padding: 11px 18px;
}
.search input { border: 0; outline: 0; background: none; font-family: var(--font); font-size: 14.5px; width: 100%; color: var(--brown-ink); }
.view-toggle { display: flex; border: 1.5px solid var(--line); border-radius: 999px; overflow: hidden; background: #fff; }
.view-toggle button { border: 0; background: none; padding: 10px 14px; cursor: pointer; color: var(--muted); transition: .15s; }
.view-toggle button.on { background: var(--brown); color: #fff; }
.grid-view { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-view .prod-card .ph { aspect-ratio: 4/3; }
.list-view { display: grid; gap: 14px; }
.list-view .prod-card { display: flex; align-items: center; gap: 20px; padding: 14px; }
.list-view .prod-card .ph { aspect-ratio: auto; width: 120px; height: 96px; border-radius: 14px; flex-shrink: 0; }
.list-view .prod-card .body { flex: 1; flex-direction: row; align-items: center; justify-content: space-between; }
.cat-empty { grid-column: 1 / -1; text-align: center; color: var(--muted); padding: 50px 0; }
.cat-count { font-size: 14px; color: var(--muted); font-weight: 600; }

/* ---------- sort / per-page controls & pagination ---------- */
.control-bar { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.select {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; border: 1.5px solid var(--line); border-radius: 999px; padding: 0 10px 0 16px; height: 44px; max-width: 100%;
}
.select label { font-size: 13px; font-weight: 700; color: var(--muted); white-space: nowrap; }
.select select {
  border: 0; outline: 0; background: none; font-family: var(--font);
  font-size: 14px; font-weight: 700; color: var(--brown-ink); cursor: pointer; flex-shrink: 0; white-space: nowrap;
}
.pager { display: flex; flex-wrap: wrap; gap: 6px; align-items: center; justify-content: center; margin-top: 28px; }
.pager button {
  min-width: 38px; height: 38px; padding: 0 10px; border: 1.5px solid var(--line); border-radius: 10px;
  background: #fff; font-family: var(--font); font-size: 14px; font-weight: 700; color: var(--brown-ink); cursor: pointer; transition: .15s;
}
.pager button:hover:not(:disabled):not(.on) { border-color: var(--gold); color: var(--gold-2); }
.pager button.on { background: var(--brown); color: #fff; border-color: var(--brown); }
.pager button:disabled { opacity: .4; cursor: default; }
.pager .dots { color: var(--muted); font-weight: 700; padding: 0 2px; }

/* ---------- layanan ---------- */
.lay-item { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; margin-bottom: 40px; }
.lay-item .imgwrap img { border-radius: 24px; box-shadow: var(--shadow); aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.lay-item .no { font-size: 14px; font-weight: 800; letter-spacing: 3px; color: var(--gold); }
.lay-item h3 { font-size: clamp(22px, 2.6vw, 30px); font-weight: 800; margin: 10px 0 14px; letter-spacing: -.4px; }
.lay-item p { color: #5f4f3b; font-size: 15.5px; }
.lay-item ul { list-style: none; margin-top: 16px; display: grid; gap: 8px; }
.lay-item ul li { font-size: 14.5px; font-weight: 600; color: var(--brown-ink); display: flex; align-items: center; gap: 10px; }
.lay-item ul li::before { content: ""; width: 9px; height: 9px; border-radius: 50%; background: linear-gradient(135deg, var(--gold), var(--gold-2)); flex-shrink: 0; }
.lay-item.flip .imgwrap { order: 2; }

/* ---------- tentang ---------- */
.tentang-hero { display: grid; grid-template-columns: 1.1fr .9fr; gap: 54px; align-items: center; }
.tentang-hero .brand { height: 52px; width: auto; margin-bottom: 22px; }
.tentang-hero h1 { font-size: clamp(28px, 4vw, 42px); font-weight: 800; letter-spacing: -1px; line-height: 1.15; }
.tentang-hero h1 .grad { color: var(--gold-2); }
.tentang-hero .gold-bar { width: 58px; height: 5px; border-radius: 4px; background: linear-gradient(90deg, var(--gold), var(--gold-2)); margin: 18px 0 22px; }
.tentang-hero p { color: #5f4f3b; font-size: 15.5px; margin-bottom: 14px; }
.tentang-hero .qs { background: #fff; border: 1px solid var(--line); border-left: 5px solid var(--gold); border-radius: var(--radius-sm); padding: 20px 22px; margin-top: 20px; font-weight: 700; font-size: 15px; display: grid; gap: 6px; }
.tentang-hero .qs i { color: var(--muted); font-weight: 500; }
.tentang-hero .visual { position: relative; }
.tentang-hero .visual img { border-radius: 30px 30px 30px 100px; box-shadow: var(--shadow-lg); }
.tentang-cta {
  margin-top: 44px; background: linear-gradient(135deg, var(--gold), var(--gold-2)); color: #fff;
  border-radius: 22px; padding: 34px 40px; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  box-shadow: var(--shadow);
}
.tentang-cta p { font-size: 16.5px; font-weight: 700; max-width: 640px; }
.tentang-cta a { background: #fff; color: var(--gold-2); border-radius: 999px; padding: 12px 22px; font-weight: 800; font-size: 14px; }

/* ---------- kontak ---------- */
.kontak-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: stretch; }
.kontak-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow); }
.kontak-card h2 { font-size: 26px; font-weight: 800; letter-spacing: -.4px; }
.kontak-card .gold-bar { width: 58px; height: 5px; border-radius: 4px; background: linear-gradient(90deg, var(--gold), var(--gold-2)); margin: 14px 0 26px; }
.k-item { display: flex; gap: 18px; padding: 16px 0; border-bottom: 1px dashed var(--line); }
.k-item:last-of-type { border-bottom: 0; }
.k-item .ico { width: 54px; height: 54px; border-radius: 16px; background: linear-gradient(135deg, var(--gold), var(--gold-2)); color: #fff; display: grid; place-items: center; flex-shrink: 0; }
.k-item .ico svg { width: 24px; height: 24px; }
.k-item b { display: block; font-size: 16px; margin-bottom: 3px; }
.k-item p, .k-item a { font-size: 14.5px; color: var(--muted); line-height: 1.55; }
.k-item a:hover { color: var(--gold-2); }
.map-card { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); min-height: 420px; }
.map-card iframe { width: 100%; height: 100%; min-height: 420px; border: 0; display: block; }
.social-row { display: flex; gap: 12px; margin-top: 22px; }
.social-row a { width: 44px; height: 44px; border-radius: 50%; background: var(--cream-2); display: grid; place-items: center; color: var(--brown); transition: .18s ease; }
.social-row a:hover { background: var(--gold); color: #fff; transform: translateY(-3px); }
.social-row svg { width: 20px; height: 20px; }

/* ---------- artikel ---------- */
.art-hero { border-radius: 34px; overflow: hidden; position: relative; box-shadow: var(--shadow-lg); margin-bottom: 60px; }
.art-hero .bg { position: absolute; inset: 0; }
.art-hero .bg img { width: 100%; height: 100%; object-fit: cover; }
.art-hero .bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(100deg, rgba(38,24,9,.92) 0%, rgba(38,24,9,.62) 60%, rgba(38,24,9,.2) 100%); }
.art-hero .in { position: relative; z-index: 2; padding: clamp(40px, 6vw, 72px); max-width: 720px; }
.art-hero h1 { color: #fff; font-size: clamp(32px, 5vw, 52px); font-weight: 800; letter-spacing: -1px; }
.art-hero .gold-bar { width: 58px; height: 5px; border-radius: 4px; background: linear-gradient(90deg, var(--gold), #e6b45a); margin: 18px 0 20px; }
.art-hero p { color: #e8dcc4; font-size: 15.5px; }
.art-hero .btn { margin-top: 24px; }
.art-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.art-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: transform .2s ease, box-shadow .2s ease; }
.art-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.art-card .ph { aspect-ratio: 16/9; overflow: hidden; background: var(--cream-2); }
.art-card .ph img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.art-card:hover .ph img { transform: scale(1.06); }
.art-card .body { padding: 22px 22px 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.art-card .meta { font-size: 12.5px; color: var(--muted); font-weight: 600; display: flex; align-items: center; gap: 8px; }
.art-card .meta b { color: var(--gold-2); }
.art-card h3 { font-size: 17.5px; font-weight: 800; line-height: 1.35; }
.art-card p { font-size: 14px; color: var(--muted); flex: 1; }
.art-card .more { font-size: 13.5px; font-weight: 800; color: var(--gold-2); display: inline-flex; align-items: center; gap: 6px; margin-top: 4px; }
.art-card .more:hover { text-decoration: underline; }
.art-card .ph span, .prod-card .ph span { width: 100%; height: 100%; display: grid; place-items: center; font-size: 40px; color: var(--gold-2); background: linear-gradient(160deg, var(--cream-2), var(--line)); }
.art-card .ph span { font-size: 34px; }
.art-detail { padding: 46px 0 70px; }
.art-detail .back-btn { margin-bottom: 26px; }
.art-detail-head { max-width: 760px; margin: 0 auto 26px; text-align: left; }
.art-detail-head .meta { font-size: 13.5px; color: var(--muted); font-weight: 600; margin-bottom: 10px; }
.art-detail-head .meta b { color: var(--gold-2); }
.art-detail-head h1 { font-size: clamp(26px, 4.2vw, 40px); font-weight: 800; line-height: 1.25; }
.art-detail-img { max-width: 900px; margin: 0 auto 30px; border-radius: var(--radius); overflow: hidden; background: var(--cream-2); }
.art-detail-img img { width: 100%; display: block; aspect-ratio: 16/9; object-fit: cover; }
.art-detail-img .ph { width: 100%; aspect-ratio: 16/9; display: grid; place-items: center; font-size: 44px; color: var(--gold-2); background: linear-gradient(160deg, var(--cream-2), var(--line)); }
.art-detail-body { max-width: 760px; margin: 0 auto; font-size: 16.5px; line-height: 1.85; color: var(--brown-ink); text-align: left; }
.art-detail-body p { margin-bottom: 18px; }

/* ---------- canvas particles background ---------- */
body { background: #FBF6EE; }
#bearsCanvas { position: fixed; inset: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none; }
main, footer { position: relative; z-index: 1; }
.admin-lock, .wa-float, .sneak-float { z-index: 150; }

/* ---------- flip cards ---------- */
.prod-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: transform .2s ease, box-shadow .2s ease; }
.prod-card.flip-card { perspective: 1400px; }
.prod-card .flip-inner { position: relative; width: 100%; height: 100%; transform-style: preserve-3d; transition: transform .65s cubic-bezier(.4,.1,.2,1); }
.prod-card.flip-card:hover .flip-inner, .prod-card.flip-card.flipped .flip-inner { transform: rotateY(180deg); }
.prod-card .face { backface-visibility: hidden; -webkit-backface-visibility: hidden; }
.prod-card .face-back { position: absolute; inset: 0; transform: rotateY(180deg); background: linear-gradient(155deg, #4a2f14, #2e1d0b); color: #f6ecdb; padding: 18px 20px; display: flex; flex-direction: column; gap: 8px; justify-content: center; }
.prod-card .face-back::before { content: ""; position: absolute; width: 240px; height: 240px; border-radius: 50%; background: radial-gradient(circle, rgba(200,155,60,.2), transparent 65%); top: -70px; right: -70px; }
.prod-card .face-back > * { position: relative; }
.prod-card .face-back .cat-chip { font-size: 11px; color: var(--gold); font-weight: 800; letter-spacing: 2px; text-transform: uppercase; }
.prod-card .face-back h4 { color: #fff; font-size: 16px; font-weight: 800; line-height: 1.3; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.prod-card .face-back p { font-size: 13px; color: #dcc9a8; line-height: 1.55; display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden; }
.prod-card .face-back .card-acts { display: flex; gap: 6px; margin-top: 4px; flex-wrap: wrap; }
.prod-card .face-back .btn { padding: 9px 16px; font-size: 12.5px; }
.prod-card .face-back .btn-sneak { background: rgba(255,255,255,.15); color: #fff; border: 1px solid rgba(255,255,255,.3); }
.prod-card .face-back .btn-sneak:hover { background: rgba(255,255,255,.25); }
.prod-card .face-back .hint-rotate { font-size: 11px; color: rgba(255,255,255,.45); font-weight: 600; }
.prod-card:hover { transform: translateY(-6px); box-shadow: 0 22px 50px rgba(92,58,21,.16); }
.prod-card .ph { position: relative; aspect-ratio: 1/1; background: var(--cream-2); overflow: hidden; }
.prod-card .ph img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.prod-card:hover .ph img { transform: scale(1.06); }
.prod-card .body { padding: 18px 20px 20px; display: flex; flex-direction: column; gap: 8px; }
.prod-card h4 { font-size: 16.5px; font-weight: 700; line-height: 1.35; }
.prod-card .cat-tag { font-size: 12px; font-weight: 700; color: var(--gold-2); letter-spacing: .5px; }
.prod-card .link { font-size: 13.5px; font-weight: 700; color: var(--gold-2); display: inline-flex; align-items: center; gap: 6px; }
.prod-card .link:hover { text-decoration: underline; }

/* list view */
.list-view .prod-card .flip-inner, .list-view .prod-card.flip-card:hover .flip-inner, .list-view .prod-card.flip-card.flipped .flip-inner { transform: none !important; }
.list-view .prod-card .face-back { display: none; }
.list-view .prod-card .face { position: static; transform: none; }
.list-view .prod-card.flip-card { display: flex; }
.list-view .prod-card .face, .list-view .prod-card .flip-inner { display: flex; flex: 1; align-items: center; gap: 20px; }
.list-view .prod-card .body { flex: 1; flex-direction: row; align-items: center; justify-content: space-between; }

.prod-card, .art-card, .svc-card, .step, .testi { transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.svc-card:hover, .step:hover, .testi:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.btn-gold, .btn-green { position: relative; overflow: hidden; }
.btn-gold::after, .btn-green::after { content: ""; position: absolute; top: 0; left: -80%; width: 50%; height: 100%; background: linear-gradient(100deg, transparent, rgba(255,255,255,.28), transparent); transform: skewX(-20deg); transition: left .5s ease; }
.btn-gold:hover::after, .btn-green:hover::after { left: 130%; }

/* ---------- footer ---------- */
footer { background: #2c1c0b; color: #d9c9a8; padding: 64px 0 30px; margin-top: 40px; }
footer .grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 44px; }
footer .brand img { height: 40px; width: auto; filter: brightness(0) invert(1); opacity: .95; }
footer p { font-size: 14px; margin-top: 16px; max-width: 320px; color: #b7a584; }
footer h5 { color: #fff; font-size: 14px; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 18px; }
footer ul { list-style: none; display: grid; gap: 10px; font-size: 14px; }
footer ul a:hover { color: var(--gold); }
footer .bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 44px; padding-top: 22px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13px; color: #b7a584; }
footer .bottom b { color: var(--gold); }

/* ---------- floating WhatsApp & Admin Lock ---------- */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  display: flex; align-items: center; gap: 12px;
  background: #fff; border-radius: 999px; padding: 7px 7px 7px 20px;
  box-shadow: 0 18px 44px rgba(31,64,55,.28); cursor: pointer;
  transition: transform .2s ease;
}
.wa-float:hover { transform: translateY(-4px); }
.wa-float .txt { font-size: 13.5px; font-weight: 700; color: var(--brown-ink); white-space: nowrap; }
.wa-float .round { width: 52px; height: 52px; border-radius: 50%; background: #25D366; display: grid; place-items: center; }
.wa-float svg { width: 28px; height: 28px; fill: #fff; }

.admin-lock { position: fixed; right: 22px; bottom: 92px; z-index: 85; width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.85); border: 1px solid var(--line); display: grid; place-items: center; color: var(--muted); box-shadow: 0 8px 20px rgba(92,58,21,.14); cursor: pointer; transition: .18s; }
.admin-lock:hover { color: var(--gold-2); transform: translateY(-2px); }
.admin-lock svg { width: 18px; height: 18px; }

/* ---------- reveal + responsive ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

@media (max-width: 1020px) {
  .svc-grid, .prod-grid, .cat-preview, .art-grid, .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .hero-grid, .special-grid, .process-grid, .tentang-hero, .lay-item, .kontak-grid, .w-in { grid-template-columns: 1fr; }
  .hero { padding-top: 130px; }
  .hero-visual { max-width: 520px; }
  .cat-layout { grid-template-columns: 1fr; }
  .cat-side { position: static; }
  footer .grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  nav.main {
    position: fixed; top: 78px; left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 2px;
    background: var(--cream); padding: 16px 6%; border-bottom: 1px solid var(--line);
    display: none; box-shadow: 0 30px 40px rgba(92,58,21,.12);
  }
  nav.main.open { display: flex; }
  nav.main a { padding: 14px; border-radius: 12px; font-size: 16px; }
  nav.main a.active { background: rgba(200,155,60,.14); }
  nav.main a::after { display: none; }
  .hamburger { display: block; }
  .svc-grid, .prod-grid, .cat-preview, .art-grid, .testi-grid { grid-template-columns: 1fr; }
  .grid-view { grid-template-columns: 1fr; }
  .float-card { left: 8px; right: 8px; max-width: none; bottom: -20px; }
  .chip-float { right: 8px; }
  .badge-float { left: 10px; }
  .hero-visual { max-width: 100%; }
  .hero-visual .photo img { height: 340px; }
  section.pad { padding: 64px 0; }
  .workshop .in { padding: 36px 26px; }
  .tentang-cta { padding: 28px; }
  .kontak-card { padding: 26px; }
  .page-top { padding-top: 118px; }
  .art-hero .in { padding: 34px 26px; }
  footer .grid { grid-template-columns: 1fr; }
  .wa-float { right: 14px; bottom: 14px; padding-left: 14px; }
  .admin-lock { right: 14px; bottom: 84px; }
}

/* ---------- admin panel ---------- */
.admin-card { max-width: 460px; margin: 20px auto 0; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow); text-align: center; }
.admin-card .brand { height: 46px; margin: 0 auto 18px; }
.admin-card h2 { font-size: 22px; font-weight: 800; letter-spacing: -.3px; }
.admin-card .gold-bar { width: 44px; height: 4px; border-radius: 3px; background: linear-gradient(90deg, var(--gold), var(--gold-2)); margin: 12px auto 16px; }
.admin-card p { color: var(--muted); font-size: 14.5px; margin-bottom: 18px; }
.admin-card input { width: 100%; padding: 13px 16px; border: 1.5px solid var(--line); border-radius: 12px; font-family: var(--font); font-size: 15px; outline: 0; transition: border .15s; }
.admin-card input:focus { border-color: var(--gold); }
.admin-card .btn { width: 100%; justify-content: center; margin-top: 14px; }
.admin-card .msg { font-size: 13.5px; font-weight: 700; margin-top: 14px; min-height: 20px; }
.admin-card .msg.err { color: #c0392b; }
.admin-card .msg.ok { color: var(--green-dark); }

.admin-bar { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 12px 14px; box-shadow: 0 6px 18px rgba(92,58,21,.05); margin-bottom: 22px; }
.admin-tabs { display: flex; gap: 6px; }
.admin-tabs button { border: 0; background: none; font-family: var(--font); font-size: 14.5px; font-weight: 700; color: var(--muted); padding: 10px 18px; border-radius: 10px; cursor: pointer; transition: .15s; }
.admin-tabs button.on { background: var(--brown); color: #fff; }
.admin-tabs button:hover:not(.on) { background: var(--cream-2); }
.admin-actions { display: flex; gap: 10px; }
.admin-actions .btn { padding: 11px 20px; font-size: 14px; }
#adminStatus { font-size: 13.5px; font-weight: 700; color: var(--green-dark); padding: 8px 4px; min-height: 30px; }
#adminStatus.err { color: #c0392b; }
#adminStatus.busy { color: var(--gold-2); }

.admin-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; margin-bottom: 18px; }
.admin-toolbar .btn { padding: 12px 20px; font-size: 14px; }
.admin-list { display: grid; gap: 10px; }
.admin-item { display: flex; align-items: center; gap: 16px; background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 12px 16px; transition: box-shadow .15s; }
.admin-item:hover { box-shadow: var(--shadow); }
.admin-item .thumb { width: 64px; height: 64px; border-radius: 12px; overflow: hidden; background: var(--cream-2); flex-shrink: 0; }
.admin-item .thumb img { width: 100%; height: 100%; object-fit: cover; }
.admin-item .thumb .ph { width: 100%; height: 100%; display: grid; place-items: center; color: var(--gold-2); font-weight: 800; font-size: 22px; }
.admin-item .info { flex: 1; min-width: 0; }
.admin-item .info b { display: block; font-size: 15px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.admin-item .info span { font-size: 13px; color: var(--muted); }
.admin-item .acts { display: flex; gap: 8px; flex-shrink: 0; }
.admin-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(168px, 1fr)); gap: 14px; }
.admin-card-item { background: #fff; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; display: flex; flex-direction: column; transition: box-shadow .15s, transform .15s; }
.admin-card-item:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.admin-card-item .thumb { aspect-ratio: 4/3; overflow: hidden; background: var(--cream-2); }
.admin-card-item .thumb img { width: 100%; height: 100%; object-fit: cover; }
.admin-card-item .thumb .ph { width: 100%; height: 100%; display: grid; place-items: center; color: var(--gold-2); font-weight: 800; font-size: 30px; background: linear-gradient(160deg, var(--cream-2), var(--line)); }
.admin-card-item .info { padding: 12px 14px 6px; flex: 1; min-width: 0; }
.admin-card-item .info b { display: block; font-size: 14px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.admin-card-item .info span { font-size: 12.5px; color: var(--muted); }
.admin-card-item .acts { display: flex; gap: 8px; padding: 8px 14px 14px; }
.admin-card-item .acts .icon-btn { flex: 1; }
.icon-btn { border: 1.5px solid var(--line); background: #fff; border-radius: 10px; width: 38px; height: 38px; display: grid; place-items: center; cursor: pointer; color: var(--brown-ink); transition: .15s; }
.icon-btn:hover { border-color: var(--gold); color: var(--gold-2); }
.icon-btn.del:hover { border-color: #c0392b; color: #c0392b; }
.admin-empty { text-align: center; color: var(--muted); padding: 40px 0; }

/* modal */
.modal-overlay { position: fixed; inset: 0; background: rgba(43,33,24,.55); backdrop-filter: blur(4px); z-index: 200; display: grid; place-items: center; padding: 20px; overflow-y: auto; }
.modal { background: #fff; border-radius: 22px; max-width: 560px; width: 100%; padding: 30px; box-shadow: var(--shadow-lg); max-height: 92vh; overflow-y: auto; }
.modal h3 { font-size: 20px; font-weight: 800; margin-bottom: 20px; }
.modal .field { margin-bottom: 16px; }
.modal .field label { display: block; font-size: 13px; font-weight: 700; color: var(--brown); margin-bottom: 7px; }
.modal .field input, .modal .field select, .modal .field textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--line); border-radius: 12px; font-family: var(--font); font-size: 14.5px; outline: 0; transition: border .15s;
}
.modal .field textarea { min-height: 90px; resize: vertical; }
.modal .field input:focus, .modal .field select:focus, .modal .field textarea:focus { border-color: var(--gold); }
.img-field { display: grid; grid-template-columns: 96px 1fr; gap: 18px; align-items: start; }
.img-prev { width: 96px; height: 96px; border-radius: 14px; overflow: hidden; background: var(--cream-2); border: 1.5px dashed var(--line); }
.img-prev img { width: 100%; height: 100%; object-fit: cover; }
.img-prev .ph { width: 100%; height: 100%; display: grid; place-items: center; color: var(--gold-2); font-weight: 800; font-size: 34px; }
.img-msg { font-size: 12.5px; font-weight: 600; margin-top: 8px; line-height: 1.4; }
.img-msg.busy { color: var(--gold-2); }
.img-msg.ok { color: var(--green); }
.img-msg.err { color: #C0392B; }
.img-btns { display: flex; flex-direction: column; gap: 8px; align-items: flex-start; }
.img-btns .btn { padding: 10px 16px; font-size: 13px; }
.img-btns .hint { font-size: 12px; color: var(--muted); }
.modal-actions { display: flex; justify-content: flex-end; gap: 10px; margin-top: 22px; }
.modal-actions .btn { padding: 12px 24px; }

.crop-modal { max-width: 720px; }
.aspect-btns { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.aspect-btns button { border: 1.5px solid var(--line); background: #fff; border-radius: 999px; padding: 8px 16px; font-family: var(--font); font-size: 13.5px; font-weight: 700; color: var(--brown-ink); cursor: pointer; transition: .15s; }
.aspect-btns button.on { background: var(--brown); color: #fff; border-color: var(--brown); }
.crop-box { background: #141414; border-radius: 14px; overflow: hidden; max-height: 62vh; }
.crop-box img { max-width: 100%; display: block; }
.crop-modal .hint { font-size: 12.5px; color: var(--muted); margin-top: 10px; }

/* =============================================================
   SNEAK PEAK PREVIEW & TEMPLATE VIEWER
   ============================================================= */
.sneak-float {
  position: fixed; left: 22px; bottom: 22px; z-index: 120;
  display: inline-flex; align-items: center; gap: 8px;
  background: #2C1C0B; color: #FFF;
  border-radius: 999px; padding: 10px 20px;
  font-size: 13.5px; font-weight: 800; letter-spacing: .5px;
  box-shadow: 0 14px 34px rgba(44, 28, 11, .4);
  cursor: pointer; transition: transform .2s ease, background .2s ease;
  border: 1.5px solid rgba(200, 155, 60, .4);
}
.sneak-float:hover { transform: translateY(-3px); background: #3E2912; border-color: var(--gold); }
.sneak-float .dot { width: 8px; height: 8px; border-radius: 50%; background: #25D366; box-shadow: 0 0 8px #25D366; }

/* Sneak Peak Quick View Modal (Produk/Template) */
.sneak-modal-dialog { max-width: 800px; width: 95%; padding: 0; overflow: hidden; border-radius: 28px; }
.sneak-modal-grid { display: grid; grid-template-columns: 1fr 1.15fr; }
.sneak-modal-ph { background: var(--cream-2); position: relative; min-height: 380px; }
.sneak-modal-ph img { width: 100%; height: 100%; object-fit: cover; }
.sneak-modal-content { padding: 34px 30px; display: flex; flex-direction: column; justify-content: space-between; }
.sneak-modal-content h3 { font-size: 24px; font-weight: 800; line-height: 1.25; margin: 10px 0 12px; }
.sneak-modal-content .tag { font-size: 12px; font-weight: 800; color: var(--gold-2); letter-spacing: 1.5px; text-transform: uppercase; }
.sneak-modal-content p.desc { font-size: 14.5px; color: #5f4f3b; line-height: 1.6; margin-bottom: 20px; }
.sneak-specs { background: var(--cream); border-radius: 14px; padding: 14px 18px; margin-bottom: 22px; display: grid; gap: 8px; font-size: 13.5px; }
.sneak-specs .row { display: flex; justify-content: space-between; border-bottom: 1px dashed var(--line); padding-bottom: 6px; }
.sneak-specs .row:last-child { border-bottom: 0; padding-bottom: 0; }
.sneak-specs span { color: var(--muted); }
.sneak-specs b { color: var(--brown-ink); }
.sneak-modal-close { position: absolute; top: 16px; right: 16px; width: 36px; height: 36px; border-radius: 50%; background: rgba(0,0,0,.6); color: #fff; border: 0; cursor: pointer; display: grid; place-items: center; font-size: 18px; z-index: 10; }

/* Sneak Peak Device Frame Drawer */
.sneak-drawer {
  position: fixed; inset: 0; z-index: 300; background: #1B1814;
  display: flex; flex-direction: column; transition: opacity .3s ease;
}
.sneak-drawer-bar {
  height: 64px; background: #2A241E; border-bottom: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: space-between; padding: 0 24px; color: #FFF;
}
.sneak-drawer-bar .title { font-weight: 800; font-size: 16px; display: flex; align-items: center; gap: 10px; }
.sneak-drawer-bar .title span { color: var(--gold); }
.sneak-dev-btns { display: flex; gap: 8px; background: rgba(0,0,0,.3); padding: 4px; border-radius: 12px; }
.sneak-dev-btns button {
  background: none; border: 0; color: #B3A492; padding: 8px 16px; border-radius: 8px;
  font-family: var(--font); font-size: 13px; font-weight: 700; cursor: pointer; transition: .15s;
}
.sneak-dev-btns button.on { background: var(--gold); color: #fff; }
.sneak-drawer-close { background: rgba(255,255,255,.1); border: 0; color: #fff; width: 36px; height: 36px; border-radius: 50%; cursor: pointer; font-size: 18px; }
.sneak-drawer-body { flex: 1; display: flex; align-items: center; justify-content: center; padding: 20px; overflow: hidden; background: #12100E; }
.sneak-frame-wrap {
  background: #000; border-radius: 18px; overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.7); transition: width .3s ease, height .3s ease;
  width: 100%; height: 100%; max-width: 100%; display: flex; flex-direction: column;
}
.sneak-frame-wrap iframe { width: 100%; height: 100%; border: 0; background: #fff; }

@media (max-width: 800px) {
  .sneak-modal-grid { grid-template-columns: 1fr; }
  .sneak-modal-ph { min-height: 240px; }
  .sneak-float { left: 14px; bottom: 14px; padding: 8px 14px; font-size: 12px; }
}
