/* ====================================================================
   KIOSNOOV — Luxury Gold Theme
   Display: Space Grotesk · Body: Plus Jakarta Sans
   ==================================================================== */

:root {
  /* gold scale (dari warna logo) */
  --gold:        #f5b301;
  --gold-bright: #ffc93c;
  --gold-deep:   #c8890a;
  --gold-soft:   #ffe08a;
  --brown:       #2a1d0e;

  /* warm-black luxury surfaces */
  --bg:        #0b0a07;
  --surface:   #16130d;
  --surface-2: #1f1b12;
  --surface-3: #2a2417;
  --ink:       #f7f3e8;
  --muted:     #a89e84;
  --line:      rgba(245,179,1,.14);
  --line-soft: rgba(247,243,232,.07);

  /* aksen kategori */
  --c-mlbb:    #e0414c;
  --c-ff:      #ff8a1e;
  --c-genshin: #3bb6ff;
  --c-roblox:  #1fbf6b;
  --c-pubg:    #a855f7;
  --c-wa:      #25d366;

  --radius:   18px;
  --radius-l: 26px;
  --shadow:   0 24px 60px -28px rgba(0,0,0,.85);
  --gold-grad: linear-gradient(135deg,#ffe08a 0%,#f5b301 42%,#c8890a 100%);

  --maxw: 1180px;
}

/* light variant */
[data-theme="light"] {
  --bg:        #f6f1e4;
  --surface:   #fffaf0;
  --surface-2: #fdf3dc;
  --surface-3: #f7e9c8;
  --ink:       #241c10;
  --muted:     #7a6c4f;
  --line:      rgba(200,137,10,.22);
  --line-soft: rgba(36,28,16,.08);
  --shadow:    0 24px 50px -30px rgba(120,90,10,.4);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ambient halftone + glow background */
body::before {
  content: '';
  position: fixed; inset: 0;
  background:
    radial-gradient(60% 50% at 50% -8%, rgba(245,179,1,.16), transparent 70%),
    radial-gradient(40% 40% at 100% 0%, rgba(245,179,1,.07), transparent 60%);
  pointer-events: none; z-index: 0;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 18px; position: relative; z-index: 1; }

h1,h2,h3,h4,.display { font-family: 'Space Grotesk', sans-serif; letter-spacing: -.01em; }

/* gold foil text */
.foil {
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px; border-radius: 999px; font-weight: 700;
  font-size: 14px; border: 1px solid transparent; transition: .22s ease;
  font-family: 'Space Grotesk', sans-serif;
}
.btn-gold {
  background: var(--gold-grad); color: #1a1305;
  box-shadow: 0 10px 28px -12px rgba(245,179,1,.7);
}
.btn-gold:hover { transform: translateY(-2px); filter: brightness(1.06); }
.btn-ghost { border-color: var(--line); color: var(--ink); background: rgba(255,255,255,.02); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-bright); }
.btn-wa { background: var(--c-wa); color: #04240f; box-shadow: 0 10px 28px -14px rgba(37,211,102,.7); }
.btn-wa:hover { transform: translateY(-2px); filter: brightness(1.05); }
.btn-block { width: 100%; justify-content: center; }

/* ====================================================================
   NAVBAR (floating pill, glass, gold border)
   ==================================================================== */
.nav-wrap { position: fixed; top: 14px; left: 0; right: 0; z-index: 50; display: flex; justify-content: center; padding: 0 14px; }
.navbar {
  width: 100%; max-width: var(--maxw);
  display: flex; align-items: center; gap: 14px;
  padding: 9px 9px 9px 18px;
  background: rgba(22,19,13,.72);
  border: 1px solid var(--line);
  border-radius: 999px;
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  box-shadow: 0 18px 50px -26px rgba(0,0,0,.9), inset 0 1px 0 rgba(255,224,138,.08);
}
.nav-brand { display: flex; align-items: center; gap: 10px; font-family: 'Space Grotesk'; font-weight: 700; font-size: 17px; }
.nav-brand img { width: 32px; height: 32px; border-radius: 9px; box-shadow: 0 0 0 1px var(--line); }
.nav-brand b { color: var(--gold-bright); }
.nav-links { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav-links a {
  padding: 9px 15px; border-radius: 999px; font-size: 13.5px; font-weight: 600; color: var(--muted);
  display: inline-flex; align-items: center; gap: 7px; transition: .18s;
}
.nav-links a:hover { color: var(--ink); background: rgba(245,179,1,.08); }
.nav-links a.active { color: #1a1305; background: var(--gold-grad); }
.nav-actions { display: flex; align-items: center; gap: 8px; margin-left: 6px; }
.icon-btn {
  width: 40px; height: 40px; border-radius: 999px; display: grid; place-items: center;
  background: rgba(255,255,255,.04); border: 1px solid var(--line); color: var(--ink); font-size: 16px;
}
.icon-btn:hover { color: var(--gold-bright); border-color: var(--gold); }
.nav-toggle { display: none; }

/* mobile menu */
.mobile-menu {
  position: fixed; inset: 0 0 0 auto; width: min(82vw,320px); z-index: 60;
  background: var(--surface); border-left: 1px solid var(--line);
  transform: translateX(100%); transition: .3s cubic-bezier(.4,0,.2,1);
  padding: 78px 22px 28px; display: flex; flex-direction: column; gap: 6px;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a { padding: 14px 16px; border-radius: 14px; font-weight: 600; color: var(--muted); display: flex; align-items: center; gap: 12px; }
.mobile-menu a:hover, .mobile-menu a.active { background: rgba(245,179,1,.1); color: var(--gold-bright); }
.overlay { position: fixed; inset: 0; background: rgba(0,0,0,.6); z-index: 55; opacity: 0; visibility: hidden; transition: .25s; }
.overlay.show { opacity: 1; visibility: visible; }

/* ====================================================================
   HERO
   ==================================================================== */
.hero { padding: 132px 0 30px; text-align: center; position: relative; }
.hero-inner { position: relative; display: flex; flex-direction: column; align-items: center; }
.hero-chars { position: absolute; top: 6px; left: 0; right: 0; display: flex; justify-content: space-between; pointer-events: none; }
.hero-char { height: 230px; width: auto; filter: drop-shadow(0 24px 30px rgba(0,0,0,.55)); animation: floaty 5s ease-in-out infinite; }
.hero-char.right { animation-delay: -2.5s; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 700; letter-spacing: .22em;
  text-transform: uppercase; color: var(--gold-bright); padding: 7px 16px; border: 1px solid var(--line);
  border-radius: 999px; background: rgba(245,179,1,.06); margin-bottom: 22px;
}
.hero h1 {
  font-size: clamp(44px, 10vw, 104px); line-height: .92; font-weight: 700;
  position: relative; display: inline-block;
}
.hero h1 .foil { position: relative; }
.hero h1 .foil::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,.75) 48%, transparent 62%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  background-size: 250% 100%; animation: sheen 4.5s ease-in-out infinite; mix-blend-mode: screen;
}
@keyframes sheen { 0%,55% { background-position: 180% 0; } 100% { background-position: -120% 0; } }
.hero .tagline { font-family: 'Space Grotesk'; font-style: italic; font-size: clamp(16px,3vw,26px); color: var(--muted); margin-top: 12px; }
.hero .tagline b { color: var(--gold-bright); font-style: normal; }
.hero-cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 26px; }

/* ---------- flash sale ribbon ---------- */
.flash {
  margin-top: 34px; position: relative; border-radius: var(--radius-l);
  padding: 24px 30px; text-align: center;
  background: linear-gradient(180deg, rgba(245,179,1,.16), rgba(245,179,1,.04));
  border: 1.5px solid var(--gold);
  box-shadow: 0 0 0 5px rgba(245,179,1,.05), inset 0 1px 0 rgba(255,224,138,.2);
  overflow: hidden;
}
.flash::before, .flash::after {
  content: '⚡'; position: absolute; top: 50%; transform: translateY(-50%); font-size: 30px; color: var(--gold);
  opacity: .55; filter: drop-shadow(0 0 8px var(--gold));
}
.flash::before { left: 22px; } .flash::after { right: 22px; }
.flash h3 { font-size: clamp(22px,5vw,34px); letter-spacing: .04em; }
.flash h3 b { color: var(--gold-bright); }
.flash .timer {
  display: inline-flex; align-items: center; gap: 7px; margin-top: 10px; padding: 6px 16px; border-radius: 999px;
  background: rgba(245,179,1,.18); color: var(--gold-soft); font-weight: 700; font-size: 13px; border: 1px solid var(--line);
}

/* ====================================================================
   SECTION HEADERS
   ==================================================================== */
section { padding: 46px 0; position: relative; }
.sec-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; margin-bottom: 26px; flex-wrap: wrap; }
.sec-head .eyebrow { font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-bright); font-weight: 700; }
.sec-head h2 { font-size: clamp(26px,5vw,40px); line-height: 1.05; margin-top: 6px; }
.sec-head p { color: var(--muted); margin-top: 6px; max-width: 520px; font-size: 14.5px; }
.sec-link { color: var(--gold-bright); font-weight: 700; font-size: 14px; display: inline-flex; gap: 6px; align-items: center; }
.sec-link:hover { gap: 10px; }

/* ====================================================================
   QUICK ACTION GRID (gaya Aoshi — 2 kolom di mobile)
   ==================================================================== */
.qgrid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.qcard {
  position: relative; border-radius: var(--radius); padding: 22px 20px; min-height: 132px;
  display: flex; flex-direction: column; justify-content: space-between; overflow: hidden;
  background: var(--surface); border: 1px solid var(--line-soft); transition: .25s; isolation: isolate;
}
.qcard::after {
  content: ''; position: absolute; inset: 0; border-radius: inherit; padding: 1px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent) 70%, transparent), transparent 60%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none;
}
.qcard::before {
  content: ''; position: absolute; right: -30px; bottom: -30px; width: 150px; height: 150px; border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent) 28%, transparent), transparent 70%); z-index: -1;
}
.qcard:hover { transform: translateY(-4px); border-color: color-mix(in srgb, var(--accent) 50%, transparent); }
.qcard .qtitle { font-family: 'Space Grotesk'; font-weight: 700; font-size: clamp(18px,4.4vw,26px); line-height: 1; }
.qcard .qsub { color: var(--muted); font-size: 12.5px; font-weight: 600; margin-top: 4px; }
.qcard .qsub b { color: color-mix(in srgb, var(--accent) 80%, var(--ink)); }
.qcard .qicon { position: absolute; right: 16px; bottom: 14px; font-size: 30px; color: var(--accent); filter: drop-shadow(0 0 10px color-mix(in srgb,var(--accent) 50%,transparent)); }
.qcard .qbadge {
  position: absolute; top: -1px; right: 14px; transform: translateY(-50%);
  background: var(--gold-grad); color: #1a1305; font-size: 10.5px; font-weight: 800; padding: 4px 10px; border-radius: 999px;
  font-family: 'Space Grotesk'; box-shadow: 0 6px 16px -6px rgba(245,179,1,.7);
}

/* ====================================================================
   WA CHANNEL BUTTONS (4 tombol saluran)
   ==================================================================== */
.channel-band { text-align: center; }
.channel-band h2 { font-size: clamp(22px,5vw,34px); margin-bottom: 4px; }
.channel-band h2 .foil { font-style: italic; }
.channel-band p { color: var(--muted); margin-bottom: 24px; font-size: 14px; }
.cgrid { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; }
.cbtn {
  position: relative; border-radius: var(--radius); padding: 20px; text-align: left; overflow: hidden;
  background: var(--surface); border: 1px solid var(--line-soft); display: flex; align-items: center; justify-content: space-between; gap: 12px;
  transition: .25s; isolation: isolate;
}
.cbtn::before { content: ''; position: absolute; inset: 0; background: linear-gradient(120deg, color-mix(in srgb,var(--accent) 16%,transparent), transparent 65%); z-index: -1; }
.cbtn:hover { transform: translateY(-4px); border-color: color-mix(in srgb,var(--accent) 55%,transparent); }
.cbtn .ctxt { font-family: 'Space Grotesk'; font-weight: 700; font-size: clamp(16px,3.6vw,21px); line-height: 1.05; }
.cbtn .ctxt span { color: var(--accent); }
.cbtn .cicon { font-size: 26px; color: var(--accent); flex-shrink: 0; filter: drop-shadow(0 0 8px color-mix(in srgb,var(--accent) 50%,transparent)); }

/* ====================================================================
   PRODUCT CARDS (gambar 4:5)
   ==================================================================== */
.pgrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px,1fr)); gap: 18px; }
.pcard {
  background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--radius);
  overflow: hidden; transition: .25s; display: flex; flex-direction: column;
}
.pcard:hover { transform: translateY(-5px); border-color: var(--line); box-shadow: var(--shadow); }
.pthumb { position: relative; aspect-ratio: 4/5; overflow: hidden; background: var(--surface-2); }
.pthumb img { width: 100%; height: 100%; object-fit: cover; transition: .4s; }
.pcard:hover .pthumb img { transform: scale(1.05); }
.pthumb .ptag {
  position: absolute; top: 10px; left: 10px; padding: 5px 11px; border-radius: 999px; font-size: 11px; font-weight: 700;
  background: rgba(11,10,7,.7); color: var(--gold-soft); backdrop-filter: blur(6px); border: 1px solid var(--line);
}
.pthumb .psold {
  position: absolute; inset: 0; background: rgba(11,10,7,.66); display: grid; place-items: center;
  font-family: 'Space Grotesk'; font-weight: 700; letter-spacing: .2em; color: var(--c-mlbb); font-size: 18px; backdrop-filter: blur(2px);
}
.pbody { padding: 14px 15px 16px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.pbody .pcat { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.pbody h3 { font-size: 15.5px; line-height: 1.25; font-family: 'Plus Jakarta Sans'; font-weight: 700; }
.pbody .pprice { font-family: 'Space Grotesk'; font-weight: 700; font-size: 19px; color: var(--gold-bright); margin-top: auto; }
.pbody .pprice small { display: block; font-size: 11px; color: var(--muted); font-weight: 600; }

/* category chips */
.cat-tabs { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 26px; }
.cat-tab {
  padding: 9px 18px; border-radius: 999px; border: 1px solid var(--line); background: rgba(255,255,255,.02);
  font-weight: 700; font-size: 13.5px; color: var(--muted); font-family: 'Space Grotesk'; transition: .2s;
}
.cat-tab:hover { color: var(--ink); }
.cat-tab.active { background: var(--gold-grad); color: #1a1305; border-color: transparent; }

/* ====================================================================
   PRODUCT DETAIL
   ==================================================================== */
.pd { display: grid; grid-template-columns: minmax(0, 440px) 1fr; gap: 38px; align-items: start; }
.pd-gallery .pd-main { aspect-ratio: 4/5; border-radius: var(--radius-l); overflow: hidden; border: 1px solid var(--line); background: var(--surface-2); }
.pd-main img { width: 100%; height: 100%; object-fit: cover; }
.pd-thumbs { display: grid; grid-template-columns: repeat(5,1fr); gap: 10px; margin-top: 12px; }
.pd-thumbs button { aspect-ratio: 1; border-radius: 12px; overflow: hidden; border: 1px solid var(--line-soft); background: var(--surface-2); padding: 0; }
.pd-thumbs button.active { border-color: var(--gold); box-shadow: 0 0 0 2px rgba(245,179,1,.25); }
.pd-thumbs img { width: 100%; height: 100%; object-fit: cover; }
.pd-info .pd-cat { color: var(--gold-bright); font-weight: 700; font-size: 12px; letter-spacing: .16em; text-transform: uppercase; }
.pd-info h1 { font-size: clamp(26px,4vw,38px); margin: 8px 0 14px; }
.pd-price { font-family: 'Space Grotesk'; font-weight: 700; font-size: 34px; color: var(--gold-bright); }
.pd-desc { color: var(--muted); margin: 18px 0; white-space: pre-line; }
.pd-meta { display: flex; gap: 10px; flex-wrap: wrap; margin: 16px 0; }
.pd-meta span { padding: 7px 14px; border-radius: 12px; background: var(--surface-2); border: 1px solid var(--line-soft); font-size: 13px; font-weight: 600; }

/* ====================================================================
   FORMS
   ==================================================================== */
.card { background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--radius-l); padding: 26px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 13px; font-weight: 700; margin-bottom: 7px; color: var(--ink); }
.field input, .field textarea, .field select {
  width: 100%; padding: 13px 15px; border-radius: 12px; background: var(--surface-2);
  border: 1px solid var(--line); color: var(--ink); font-family: inherit; font-size: 14.5px; transition: .18s;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(245,179,1,.14); }
.field textarea { resize: vertical; min-height: 110px; }
.field .hint { font-size: 12px; color: var(--muted); margin-top: 6px; }

/* ====================================================================
   BLOG
   ==================================================================== */
.blog-card { background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--radius); overflow: hidden; transition: .25s; display: flex; flex-direction: column; }
.blog-card:hover { transform: translateY(-5px); border-color: var(--line); box-shadow: var(--shadow); }
.blog-card .bcover { aspect-ratio: 16/9; overflow: hidden; background: var(--surface-2); }
.blog-card .bcover img { width: 100%; height: 100%; object-fit: cover; transition: .4s; }
.blog-card:hover .bcover img { transform: scale(1.05); }
.blog-card .bbody { padding: 18px; display: flex; flex-direction: column; gap: 9px; flex: 1; }
.blog-card .bmeta { font-size: 12px; color: var(--muted); font-weight: 600; }
.blog-card h3 { font-size: 18px; line-height: 1.3; }
.blog-card p { font-size: 13.5px; color: var(--muted); }
.blog-card .bread { margin-top: auto; color: var(--gold-bright); font-weight: 700; font-size: 13px; }

.article { max-width: 760px; margin: 0 auto; }
.article .acover { aspect-ratio: 16/8; border-radius: var(--radius-l); overflow: hidden; margin: 22px 0; border: 1px solid var(--line); }
.article .acover img { width: 100%; height: 100%; object-fit: cover; }
.article-body { font-size: 16px; line-height: 1.8; color: #e9e2d0; white-space: pre-line; }
.article-body h2, .article-body h3 { color: var(--gold-bright); margin: 26px 0 10px; }

/* ====================================================================
   FOOTER
   ==================================================================== */
footer { border-top: 1px solid var(--line); padding: 48px 0 32px; margin-top: 30px; background: linear-gradient(180deg, transparent, rgba(245,179,1,.03)); }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 32px; }
.foot-brand { display: flex; align-items: center; gap: 12px; font-family: 'Space Grotesk'; font-weight: 700; font-size: 22px; }
.foot-brand img { width: 44px; height: 44px; border-radius: 12px; }
.foot-col h4 { font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-bright); margin-bottom: 14px; }
.foot-col a { display: block; color: var(--muted); padding: 5px 0; font-size: 14px; }
.foot-col a:hover { color: var(--gold-bright); }
.foot-bottom { border-top: 1px solid var(--line-soft); margin-top: 30px; padding-top: 22px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; color: var(--muted); font-size: 13px; }

/* ---------- floating WA bubble ---------- */
.wa-float { position: fixed; right: 18px; bottom: 18px; z-index: 45; width: 56px; height: 56px; border-radius: 50%;
  background: var(--c-wa); display: grid; place-items: center; color: #04240f; font-size: 26px;
  box-shadow: 0 14px 34px -10px rgba(37,211,102,.7); animation: pulse 2.4s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(37,211,102,.5)} 70%{box-shadow:0 0 0 16px rgba(37,211,102,0)} 100%{box-shadow:0 0 0 0 rgba(37,211,102,0)} }

/* ---------- alerts ---------- */
.alert { padding: 14px 18px; border-radius: 14px; font-size: 14px; font-weight: 600; margin-bottom: 18px; border: 1px solid; }
.alert-success { background: rgba(31,191,107,.12); border-color: rgba(31,191,107,.4); color: #7ce6b0; }
.alert-error { background: rgba(224,65,76,.12); border-color: rgba(224,65,76,.4); color: #ff9aa2; }
.alert-info { background: rgba(245,179,1,.1); border-color: var(--line); color: var(--gold-soft); }

/* ---------- preloader ---------- */
#preloader { position: fixed; inset: 0; background: var(--bg); z-index: 999; display: grid; place-items: center; transition: opacity .5s, visibility .5s; }
#preloader.hide { opacity: 0; visibility: hidden; }
.pl-logo { width: 72px; height: 72px; border-radius: 18px; animation: plspin 1.3s ease-in-out infinite; box-shadow: 0 0 40px -6px var(--gold); }
@keyframes plspin { 0%,100%{transform:scale(1) rotate(0)} 50%{transform:scale(.86) rotate(8deg)} }

/* ---------- reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ====================================================================
   RESPONSIVE
   ==================================================================== */
@media (max-width: 980px) {
  .pd { grid-template-columns: 1fr; }
  .pd-gallery { max-width: 420px; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .foot-brand { grid-column: 1 / -1; }
}
@media (max-width: 760px) {
  .nav-links, .nav-actions .icon-btn.search { display: none; }
  .nav-toggle { display: grid; }
  .hero { padding: 116px 0 18px; }
  .hero-chars { position: static; justify-content: center; gap: 0; margin-bottom: -28px; }
  .hero-char { height: 116px; }
  .hero-char.left { margin-right: -10px; }
  .hero-char.right { margin-left: -10px; }
  .qgrid { gap: 11px; }
  .qcard { min-height: 116px; padding: 16px 15px; }
  .cgrid { gap: 11px; }
  .pgrid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .foot-grid { grid-template-columns: 1fr; }
  .pd-thumbs { grid-template-columns: repeat(5,1fr); }
}
@media (max-width: 420px) {
  .pthumb .ptag { font-size: 10px; }
  .pbody h3 { font-size: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------------------------------------------------------------- */
/* Halaman umum (kontak, dll)                                       */
/* ---------------------------------------------------------------- */
.page-head { text-align: center; padding: 48px 0 28px; }
.page-title { font-family: 'Space Grotesk', sans-serif; font-size: clamp(2rem, 5vw, 3rem); font-weight: 700; letter-spacing: -0.02em; margin: 0 0 10px; }
.page-sub { color: var(--muted); max-width: 620px; margin: 0 auto; line-height: 1.6; }
.btn-sm { padding: 8px 16px; font-size: .85rem; }

.kontak-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 22px; align-items: start; padding-bottom: 60px; }
.info-card { display: flex; flex-direction: column; gap: 22px; }
.info-row { display: flex; gap: 14px; align-items: flex-start; }
.info-ico { --accent: var(--gold); flex: 0 0 44px; height: 44px; display: grid; place-items: center; font-size: 1.2rem;
  border-radius: 12px; background: color-mix(in srgb, var(--accent) 14%, transparent); border: 1px solid color-mix(in srgb, var(--accent) 35%, transparent); }
.info-row h4 { margin: 0 0 4px; font-size: 1rem; }
.info-row p { margin: 0 0 8px; color: var(--muted); font-size: .9rem; line-height: 1.5; }
.info-socials { display: flex; gap: 14px; padding-top: 6px; border-top: 1px solid var(--line); }
.info-socials a { color: var(--gold); font-weight: 600; font-size: .9rem; }

@media (max-width: 760px) {
  .kontak-grid { grid-template-columns: 1fr; }
}

/* ====================================================================
   STATS / TRUST BAND — ditambahkan untuk menampilkan angka kepercayaan
   (Akun Terjual, Garansi Aman, User Member) di atas form Hubungi Kami
   ==================================================================== */
.stats-band { padding: 18px 0 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  padding: 30px 20px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.stats-grid::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(60% 80% at 50% 0%, rgba(245,179,1,.08), transparent 70%);
  pointer-events: none;
}
.stat-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 6px 8px;
  position: relative;
}
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -8px; top: 8px; bottom: 8px;
  width: 1px;
  background: var(--line);
}
.stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(22px, 5vw, 34px);
  line-height: 1;
}
.stat-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}

@media (max-width: 600px) {
  .stats-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; padding: 22px 12px; }
  .stat-num { font-size: clamp(18px, 6vw, 26px); }
  .stat-label { font-size: 9.5px; letter-spacing: .06em; }
  .stat-item:not(:last-child)::after { right: -4px; }
}


/* ====================================================================
   BLOG GRID — terpisah dari .pgrid (produk) agar bisa diatur sendiri.
   Desktop: tetap multi-kolom. Mobile: 1 kolom penuh, lebih lega.
   ==================================================================== */
.bgrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px,1fr)); gap: 18px; }

@media (max-width: 760px) {
  .bgrid { grid-template-columns: 1fr; gap: 16px; }
  .blog-card .bcover { aspect-ratio: 16/10; }
  .blog-card h3 { font-size: 19px; }
}

/* ---------- "Baca Blog Lainnya" link di bawah grid blog ---------- */
.blog-more { display: flex; justify-content: center; margin-top: 22px; }
.blog-more .btn { padding: 13px 28px; }

/* ====================================================================
   NAVBAR MOBILE FIX — dorong grup tombol kanan (Order + hamburger)
   penuh ke ujung kanan navbar, mengisi ruang kosong yang muncul
   setelah tombol ganti-tema dihapus.
   ==================================================================== */
@media (max-width: 760px) {
  .nav-actions { margin-left: auto; gap: 10px; }
}
