/* ============================================================
   Huanglie Motor — Storefront v3 (TERANG & MEGAH, banyak efek).
   Inspirasi struktur & tipografi: tema parts/tools (home-6) — implementasi orisinal.
   Palet cerah, hero megah beranimasi, marquee, countdown, counter, hover hidup.
   ============================================================ */
:root {
  --brand: #4a4ec8; --brand-600: #3d41b6; --brand-700: #3136a0; --brand-800: #262a7d;
  --brand-50: #eef0ff; --brand-100: #e1e4ff; --brand-200: #c6ccff; --brand-300: #a6adff;
  --accent: #ffb400; --accent-600: #f59e0b; --accent-700: #d97706; --accent-50: #fff6e0; --accent-100: #ffedc2;
  --hot: #ff4d57; --hot-50: #ffe9ea;
  --ink: #15172a; --ink-2: #232a47;
  --text: #1b1f33; --text-2: #454c64; --muted: #6e7488; --muted-2: #9aa0b4;
  --line: #eceef6; --line-2: #f3f4fa; --bg: #f7f8fd; --bg-2: #eef0f9; --surface: #fff; --surface-2: #fafbff;
  --ok: #128a52; --ok-50: #e6f6ee; --danger: #d6453d; --danger-50: #fdeceb; --sale: #ff4d57;
  --font: 'Plus Jakarta Sans', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --display: 'Archivo', 'Plus Jakarta Sans', system-ui, sans-serif;
  --r-sm: 10px; --r-md: 14px; --r-lg: 20px; --r-xl: 26px; --r-2xl: 34px; --r-pill: 999px;
  --sh-1: 0 1px 2px rgba(26,29,52,.04), 0 1px 3px rgba(26,29,52,.06);
  --sh-2: 0 8px 20px rgba(26,29,52,.08); --sh-3: 0 18px 44px rgba(26,29,52,.12);
  --sh-4: 0 32px 80px rgba(26,29,52,.20); --sh-brand: 0 14px 32px rgba(74,78,200,.34);
  --sh-accent: 0 14px 32px rgba(255,180,0,.40);
  --ease: cubic-bezier(.4,0,.2,1); --spring: cubic-bezier(.34,1.56,.64,1); --wrap: 1280px; --tab-h: 64px; --hdr-h: 84px;
}

*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: var(--font); font-size: 15px; line-height: 1.6; color: var(--text); background: var(--bg); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img,svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button,input,select,textarea { font: inherit; color: inherit; }
:focus-visible { outline: 2px solid var(--brand); outline-offset: 2px; }
h1,h2,h3 { font-family: var(--display); letter-spacing: -.02em; }
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 22px; }
.pad { padding-block: 34px 76px; }
.center { text-align: center; }
.muted { color: var(--muted); }
.h1 { font-family: var(--display); margin: 0 0 26px; font-size: 34px; font-weight: 800; }
.ico { width: 20px; height: 20px; flex: none; }
.d-only { display: flex; }
.m-only { display: none; }
.sk { background: linear-gradient(100deg,var(--bg-2) 30%,var(--surface-2) 50%,var(--bg-2) 70%); background-size: 200% 100%; animation: sk 1.2s infinite linear; border-radius: var(--r-sm); }
@keyframes sk { to { background-position: -200% 0; } }
.boot { min-height: 62vh; display: grid; place-items: center; }
.ring { width: 38px; height: 38px; border-radius: 50%; border: 3px solid var(--brand-100); border-top-color: var(--brand); animation: spin .8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* keyframes efek */
@keyframes riseIn { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }
@keyframes floatA { 0%,100% { transform: translateY(0) rotate(-4deg); } 50% { transform: translateY(-16px) rotate(-4deg); } }
@keyframes floatB { 0%,100% { transform: translateY(0) rotate(5deg); } 50% { transform: translateY(-22px) rotate(5deg); } }
@keyframes floatC { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes blob { 0%,100% { transform: translate(0,0) scale(1); } 33% { transform: translate(20px,-18px) scale(1.08); } 66% { transform: translate(-16px,14px) scale(.95); } }
@keyframes drawMark { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes shine { from { left: -60%; } to { left: 140%; } }
@keyframes pop { 0% { transform: scale(.6); opacity: 0; } 100% { transform: scale(1); opacity: 1; } }

/* reveal */
.reveal-on .reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal-on .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *,*::before,*::after { animation: none !important; transition-duration: .001ms !important; } .reveal-on .reveal { opacity: 1 !important; transform: none !important; } }

/* tombol */
.btn { position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 9px; height: 48px; padding: 0 24px; border-radius: var(--r-pill); border: 1px solid var(--line); background: var(--surface); color: var(--text); font-weight: 700; cursor: pointer; transition: transform .16s var(--ease), box-shadow .25s, background .2s, color .2s; white-space: nowrap; overflow: hidden; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn .ico { width: 18px; height: 18px; }
.btn-lg { height: 56px; padding: 0 30px; font-size: 16px; }
.btn-pri { background: var(--brand); color: #fff; border-color: transparent; box-shadow: var(--sh-brand); }
.btn-pri:hover { background: var(--brand-600); }
.btn-accent { background: var(--accent); color: #1a1300; border-color: transparent; box-shadow: var(--sh-accent); font-weight: 800; }
.btn-accent:hover { background: var(--accent-600); }
.btn-dark { background: var(--ink); color: #fff; border-color: transparent; }
.btn-ghost { background: var(--surface); color: var(--brand); border-color: var(--brand-200); }
.btn-ghost:hover { background: var(--brand-50); }
.btn-block { width: 100%; }
/* kilau saat hover */
.btn-pri::after, .btn-accent::after { content: ''; position: absolute; top: 0; bottom: 0; left: -60%; width: 40%; background: linear-gradient(100deg, transparent, rgba(255,255,255,.5), transparent); transform: skewX(-20deg); }
.btn-pri:hover::after, .btn-accent:hover::after { animation: shine .7s var(--ease); }
.link { display: inline-flex; align-items: center; gap: 4px; color: var(--brand); font-weight: 700; background: none; border: 0; cursor: pointer; }
.pill { display: inline-flex; align-items: center; gap: 6px; background: var(--accent); color: #1a1300; font-size: 12px; font-weight: 800; letter-spacing: .03em; padding: 5px 13px; border-radius: var(--r-pill); text-transform: uppercase; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; font-family: var(--display); font-size: 13px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: var(--brand); margin-bottom: 16px; }
.eyebrow::before { content: ''; width: 26px; height: 3px; border-radius: 2px; background: var(--accent); }
.err { color: var(--danger); font-size: 13.5px; text-align: center; min-height: 18px; margin-top: 10px; }

/* topbar marquee */
.topbar { background: var(--ink); color: #fff; font-size: 13px; overflow: hidden; }
.topbar .mqx { display: flex; width: max-content; animation: marquee 26s linear infinite; }
.topbar .mqx > span { display: inline-flex; align-items: center; gap: 8px; padding: 9px 26px; white-space: nowrap; opacity: .92; }
.topbar .mqx .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--accent); }

/* header */
#hdr { position: sticky; top: 0; z-index: 50; background: var(--surface); border-bottom: 1px solid var(--line); transition: box-shadow .25s; }
body.scrolled #hdr { box-shadow: var(--sh-2); }
.hdr-in { display: flex; align-items: center; gap: 26px; height: var(--hdr-h); transition: height .25s var(--ease); }
body.scrolled .hdr-in { height: 70px; }
.logo { display: flex; align-items: center; font-family: var(--display); font-size: 28px; font-weight: 900; color: var(--brand); letter-spacing: -.03em; }
.logo img { height: 44px; width: auto; }
.search { position: relative; flex: 1; max-width: 660px; display: flex; align-items: center; background: var(--bg); border: 2px solid var(--line); border-radius: var(--r-pill); padding-left: 20px; transition: border-color .2s, box-shadow .2s, background .2s; }
.search:focus-within { border-color: var(--brand); box-shadow: 0 0 0 4px var(--brand-50); background: var(--surface); }
.search > span { color: var(--brand); display: grid; place-items: center; }
.search input { flex: 1; border: 0; background: transparent; height: 50px; outline: none; padding: 0 16px; font-size: 15px; }
.ac { position: absolute; top: calc(100% + 10px); left: 0; right: 0; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md); box-shadow: var(--sh-3); overflow: hidden; display: none; z-index: 5; }
.ac.on { display: block; }
.ac a { display: block; padding: 12px 20px; border-bottom: 1px solid var(--line-2); font-size: 14px; }
.ac a:last-child { border-bottom: 0; } .ac a:hover { background: var(--brand-50); color: var(--brand); }
.hdr-act { display: flex; align-items: center; gap: 12px; margin-left: auto; }
.ibtn { position: relative; width: 48px; height: 48px; display: grid; place-items: center; border-radius: var(--r-md); border: 1px solid var(--line); background: var(--surface); color: var(--text); cursor: pointer; transition: background .2s, color .2s, border-color .2s, transform .14s; }
.ibtn:hover { background: var(--brand-50); color: var(--brand); border-color: var(--brand-100); transform: translateY(-2px); }
.ibtn.lg { width: 54px; height: 54px; }
.badge { position: absolute; top: -5px; right: -5px; min-width: 19px; height: 19px; padding: 0 5px; border-radius: var(--r-pill); background: var(--hot); color: #fff; font-size: 11px; font-weight: 800; display: none; align-items: center; justify-content: center; box-shadow: 0 2px 6px rgba(255,77,87,.5); }
.badge.on { display: flex; animation: pop .3s var(--spring); }

/* catnav (DESKTOP saja) */
#catnav { background: var(--surface); border-bottom: 1px solid var(--line); position: sticky; top: var(--hdr-h); z-index: 40; transition: top .25s var(--ease); }
body.scrolled #catnav { top: 70px; }
.catnav-in { display: flex; align-items: center; gap: 8px; height: 56px; }
.allcat { display: inline-flex; align-items: center; gap: 9px; height: 42px; padding: 0 20px; border-radius: var(--r-sm); background: var(--brand); color: #fff; font-weight: 700; box-shadow: var(--sh-brand); }
.allcat .ico { width: 18px; height: 18px; }
.menu { display: flex; gap: 2px; }
.menu a { padding: 0 16px; height: 42px; display: inline-flex; align-items: center; border-radius: var(--r-sm); color: var(--text-2); font-weight: 600; transition: background .2s, color .2s; }
.menu a:hover { background: var(--brand-50); color: var(--brand); }
.home-link { margin-left: auto; color: var(--accent-700); font-weight: 800; }

/* tabs (MOBILE saja) */
#tabs { display: none; position: fixed; bottom: 0; left: 0; right: 0; height: calc(var(--tab-h) + env(safe-area-inset-bottom)); padding-bottom: env(safe-area-inset-bottom); background: var(--surface); border-top: 1px solid var(--line); z-index: 45; box-shadow: 0 -4px 20px rgba(26,29,52,.07); }
.tab { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px; color: var(--muted); font-size: 11px; font-weight: 600; }
.tab .ico { width: 22px; height: 22px; }
.tab.on { color: var(--brand); }

/* section heads */
.sec { padding: 56px 0; }
.sec-head { margin-bottom: 26px; }
.sec-head h2 { margin: 0; font-size: 28px; font-weight: 800; }
.sec-head2 { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; margin-bottom: 30px; }
.sec-head2 h2 { margin: 0; font-size: 30px; font-weight: 900; text-transform: uppercase; letter-spacing: -.01em; }
.sec-head2 h2 .pop { color: var(--brand); }
.sec-head2 p { margin: 8px 0 0; color: var(--muted); }
.sec-more { display: inline-flex; align-items: center; gap: 6px; height: 42px; padding: 0 18px; border: 2px solid var(--line); border-radius: var(--r-pill); color: var(--brand); font-weight: 700; white-space: nowrap; transition: border-color .2s, background .2s; }
.sec-more:hover { border-color: var(--brand-200); background: var(--brand-50); }
.sec-more .ico { width: 16px; height: 16px; transition: transform .2s; }
.sec-more:hover .ico { transform: translateX(3px); }
.rich { color: var(--text-2); }

/* ===== HERO megah & terang ===== */
.hero-x { position: relative; overflow: hidden; background:
    radial-gradient(48% 60% at 16% 18%, rgba(74,78,200,.16), transparent 60%),
    radial-gradient(42% 55% at 88% 8%, rgba(255,180,0,.20), transparent 60%),
    radial-gradient(50% 60% at 70% 100%, rgba(255,77,87,.12), transparent 60%),
    linear-gradient(180deg, #fbfcff, var(--bg)); }
.hero-x .blob { position: absolute; border-radius: 50%; filter: blur(60px); opacity: .5; pointer-events: none; animation: blob 16s ease-in-out infinite; }
.hero-x .blob.b1 { width: 360px; height: 360px; background: var(--brand-200); top: -80px; left: -60px; }
.hero-x .blob.b2 { width: 300px; height: 300px; background: var(--accent-100); bottom: -100px; right: 10%; animation-duration: 20s; }
.hx-wrap { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center; padding: 70px 22px 84px; }
.hx-copy > * { animation: riseIn .7s var(--ease) both; }
.hx-copy > *:nth-child(1) { animation-delay: .02s; } .hx-copy > *:nth-child(2) { animation-delay: .10s; }
.hx-copy > *:nth-child(3) { animation-delay: .18s; } .hx-copy > *:nth-child(4) { animation-delay: .26s; } .hx-copy > *:nth-child(5) { animation-delay: .34s; }
.hx-title { font-size: 62px; line-height: 1.02; margin: 0 0 18px; font-weight: 900; letter-spacing: -.035em; color: var(--ink); }
.hx-title .mark { position: relative; color: var(--brand); white-space: nowrap; }
.hx-title .mark::after { content: ''; position: absolute; left: -2px; right: -2px; bottom: .06em; height: .34em; background: linear-gradient(90deg, var(--accent), #ffd566); border-radius: 6px; z-index: -1; transform-origin: left; animation: drawMark .7s .5s var(--ease) both; }
.hx-sub { font-size: 18px; color: var(--text-2); margin: 0 0 30px; max-width: 520px; }
.hx-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hx-stats { display: flex; align-items: center; gap: 14px; margin-top: 46px; flex-wrap: wrap; }
.hx-stat { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 14px 20px; box-shadow: var(--sh-1); min-width: 120px; }
.hx-stat b { font-family: var(--display); display: block; font-size: 26px; font-weight: 900; color: var(--brand); }
.hx-stat span { color: var(--muted); font-size: 13px; }
/* visual kanan: kartu produk melayang */
.hx-visual { position: relative; height: 460px; }
.hx-disc { position: absolute; inset: 6% 8%; border-radius: 50%; background: radial-gradient(circle at 40% 35%, #fff, var(--brand-50) 70%, var(--brand-100)); box-shadow: inset 0 0 60px rgba(74,78,200,.12); }
.hx-card { position: absolute; width: 210px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-xl); box-shadow: var(--sh-3); padding: 16px; }
.hx-card img { width: 100%; aspect-ratio: 1; object-fit: contain; }
.hx-card .nm { font-size: 12.5px; font-weight: 700; margin-top: 8px; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden; }
.hx-card .pr { color: var(--brand); font-weight: 800; font-family: var(--display); }
.hx-card.c1 { left: 4%; top: 8%; animation: floatA 6s ease-in-out infinite; }
.hx-card.c2 { right: 2%; top: 26%; width: 230px; z-index: 3; animation: floatB 7s ease-in-out infinite; }
.hx-card.c3 { left: 16%; bottom: 2%; animation: floatC 5.5s ease-in-out infinite; }
.hx-chip { position: absolute; display: inline-flex; align-items: center; gap: 7px; background: var(--ink); color: #fff; font-weight: 800; font-size: 13px; padding: 9px 15px; border-radius: var(--r-pill); box-shadow: var(--sh-3); z-index: 4; }
.hx-chip.ch1 { top: 4%; right: 16%; background: var(--accent); color: #1a1300; animation: floatC 5s ease-in-out infinite; }
.hx-chip.ch2 { bottom: 10%; right: 4%; animation: floatA 6.5s ease-in-out infinite; }
.hx-chip .ico { width: 16px; height: 16px; }

/* strip marquee kepercayaan */
.tstrip { background: var(--brand); color: #fff; overflow: hidden; }
.tstrip .mqx { display: flex; width: max-content; animation: marquee 28s linear infinite; }
.tstrip .mqx > span { display: inline-flex; align-items: center; gap: 10px; padding: 16px 30px; font-weight: 700; white-space: nowrap; }
.tstrip .mqx .ico { width: 20px; height: 20px; color: var(--accent); }

/* nav kategori ikon (home) */
.icat-row { display: grid; grid-template-columns: repeat(8,1fr); gap: 16px; }
.icat { display: flex; flex-direction: column; align-items: center; gap: 12px; padding: 22px 10px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); transition: transform .22s var(--spring), box-shadow .22s, border-color .22s; }
.icat:hover { transform: translateY(-6px); box-shadow: var(--sh-3); border-color: transparent; }
.icat-ic { width: 62px; height: 62px; border-radius: 18px; display: grid; place-items: center; font-family: var(--display); font-weight: 900; font-size: 24px; color: #fff; overflow: hidden; transition: transform .22s var(--spring); }
.icat:hover .icat-ic { transform: scale(1.08) rotate(-4deg); }
.icat-ic img { width: 100%; height: 100%; object-fit: contain; padding: 9px; background: #fff; }
.icat[data-i="0"] .icat-ic { background: linear-gradient(135deg,#4a4ec8,#6e72f0); }
.icat[data-i="1"] .icat-ic { background: linear-gradient(135deg,#ff9d2e,#ffc400); }
.icat[data-i="2"] .icat-ic { background: linear-gradient(135deg,#12a05f,#46d28a); }
.icat[data-i="3"] .icat-ic { background: linear-gradient(135deg,#ff4d57,#ff8a6b); }
.icat[data-i="4"] .icat-ic { background: linear-gradient(135deg,#7b46e6,#a98bff); }
.icat[data-i="5"] .icat-ic { background: linear-gradient(135deg,#0fa6c0,#46d6e0); }
.icat[data-i="6"] .icat-ic { background: linear-gradient(135deg,#e0457f,#ff86b3); }
.icat[data-i="7"] .icat-ic { background: linear-gradient(135deg,#2b67e0,#5aa0ff); }
.icat-nm { font-size: 13px; font-weight: 700; color: var(--text-2); text-align: center; line-height: 1.3; }

/* banner grid (dummy gradien terang) */
.bgrid { display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 18px; }
.btile { position: relative; overflow: hidden; border-radius: var(--r-xl); padding: 28px; display: flex; flex-direction: column; justify-content: flex-end; min-height: 190px; color: #fff; transition: transform .25s, box-shadow .25s; }
.btile:hover { transform: translateY(-5px); box-shadow: var(--sh-3); }
.btile::after { content: ''; position: absolute; right: -30px; bottom: -30px; width: 160px; height: 160px; border-radius: 50%; background: rgba(255,255,255,.14); }
.btile.big { grid-row: span 2; min-height: auto; justify-content: center; }
.btile.g0 { background: linear-gradient(135deg,#4a4ec8,#262a7d); }
.btile.g1 { background: linear-gradient(135deg,#ff9d2e,#f59e0b); color: #1a1300; }
.btile.g2 { background: linear-gradient(135deg,#12a05f,#0c7a47); }
.btile.g3 { background: linear-gradient(135deg,#ff4d57,#d6322f); }
.btile .pill { background: rgba(255,255,255,.22); color: #fff; backdrop-filter: blur(4px); margin-bottom: 12px; align-self: flex-start; }
.btile.g1 .pill { background: rgba(26,19,0,.18); color: #1a1300; }
.btile h3 { position: relative; z-index: 2; margin: 0 0 6px; font-size: 24px; font-weight: 900; text-transform: uppercase; }
.btile.big h3 { font-size: 34px; }
.btile p { position: relative; z-index: 2; margin: 0 0 16px; opacity: .92; font-size: 14px; }
.btile .go { position: relative; z-index: 2; display: inline-flex; align-items: center; gap: 6px; align-self: flex-start; background: #fff; color: var(--ink); font-weight: 800; font-size: 13px; padding: 9px 16px; border-radius: var(--r-pill); }
.btile.g1 .go { background: var(--ink); color: #fff; }

/* finder */
.finder { display: grid; grid-template-columns: auto 1fr 1fr auto; gap: 14px; align-items: center; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-xl); padding: 24px; box-shadow: var(--sh-2); }
.finder .fl { font-family: var(--display); font-weight: 800; text-transform: uppercase; color: var(--ink); font-size: 15px; display: inline-flex; align-items: center; gap: 10px; }
.finder .fl .ico { color: var(--brand); }
.finder select { height: 52px; border: 2px solid var(--line); border-radius: var(--r-md); padding: 0 18px; background: var(--bg); cursor: pointer; }
.finder select:focus { border-color: var(--brand); outline: none; }

/* deal + countdown */
.deal { display: grid; grid-template-columns: 320px 1fr; gap: 24px; align-items: stretch; }
.deal-card { position: relative; overflow: hidden; border-radius: var(--r-2xl); background: linear-gradient(150deg, var(--brand), var(--brand-800)); color: #fff; padding: 32px; display: flex; flex-direction: column; justify-content: center; }
.deal-card .glow { position: absolute; width: 220px; height: 220px; border-radius: 50%; background: var(--accent); opacity: .35; filter: blur(60px); top: -60px; right: -40px; }
.deal-card .eyebrow { color: #ffe08a; } .deal-card .eyebrow::before { background: var(--accent); }
.deal-card h2 { position: relative; z-index: 2; font-size: 30px; margin: 0 0 6px; font-weight: 900; text-transform: uppercase; }
.deal-card p { position: relative; z-index: 2; opacity: .9; margin: 0 0 20px; }
.countdown { position: relative; z-index: 2; display: flex; gap: 8px; margin-bottom: 22px; }
.cd-box { background: rgba(255,255,255,.14); border-radius: var(--r-md); padding: 10px 0; width: 60px; text-align: center; backdrop-filter: blur(4px); }
.cd-box b { font-family: var(--display); display: block; font-size: 26px; font-weight: 900; line-height: 1; }
.cd-box span { font-size: 10.5px; text-transform: uppercase; letter-spacing: .05em; opacity: .8; }
.deal-rail { min-width: 0; }

/* rail */
.rail { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(232px,1fr); gap: 18px; overflow-x: auto; padding: 6px 2px 16px; scroll-snap-type: x proximity; scrollbar-width: thin; }
.rail::-webkit-scrollbar { height: 8px; } .rail::-webkit-scrollbar-thumb { background: var(--line); border-radius: 999px; }
.rail > .pc { scroll-snap-align: start; }

/* brand wall (dummy) */
.brandwall { display: grid; grid-template-columns: repeat(6,1fr); gap: 16px; }
.bcard { aspect-ratio: 3/2; border: 1px solid var(--line); border-radius: var(--r-lg); background: var(--surface); display: grid; place-items: center; padding: 20px; transition: transform .22s var(--spring), box-shadow .22s, border-color .22s; }
.bcard:hover { transform: translateY(-5px); box-shadow: var(--sh-2); border-color: var(--brand-100); }
.bcard b { font-family: var(--display); font-size: 22px; font-weight: 900; letter-spacing: -.02em; color: var(--ink-2); text-transform: uppercase; }
.bcard:hover b { color: var(--brand); }

/* promo terang */
.promo-x { position: relative; overflow: hidden; display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap; border-radius: var(--r-2xl); padding: 50px 54px; margin: 56px 0; background: linear-gradient(120deg, #fff4d6, #ffe9b0); }
.promo-x .blob { position: absolute; border-radius: 50%; filter: blur(50px); }
.promo-x .blob.p1 { width: 240px; height: 240px; background: rgba(255,180,0,.5); top: -100px; left: 10%; }
.promo-x .blob.p2 { width: 200px; height: 200px; background: rgba(74,78,200,.25); bottom: -90px; right: 12%; }
.promo-x .pin { position: relative; z-index: 2; max-width: 620px; }
.promo-x h2 { font-size: 38px; margin: 0 0 8px; font-weight: 900; text-transform: uppercase; color: var(--ink); }
.promo-x p { color: var(--text-2); margin: 0; font-size: 16px; }
.promo-x .btn { position: relative; z-index: 2; }

/* newsletter terang (indigo) */
.news-x { position: relative; overflow: hidden; display: flex; align-items: center; justify-content: space-between; gap: 26px; flex-wrap: wrap; background: linear-gradient(120deg, var(--brand), var(--brand-700)); color: #fff; border-radius: var(--r-2xl); padding: 44px 50px; margin: 56px 0; box-shadow: var(--sh-brand); }
.news-x .glow { position: absolute; width: 260px; height: 260px; border-radius: 50%; background: var(--accent); opacity: .3; filter: blur(60px); top: -90px; right: 6%; }
.news-x h2 { position: relative; z-index: 2; font-size: 30px; margin: 0; font-weight: 900; text-transform: uppercase; }
.news-x .eyebrow { color: #ffe08a; } .news-x .eyebrow::before { background: var(--accent); }

/* ===== kartu produk ===== */
.pc-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(218px,1fr)); gap: 18px; }
.pc { position: relative; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; cursor: pointer; display: flex; flex-direction: column; transition: transform .22s var(--ease), box-shadow .22s, border-color .22s; }
.pc:hover { transform: translateY(-6px); box-shadow: var(--sh-3); border-color: transparent; }
.pc-media { position: relative; aspect-ratio: 1; background: #fff; display: grid; place-items: center; padding: 14px; overflow: hidden; }
.pc-media img { width: 100%; height: 100%; object-fit: contain; transition: transform .4s var(--ease); }
.pc:hover .pc-media img { transform: scale(1.08); }
.pc-noimg { color: var(--muted-2); } .pc-noimg .ico { width: 48px; height: 48px; } .pc-noimg.sm .ico { width: 24px; height: 24px; }
.pc-body { padding: 14px 16px 18px; display: flex; flex-direction: column; gap: 5px; flex: 1; }
.pc-brand { font-size: 11px; text-transform: uppercase; letter-spacing: .05em; color: var(--brand); font-weight: 800; }
.pc-name { margin: 0; font-size: 13.5px; font-weight: 600; line-height: 1.42; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; min-height: 2.84em; color: var(--text); }
.pc-price { margin-top: auto; display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; padding-top: 4px; }
.pc-now { font-family: var(--display); font-size: 18px; font-weight: 900; color: var(--ink); }
.pc-was { font-size: 12px; color: var(--muted-2); text-decoration: line-through; }
.pc-badges { position: absolute; top: 10px; left: 10px; display: flex; flex-direction: column; gap: 6px; z-index: 2; }
.pc-sale { background: var(--sale); color: #fff; font-size: 11px; font-weight: 800; padding: 4px 9px; border-radius: var(--r-pill); box-shadow: 0 2px 8px rgba(255,77,87,.4); }
.pc-oos { background: rgba(21,23,42,.82); color: #fff; font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: var(--r-pill); align-self: flex-start; }
.pc-qa { position: absolute; left: 10px; right: 10px; bottom: 10px; display: flex; gap: 8px; z-index: 2; transform: translateY(140%); opacity: 0; transition: transform .26s var(--spring), opacity .26s; }
.pc:hover .pc-qa, .pc:focus-within .pc-qa { transform: none; opacity: 1; }
.qa-add { flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 7px; height: 42px; border: 0; border-radius: var(--r-pill); background: var(--brand); color: #fff; font-weight: 800; font-size: 13.5px; cursor: pointer; box-shadow: var(--sh-brand); transition: background .2s; }
.qa-add:hover:not([disabled]) { background: var(--brand-600); }
.qa-add[disabled] { background: var(--muted-2); cursor: not-allowed; box-shadow: none; }
.qa-add .ico { width: 17px; height: 17px; }
.qa-wl { width: 42px; height: 42px; flex: none; border: 0; border-radius: 50%; background: #fff; color: var(--text-2); display: grid; place-items: center; cursor: pointer; box-shadow: var(--sh-2); transition: color .2s, transform .2s; }
.qa-wl:hover { transform: scale(1.08); } .qa-wl.on { color: var(--sale); } .qa-wl .ico { width: 18px; height: 18px; }

/* listing / kategori */
.list-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 26px; }
#sort { height: 46px; border: 2px solid var(--line); border-radius: var(--r-md); padding: 0 18px; background: var(--surface); cursor: pointer; font-weight: 600; }
#more { height: 40px; }
.catgrid { display: grid; grid-template-columns: repeat(auto-fill,minmax(160px,1fr)); gap: 16px; }
.catcard { display: flex; flex-direction: column; align-items: center; gap: 12px; padding: 26px 14px; border: 1px solid var(--line); border-radius: var(--r-lg); background: var(--surface); text-align: center; font-weight: 700; transition: transform .2s var(--spring), box-shadow .2s; }
.catcard:hover { transform: translateY(-5px); box-shadow: var(--sh-2); }
.cat-ic { width: 58px; height: 58px; border-radius: 16px; background: linear-gradient(135deg,var(--brand),var(--brand-700)); color: #fff; display: grid; place-items: center; font-family: var(--display); font-weight: 900; font-size: 20px; overflow: hidden; }
.cat-ic img { width: 100%; height: 100%; object-fit: contain; padding: 9px; background: #fff; }

/* product page */
.pdp { display: grid; grid-template-columns: minmax(0,1.05fr) minmax(0,1fr); gap: 44px; padding: 22px 0; }
.pdp-sk { height: 480px; border-radius: var(--r-xl); }
.gal { border: 1px solid var(--line); border-radius: var(--r-xl); overflow: hidden; background: #fff; display: flex; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; aspect-ratio: 1; }
.gal::-webkit-scrollbar { display: none; }
.gal-s { flex: 0 0 100%; scroll-snap-align: center; display: grid; place-items: center; padding: 32px; }
.gal-s img { width: 100%; height: 100%; object-fit: contain; }
.buy-brand { font-size: 13px; text-transform: uppercase; letter-spacing: .06em; color: var(--brand); font-weight: 800; }
.buy h1 { font-family: var(--display); margin: 8px 0 8px; font-size: 32px; line-height: 1.18; font-weight: 900; }
.buy-sku { color: var(--muted); font-size: 13.5px; margin-bottom: 16px; }
.buy .pc-price { margin: 18px 0; } .buy .pc-now { font-size: 34px; }
.buy-stock { display: inline-flex; align-items: center; gap: 6px; font-size: 13.5px; font-weight: 700; padding: 6px 14px; border-radius: var(--r-pill); margin-bottom: 26px; }
.buy-stock.ok { background: var(--ok-50); color: var(--ok); } .buy-stock.oos { background: var(--danger-50); color: var(--danger); }
.buy-act { display: flex; align-items: center; gap: 12px; } .buy-act .btn-pri { flex: 1; height: 54px; font-size: 16px; }
.buy-act .ibtn.lg.on { color: var(--sale); border-color: var(--sale); }
.trust { display: flex; gap: 22px; margin-top: 26px; padding-top: 22px; border-top: 1px solid var(--line); flex-wrap: wrap; }
.trust span { display: inline-flex; align-items: center; gap: 7px; color: var(--muted); font-size: 13.5px; } .trust .ico { color: var(--brand); width: 18px; height: 18px; }
.pdp-sec { padding: 36px 0; border-top: 1px solid var(--line); } .pdp-sec h3 { font-family: var(--display); margin: 0 0 16px; font-size: 21px; font-weight: 800; }
.prose { color: var(--text-2); white-space: pre-line; max-width: 780px; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; } .chip { background: var(--brand-50); color: var(--brand); font-size: 13.5px; font-weight: 600; padding: 7px 15px; border-radius: var(--r-pill); }
.back { display: none; align-items: center; gap: 4px; color: var(--muted); font-weight: 600; padding: 18px 0; }
.back .ico { width: 18px; height: 18px; transform: rotate(180deg); }

/* wishlist / akun / auth */
.acct-menu { display: flex; gap: 12px; flex-wrap: wrap; }
.acct-menu a,.acct-menu button { display: inline-flex; align-items: center; gap: 8px; padding: 13px 22px; border-radius: var(--r-md); border: 1px solid var(--line); background: var(--surface); cursor: pointer; font-weight: 600; }
.auth-card { max-width: 430px; margin: 0 auto; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-xl); box-shadow: var(--sh-3); padding: 36px; }
.auth-tabs { display: flex; border-bottom: 1px solid var(--line); margin-bottom: 26px; }
.auth-tabs button { flex: 1; padding: 13px; border: 0; background: none; font-weight: 700; color: var(--muted); cursor: pointer; border-bottom: 2px solid transparent; margin-bottom: -1px; }
.auth-tabs button.on { color: var(--brand); border-color: var(--brand); }
.form { display: flex; flex-direction: column; gap: 16px; }
.field span { display: block; font-size: 13.5px; font-weight: 600; margin-bottom: 6px; }
.field input,.field textarea { width: 100%; height: 50px; border: 2px solid var(--line); border-radius: var(--r-md); padding: 0 16px; background: var(--bg); }
.field textarea { height: auto; padding: 13px 16px; resize: vertical; }
.field input:focus,.field textarea:focus { border-color: var(--brand); outline: none; box-shadow: 0 0 0 3px var(--brand-50); background: var(--surface); }

/* footer (indigo megah, bukan hitam) */
#ftr { background: linear-gradient(160deg, var(--brand-800), #1b1f4a); color: rgba(255,255,255,.74); margin-top: 76px; }
.ftr-in { display: grid; grid-template-columns: 1.5fr repeat(3,1fr); gap: 36px; padding: 60px 0 46px; }
.fbrand b { font-family: var(--display); font-size: 24px; color: #fff; font-weight: 900; } .fbrand p { color: rgba(255,255,255,.66); margin: 14px 0; max-width: 320px; }
.social { display: flex; gap: 9px; } .social a { width: 42px; height: 42px; border-radius: var(--r-sm); border: 1px solid rgba(255,255,255,.18); display: grid; place-items: center; color: rgba(255,255,255,.85); transition: background .2s, color .2s, border-color .2s; }
.social a:hover { background: var(--accent); color: #1a1300; border-color: var(--accent); }
.fcol h4 { color: #fff; margin: 0 0 16px; font-size: 13px; text-transform: uppercase; letter-spacing: .05em; font-weight: 800; }
.fcol a,.fcol p { display: block; color: rgba(255,255,255,.66); margin-bottom: 9px; transition: color .2s; } .fcol a:hover { color: var(--accent); }
.fbar { border-top: 1px solid rgba(255,255,255,.14); padding: 22px 0; color: rgba(255,255,255,.55); font-size: 13.5px; }

/* empty */
.empty { text-align: center; padding: 72px 20px; color: var(--muted); }
.empty .ico { width: 56px; height: 56px; color: var(--muted-2); margin: 0 auto 16px; }
.empty h3 { font-family: var(--display); margin: 0 0 8px; color: var(--text); font-weight: 800; }

/* keranjang */
.cart-bg { position: fixed; inset: 0; background: rgba(21,23,42,.5); opacity: 0; visibility: hidden; transition: opacity .25s; z-index: 60; backdrop-filter: blur(2px); }
.cart-bg.on { opacity: 1; visibility: visible; }
.cart { position: fixed; top: 0; right: 0; height: 100%; width: 430px; max-width: 92vw; background: var(--surface); box-shadow: var(--sh-4); transform: translateX(100%); transition: transform .34s var(--ease); z-index: 61; display: flex; flex-direction: column; }
.cart.on { transform: translateX(0); }
.cart-head { display: flex; align-items: center; gap: 12px; padding: 22px 26px; border-bottom: 1px solid var(--line); }
.cart-head h3 { font-family: var(--display); margin: 0; flex: 1; font-weight: 800; } .cart-head .grab { display: none; }
.cart-head button { width: 40px; height: 40px; border: 0; background: var(--bg); border-radius: var(--r-sm); cursor: pointer; display: grid; place-items: center; }
.cart-body { flex: 1; overflow-y: auto; padding: 16px 26px; }
.cart-foot { padding: 22px 26px; border-top: 1px solid var(--line); }
.ci { display: grid; grid-template-columns: 66px 1fr auto; gap: 14px; align-items: center; padding: 16px 0; border-bottom: 1px solid var(--line-2); position: relative; }
.ci > img,.ci .pc-noimg { width: 66px; height: 66px; border-radius: var(--r-sm); object-fit: contain; background: #fff; border: 1px solid var(--line); display: grid; place-items: center; }
.ci-m b { display: block; font-size: 13.5px; line-height: 1.35; padding-right: 18px; } .ci-m span { color: var(--brand); font-weight: 700; font-size: 13.5px; }
.ci-q { display: inline-flex; align-items: center; gap: 8px; border: 1px solid var(--line); border-radius: var(--r-pill); padding: 3px; }
.ci-q button { width: 28px; height: 28px; border: 0; background: var(--bg); border-radius: 50%; cursor: pointer; font-weight: 800; } .ci-q span { min-width: 18px; text-align: center; font-size: 13.5px; }
.ci-rm { position: absolute; top: 14px; right: 0; width: 24px; height: 24px; border: 0; background: none; color: var(--muted-2); cursor: pointer; } .ci-rm:hover { color: var(--danger); } .ci-rm .ico { width: 16px; height: 16px; }
.ci-sum { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; } .ci-sum b { font-family: var(--display); font-size: 21px; color: var(--ink); }

/* checkout */
.co { display: grid; grid-template-columns: minmax(0,1.6fr) minmax(0,1fr); gap: 34px; align-items: start; }
.co-main { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-xl); padding: 34px; min-height: 320px; }
.co-steps { display: flex; align-items: center; gap: 8px; margin-bottom: 22px; }
.co-steps span { width: 32px; height: 32px; border-radius: 50%; display: grid; place-items: center; background: var(--bg-2); color: var(--muted); font-weight: 800; font-size: 13.5px; }
.co-steps span.on { background: var(--brand); color: #fff; }
.co-title { font-family: var(--display); margin: 0 0 22px; font-size: 21px; font-weight: 800; }
.pick { display: flex; align-items: center; gap: 12px; padding: 17px; border: 2px solid var(--line); border-radius: var(--r-md); margin-bottom: 12px; cursor: pointer; transition: border-color .2s, background .2s; }
.pick.on { border-color: var(--brand); background: var(--brand-50); } .pick input { accent-color: var(--brand); width: 18px; height: 18px; }
.pick-l { color: var(--muted); font-size: 13.5px; margin-top: 2px; }
.cour { flex: 1; } .cour b { display: block; } .etd { color: var(--muted); font-size: 13.5px; } .cour-p { font-weight: 800; color: var(--brand); }
.addnew { margin: 8px 0 20px; display: inline-block; }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; } .ckline { display: flex; align-items: center; gap: 8px; font-size: 13.5px; } .ckline input { accent-color: var(--brand); }
.co-foot { display: flex; gap: 12px; justify-content: flex-end; margin-top: 26px; padding-top: 22px; border-top: 1px solid var(--line); }
.co-side { position: sticky; top: 100px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-xl); padding: 26px; }
.co-side h3 { font-family: var(--display); margin: 0 0 16px; font-weight: 800; }
.co-items { display: flex; flex-direction: column; gap: 12px; max-height: 300px; overflow: auto; margin-bottom: 16px; padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.co-item { display: grid; grid-template-columns: 48px 1fr auto; gap: 12px; align-items: center; }
.co-item img,.co-item .pc-noimg { width: 48px; height: 48px; border-radius: var(--r-sm); object-fit: contain; background: #fff; border: 1px solid var(--line); }
.co-item-m b { display: block; font-size: 13px; line-height: 1.3; } .co-item-m span { color: var(--muted); font-size: 12px; } .co-item-p { font-weight: 700; font-size: 13.5px; }
.co-row { display: flex; justify-content: space-between; padding: 7px 0; color: var(--text-2); }
.co-total { margin-top: 8px; padding-top: 12px; border-top: 1px solid var(--line); font-size: 16px; } .co-total b { font-family: var(--display); font-size: 21px; color: var(--brand); }
.co-done { text-align: center; padding-block: 40px; }
.co-ic { width: 76px; height: 76px; border-radius: 50%; display: grid; place-items: center; font-size: 38px; margin: 0 auto 22px; color: #fff; } .co-ic.ok { background: var(--ok); } .co-ic.fail { background: var(--danger); }
.co-done h1 { font-family: var(--display); }
.co-done-act { display: flex; gap: 12px; justify-content: center; margin-top: 26px; }

/* ============================ RESPONSIF (≤768px) ============================ */
@media (max-width: 768px) {
  .d-only { display: none !important; }
  .m-only { display: flex; }
  #tabs { display: flex; }
  #main { padding-bottom: calc(var(--tab-h) + env(safe-area-inset-bottom) + 12px); }
  .hdr-in { height: 60px; gap: 12px; flex-wrap: wrap; padding-block: 8px; }
  body.scrolled .hdr-in { height: 60px; }
  #catnav { top: 0; } body.scrolled #catnav { top: 0; }
  .logo { font-size: 23px; } .logo img { height: 34px; }
  .search { order: 3; flex-basis: 100%; max-width: none; height: 44px; } .search input { height: 44px; }
  .h1 { font-size: 25px; }
  .sec { padding: 38px 0; } .sec-head2 { margin-bottom: 22px; flex-wrap: wrap; } .sec-head2 h2 { font-size: 23px; }
  .hx-wrap { grid-template-columns: 1fr; padding: 44px 22px 56px; gap: 28px; }
  .hx-title { font-size: 40px; } .hx-sub { font-size: 16px; }
  .hx-cta { flex-direction: column; } .hx-cta .btn { width: 100%; }
  .hx-stats { gap: 10px; } .hx-stat { flex: 1; min-width: 0; padding: 12px 14px; } .hx-stat b { font-size: 21px; }
  .hx-visual { height: 320px; } .hx-card { width: 150px; } .hx-card.c2 { width: 160px; }
  .icat-row { grid-template-columns: repeat(4,1fr); gap: 12px; }
  .bgrid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; } .btile.big { grid-column: span 2; grid-row: auto; } .btile h3 { font-size: 20px; } .btile.big h3 { font-size: 24px; }
  .finder { grid-template-columns: 1fr; }
  .deal { grid-template-columns: 1fr; } .deal-card { padding: 26px; }
  .brandwall { grid-template-columns: repeat(3,1fr); }
  .promo-x { padding: 32px 28px; margin: 38px 0; } .promo-x h2 { font-size: 26px; } .promo-x .btn { width: 100%; }
  .news-x { padding: 30px 28px; margin: 38px 0; } .news-x h2 { font-size: 22px; } .news-x .btn { width: 100%; }
  .pc-grid { grid-template-columns: repeat(2,1fr); gap: 12px; }
  .pc-qa { transform: none; opacity: 1; justify-content: flex-end; } .qa-add span { display: none; } .qa-add { width: 44px; flex: none; }
  .rail { grid-auto-columns: 46%; }
  .pdp { grid-template-columns: 1fr; gap: 22px; } .gal { border-radius: 0; margin-inline: -22px; } .buy h1 { font-size: 25px; }
  .back { display: inline-flex; }
  .ftr-in { grid-template-columns: 1fr 1fr; gap: 26px; }
  .co { grid-template-columns: 1fr; } .co-main { padding: 22px; } .co-side { position: static; order: -1; }
  .co-foot { flex-direction: column-reverse; } .co-foot .btn { width: 100%; }
  .cart { top: auto; bottom: 0; right: 0; left: 0; width: 100%; max-width: 100%; height: auto; max-height: 84vh; border-radius: var(--r-2xl) var(--r-2xl) 0 0; transform: translateY(100%); }
  .cart.on { transform: translateY(0); }
  .cart-head { padding: 10px 24px 16px; flex-wrap: wrap; justify-content: center; }
  .cart-head .grab { display: block; width: 42px; height: 4px; border-radius: var(--r-pill); background: var(--line); flex-basis: 100%; margin: 0 auto 8px; }
  .cart-foot { padding-bottom: calc(22px + env(safe-area-inset-bottom)); }
}
@media (max-width: 480px) {
  .icat-row { grid-template-columns: repeat(3,1fr); } .brandwall { grid-template-columns: repeat(2,1fr); } .ftr-in { grid-template-columns: 1fr; }
  .hx-title { font-size: 33px; }
}

/* ===== HERO BOLD (slider indigo besar, megah) ===== */
.bhero { position: relative; overflow: hidden; background: linear-gradient(120deg, var(--brand) 0%, var(--brand-700) 58%, var(--brand-800) 100%); color: #fff; }
.bhero::before { content: ''; position: absolute; top: -20%; right: -10%; width: 60%; height: 140%; background: linear-gradient(120deg, rgba(255,255,255,.08), rgba(255,255,255,0)); transform: skewX(-12deg); pointer-events: none; }
.bhero-blob { position: absolute; border-radius: 50%; filter: blur(70px); pointer-events: none; animation: blob 18s ease-in-out infinite; }
.bhero-blob.b1 { width: 340px; height: 340px; background: var(--accent); opacity: .3; top: -120px; left: -40px; }
.bhero-blob.b2 { width: 300px; height: 300px; background: #8a8eff; opacity: .42; bottom: -140px; right: 8%; }
.bhero-track { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
.bhero-track::-webkit-scrollbar { display: none; }
.bslide { flex: 0 0 100%; scroll-snap-align: center; }
.bhero-in { position: relative; z-index: 2; display: grid; grid-template-columns: 1.08fr .92fr; gap: 30px; align-items: center; min-height: 500px; padding: 56px 22px 70px; }
.bhero-copy > * { animation: riseIn .7s var(--ease) both; }
.bhero-copy > *:nth-child(2) { animation-delay: .08s; } .bhero-copy > *:nth-child(3) { animation-delay: .16s; } .bhero-copy > *:nth-child(4) { animation-delay: .24s; }
.bhero-copy .pill { background: var(--accent); color: #1a1300; }
.bhero-title { font-size: 64px; line-height: .98; margin: 16px 0 16px; font-weight: 900; text-transform: uppercase; letter-spacing: -.02em; }
.bhero-title .pop { color: var(--accent); }
.bhero-copy p { font-size: 18px; opacity: .92; margin: 0 0 26px; max-width: 460px; }
.bhero-art { position: relative; display: grid; place-items: center; min-height: 380px; }
.bhero-ring { position: absolute; width: 380px; height: 380px; max-width: 92%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle at 42% 38%, rgba(255,255,255,.96), rgba(255,255,255,.6) 55%, rgba(255,255,255,.12)); }
.bhero-art img { position: relative; z-index: 2; max-height: 360px; width: auto; object-fit: contain; filter: drop-shadow(0 30px 44px rgba(0,0,0,.42)); animation: floatC 6s ease-in-out infinite; }
.bhero-arrow { position: absolute; top: 46%; transform: translateY(-50%); z-index: 4; width: 46px; height: 46px; border-radius: 50%; border: 0; background: rgba(255,255,255,.16); color: #fff; cursor: pointer; display: grid; place-items: center; backdrop-filter: blur(4px); transition: background .2s; }
.bhero-arrow:hover { background: rgba(255,255,255,.32); }
.bhero-arrow.prev { left: 16px; } .bhero-arrow.prev .ico { transform: rotate(180deg); }
.bhero-arrow.next { right: 16px; }
.bhero-dots { position: absolute; bottom: 22px; left: 0; right: 0; z-index: 4; display: flex; justify-content: center; gap: 8px; }
.bhero-dots span { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,.42); transition: all .2s; }
.bhero-dots span.on { background: var(--accent); width: 26px; border-radius: 999px; }

/* kategori bundar berfoto produk */
.icat-ic { border-radius: 50%; }
.icat-ic.pic { background: #fff; box-shadow: inset 0 0 0 1px var(--line); }
.icat-ic.pic img { padding: 12px; }

/* banner berfoto produk */
.btile { overflow: hidden; }
.btile-pic { position: absolute; right: -8px; bottom: -8px; width: 46%; max-height: 80%; object-fit: contain; z-index: 1; filter: drop-shadow(0 12px 22px rgba(0,0,0,.3)); pointer-events: none; }
.btile.big .btile-pic { width: 36%; }
.btile h3, .btile p, .btile .pill, .btile .go { position: relative; z-index: 2; }

@media (max-width: 768px) {
  .bhero-in { grid-template-columns: 1fr; min-height: auto; padding: 36px 22px 54px; }
  .bhero-art { min-height: 220px; order: -1; } .bhero-art img { max-height: 200px; } .bhero-ring { width: 240px; height: 240px; }
  .bhero-title { font-size: 36px; } .bhero-copy p { font-size: 15px; }
  .bhero-arrow { display: none; }
  .btile-pic { width: 42%; }
}
@media (max-width: 480px) { .bhero-title { font-size: 30px; } }

/* banner grid CMS — fleksibel, jumlah blok bebas (tanpa lubang) */
.bgrid-flex { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); grid-template-rows: none; }
.bgrid-flex .btile { grid-row: auto; grid-column: auto; min-height: 200px; }
.bgrid-flex .btile h3 { font-size: 24px; }

/* ============================================================
   TEMA BIGXON (home-6) — penyelarasan chrome & beranda.
   Ditambahkan di akhir agar menang spesifisitas atas gaya lama.
   Token dipakai dari :root. Tidak menghapus kelas engine.
   ============================================================ */

/* ---------- TOP BAR (terang) ---------- */
#hdr { background: var(--brand); border-bottom: 0; }
.topbar2 { background: #eef1f8; color: var(--text-2); font-size: 13px; border-bottom: 1px solid #e2e6f2; }
.tb-in { display: flex; align-items: center; justify-content: space-between; gap: 14px; min-height: 40px; }
.tb-info { display: flex; align-items: center; gap: 20px; min-width: 0; flex-wrap: wrap; }
.tb-info > span, .tb-info > a { display: inline-flex; align-items: center; gap: 7px; color: var(--text-2); white-space: nowrap; }
.tb-info a:hover { color: var(--brand); }
.tb-info .ico { width: 15px; height: 15px; color: var(--brand); }
.tb-note { color: var(--ok); font-weight: 700; }
.tb-note .ico { color: var(--ok); }
.tb-right { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.tb-pick { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; color: var(--text); cursor: default; padding: 4px 8px; border-radius: var(--r-sm); }
.tb-sep { width: 1px; height: 16px; background: #cfd5e6; }
.tb-login { display: inline-flex; align-items: center; gap: 7px; background: var(--hot); color: #fff; font-weight: 800; padding: 7px 16px; border-radius: var(--r-pill); box-shadow: 0 6px 14px rgba(255,77,87,.32); }
.tb-login:hover { background: #ec3b46; color: #fff; transform: translateY(-1px); }
.tb-login .ico { width: 15px; height: 15px; }

/* ---------- HEADER UTAMA (indigo) ---------- */
.hdr2 { background: var(--brand); color: #fff; box-shadow: inset 0 -1px 0 rgba(255,255,255,.10); }
.hdr2 .hdr-in { height: 78px; gap: 22px; }
body.scrolled .hdr2 .hdr-in { height: 66px; }
.hdr2 .logo { color: #fff; gap: 0; }
.hdr2 .logo b { font-family: var(--display); font-weight: 900; font-size: 28px; letter-spacing: -.02em; color: #fff; }
.hdr2 .logo b i { font-style: normal; color: var(--accent); }
.hdr2 .logo img { height: 42px; filter: brightness(0) invert(1); }

/* search putih + tombol merah */
.hdr2 .search { background: #fff; border: 2px solid transparent; padding-left: 18px; box-shadow: 0 6px 18px rgba(0,0,0,.12); max-width: 640px; }
.hdr2 .search:focus-within { border-color: var(--accent); box-shadow: 0 0 0 4px rgba(255,180,0,.30); background: #fff; }
.hdr2 .search > span { color: var(--muted); }
.search-go { display: inline-flex; align-items: center; gap: 8px; height: 42px; margin: 4px; padding: 0 22px; border: 0; border-radius: var(--r-pill); background: var(--hot); color: #fff; font-weight: 800; font-size: 14px; cursor: pointer; transition: background .2s, transform .14s; white-space: nowrap; }
.search-go:hover { background: #ec3b46; transform: translateY(-1px); }
.search-go .ico { width: 17px; height: 17px; }

/* cluster kontak (telepon + live chat) */
.hc-cluster { display: flex; align-items: center; gap: 18px; }
.hc-item { display: flex; align-items: center; gap: 10px; color: #fff; }
.hc-item:hover { color: #fff; }
.hc-ic { width: 40px; height: 40px; flex: none; border-radius: 50%; display: grid; place-items: center; background: rgba(255,255,255,.16); color: #fff; }
.hc-ic .ico { width: 19px; height: 19px; }
.hc-t { display: flex; flex-direction: column; line-height: 1.2; }
.hc-t b { font-size: 14px; font-weight: 800; color: #fff; }
.hc-t i { font-style: normal; font-size: 11.5px; color: rgba(255,255,255,.78); }

/* aksi kanan (wishlist + cart) di atas indigo */
.hdr2 .hdr-act { gap: 10px; }
.hdr2 .ibtn { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.22); color: #fff; }
.hdr2 .ibtn:hover { background: rgba(255,255,255,.22); border-color: rgba(255,255,255,.4); color: #fff; }

/* ---------- NAV BAND (indigo) ---------- */
#catnav { background: var(--brand); border-bottom: 0; box-shadow: inset 0 1px 0 rgba(255,255,255,.10); }
.catnav-in { gap: 6px; height: 52px; }
#catnav .allcat { background: rgba(0,0,0,.20); color: #fff; box-shadow: none; height: 40px; text-transform: uppercase; letter-spacing: .02em; font-size: 13px; font-weight: 800; }
#catnav .allcat:hover { background: rgba(0,0,0,.30); }
#catnav .allcat.on { background: var(--accent); color: #1a1300; }
.catnav-in .menu { gap: 2px; align-items: center; }
#catnav .nav-l { display: inline-flex; align-items: center; gap: 6px; height: 40px; padding: 0 14px; border: 0; background: transparent; border-radius: var(--r-sm); color: #fff; font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: .01em; cursor: pointer; transition: background .2s; }
#catnav .nav-l:hover, #catnav .nav-l.on { background: rgba(255,255,255,.14); color: #fff; }
#catnav .nav-l .ico { width: 14px; height: 14px; opacity: .85; }
.nav-drop { position: relative; }
.nav-drop .drop-panel { position: absolute; top: 100%; left: 0; min-width: 210px; background: #fff; border-radius: 0 0 var(--r-md) var(--r-md); box-shadow: var(--sh-3); padding: 8px; opacity: 0; visibility: hidden; transform: translateY(6px); transition: opacity .18s, transform .18s, visibility .18s; z-index: 60; }
.nav-drop:hover .drop-panel { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-drop .drop-panel a { display: block; padding: 10px 14px; border-radius: var(--r-sm); color: var(--text-2); font-weight: 600; font-size: 14px; text-transform: none; }
.nav-drop .drop-panel a:hover { background: var(--brand-50); color: var(--brand); }
.freeship { margin-left: auto; display: inline-flex; align-items: center; gap: 8px; background: var(--ok); color: #fff; font-weight: 800; font-size: 12.5px; padding: 8px 16px; border-radius: var(--r-pill); white-space: nowrap; box-shadow: 0 6px 14px rgba(18,138,82,.30); }
.freeship .ico { width: 16px; height: 16px; }

/* ---------- MEGA MENU (panel putih lebar) ---------- */
.mega { position: absolute; left: 0; right: 0; top: 100%; background: #fff; box-shadow: var(--sh-3); border-top: 3px solid var(--accent); opacity: 0; visibility: hidden; transform: translateY(8px); transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s; z-index: 55; }
.mega.on { opacity: 1; visibility: visible; transform: translateY(0); }
.mega-in { display: flex; gap: 0; align-items: stretch; padding: 0; min-height: 320px; }
.mega-list { width: 268px; flex: none; border-right: 1px solid var(--line); padding: 14px; max-height: 440px; overflow: auto; }
.mega-c { display: flex; align-items: center; justify-content: space-between; gap: 8px; padding: 11px 14px; border-radius: var(--r-sm); color: var(--text); font-weight: 700; font-size: 14px; }
.mega-c .ico { width: 15px; height: 15px; color: var(--muted-2); transition: transform .2s; }
.mega-c:hover, .mega-c.on { background: var(--brand-50); color: var(--brand); }
.mega-c.on .ico { color: var(--brand); transform: translateX(2px); }
.mega-sub { flex: 1; padding: 22px 26px; min-width: 0; }
.mega-sub-h { display: inline-flex; align-items: center; gap: 7px; font-family: var(--display); font-weight: 800; font-size: 17px; color: var(--ink); margin-bottom: 16px; }
a.mega-sub-h:hover { color: var(--brand); }
.mega-sub-h .ico { width: 16px; height: 16px; }
.mega-sub-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px 18px; }
.mega-sub-grid a { display: block; padding: 8px 10px; border-radius: var(--r-sm); color: var(--text-2); font-size: 14px; }
.mega-sub-grid a:hover { background: var(--brand-50); color: var(--brand); }
.mega-empty { color: var(--muted); padding: 6px 0 16px; }
.mega-brands { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; padding: 24px; width: 100%; }
.mega-brands a { display: grid; place-items: center; text-align: center; padding: 16px 10px; border: 1px solid var(--line); border-radius: var(--r-md); color: var(--text); font-weight: 700; font-size: 13.5px; background: var(--surface); transition: border-color .2s, box-shadow .2s, transform .2s; }
.mega-brands a:hover { border-color: transparent; box-shadow: var(--sh-2); color: var(--brand); transform: translateY(-3px); }

/* ---------- HERO (emas, bold — selaras referensi) ---------- */
.bhero { background: linear-gradient(120deg, #ffc62e 0%, #ffb400 52%, #ff9d1e 100%); color: #1a1300; }
.bhero::before { background: linear-gradient(120deg, rgba(255,255,255,.22), rgba(255,255,255,0)); }
.bhero-blob.b1 { background: #fff; opacity: .26; }
.bhero-blob.b2 { background: #ff7a18; opacity: .34; }
.bhero-copy .pill { background: #1a1300; color: #fff; }
.bhero-title { color: #1a1300; }
.bhero-title .pop { color: var(--brand); }
.bhero-copy p { color: rgba(26,19,0,.82); }
.bhero-ring { background: radial-gradient(circle at 42% 38%, rgba(255,255,255,.98), rgba(255,255,255,.7) 55%, rgba(255,255,255,.16)); }
.bhero-arrow { background: rgba(0,0,0,.14); color: #1a1300; }
.bhero-arrow:hover { background: rgba(0,0,0,.26); }
.bhero-dots span { background: rgba(26,19,0,.28); }
.bhero-dots span.on { background: var(--brand); }
.bhero .btn-accent { background: var(--hot); color: #fff; box-shadow: 0 14px 28px rgba(255,77,87,.4); }
.bhero .btn-accent:hover { background: #ec3b46; }

/* ---------- 4 BANNER (merah / biru / terang / hijau) ---------- */
.btile.g0 { background: linear-gradient(135deg, #ff5b52, #d6322f); color: #fff; }
.btile.g1 { background: linear-gradient(135deg, #3f7bf0, #2456c8); color: #fff; }
.btile.g2 { background: linear-gradient(135deg, #f2f4fa, #e4e8f4); color: var(--ink); }
.btile.g3 { background: linear-gradient(135deg, #1db866, #0c8f49); color: #fff; }
.btile.g2 .pill { background: var(--ink); color: #fff; }
.btile.g2 h3, .btile.g2 p { color: var(--ink); }
.btile.g2 .go { background: var(--ink); color: #fff; }
.btile.g2::after { background: rgba(26,29,52,.06); }
.btile.g1 .go, .btile.g3 .go { background: #fff; color: var(--ink); }

/* ---------- FILTER BAR (emas) ---------- */
.filterbar { background: linear-gradient(120deg, #ffc62e, #ffb400); border-radius: var(--r-lg); padding: 18px 22px; box-shadow: var(--sh-2); }
.fb-h { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; color: #1a1300; }
.fb-h .ico { width: 18px; height: 18px; }
.fb-h b { font-family: var(--display); font-weight: 800; font-size: 16px; }
.fb-h span { color: rgba(26,19,0,.7); font-size: 13.5px; }
.fb-grid { display: grid; grid-template-columns: repeat(3, 1fr) auto; gap: 12px; align-items: center; }
.fb-grid select { height: 50px; border: 1px solid rgba(26,19,0,.14); border-radius: var(--r-md); padding: 0 16px; background: #fff; color: var(--text); font-weight: 600; cursor: pointer; }
.fb-grid select:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px var(--brand-50); }
.fb-go { height: 50px; }

/* ---------- PRODUK UNGGULAN (sidebar + grid + countdown) ---------- */
.featured .ft-wrap { display: grid; grid-template-columns: 270px 1fr; gap: 26px; align-items: start; }
.ft-side { display: flex; flex-direction: column; gap: 18px; position: sticky; top: 150px; }
.ft-cats { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-1); }
.ft-cats-h { display: flex; align-items: center; gap: 9px; background: var(--ink); color: #fff; padding: 14px 18px; font-family: var(--display); font-weight: 800; font-size: 14px; text-transform: uppercase; letter-spacing: .03em; }
.ft-cats-h .ico { width: 17px; height: 17px; color: var(--accent); }
.ft-cats-list { display: flex; flex-direction: column; padding: 6px; }
.ft-cats-list a { display: flex; align-items: center; justify-content: space-between; gap: 8px; padding: 11px 14px; border-radius: var(--r-sm); color: var(--text-2); font-weight: 600; font-size: 14px; }
.ft-cats-list a .ico { width: 14px; height: 14px; color: var(--muted-2); transition: transform .2s; }
.ft-cats-list a:hover { background: var(--brand-50); color: var(--brand); }
.ft-cats-list a:hover .ico { color: var(--brand); transform: translateX(3px); }
.ft-promo { position: relative; overflow: hidden; display: block; border-radius: var(--r-lg); min-height: 240px; background: linear-gradient(160deg, #1db866, #0c7a45); color: #fff; box-shadow: var(--sh-2); }
.ft-promo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .9; }
.ft-promo-c { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: flex-start; gap: 8px; height: 100%; min-height: 240px; justify-content: flex-end; padding: 22px; background: linear-gradient(to top, rgba(4,40,22,.78), rgba(4,40,22,.05)); }
.ft-promo-c h3 { margin: 0; font-family: var(--display); font-size: 24px; font-weight: 900; text-transform: uppercase; line-height: 1.05; }
.ft-promo-c p { margin: 0; font-size: 13.5px; opacity: .92; }
.ft-promo-c .pill { background: rgba(255,255,255,.22); color: #fff; }
.ft-promo-c .go { display: inline-flex; align-items: center; gap: 6px; margin-top: 6px; background: #fff; color: #0c7a45; font-weight: 800; font-size: 13px; padding: 9px 16px; border-radius: var(--r-pill); }
.ft-promo-c .go .ico { width: 14px; height: 14px; }
.ft-main { min-width: 0; }
.ft-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 6px; }
.ft-title { display: inline-flex; align-items: center; gap: 11px; }
.ft-title .ico { width: 24px; height: 24px; color: var(--accent); }
.ft-title h2 { margin: 0; font-family: var(--display); font-size: 26px; font-weight: 900; text-transform: uppercase; letter-spacing: -.01em; }
.ft-cd { display: flex; align-items: center; gap: 7px; }
.ft-cd .cd-box { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.ft-cd .cd-box b { min-width: 38px; padding: 6px 0; border-radius: var(--r-sm); background: var(--accent); color: #1a1300; font-family: var(--display); font-weight: 900; font-size: 16px; text-align: center; }
.ft-cd .cd-box span { font-size: 10px; color: var(--muted); text-transform: uppercase; letter-spacing: .04em; }
.ft-sub { color: var(--muted); margin: 0 0 18px; }
.ft-grid.pc-grid { grid-template-columns: repeat(auto-fill, minmax(184px, 1fr)); gap: 16px; }
.ft-all { margin-top: 28px; }

/* ---------- BANNER LEBAR (merah, mis. "Produk Baru 2026") ---------- */
.bannerwide { position: relative; overflow: hidden; display: flex; align-items: center; min-height: 180px; border-radius: var(--r-xl); padding: 36px 44px; color: #fff; background: linear-gradient(120deg, #ff5b52 0%, #d6322f 60%, #b3251f 100%); box-shadow: var(--sh-2); }
.bannerwide::after { content: ''; position: absolute; right: -40px; top: -40px; width: 220px; height: 220px; border-radius: 50%; background: rgba(255,255,255,.10); }
.bw-pic { position: absolute; right: 0; top: 0; height: 100%; width: 46%; object-fit: cover; object-position: center; opacity: .9; -webkit-mask-image: linear-gradient(90deg, transparent, #000 45%); mask-image: linear-gradient(90deg, transparent, #000 45%); }
.bw-c { position: relative; z-index: 2; max-width: 560px; display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.bw-c .pill { background: rgba(255,255,255,.22); color: #fff; }
.bw-c h2 { margin: 0; font-family: var(--display); font-size: 40px; font-weight: 900; text-transform: uppercase; line-height: .98; }
.bw-c p { margin: 0; opacity: .92; font-size: 15px; }
.bw-c .btn { margin-top: 6px; }

/* ---------- FOOTER (strip kepercayaan + logo dua-warna) ---------- */
.ftrust { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px 38px; padding: 22px 22px; border-bottom: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.86); }
.ftrust span { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; font-size: 14px; }
.ftrust .ico { width: 20px; height: 20px; color: var(--accent); }
.flogo { font-family: var(--display); font-size: 24px; font-weight: 900; color: #fff; }
.flogo i { font-style: normal; color: var(--accent); }
.fbar-in { display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; }
.fpay { color: rgba(255,255,255,.55); font-size: 13px; }
.fcol p .ico, .fcol a .ico { width: 15px; height: 15px; margin-right: 7px; vertical-align: -2px; color: var(--accent); }

/* ---------- RESPONSIF tema Bigxon ---------- */
@media (max-width: 1024px) {
  .featured .ft-wrap { grid-template-columns: 1fr; }
  .ft-side { position: static; flex-direction: row; }
  .ft-cats { flex: 1; }
  .ft-promo { flex: 1; min-height: 180px; }
  .ft-promo-c { min-height: 180px; }
  .mega-sub-grid { grid-template-columns: repeat(2, 1fr); }
  .mega-brands { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 768px) {
  .topbar2 .tb-info { display: none; }
  .topbar2 .tb-in { justify-content: flex-end; min-height: 36px; }
  .hc-cluster { display: none; }
  #catnav { display: none; }
  .hdr2 .hdr-in { height: auto; flex-wrap: wrap; gap: 12px; padding-block: 10px; }
  .hdr2 .search { order: 3; flex-basis: 100%; max-width: none; box-shadow: none; }
  .hdr2 .logo b { font-size: 23px; }
  .search-go { padding: 0 16px; } .search-go span { display: none; }
  .ft-side { display: none; }
  .ft-grid.pc-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .ft-head { gap: 10px; } .ft-title h2 { font-size: 21px; }
  .ft-cd .cd-box b { min-width: 32px; font-size: 14px; }
  .filterbar .fb-grid { grid-template-columns: 1fr; }
  .fb-go { width: 100%; }
  .bannerwide { padding: 26px 24px; min-height: 150px; }
  .bw-c h2 { font-size: 28px; } .bw-pic { width: 60%; opacity: .55; }
  .ftrust { gap: 12px 22px; padding: 18px; } .ftrust span { font-size: 13px; }
  .fbar-in { justify-content: center; text-align: center; }
}
@media (max-width: 480px) {
  .ft-grid.pc-grid { grid-template-columns: 1fr 1fr; }
  .bw-c h2 { font-size: 23px; }
}

/* ============================================================
   FX PASS — efek & animasi gaya Bigxon home-6 (v20260703a)
   Ditambahkan di akhir: hanya efek/gerak, TANPA mengubah layout.
   ============================================================ */

/* ---------- HERO: animasi font per-slide (re-trigger via .bslide.on) ---------- */
@keyframes bxUp { from { opacity: 0; transform: translateY(38px); } to { opacity: 1; transform: none; } }
@keyframes bxPopIn { 0% { opacity: 0; transform: translateY(30px) scale(.94); } 60% { opacity: 1; transform: translateY(-4px) scale(1.02); } 100% { opacity: 1; transform: none; } }
@keyframes bxArt { 0% { opacity: 0; transform: scale(.72) rotate(-6deg); } 60% { opacity: 1; transform: scale(1.05) rotate(1deg); } 100% { opacity: 1; transform: scale(1) rotate(0); } }
@keyframes bxRing { to { transform: rotate(360deg); } }
@keyframes bxFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes bxUnderline { from { transform: scaleX(0); } to { transform: scaleX(1); } }
.bhero-copy > * { animation: none; opacity: 0; }              /* matikan anim lama; tunggu .on */
.bslide.on .bhero-copy > * { animation: bxUp .65s var(--ease) both; }
.bslide.on .bhero-copy > *:nth-child(1) { animation-delay: .05s; }
.bslide.on .bhero-copy > *:nth-child(2) { animation: bxPopIn .75s var(--spring) both; animation-delay: .16s; }
.bslide.on .bhero-copy > *:nth-child(3) { animation-delay: .34s; }
.bslide.on .bhero-copy > *:nth-child(4) { animation-delay: .46s; }
.bhero-title .pop { position: relative; display: inline-block; background: linear-gradient(92deg, var(--accent), #ffd566 70%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.bhero-title .pop::after { content: ''; position: absolute; left: 0; right: 0; bottom: -.05em; height: .12em; border-radius: 4px; background: linear-gradient(90deg, var(--accent), #ffd566); transform: scaleX(0); transform-origin: left; }
.bslide.on .bhero-title .pop::after { animation: bxUnderline .55s .75s var(--ease) both; }
.bhero-art img { opacity: 0; }
.bslide.on .bhero-art img { animation: bxArt .9s var(--spring) both .2s, bxFloat 5.5s ease-in-out 1.2s infinite; filter: drop-shadow(0 26px 40px rgba(10,10,40,.45)); }
.bhero-ring { border-style: dashed !important; animation: bxRing 24s linear infinite; }
.bhero-arrow { transition: transform .2s var(--spring), background .2s; }
.bhero-arrow:hover { transform: scale(1.12); }
.bhero-dots span { transition: width .25s var(--ease), background .25s; }
.bhero-dots span.on { width: 26px; border-radius: 99px; }

/* ---------- KATEGORI: vector beranimasi (entrance stagger + idle float + hover spring) ---------- */
@keyframes bxCatIn { from { opacity: 0; transform: translateY(26px) scale(.85); } to { opacity: 1; transform: none; } }
@keyframes bxWiggle { 0%,100% { transform: rotate(0); } 25% { transform: rotate(-7deg) scale(1.1); } 60% { transform: rotate(5deg) scale(1.12); } }
@keyframes bxCatFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
.reveal-on .reveal.in .icat { animation: bxCatIn .55s var(--spring) both; }
.icat[data-i="0"] { animation-delay: .02s; } .icat[data-i="1"] { animation-delay: .08s; }
.icat[data-i="2"] { animation-delay: .14s; } .icat[data-i="3"] { animation-delay: .20s; }
.icat[data-i="4"] { animation-delay: .26s; } .icat[data-i="5"] { animation-delay: .32s; }
.icat[data-i="6"] { animation-delay: .38s; } .icat[data-i="7"] { animation-delay: .44s; }
.icat-ic { animation: bxCatFloat 4.5s ease-in-out infinite; box-shadow: 0 10px 22px rgba(30,34,90,.16); }
.icat[data-i="1"] .icat-ic, .icat[data-i="5"] .icat-ic { animation-delay: .7s; }
.icat[data-i="2"] .icat-ic, .icat[data-i="6"] .icat-ic { animation-delay: 1.4s; }
.icat[data-i="3"] .icat-ic, .icat[data-i="7"] .icat-ic { animation-delay: 2.1s; }
.icat:hover .icat-ic { animation: bxWiggle .55s var(--ease); box-shadow: 0 16px 30px rgba(30,34,90,.28); }
.icat-ic::after { content: ''; position: absolute; inset: -4px; border-radius: inherit; border: 2px solid transparent; transition: border-color .2s, transform .3s var(--spring); }
.icat { position: relative; }
.icat:hover .icat-ic::after { border-color: var(--brand-100); transform: scale(1.12); }
.icat-nm { transition: color .18s; }
.icat:hover .icat-nm { color: var(--brand); }

/* ---------- 4 BANNER interaktif: zoom gambar + kilau menyapu + panah CTA ---------- */
.btile { isolation: isolate; }
.btile .btile-pic { transition: transform .6s var(--ease), opacity .3s; }
.btile:hover .btile-pic { transform: scale(1.1) rotate(1.5deg); }
.btile::before { content: ''; position: absolute; top: 0; bottom: 0; left: -70%; width: 45%; z-index: 3; pointer-events: none;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,.35), transparent); transform: skewX(-18deg); }
.btile:hover::before { animation: shine .8s var(--ease); }
.btile .go { transition: gap .2s var(--ease); display: inline-flex; align-items: center; gap: 6px; }
.btile:hover .go { gap: 12px; }
.btile .pill { transition: transform .25s var(--spring); }
.btile:hover .pill { transform: scale(1.06) translateY(-2px); }

/* ---------- KARTU PRODUK: lift + zoom + badge pop + tombol aksi spring ---------- */
@keyframes bxBadge { 0% { transform: scale(.4) rotate(-12deg); opacity: 0; } 100% { transform: none; opacity: 1; } }
.reveal-on .reveal.in .pc-sale, .pc-sale { animation: bxBadge .45s var(--spring) both .15s; }
.pc:hover .pc-sale { animation: bxWiggle .5s var(--ease); }
.pc .qa-add { transition: transform .18s var(--spring), box-shadow .2s; }
.pc .qa-add:hover { transform: translateY(-2px) scale(1.03); box-shadow: 0 8px 18px rgba(74,78,200,.4); }
.pc .qa-wl { transition: transform .18s var(--spring); }
.pc .qa-wl:hover { transform: scale(1.16) rotate(-6deg); }
.pc-media::after { content: ''; position: absolute; top: 0; bottom: 0; left: -70%; width: 40%; pointer-events: none;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,.5), transparent); transform: skewX(-18deg); }
.pc:hover .pc-media::after { animation: shine .7s var(--ease); }
.pc-now { transition: color .18s; }
.pc:hover .pc-now { color: var(--brand); }

/* ---------- COUNTDOWN: kotak berdenyut saat angka berganti ---------- */
@keyframes bxTick { 0% { transform: scale(1); } 40% { transform: scale(1.14); } 100% { transform: scale(1); } }
.cd-box { transition: background .2s; }
.cd-box.tick b { animation: bxTick .32s var(--ease); }

/* ---------- MARQUEE: jeda saat hover + tepi memudar ---------- */
.tstrip { position: relative; }
.tstrip::before, .tstrip::after { content: ''; position: absolute; top: 0; bottom: 0; width: 70px; z-index: 2; pointer-events: none; }
.tstrip::before { left: 0; background: linear-gradient(90deg, var(--brand), transparent); }
.tstrip::after { right: 0; background: linear-gradient(-90deg, var(--brand), transparent); }
.tstrip:hover .mqx { animation-play-state: paused; }
.topbar .mqx:hover { animation-play-state: paused; }

/* ---------- HEADER: bayangan saat scroll + mega/drop muncul halus ---------- */
body.scrolled #hdr { box-shadow: 0 6px 24px rgba(18,20,60,.14); }
#hdr { transition: box-shadow .25s var(--ease); position: sticky; top: 0; z-index: 60; }
@keyframes bxDrop { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }
.drop-panel, .mega.on .mega-in { animation: bxDrop .22s var(--ease) both; }
.nav-l { position: relative; }
.nav-l::after { content: ''; position: absolute; left: 12px; right: 12px; bottom: 4px; height: 2px; border-radius: 2px; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform .22s var(--ease); }
.nav-l:hover::after { transform: scaleX(1); }

/* ---------- JUDUL SEKSI: garis aksen tergambar saat muncul ---------- */
.sec-head2 h2 { position: relative; display: inline-block; padding-bottom: 6px; }
.sec-head2 h2::after { content: ''; position: absolute; left: 0; bottom: 0; width: 56px; height: 3.5px; border-radius: 3px; background: linear-gradient(90deg, var(--brand), var(--accent)); transform: scaleX(0); transform-origin: left; transition: transform .5s .2s var(--ease); }
.reveal-on .reveal.in .sec-head2 h2::after { transform: scaleX(1); }
.sec-more { transition: gap .18s var(--ease); display: inline-flex; align-items: center; gap: 6px; }
.sec-more:hover { gap: 11px; }

/* ---------- Grid produk & rail: entrance berjenjang ---------- */
.reveal-on .reveal.in .pc-grid .pc, .reveal-on .reveal.in .rail .pc { animation: bxCatIn .5s var(--ease) both; }
.pc-grid .pc:nth-child(2), .rail .pc:nth-child(2) { animation-delay: .05s; }
.pc-grid .pc:nth-child(3), .rail .pc:nth-child(3) { animation-delay: .10s; }
.pc-grid .pc:nth-child(4), .rail .pc:nth-child(4) { animation-delay: .15s; }
.pc-grid .pc:nth-child(5), .rail .pc:nth-child(5) { animation-delay: .20s; }
.pc-grid .pc:nth-child(n+6), .rail .pc:nth-child(n+6) { animation-delay: .25s; }

/* ---------- Tombol ke atas ---------- */
#totop { position: fixed; right: 18px; bottom: 84px; z-index: 70; width: 46px; height: 46px; border-radius: 14px; border: none;
  background: var(--brand); color: #fff; font-size: 20px; font-weight: 900; cursor: pointer; box-shadow: 0 10px 26px rgba(40,44,140,.4);
  opacity: 0; transform: translateY(14px) scale(.8); pointer-events: none; transition: opacity .25s var(--ease), transform .25s var(--spring); }
#totop.show { opacity: 1; transform: none; pointer-events: auto; }
#totop:hover { background: var(--brand-700); transform: translateY(-3px); }
@media (min-width: 900px) { #totop { bottom: 24px; } }

/* ---------- Aksesibilitas: hormati preferensi kurangi gerak ---------- */
@media (prefers-reduced-motion: reduce) {
  .bhero-copy > *, .bhero-art img, .bslide.on .bhero-copy > * { opacity: 1 !important; animation: none !important; }
  .icat-ic, .bhero-ring { animation: none !important; }
}

/* ============================================================
   FX PASS 2 (v20260703b): vektor kategori beranimasi,
   hero teks putih + efek ORANYE, member area, booking.
   ============================================================ */

/* ---------- Ikon VEKTOR kategori: garis tergambar + detail hidup ---------- */
.icat-ic.vec { background: linear-gradient(135deg, var(--brand), #6e72f0); color: #fff; }
.icat-ic.vec .cvec { width: 34px; height: 34px; }
.icat-ic.vec .cvec path, .icat-ic.vec .cvec circle, .icat-ic.vec .cvec rect { stroke-dasharray: 90; stroke-dashoffset: 0; }
@keyframes bxDraw { from { stroke-dashoffset: 90; } to { stroke-dashoffset: 0; } }
.reveal-on .reveal.in .icat-ic.vec .cvec path,
.reveal-on .reveal.in .icat-ic.vec .cvec circle,
.reveal-on .reveal.in .icat-ic.vec .cvec rect { animation: bxDraw 1s var(--ease) both; }
/* detail hidup per jenis */
@keyframes bxBoltZap { 0%,100% { opacity: 1; } 50% { opacity: .25; } }
@keyframes bxSpin { to { transform: rotate(360deg); } }
@keyframes bxDrip { 0%,100% { transform: translateY(0); } 50% { transform: translateY(1.6px); } }
@keyframes bxRay { 0%,100% { opacity: 1; } 50% { opacity: .35; } }
.icat:hover .cv-aki .cv-bolt { animation: bxBoltZap .5s ease-in-out 2; }
.icat:hover .cv-ban, .icat:hover .cv-rem { animation: bxSpin 1.1s var(--ease); transform-origin: 50% 50%; }
.cv-gir { transform-origin: 50% 50%; }
.icat:hover .cv-gir { animation: bxSpin 1.4s var(--ease); }
.icat:hover .cv-oli .cv-fill { animation: bxDrip .7s ease-in-out 2; }
.icat:hover .cv-lampu .cv-ray { animation: bxRay .5s ease-in-out 2; }
/* warna kotak per indeks tetap dari tema lama; vec menimpa gradien seragam brand → kembalikan warna-warni */
.icat[data-i="1"] .icat-ic.vec { background: linear-gradient(135deg,#ff9d2e,#ffc400); }
.icat[data-i="2"] .icat-ic.vec { background: linear-gradient(135deg,#12a05f,#46d28a); }
.icat[data-i="3"] .icat-ic.vec { background: linear-gradient(135deg,#ff4d57,#ff8a6b); }
.icat[data-i="4"] .icat-ic.vec { background: linear-gradient(135deg,#7b46e6,#a98bff); }
.icat[data-i="5"] .icat-ic.vec { background: linear-gradient(135deg,#0fa6c0,#46d6e0); }
.icat[data-i="6"] .icat-ic.vec { background: linear-gradient(135deg,#e0457f,#ff86b3); }
.icat[data-i="7"] .icat-ic.vec { background: linear-gradient(135deg,#2b67e0,#5aa0ff); }

/* ---------- HERO: warna logo (indigo brand), teks PUTIH, efek tulisan ORANYE ---------- */
.bhero { background: linear-gradient(120deg, var(--brand) 0%, var(--brand-700) 58%, var(--brand-800) 100%); }
.bhero-copy, .bhero-copy p, .bhero-title { color: #fff; }
.bhero-title .pop { background: linear-gradient(92deg, #ff9d2e, #ff6a00 75%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.bhero-title .pop::after { background: linear-gradient(90deg, #ff9d2e, #ff6a00); box-shadow: 0 2px 12px rgba(255,122,0,.55); }
.bhero-copy .pill { background: #ff9d2e; color: #241300; }
.bslide.on .bhero-copy .pill { animation: bxPopIn .6s var(--spring) both .05s; }

/* ---------- MEMBER AREA ---------- */
.acct-grid { display: grid; grid-template-columns: 240px 1fr; gap: 22px; align-items: start; }
@media (max-width: 820px) { .acct-grid { grid-template-columns: 1fr; } }
.acct-side { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; position: sticky; top: 130px; }
.acct-hero { padding: 18px; background: linear-gradient(135deg, var(--brand), #6e72f0); color: #fff; }
.acct-hero .av { width: 46px; height: 46px; border-radius: 50%; background: rgba(255,255,255,.2); display: grid; place-items: center; font-weight: 900; font-size: 20px; font-family: var(--display); margin-bottom: 10px; }
.acct-hero b { display: block; font-size: 16px; }
.acct-hero i { font-style: normal; font-size: 12px; opacity: .85; }
.acct-tier { display: inline-flex; align-items: center; gap: 6px; margin-top: 8px; background: #ff9d2e; color: #241300; font-size: 11px; font-weight: 800; padding: 3px 10px; border-radius: 99px; }
.acct-nav { display: flex; flex-direction: column; padding: 8px; }
.acct-nav a, .acct-nav button { display: flex; align-items: center; gap: 10px; padding: 11px 12px; border-radius: 10px; font: inherit; font-size: 13.5px; font-weight: 600; color: var(--text); border: none; background: none; cursor: pointer; text-align: left; transition: background .15s, color .15s, transform .15s; }
.acct-nav a:hover, .acct-nav button:hover { background: var(--brand-100); color: var(--brand); transform: translateX(3px); }
.acct-nav a.on { background: var(--brand); color: #fff; }
.acct-nav .ico { width: 17px; height: 17px; }
.acct-main { min-width: 0; }
.acct-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 18px; margin-bottom: 14px; }
.acct-card h3 { margin: 0 0 12px; font-size: 15px; }
.acct-stat { display: grid; grid-template-columns: repeat(auto-fit,minmax(140px,1fr)); gap: 12px; }
.acct-stat .st { background: var(--bg-2); border-radius: var(--r-md); padding: 14px; }
.acct-stat .st b { display: block; font-family: var(--display); font-size: 22px; font-weight: 900; color: var(--brand); }
.acct-stat .st span { font-size: 11.5px; color: var(--muted); }
.ord { display: flex; align-items: center; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.ord:last-child { border-bottom: none; }
.ord b { font-family: ui-monospace, monospace; font-size: 13px; }
.ord .ord-m { flex: 1; min-width: 0; }
.ord .ord-m span { display: block; font-size: 11.5px; color: var(--muted); }
.ord .ord-t { font-weight: 800; font-size: 13.5px; }
.ost { font-size: 10.5px; font-weight: 800; padding: 3px 9px; border-radius: 99px; }
.ost.p { background: #fff3d6; color: #915e06; } .ost.ok { background: #d9f5e5; color: #0c7a47; }
.ost.x { background: #ffe1e3; color: #c0271f; } .ost.s { background: var(--brand-100); color: var(--brand); }
.veh { display: flex; align-items: center; gap: 12px; padding: 12px; border: 1px solid var(--line); border-radius: var(--r-md); margin-bottom: 10px; transition: border-color .15s, transform .15s; }
.veh:hover { border-color: var(--brand); transform: translateX(2px); }
.veh .veh-ic { width: 40px; height: 40px; border-radius: 12px; background: var(--brand-100); color: var(--brand); display: grid; place-items: center; flex: none; }
.veh b { font-family: ui-monospace, monospace; }
.veh .veh-m { flex: 1; } .veh .veh-m span { display: block; font-size: 11.5px; color: var(--muted); }
.veh .lk { font-size: 12px; color: var(--brand); font-weight: 700; cursor: pointer; background: none; border: none; padding: 4px; }
.veh .rm { color: var(--sale); }
.addr-it { padding: 12px; border: 1px solid var(--line); border-radius: var(--r-md); margin-bottom: 10px; font-size: 13px; }
.addr-it b { display: block; } .addr-it .sub { color: var(--muted); font-size: 12px; }
.addr-acts { display: flex; gap: 10px; margin-top: 8px; }
.addr-acts button { font: inherit; font-size: 12px; font-weight: 700; color: var(--brand); background: none; border: none; cursor: pointer; padding: 0; }
.addr-acts .rm { color: var(--sale); }
.tagdef { font-size: 10px; font-weight: 800; background: var(--brand-100); color: var(--brand); border-radius: 99px; padding: 2px 8px; margin-left: 6px; }

/* ---------- BOOKING SERVIS ---------- */
.bk-wrap { max-width: 640px; margin: 0 auto; }
.bk-hero { text-align: center; padding: 34px 16px 10px; }
.bk-hero h1 { font-family: var(--display); font-size: clamp(26px, 4vw, 38px); font-weight: 900; margin: 0 0 6px; }
.bk-hero h1 .pop { color: #ff7a00; }
.bk-hero p { color: var(--muted); margin: 0; }
.bk-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-xl); box-shadow: var(--sh-2); padding: 22px; margin: 18px 0 40px; }
.bk-slotinfo { font-size: 11.5px; color: var(--muted); margin-top: 4px; }
.bk-ok { text-align: center; padding: 20px 6px; }
.bk-ok .big { width: 74px; height: 74px; border-radius: 50%; background: #d9f5e5; color: #0c7a47; display: grid; place-items: center; font-size: 36px; margin: 0 auto 14px; animation: pop .5s var(--spring) both; }
.bk-ok .num { font-family: ui-monospace, monospace; font-weight: 800; color: var(--brand); font-size: 17px; }
.bk-ok p { color: var(--muted); font-size: 13.5px; line-height: 1.6; }
.hp-trap { position: absolute; left: -9999px; opacity: 0; }
.nav-book { color: #ffd9a8 !important; font-weight: 800 !important; }
.nav-book .ico { width: 15px; height: 15px; }
/* select ikut gaya field (booking) */
.field select { width: 100%; height: 50px; border: 2px solid var(--line); border-radius: var(--r-md); padding: 0 16px; background: var(--bg); font: inherit; color: var(--text); }
.field select:focus { border-color: var(--brand); outline: none; box-shadow: 0 0 0 3px var(--brand-50); background: var(--surface); }

/* ============================================================
   FX PASS 3 (v20260703c): hero art full-height tanpa ring,
   badge booking, merek berlogo, kategori kapital rapi.
   ============================================================ */

/* Hero: gambar setinggi banner (tanpa lingkaran) */
.bhero-ring { display: none !important; }
.bhero-in { grid-template-columns: 1.02fr .98fr; }
.bhero-art { min-height: 0; align-self: stretch; height: 100%; }
.bhero-art img { position: absolute; inset: 0; width: 100%; height: 100%; max-height: none; object-fit: contain; object-position: center; }
.bhero-art { position: relative; }
@media (max-width: 760px) { .bhero-art { min-height: 240px; } }

/* Badge menu Booking Servis: mencolok + berdenyut */
@keyframes bxPulse { 0%,100% { box-shadow: 0 0 0 0 rgba(255,122,0,.55); } 60% { box-shadow: 0 0 0 9px rgba(255,122,0,0); } }
.nav-book { background: linear-gradient(92deg, #ff9d2e, #ff6a00); color: #241300 !important; border-radius: 99px; padding: 7px 16px !important; margin-left: 6px; animation: bxPulse 2.2s ease-out infinite; position: relative; }
.nav-book::after { display: none; } /* tanpa garis bawah nav biasa */
.nav-book::before { content: 'BARU'; position: absolute; top: -8px; right: -6px; background: #ff2d55; color: #fff; font-size: 8.5px; font-weight: 900; padding: 2px 6px; border-radius: 99px; letter-spacing: .05em; }
.nav-book:hover { filter: brightness(1.06); transform: translateY(-1px); }

/* Grid merek (mega): logo / monogram + nama + jumlah produk */
.mega-brands { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; }
@media (max-width: 1100px) { .mega-brands { grid-template-columns: repeat(4, 1fr); } }
.bg-it { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border: 1px solid var(--line); border-radius: var(--r-md); background: var(--surface); transition: border-color .15s, transform .15s, box-shadow .15s; min-width: 0; }
.bg-it:hover { border-color: var(--brand); transform: translateY(-2px); box-shadow: var(--sh-1); }
.bg-logo { width: 34px; height: 34px; object-fit: contain; flex: none; }
.bg-mono { width: 34px; height: 34px; flex: none; border-radius: 10px; display: grid; place-items: center; font-family: var(--display); font-weight: 900; font-size: 13px; color: #fff; background: linear-gradient(135deg, hsl(var(--bh) 62% 46%), hsl(calc(var(--bh) + 28) 68% 58%)); }
.bg-nm { font-size: 12.5px; font-weight: 700; color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; flex: 1; min-width: 0; }
.bg-ct { font-size: 10px; font-weight: 800; color: var(--brand); background: var(--brand-100); border-radius: 99px; padding: 2px 7px; flex: none; }

/* Nama kategori: KAPITAL, dua baris rapi, tidak terpotong */
.icat-nm { text-transform: uppercase; font-size: 11.5px; font-weight: 800; letter-spacing: .02em; line-height: 1.25;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; text-align: center;
  max-width: 110px; min-height: 2.5em; word-break: break-word; }
.icat { align-items: center; }

/* Kerapian umum: pastikan teks kartu/kolom tidak terpotong kasar */
.pc-name { word-break: break-word; }
.sec-head2 h2 { word-break: break-word; }

/* ============================================================
   FX PASS 4 (v20260703d): hero image duduk di dasar banner,
   badge Booking MERAH + efek teks, countdown tegas terbaca.
   ============================================================ */

/* Hero: gambar menapak DASAR banner — tidak terpotong bawah */
.bslide { position: relative; }
.bhero-art { position: static; }
.bhero-art img { position: absolute; right: 3%; bottom: 0; top: auto; left: auto;
  height: 94%; width: 44%; max-width: 620px; object-fit: contain; object-position: bottom center; }
@media (max-width: 760px) {
  .bhero-in { grid-template-columns: 1fr; padding-bottom: 240px; }
  .bhero-art img { right: 50%; transform: translateX(50%); width: 82%; height: 230px; }
}

/* Badge Booking Servis: MERAH + efek kilau teks */
@keyframes bxTextShine { from { background-position: 200% 0; } to { background-position: -200% 0; } }
.nav-book { background: linear-gradient(92deg, #ff2d3d, #d6322f) !important; color: #fff !important; }
.nav-book .nb-t { background: linear-gradient(100deg, #fff 35%, #ffd9a8 50%, #fff 65%); background-size: 220% 100%;
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; animation: bxTextShine 2.6s linear infinite; font-weight: 800; }
.nav-book::before { background: #ffc400; color: #241300; }
@keyframes bxPulseRed { 0%,100% { box-shadow: 0 0 0 0 rgba(255,45,61,.5); } 60% { box-shadow: 0 0 0 9px rgba(255,45,61,0); } }
.nav-book { animation: bxPulseRed 2.2s ease-out infinite; }

/* Countdown unggulan: angka gelap tegas di kotak kuning (jamin kontras) */
.ft-cd .cd-box b { background: var(--accent); color: #1a1300 !important; }
.ft-cd .cd-box span { color: var(--muted); }

/* ============================================================
   FX PASS 5 (v20260703e): panduan booking, banner apps,
   sub-kategori, hero mobile (gambar di bawah teks).
   ============================================================ */

/* ---------- Banner PANDUAN BOOKING (interaktif + animatif) ---------- */
.bkg { padding: 8px 0 26px; }
.bkg-in { display: grid; grid-template-columns: .9fr 1.1fr; gap: 28px; align-items: center;
  background: linear-gradient(120deg, var(--brand) 0%, var(--brand-700) 70%); border-radius: var(--r-xl);
  padding: 30px 32px; color: #fff; position: relative; overflow: hidden; }
.bkg-in::before { content: ''; position: absolute; right: -80px; top: -80px; width: 260px; height: 260px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,157,46,.35), transparent 70%); }
.bkg-copy h2 { font-family: var(--display); font-size: clamp(22px, 3vw, 32px); font-weight: 900; margin: 10px 0 8px; }
.bkg-copy h2 .pop { color: #ff9d2e; }
.bkg-copy p { opacity: .92; font-size: 14px; margin: 0 0 16px; max-width: 40ch; }
.bkg-copy .pill { background: #ff9d2e; color: #241300; }
.bkg-cta { animation: bxPulse 2.4s ease-out infinite; }
.bkg-steps { position: relative; display: grid; gap: 10px; }
.bkg-line { position: absolute; left: 19px; top: 20px; bottom: 20px; width: 2px;
  background: repeating-linear-gradient(180deg, rgba(255,255,255,.5) 0 6px, transparent 6px 12px); }
.bkg-step { position: relative; display: flex; align-items: center; gap: 12px; background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18); border-radius: var(--r-md); padding: 11px 14px; backdrop-filter: blur(3px);
  transition: transform .2s var(--spring), background .2s, border-color .2s; }
.reveal-on .reveal.in .bkg-step { animation: bxCatIn .5s var(--ease) both; animation-delay: calc(var(--i) * .12s + .15s); }
.bkg-step:hover { transform: translateX(8px) scale(1.02); background: rgba(255,255,255,.18); border-color: #ff9d2e; }
.bkg-num { position: absolute; left: -6px; top: -6px; width: 20px; height: 20px; border-radius: 50%; background: #ff9d2e; color: #241300;
  font-size: 11px; font-weight: 900; display: grid; place-items: center; }
.bkg-ic { width: 40px; height: 40px; flex: none; border-radius: 12px; background: rgba(255,255,255,.16); display: grid; place-items: center; }
.bkg-ic .ico, .bkg-ic svg { width: 20px; height: 20px; }
.bkg-step:hover .bkg-ic { animation: bxWiggle .5s var(--ease); }
.bkg-step b { font-size: 13.5px; display: block; }
.bkg-step p { font-size: 12px; opacity: .85; margin: 2px 0 0; line-height: 1.45; }
@media (max-width: 860px) { .bkg-in { grid-template-columns: 1fr; padding: 24px 18px; } }

/* ---------- Banner DOWNLOAD APPS (mockup HP animatif) ---------- */
.apb { padding: 8px 0 30px; }
.apb-in { display: grid; grid-template-columns: 1.05fr .95fr; gap: 26px; align-items: center;
  background: linear-gradient(120deg, #14163a 0%, #23268a 60%, var(--brand) 100%); border-radius: var(--r-xl);
  padding: 30px 34px; color: #fff; position: relative; overflow: hidden; min-height: 320px; }
.apb-copy h2 { font-family: var(--display); font-size: clamp(22px, 3vw, 32px); font-weight: 900; margin: 10px 0 8px; }
.apb-copy h2 .pop { color: #ff9d2e; }
.apb-copy p { opacity: .9; font-size: 14px; max-width: 42ch; margin: 0 0 18px; }
.apb-copy .pill { background: rgba(255,255,255,.16); color: #fff; }
.apb-badges { display: flex; gap: 12px; flex-wrap: wrap; }
.store-badge { display: inline-flex; align-items: center; gap: 10px; background: #0b0c1e; border: 1px solid rgba(255,255,255,.25);
  border-radius: 13px; padding: 9px 16px; color: #fff; transition: transform .2s var(--spring), border-color .2s, box-shadow .2s; }
.store-badge:hover { transform: translateY(-3px) scale(1.03); border-color: #ff9d2e; box-shadow: 0 10px 26px rgba(0,0,0,.4); }
.store-badge svg { width: 26px; height: 26px; }
.store-badge span { display: flex; flex-direction: column; line-height: 1.15; }
.store-badge i { font-style: normal; font-size: 9px; letter-spacing: .08em; opacity: .75; }
.store-badge b { font-size: 15px; font-weight: 800; }
.apb-phone-wrap { position: relative; display: grid; place-items: center; }
@keyframes apbFloat { 0%,100% { transform: rotate(-6deg) translateY(0); } 50% { transform: rotate(-6deg) translateY(-12px); } }
.apb-phone { position: relative; width: 210px; height: 420px; border-radius: 34px; background: #0b0c1e;
  border: 3px solid rgba(255,255,255,.25); box-shadow: 0 30px 60px rgba(0,0,0,.5); padding: 12px 10px; animation: apbFloat 5.5s ease-in-out infinite; }
.apb-notch { position: absolute; top: 10px; left: 50%; transform: translateX(-50%); width: 70px; height: 16px; border-radius: 99px; background: #000; z-index: 2; }
.apb-glow { position: absolute; inset: 30% 8%; border-radius: 50%; background: radial-gradient(circle, rgba(255,157,46,.32), transparent 70%); filter: blur(8px); z-index: 0; }
.apb-screen { position: relative; width: 100%; height: 100%; border-radius: 24px; overflow: hidden; background: #f4f5fa; display: flex; flex-direction: column; gap: 7px; padding: 22px 8px 8px; }
.mkp-top { display: flex; align-items: center; justify-content: space-between; }
.mkp-logo { font-family: var(--display); font-weight: 900; font-size: 9.5px; color: #23268a; }
.mkp-logo b { color: #ff9d2e; }
.mkp-cart { width: 14px; height: 14px; border-radius: 5px; background: var(--brand); }
.mkp-hero { border-radius: 12px; background: linear-gradient(120deg, var(--brand), #6e72f0); color: #fff; padding: 12px 10px; }
.mkp-hero b { display: block; font-family: var(--display); font-weight: 900; font-size: 11px; }
.mkp-hero i { font-style: normal; font-weight: 900; font-family: var(--display); font-size: 11px; color: #ff9d2e; }
.mkp-row { display: flex; gap: 6px; }
@keyframes mkpPop { from { opacity: 0; transform: scale(.6); } to { opacity: 1; transform: none; } }
.mkp-cat { width: 26px; height: 26px; border-radius: 50%; background: linear-gradient(135deg, #6e72f0, var(--brand)); animation: mkpPop .5s var(--spring) both; animation-delay: calc(var(--i) * .18s + .3s); }
.mkp-cat:nth-child(2) { background: linear-gradient(135deg, #ff9d2e, #ffc400); }
.mkp-cat:nth-child(3) { background: linear-gradient(135deg, #12a05f, #46d28a); }
.mkp-cat:nth-child(4) { background: linear-gradient(135deg, #ff4d57, #ff8a6b); }
.mkp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.mkp-card { background: #fff; border-radius: 10px; padding: 6px; display: flex; flex-direction: column; gap: 4px; box-shadow: 0 2px 6px rgba(20,24,60,.08); animation: mkpPop .5s var(--spring) both; animation-delay: calc(var(--i) * .15s + .7s); }
.mkp-img { height: 42px; border-radius: 7px; background: linear-gradient(135deg, #e8eaf6, #d7d9f0); }
@keyframes mkpShine { from { background-position: 200% 0; } to { background-position: -200% 0; } }
.mkp-img { background-image: linear-gradient(100deg, #e8eaf6 40%, #f6f7ff 50%, #e8eaf6 60%); background-size: 200% 100%; animation: mkpShine 2.4s linear infinite; }
.mkp-l1 { height: 5px; border-radius: 3px; background: #d3d6e8; width: 90%; }
.mkp-l2 { height: 5px; border-radius: 3px; background: var(--brand); width: 55%; }
@media (max-width: 860px) { .apb-in { grid-template-columns: 1fr; text-align: center; } .apb-badges { justify-content: center; } .apb-phone { width: 180px; height: 360px; } }

/* ---------- Sub-kategori di halaman produk ---------- */
.bc { font-size: 12.5px; color: var(--muted); margin-bottom: 8px; display: flex; gap: 6px; flex-wrap: wrap; }
.bc a { color: var(--brand); font-weight: 700; }
.subcat-row { display: flex; gap: 8px; flex-wrap: wrap; margin: 4px 0 16px; }
.subcat { display: inline-flex; align-items: center; padding: 7px 14px; border: 1.5px solid var(--line); border-radius: 99px;
  font-size: 12.5px; font-weight: 700; color: var(--text); background: var(--surface); transition: all .15s var(--ease); }
.subcat:hover { border-color: var(--brand); color: var(--brand); background: var(--brand-50); transform: translateY(-2px); }

/* ---------- HERO MOBILE: gambar DI BAWAH teks, tidak terpotong ---------- */
@media (max-width: 760px) {
  .bhero-in { grid-template-columns: 1fr; padding-bottom: 18px; }
  .bhero-art { position: relative; min-height: 0; margin-top: 14px; }
  .bhero-art img { position: static; width: 100%; height: auto; max-height: 250px; object-fit: contain; object-position: center bottom; transform: none; right: auto; }
  .bslide.on .bhero-art img { animation: bxArt .8s var(--spring) both .15s; }
}

/* ============================================================
   FX PASS 6 (v20260703f): fix teks pencarian, BANNER MEMBER,
   TIKET VOUCHER, hero mobile menyatu di dasar banner.
   ============================================================ */

/* FIX: teks pencarian tak terlihat (mewarisi putih header) */
.search input { color: var(--text); caret-color: var(--brand); }
.search input::placeholder { color: var(--muted); opacity: 1; }

/* ---------- BANNER BENEFIT MEMBER (di bawah hero) ---------- */
.mbb { padding: 22px 0 8px; }
.mbb-in { position: relative; display: grid; grid-template-columns: 1.1fr .9fr; gap: 26px; align-items: center;
  border-radius: var(--r-xl); padding: 34px 36px; color: #fff; overflow: hidden; min-height: 380px;
  background: radial-gradient(1200px 500px at 85% -10%, rgba(255,157,46,.28), transparent 55%),
              linear-gradient(118deg, #171a4a 0%, #23268a 48%, var(--brand) 100%); }
.mbb-orb { position: absolute; border-radius: 50%; filter: blur(2px); pointer-events: none; }
.mbb-orb.o1 { width: 220px; height: 220px; left: -70px; bottom: -90px; background: radial-gradient(circle, rgba(110,114,240,.5), transparent 70%); animation: bxFloat 7s ease-in-out infinite; }
.mbb-orb.o2 { width: 150px; height: 150px; right: 30%; top: -60px; background: radial-gradient(circle, rgba(255,196,0,.35), transparent 70%); animation: bxFloat 6s ease-in-out 1s infinite; }
.mbb-pill { background: linear-gradient(92deg, #ff9d2e, #ffc400); color: #241300; }
.mbb-copy h2 { font-family: var(--display); font-size: clamp(24px, 3.4vw, 38px); font-weight: 900; line-height: 1.08; margin: 12px 0 10px; }
.mbb-copy h2 .pop { background: linear-gradient(92deg, #ff9d2e, #ffc400); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.mbb-copy > p { opacity: .92; font-size: 14.5px; max-width: 46ch; margin: 0 0 18px; }
.mbb-perks { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 20px; }
.mbb-perk { display: flex; gap: 11px; align-items: flex-start; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--r-md); padding: 11px 13px; backdrop-filter: blur(3px); transition: transform .2s var(--spring), background .2s, border-color .2s; }
.reveal-on .reveal.in .mbb-perk { animation: bxCatIn .5s var(--ease) both; animation-delay: calc(var(--i) * .1s + .2s); }
.mbb-perk:hover { transform: translateY(-4px); background: rgba(255,255,255,.14); border-color: #ffc400; }
.mbb-pic { width: 36px; height: 36px; flex: none; border-radius: 11px; background: linear-gradient(135deg, #ff9d2e, #ffc400); color: #241300; display: grid; place-items: center; }
.mbb-pic .ico, .mbb-pic svg { width: 18px; height: 18px; }
.mbb-perk:hover .mbb-pic { animation: bxWiggle .5s var(--ease); }
.mbb-perk b { font-size: 13px; display: block; }
.mbb-perk p { font-size: 11.5px; opacity: .82; margin: 2px 0 0; line-height: 1.4; }
.mbb-cta { animation: bxPulse 2.4s ease-out infinite; }
.mbb-note { display: block; margin-top: 12px; font-size: 12px; opacity: .78; }
/* — smartphone dengan kartu member — */
.mbb-vis { position: relative; display: grid; place-items: center; }
.mbb-phone { position: relative; width: 230px; height: 430px; border-radius: 36px; background: #0b0c1e;
  border: 3px solid rgba(255,255,255,.28); box-shadow: 0 34px 70px rgba(0,0,0,.55); padding: 14px 11px;
  transform: rotate(5deg); animation: mbbPh 6s ease-in-out infinite; }
@keyframes mbbPh { 0%,100% { transform: rotate(5deg) translateY(0); } 50% { transform: rotate(5deg) translateY(-12px); } }
.mbb-notch { position: absolute; top: 11px; left: 50%; transform: translateX(-50%); width: 72px; height: 16px; border-radius: 99px; background: #000; z-index: 2; }
.mbb-scr { width: 100%; height: 100%; border-radius: 26px; background: #f4f5fa; overflow: hidden; padding: 26px 12px 12px; display: flex; flex-direction: column; gap: 12px; }
.mbb-card { position: relative; border-radius: 16px; padding: 16px 14px; color: #241300; overflow: hidden;
  background: linear-gradient(120deg, #ffc400, #ff9d2e 70%); box-shadow: 0 10px 24px rgba(255,157,46,.45); }
.mc-chip { display: block; width: 26px; height: 19px; border-radius: 5px; background: linear-gradient(135deg, #fff6, #fff2); border: 1px solid #ffffff88; margin-bottom: 8px; }
.mbb-card b { font-family: var(--display); font-weight: 900; font-size: 14px; display: block; }
.mbb-card i { font-style: normal; font-size: 10px; opacity: .8; }
.mc-pts { display: flex; align-items: baseline; gap: 5px; margin-top: 10px; }
.mc-num { font-family: var(--display); font-weight: 900; font-size: 24px; }
.mc-pts span { font-size: 9px; font-weight: 800; letter-spacing: .08em; }
.mc-shine { position: absolute; top: 0; bottom: 0; left: -60%; width: 40%; background: linear-gradient(105deg, transparent, rgba(255,255,255,.55), transparent); transform: skewX(-18deg); animation: shine 2.8s var(--ease) infinite; }
.mbb-tierrow { display: flex; gap: 6px; }
.mt { flex: 1; text-align: center; font-size: 9.5px; font-weight: 900; letter-spacing: .04em; border-radius: 8px; padding: 7px 0; background: #e8eaf6; color: #8a8fa3; }
.mt-b { background: #efd9c3; color: #7a4f21; } .mt-s { background: #e5e7ee; color: #5f6470; }
.mt-g { background: linear-gradient(120deg, #ffc400, #ff9d2e); color: #241300; }
.mt.on { outline: 2px solid #23268a; outline-offset: 1px; animation: bxTick .5s var(--ease) 1s backwards; }
.mbb-bar { height: 8px; border-radius: 99px; background: #e3e5f0; overflow: hidden; }
.mbb-bar span { display: block; height: 100%; width: 0; border-radius: 99px; background: linear-gradient(90deg, var(--brand), #ff9d2e); }
.reveal-on .reveal.in .mbb-bar span { animation: mbbBar 1.4s .5s var(--ease) forwards; }
@keyframes mbbBar { to { width: 78%; } }
.mbb-line { height: 9px; border-radius: 5px; background: #e3e5f0; }
.mbb-line.l1 { width: 85%; } .mbb-line.l2 { width: 60%; }
.mbb-float { position: absolute; background: #fff; color: #23268a; font-size: 11.5px; font-weight: 800; border-radius: 99px;
  padding: 7px 13px; box-shadow: 0 10px 26px rgba(10,12,40,.35); white-space: nowrap; }
.mbb-float.f1 { right: 6%; top: 14%; animation: bxFloat 4.5s ease-in-out infinite; }
.mbb-float.f2 { right: 30%; bottom: 12%; animation: bxFloat 5.2s ease-in-out .8s infinite; }
.mbb-float.f3 { right: 2%; bottom: 30%; animation: bxFloat 4.8s ease-in-out 1.6s infinite; }
@media (max-width: 900px) {
  .mbb-in { grid-template-columns: 1fr; padding: 26px 18px; }
  .mbb-perks { grid-template-columns: 1fr; }
  .mbb-vis { margin-top: 6px; } .mbb-float.f2 { display: none; }
}

/* ---------- TIKET VOUCHER (klaim → daftar) ---------- */
.vch { padding: 4px 0 10px; }
.vch-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
@media (max-width: 900px) { .vch-row { grid-template-columns: 1fr; } }
.vticket { position: relative; display: flex; align-items: center; gap: 12px; border-radius: 16px; padding: 16px 14px;
  color: #fff; overflow: hidden; isolation: isolate; box-shadow: 0 10px 26px rgba(20,24,60,.18);
  transition: transform .2s var(--spring), box-shadow .2s; }
.reveal-on .reveal.in .vticket { animation: bxCatIn .55s var(--spring) both; animation-delay: calc(var(--i) * .12s); }
.vticket:hover { transform: translateY(-5px) rotate(-.5deg); box-shadow: 0 18px 40px rgba(20,24,60,.3); }
.vticket.v-g { background: linear-gradient(118deg, #0e9f61, #34c98a); }
.vticket.v-o { background: linear-gradient(118deg, #ff8a00, #ffb84d); }
.vticket.v-r { background: linear-gradient(118deg, #e0345e, #ff7d9c); }
/* lubang tiket + garis sobek */
.vticket::before, .vticket::after { content: ''; position: absolute; width: 18px; height: 18px; border-radius: 50%; background: var(--bg); top: 50%; transform: translateY(-50%); z-index: 2; }
.vticket::before { left: -9px; } .vticket::after { right: 74px; }
.vt-l { flex: none; }
.vt-ic { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 14px; background: rgba(255,255,255,.2); font-size: 22px; animation: bxFloat 3.6s ease-in-out infinite; }
.vticket:hover .vt-ic { animation: bxWiggle .5s var(--ease); }
.vt-m { flex: 1; min-width: 0; }
.vt-m b { font-family: var(--display); font-weight: 900; font-size: 15.5px; display: block; letter-spacing: .01em; }
.vt-m p { font-size: 11.5px; opacity: .9; margin: 2px 0 0; }
.vt-r { flex: none; border-left: 2px dashed rgba(255,255,255,.55); padding-left: 13px; margin-left: 2px; }
.vt-claim { display: inline-block; background: #fff; color: #23268a; font-size: 12px; font-weight: 900; letter-spacing: .04em;
  border-radius: 99px; padding: 9px 14px; transition: transform .18s var(--spring), box-shadow .2s; animation: bxPulse 2.6s ease-out infinite; }
.vt-claim:hover { transform: scale(1.08); box-shadow: 0 8px 20px rgba(0,0,0,.25); }
.vt-badge { position: absolute; top: -1px; right: 86px; background: #fff; color: #23268a; font-size: 10px; font-weight: 900;
  border-radius: 0 0 9px 9px; padding: 4px 9px; animation: bxBadge .5s var(--spring) both .4s; }
.vt-shine { position: absolute; top: 0; bottom: 0; left: -70%; width: 42%; background: linear-gradient(105deg, transparent, rgba(255,255,255,.35), transparent); transform: skewX(-18deg); animation: shine 3.2s var(--ease) infinite; z-index: 1; }
[data-theme="dark"] .vticket::before, [data-theme="dark"] .vticket::after { background: var(--bg); }

/* ---------- HERO MOBILE: gambar di bawah teks, MENYATU dgn dasar banner ---------- */
@media (max-width: 760px) {
  .bhero-in { padding-bottom: 0; }               /* gambar menempel dasar slide */
  .bhero-art { margin: 12px 0 0; }
  .bhero-art img { display: block; margin: 0 auto; max-height: 265px; object-position: center bottom; }
  .bslide { display: flex; flex-direction: column; }
  .bhero-dots { bottom: 8px; }
}

/* ============================================================
   FX PASS 7 (v20260703g): E-KATALOG elegan — sampul buku,
   pencarian besar, hasil dgn nomor halaman.
   ============================================================ */
.ek-hero { background: radial-gradient(900px 380px at 80% -20%, rgba(255,157,46,.22), transparent 60%),
  linear-gradient(120deg, #14163a, #23268a 55%, var(--brand)); color: #fff; padding: 44px 0 30px; }
.ek-pill { background: rgba(255,255,255,.14); color: #fff; }
.ek-hero h1 { font-family: var(--display); font-weight: 900; font-size: clamp(26px, 4vw, 40px); margin: 12px 0 6px; }
.ek-hero h1 .pop { background: linear-gradient(92deg, #ff9d2e, #ffc400); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.ek-hero p { opacity: .9; margin: 0 0 18px; }
.ek-search { display: flex; gap: 10px; max-width: 620px; background: #fff; border-radius: 16px; padding: 7px;
  box-shadow: 0 16px 40px rgba(5,8,40,.4); }
.ek-search input { flex: 1; border: none; outline: none; background: transparent; font: inherit; font-size: 15px;
  padding: 0 14px; color: var(--text); caret-color: var(--brand); }
.ek-search input::placeholder { color: var(--muted); }
.ek-brands { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 16px; }
.ek-bchip { font: inherit; font-size: 12.5px; font-weight: 700; color: #fff; background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22); border-radius: 99px; padding: 7px 14px; cursor: pointer; transition: all .15s var(--ease); }
.ek-bchip i { font-style: normal; opacity: .7; font-size: 11px; }
.ek-bchip:hover { background: rgba(255,255,255,.2); transform: translateY(-1px); }
.ek-bchip.on { background: #ff9d2e; border-color: #ff9d2e; color: #241300; }
/* — kartu sampul buku — */
.ek-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 16px; }
.ek-card { position: relative; display: flex; flex-direction: column; border-radius: 14px; overflow: hidden;
  background: var(--surface); border: 1px solid var(--line); box-shadow: var(--sh-1);
  transition: transform .22s var(--spring), box-shadow .22s; animation: bxCatIn .5s var(--ease) both; animation-delay: calc(var(--i) * .05s); }
.ek-card:hover { transform: translateY(-6px) rotate(-.6deg); box-shadow: 0 20px 44px rgba(20,24,60,.22); }
.ek-spine { position: absolute; left: 0; top: 0; bottom: 0; width: 7px; z-index: 2;
  background: linear-gradient(180deg, hsl(var(--eh) 62% 46%), hsl(calc(var(--eh) + 28) 68% 40%)); }
.ek-cv { position: relative; min-height: 148px; padding: 16px 14px 14px 20px; color: #fff; overflow: hidden;
  background: linear-gradient(130deg, hsl(var(--eh) 55% 30%), hsl(calc(var(--eh) + 24) 60% 44%)); }
.ek-cv::after { content: ''; position: absolute; top: 0; bottom: 0; left: -70%; width: 40%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,.28), transparent); transform: skewX(-18deg); }
.ek-card:hover .ek-cv::after { animation: shine .8s var(--ease); }
.ek-brand { font-size: 10px; font-weight: 900; letter-spacing: .12em; opacity: .85; text-transform: uppercase; }
.ek-model { display: block; font-family: var(--display); font-weight: 900; font-size: 17px; line-height: 1.15; margin-top: 4px; word-break: break-word; }
.ek-seg { display: inline-block; margin-top: 8px; font-size: 10px; font-weight: 800; background: rgba(255,255,255,.18);
  border-radius: 99px; padding: 3px 9px; text-transform: uppercase; letter-spacing: .04em; }
.ek-gear { position: absolute; right: -14px; bottom: -14px; opacity: .16; }
.ek-gear .ico, .ek-gear svg { width: 74px; height: 74px; }
.ek-card:hover .ek-gear { animation: bxSpin 6s linear infinite; transform-origin: 50% 50%; }
.ek-meta { display: flex; align-items: center; justify-content: space-between; padding: 10px 14px 10px 20px;
  font-size: 11.5px; color: var(--muted); font-weight: 700; }
.ek-open { color: var(--brand); display: inline-flex; align-items: center; gap: 4px; transition: gap .18s var(--ease); }
.ek-card:hover .ek-open { gap: 9px; }
/* — hasil pencarian — */
.ek-rescount { font-size: 13px; color: var(--muted); margin-bottom: 12px; }
.ek-results { display: flex; flex-direction: column; gap: 10px; }
.ek-res { display: flex; align-items: center; gap: 14px; background: var(--surface); border: 1px solid var(--line);
  border-radius: 14px; padding: 13px 16px; transition: border-color .15s, transform .15s, box-shadow .15s;
  animation: bxCatIn .45s var(--ease) both; animation-delay: calc(var(--i) * .05s); }
.ek-res:hover { border-color: var(--brand); transform: translateX(4px); box-shadow: var(--sh-1); }
.ek-res-ic { width: 44px; height: 44px; flex: none; border-radius: 12px; display: grid; place-items: center;
  font-family: var(--display); font-weight: 900; color: #fff;
  background: linear-gradient(135deg, hsl(var(--eh) 62% 46%), hsl(calc(var(--eh) + 28) 68% 58%)); }
.ek-res-m { flex: 1; min-width: 0; }
.ek-res-m b { font-size: 14px; }
.ek-part { display: inline-block; margin-left: 8px; font-family: ui-monospace, monospace; font-size: 11.5px; font-weight: 800;
  background: var(--brand-100); color: var(--brand); border-radius: 7px; padding: 2px 8px; }
.ek-res-m p { font-size: 12px; color: var(--muted); margin: 3px 0 0; overflow: hidden; text-overflow: ellipsis;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.ek-res-pg { flex: none; font-size: 12px; font-weight: 800; color: var(--brand); display: inline-flex; align-items: center; gap: 4px; }
@media (max-width: 640px) { .ek-search { flex-direction: column; } .ek-search .btn { width: 100%; } }

/* ============================================================
   FX PASS 8 (v20260703h): PEMBACA BUKU 3D e-katalog —
   lembar berbalik nyata, bayangan lipat, punggung buku.
   ============================================================ */
.ekv { display: flex; flex-direction: column; min-height: calc(100vh - 210px); }
.ekv-bar { display: flex; align-items: center; gap: 14px; padding: 12px 18px; background: var(--surface);
  border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 5; }
.ekv-back { display: inline-flex; align-items: center; gap: 4px; font-weight: 800; font-size: 13px; color: var(--brand); }
.ekv-back .ico, .ekv-back svg { transform: rotate(180deg); width: 15px; height: 15px; }
.ekv-title { flex: 1; min-width: 0; font-family: var(--display); font-weight: 900; font-size: 15px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ekv-ctl { display: flex; align-items: center; gap: 10px; }
.ekv-btn { width: 38px; height: 38px; border-radius: 12px; border: 1.5px solid var(--line); background: var(--surface);
  font-size: 20px; font-weight: 900; color: var(--brand); cursor: pointer; transition: all .15s var(--spring); }
.ekv-btn:hover { background: var(--brand); color: #fff; transform: scale(1.08); }
.ekv-pg { font-size: 12.5px; font-weight: 800; color: var(--muted); min-width: 74px; text-align: center; font-family: ui-monospace, monospace; }
/* panggung: meja gelap elegan dgn vignette */
.ekv-stage { flex: 1; display: grid; place-items: center; padding: 26px 14px 18px; perspective: 2200px;
  background: radial-gradient(900px 420px at 50% 0%, #2b2e5e 0%, #171932 55%, #0e0f22 100%); }
.ekv-load { text-align: center; color: #cdd2f0; display: grid; gap: 14px; justify-items: center; }
.ekv-hint { text-align: center; font-size: 11.5px; color: var(--muted); padding: 9px 0 16px; margin: 0; }
/* buku */
.ekv-book { position: relative; display: flex; transform-style: preserve-3d; filter: drop-shadow(0 34px 44px rgba(0,0,0,.55)); }
.ekv-book.cover, .ekv-book.one { justify-content: center; }
.ekv-page { position: relative; background: #fff; overflow: hidden; }
.ekv-page img { display: block; height: min(72vh, 760px); width: auto; user-select: none; -webkit-user-drag: none; }
.pg-left { border-radius: 10px 2px 2px 10px; }
.pg-right { border-radius: 2px 10px 10px 2px; }
.pg-cover, .pg-single { border-radius: 8px; }
/* cahaya lipatan tengah (gutter) — buku terasa nyata */
.pg-left::after { content: ''; position: absolute; inset: 0 0 0 auto; width: 12%;
  background: linear-gradient(to right, transparent, rgba(0,0,0,.16)); pointer-events: none; }
.pg-right::after { content: ''; position: absolute; inset: 0 auto 0 0; width: 12%;
  background: linear-gradient(to left, transparent, rgba(0,0,0,.16)); pointer-events: none; }
.ekv-spinebar { position: absolute; left: 50%; top: 1%; bottom: 1%; width: 3px; transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(0,0,0,.28), rgba(0,0,0,.12)); border-radius: 3px; pointer-events: none; }
.ekv-book.cover .ekv-spinebar, .ekv-book.one .ekv-spinebar { display: none; }
/* lembar yang berbalik */
.ekv-leaf { position: absolute; top: 0; bottom: 0; right: 0; width: 50%; transform-style: preserve-3d; z-index: 6;
  transform-origin: left center; transition: transform .6s cubic-bezier(.35,.1,.28,1); }
.ekv-leaf.one { width: 100%; transform-origin: left center; }
.ekv-leaf.to-left { right: 0; transform-origin: left center; }
.ekv-leaf.to-left.go { transform: rotateY(-180deg); }
.ekv-leaf.to-right { left: 0; right: auto; transform-origin: right center; }
.ekv-leaf.to-right.go { transform: rotateY(180deg); }
.lf-face { position: absolute; inset: 0; backface-visibility: hidden; overflow: hidden; background: #fff; }
.lf-face img { display: block; height: 100%; width: 100%; object-fit: cover; }
.lf-front { border-radius: 2px 10px 10px 2px; }
.lf-back { transform: rotateY(180deg); border-radius: 10px 2px 2px 10px; }
.ekv-leaf.to-right .lf-front { border-radius: 10px 2px 2px 10px; }
.ekv-leaf.to-right .lf-back { border-radius: 2px 10px 10px 2px; }
/* bayangan dinamis saat berbalik */
.lf-front::after, .lf-back::after { content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(to right, rgba(0,0,0,0), rgba(0,0,0,.22)); opacity: 0; transition: opacity .6s; }
.ekv-leaf.go .lf-front::after, .ekv-leaf.go .lf-back::after { opacity: 1; }
@media (max-width: 819px) { .ekv-page img { height: min(66vh, 620px); } }

/* Badge toko aplikasi di banner member: pop-in berjenjang + mengambang halus */
.mbb-stores { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 14px; }
.store-badge.sb-sm { padding: 7px 13px; border-radius: 11px; }
.store-badge.sb-sm svg { width: 21px; height: 21px; }
.store-badge.sb-sm b { font-size: 13px; }
.store-badge.sb-sm i { font-size: 8px; }
.reveal-on .reveal.in .mbb-stores .store-badge { animation: bxCatIn .5s var(--spring) both; animation-delay: calc(var(--i) * .14s + .55s); }
.mbb-stores .store-badge { animation: bxFloat 4.6s ease-in-out calc(var(--i) * .9s + 1.2s) infinite; }
.mbb-stores .store-badge:hover { animation-play-state: paused; }
@media (max-width: 900px) { .mbb-stores { justify-content: flex-start; } }

/* ============================================================
   FX PASS 8 (v20260703j): MEMBER AREA v2 — kartu tier premium,
   tangga tier, stepper servis live, count-up, micro-interactions.
   ============================================================ */

/* Sidebar member: orbs + entrance menu */
.acct-hero { position: relative; overflow: hidden; }
.acct-hero::before { content: ''; position: absolute; right: -40px; top: -40px; width: 130px; height: 130px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,196,0,.35), transparent 70%); animation: bxFloat 6s ease-in-out infinite; }
.acct-hero .av { animation: bxPopIn .6s var(--spring) both; box-shadow: 0 0 0 3px rgba(255,255,255,.25); }
.acct-tier { animation: bxBadge .5s var(--spring) both .3s; }
.acct-nav a, .acct-nav button { animation: bxCatIn .4s var(--ease) both; }
.acct-nav a:nth-child(1) { animation-delay: .04s; } .acct-nav a:nth-child(2) { animation-delay: .08s; }
.acct-nav a:nth-child(3) { animation-delay: .12s; } .acct-nav a:nth-child(4) { animation-delay: .16s; }
.acct-nav a:nth-child(5) { animation-delay: .20s; } .acct-nav a:nth-child(6) { animation-delay: .24s; }
.acct-nav a:nth-child(7) { animation-delay: .28s; } .acct-nav button { animation-delay: .32s; }
.acct-card { animation: bxCatIn .45s var(--ease) both; }
.acct-main .acct-card:nth-child(2) { animation-delay: .08s; }
.acct-main .acct-card:nth-child(3) { animation-delay: .16s; }
.acct-main .acct-card:nth-child(4) { animation-delay: .24s; }
.lnk { display: inline-block; margin-top: 8px; font-size: 12.5px; font-weight: 800; color: var(--brand); }
.lnk:hover { text-decoration: underline; }

/* Kartu TIER premium (warna asli dari tabel CustomerTier) */
.tiercard { position: relative; overflow: hidden; color: var(--tc, #7a4f21);
  background: linear-gradient(125deg, var(--tb, #fdf0d8), #fff 130%); border: 1px solid color-mix(in srgb, var(--tc, #7a4f21) 25%, transparent); }
.tc-shine { position: absolute; top: 0; bottom: 0; left: -60%; width: 40%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,.65), transparent); transform: skewX(-18deg); animation: shine 3.2s var(--ease) infinite; }
.tc-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; }
.tc-lb { font-size: 10px; font-weight: 900; letter-spacing: .12em; opacity: .75; }
.tc-name { display: block; font-family: var(--display); font-weight: 900; font-size: 24px; }
.tc-pts { text-align: right; }
.tc-pts b { display: block; font-family: var(--display); font-weight: 900; font-size: 26px; }
.tc-pts span { font-size: 9px; font-weight: 900; letter-spacing: .1em; }
.tc-ladder { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; margin: 14px 0 12px; }
.tc-step { font-size: 10.5px; font-weight: 900; letter-spacing: .03em; padding: 5px 11px; border-radius: 99px;
  background: var(--sb); color: var(--sc); opacity: .55; transition: transform .2s var(--spring), opacity .2s; }
.tc-step.on { opacity: 1; transform: scale(1.1); box-shadow: 0 4px 12px rgba(0,0,0,.15); outline: 2px solid var(--sc); outline-offset: 1px; }
.tc-step:hover { opacity: 1; transform: translateY(-2px); }
.tc-arr { font-style: normal; opacity: .4; font-weight: 900; }
.tc-progress { margin-top: 4px; }
.tc-bar { height: 10px; border-radius: 99px; background: rgba(0,0,0,.1); overflow: hidden; }
.tc-bar span { display: block; height: 100%; width: 0; border-radius: 99px;
  background: linear-gradient(90deg, var(--tc), color-mix(in srgb, var(--tc) 55%, #fff)); transition: width 1.4s var(--ease) .3s; position: relative; }
.tc-bar span.go { width: var(--w); }
.tc-bar span::after { content: ''; position: absolute; inset: 0; background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,.5) 50%, transparent 70%); background-size: 200% 100%; animation: bxTextShine 1.8s linear infinite; }
.tc-togo { display: block; margin-top: 7px; font-size: 12px; font-weight: 700; opacity: .85; }
.tc-perks { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 12px; }
.tc-perk { font-size: 11.5px; font-weight: 800; background: rgba(255,255,255,.7); border: 1px solid color-mix(in srgb, var(--tc) 30%, transparent);
  border-radius: 99px; padding: 5px 12px; animation: bxCatIn .45s var(--spring) both; animation-delay: calc(var(--i) * .12s + .5s); }
.tc-perk:hover { animation: bxWiggle .5s var(--ease); }
[data-theme="dark"] .tiercard { background: linear-gradient(125deg, color-mix(in srgb, var(--tb) 30%, #14163a), #14163a 130%); color: color-mix(in srgb, var(--tc) 60%, #fff); }
[data-theme="dark"] .tc-perk { background: rgba(255,255,255,.08); }

/* Statistik: pop masuk berjenjang + hover */
.acct-stat .st { animation: bxCatIn .45s var(--spring) both; animation-delay: calc(var(--i, 0) * .1s + .1s);
  transition: transform .18s var(--spring), box-shadow .18s; }
.acct-stat .st:hover { transform: translateY(-4px); box-shadow: var(--sh-1); }

/* SERVIS: kartu + stepper (warna papan bengkel) */
.serv-card { border: 1px solid var(--line); border-radius: var(--r-md); padding: 13px 14px; margin-bottom: 12px;
  animation: bxCatIn .45s var(--ease) both; animation-delay: calc(var(--i) * .07s); transition: border-color .15s, box-shadow .15s; }
.serv-card:hover { border-color: var(--brand); box-shadow: var(--sh-1); }
.serv-card.live { border-color: #22c55e55; background: linear-gradient(180deg, #22c55e0d, transparent 60%); }
.serv-head { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.serv-plate { font-family: ui-monospace, monospace; font-size: 14.5px; }
.serv-onl { font-size: 10px; font-weight: 800; color: #fff; background: #0369a1; border-radius: 99px; padding: 2px 8px; }
@keyframes servBlink { 0%,100% { opacity: 1; } 50% { opacity: .35; } }
.serv-live { font-size: 10px; font-weight: 900; color: #16a34a; letter-spacing: .05em; animation: servBlink 1.6s ease-in-out infinite; }
.serv-livecount { font-size: 11px; font-weight: 800; color: #16a34a; background: #dcfce7; border-radius: 99px; padding: 3px 10px; margin-left: 6px; }
.serv-when { margin-left: auto; font-size: 11.5px; color: var(--muted); font-weight: 700; }
.serv-sub { font-size: 12px; color: var(--muted); margin-top: 4px; }
.serv-note { font-size: 11.5px; font-weight: 800; color: #b45309; margin-top: 8px; }
.serv-foot { font-size: 12px; color: var(--muted); font-weight: 700; margin-top: 8px; }
/* stepper */
.svt { display: flex; align-items: flex-start; margin-top: 12px; position: relative; }
.svt-st { position: relative; flex: 1; display: flex; flex-direction: column; align-items: center; gap: 5px; min-width: 0; }
.svt-dot { width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; font-size: 11px; font-weight: 900;
  background: var(--bg-2); color: var(--muted); border: 2px solid var(--line); z-index: 1; transition: all .25s var(--spring); }
.svt-lb { font-size: 9.5px; font-weight: 800; color: var(--muted); text-transform: uppercase; letter-spacing: .03em; text-align: center; }
.svt-ln { position: absolute; top: 12px; left: calc(50% + 15px); right: calc(-50% + 15px); height: 3px; border-radius: 3px; background: var(--line); }
.svt-st.done .svt-dot { background: var(--c); border-color: var(--c); color: #fff; }
.svt-st.done .svt-ln { background: var(--c); }
.svt-st.done .svt-lb { color: var(--text); }
@keyframes svtPulse { 0%,100% { box-shadow: 0 0 0 0 color-mix(in srgb, var(--c) 55%, transparent); } 70% { box-shadow: 0 0 0 8px transparent; } }
.svt-st.cur .svt-dot { background: var(--c); border-color: var(--c); color: #fff; transform: scale(1.18); animation: svtPulse 1.8s ease-out infinite; }
.svt-st.cur .svt-lb { color: var(--c); font-weight: 900; }
.reveal-on .svt-st { animation: bxCatIn .4s var(--ease) both; animation-delay: calc(var(--i) * .08s + .1s); }
.svt-x { opacity: .5; }
.svt-cancel { position: absolute; inset: 0; display: grid; place-items: center; font-weight: 900; color: #c0271f;
  background: color-mix(in srgb, var(--bg) 70%, transparent); border-radius: 10px; letter-spacing: .1em; font-size: 13px; }
@media (max-width: 560px) { .svt-lb { font-size: 8px; } .svt-dot { width: 22px; height: 22px; } .svt-ln { top: 10px; } }

/* ============================================================
   FX PASS 9 (v20260703k): halaman konten — Promo, Layanan,
   Blog (+tipografi artikel), Syarat & Ketentuan.
   ============================================================ */
/* Header halaman */
.pgh { background: radial-gradient(800px 340px at 82% -20%, rgba(255,157,46,.2), transparent 60%),
  linear-gradient(120deg, #14163a, #23268a 55%, var(--brand)); color: #fff; padding: 40px 0 28px; }
.pgh h1 { font-family: var(--display); font-weight: 900; font-size: clamp(26px, 4vw, 40px); margin: 12px 0 6px; }
.pgh p { opacity: .9; margin: 0; max-width: 60ch; }
.pgh-pill { background: rgba(255,255,255,.14); color: #fff; }
.pgh-slim { padding: 30px 0 22px; }
.pgh-note { margin-top: 18px; font-size: 12px; }
.promo-grid { grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); }
.vt-ic.vt-img { background: #fff; padding: 4px; }
.vt-ic.vt-img img { width: 100%; height: 100%; object-fit: contain; border-radius: 9px; }
.vticket.v-b { background: linear-gradient(118deg, #2b67e0, #5aa0ff); }
.vticket.v-p { background: linear-gradient(118deg, #7b46e6, #a98bff); }

/* Blok layanan (Sales / Service / Sparepart) */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 980px) { .svc-grid { grid-template-columns: 1fr; } }
.svc-block { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-xl); padding: 24px 22px;
  box-shadow: var(--sh-1); animation: bxCatIn .5s var(--ease) both; animation-delay: calc(var(--i) * .12s);
  transition: transform .2s var(--spring), box-shadow .2s, border-color .2s; display: flex; flex-direction: column; }
.svc-block:hover { transform: translateY(-6px); box-shadow: 0 20px 44px rgba(20,24,60,.16); border-color: var(--brand); }
.svc-ic { width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center; font-size: 26px;
  background: linear-gradient(135deg, var(--brand-100), #fff); border: 1px solid var(--brand-100); margin-bottom: 14px; }
.svc-block:hover .svc-ic { animation: bxWiggle .5s var(--ease); }
.svc-block h2 { font-family: var(--display); font-weight: 900; font-size: 20px; margin: 0 0 8px; }
.svc-block > p { font-size: 13.5px; color: var(--muted); line-height: 1.65; margin: 0 0 12px; }
.svc-pts { margin: 0 0 16px; padding: 0; list-style: none; }
.svc-pts li { position: relative; padding: 5px 0 5px 24px; font-size: 12.5px; font-weight: 600; }
.svc-pts li::before { content: '✓'; position: absolute; left: 0; top: 4px; width: 17px; height: 17px; border-radius: 50%;
  background: #d9f5e5; color: #0c7a47; font-size: 10px; font-weight: 900; display: grid; place-items: center; }
.svc-ctas { margin-top: auto; display: flex; gap: 8px; flex-wrap: wrap; }

/* Blog: grid + kartu */
.bl-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 980px) { .bl-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .bl-grid { grid-template-columns: 1fr; } }
.bl-card { display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  overflow: hidden; box-shadow: var(--sh-1); transition: transform .2s var(--spring), box-shadow .2s;
  animation: bxCatIn .5s var(--ease) both; animation-delay: calc(var(--i) * .09s); }
.bl-card:hover { transform: translateY(-6px); box-shadow: 0 20px 44px rgba(20,24,60,.18); }
.bl-hero { grid-column: 1 / -1; flex-direction: row; }
@media (max-width: 760px) { .bl-hero { flex-direction: column; } }
.bl-hero .bl-media { flex: 1.1; min-height: 260px; }
.bl-hero .bl-body { flex: 1; align-self: center; }
.bl-hero h2 { font-size: clamp(19px, 2.4vw, 26px); }
.bl-media { position: relative; min-height: 170px; overflow: hidden; }
.bl-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.bl-card:hover .bl-img { transform: scale(1.06); }
.bl-vec { position: absolute; inset: 0; display: grid; place-items: center;
  background: linear-gradient(130deg, hsl(var(--bh) 55% 30%), hsl(calc(var(--bh) + 26) 62% 46%)); color: #fff; }
.bl-vec .cvec { width: 64px; height: 64px; opacity: .95; }
.bl-vec i { position: absolute; left: 14px; top: 12px; font-style: normal; font-size: 10px; font-weight: 900; letter-spacing: .08em;
  text-transform: uppercase; background: rgba(255,255,255,.18); border-radius: 99px; padding: 4px 11px; }
.bl-card:hover .bl-vec .cvec { animation: bxWiggle .55s var(--ease); }
.bl-body { padding: 16px 18px 14px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.bl-tags { display: flex; gap: 6px; }
.bl-tags span { font-size: 10px; font-weight: 900; letter-spacing: .05em; text-transform: uppercase; color: var(--brand);
  background: var(--brand-100); border-radius: 99px; padding: 3px 9px; }
.bl-body h2 { font-family: var(--display); font-weight: 800; font-size: 16.5px; line-height: 1.3; margin: 0; }
.bl-body > p { font-size: 13px; color: var(--muted); line-height: 1.6; margin: 0; }
.bl-meta { margin-top: auto; padding-top: 8px; display: flex; align-items: center; gap: 8px; font-size: 11.5px; color: var(--muted); font-weight: 700; }
.bl-more { margin-left: auto; color: var(--brand); transition: transform .18s var(--ease); }
.bl-card:hover .bl-more { transform: translateX(4px); }
.bl-mini .bl-media { min-height: 120px; }
.bl-mini h2 { font-size: 14px; }

/* Artikel: tipografi nyaman */
.art-wrap { max-width: 760px; padding-bottom: 50px; }
.art-title { font-family: var(--display); font-weight: 900; font-size: clamp(24px, 3.6vw, 36px); line-height: 1.18; margin: 8px 0 8px; }
.art-meta { font-size: 12.5px; color: var(--muted); font-weight: 700; margin-bottom: 16px; }
.art-cover { position: relative; height: 280px; border-radius: var(--r-lg); overflow: hidden; margin-bottom: 22px; box-shadow: var(--sh-2); }
.art-body { font-size: 15px; line-height: 1.85; color: var(--text); }
.art-body p { margin: 0 0 16px; }
.art-body h3 { font-family: var(--display); font-weight: 900; font-size: 18.5px; margin: 26px 0 10px; position: relative; padding-left: 14px; }
.art-body h3::before { content: ''; position: absolute; left: 0; top: 4px; bottom: 4px; width: 4px; border-radius: 3px;
  background: linear-gradient(180deg, var(--brand), #ff9d2e); }
.art-body ul { margin: 0 0 16px; padding-left: 20px; }
.art-body li { margin-bottom: 8px; }
.art-body a { color: var(--brand); font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }
.art-more h3 { font-family: var(--display); font-weight: 900; margin: 30px 0 14px; }

/* Syarat & Ketentuan */
.tnc-wrap { padding-bottom: 60px; }
.tnc-intro { font-size: 14.5px; line-height: 1.75; color: var(--muted); margin: 18px 0 20px; }
.tnc-toc { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 16px 18px; margin-bottom: 26px; }
.tnc-toc b { display: block; font-size: 13px; margin-bottom: 8px; }
.tnc-toc a { display: inline-block; font-size: 12px; font-weight: 700; color: var(--brand); background: var(--brand-50);
  border-radius: 99px; padding: 5px 12px; margin: 0 6px 6px 0; transition: all .15s var(--ease); }
.tnc-toc a:hover { background: var(--brand); color: #fff; transform: translateY(-1px); }
.tnc-sec { animation: bxCatIn .45s var(--ease) both; animation-delay: calc(var(--i) * .05s); scroll-margin-top: 130px; }
.tnc-sec h2 { font-family: var(--display); font-weight: 900; font-size: 17px; margin: 22px 0 8px; }

/* ============================================================
   FX PASS 10 (v20260703l): harga member, 404, lupa sandi.
   ============================================================ */
.mprice { display: inline-flex; align-items: center; gap: 6px; margin-top: 6px; font-size: 12px; font-weight: 800;
  color: #7a4f21; background: linear-gradient(92deg, #fdf0d8, #fff3d6); border: 1px solid #eeda9d; border-radius: 99px; padding: 5px 12px;
  animation: bxCatIn .5s var(--spring) both .2s; }
.nf { min-height: 55vh; display: grid; place-items: center; }
.nf-in { text-align: center; max-width: 480px; }
.nf-code { display: block; font-family: var(--display); font-weight: 900; font-size: clamp(64px, 12vw, 110px); line-height: 1;
  background: linear-gradient(92deg, var(--brand), #ff9d2e); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.nf-in h1 { font-family: var(--display); font-weight: 900; font-size: 22px; margin: 10px 0 8px; }
.nf-in p { color: var(--muted); margin: 0 0 18px; }
.nf-acts { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.au-forgot { border: none; background: none; font: inherit; font-size: 12.5px; font-weight: 700; color: var(--brand);
  cursor: pointer; padding: 4px 0 0; text-align: center; }
.au-forgot:hover { text-decoration: underline; }
.au-fg b { display: block; font-size: 15px; margin-bottom: 8px; }
.au-fg p { font-size: 13px; color: var(--muted); line-height: 1.65; margin: 0 0 14px; }
.au-ref { font-family: ui-monospace, monospace; background: var(--brand-100); color: var(--brand); border-radius: 7px; padding: 2px 8px; }

/* ============================================================
   FX PASS 11 (v20260703o): HUANGLIE GAMES — FAB, hub, 2 game.
   ============================================================ */
/* FAB beranda */
#gfab { position: fixed; left: 16px; bottom: 84px; z-index: 60; width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), #23268a); box-shadow: 0 10px 28px rgba(35,38,138,.45);
  display: none; align-items: center; justify-content: center; text-decoration: none;
  transform: translateY(8px); opacity: 0; transition: transform .3s var(--spring), opacity .3s; }
#gfab.show { display: flex; transform: none; opacity: 1; animation: gfabFloat 3.4s ease-in-out infinite; }
@keyframes gfabFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
#gfab img { width: 40px; height: auto; filter: drop-shadow(0 1px 3px rgba(0,0,0,.4)); pointer-events: none; }
#gfab b { position: absolute; right: -4px; top: -6px; font-size: 20px; animation: bxWiggle 2.6s var(--ease) infinite; }
.gfab-ring { position: absolute; inset: -4px; border-radius: 50%; border: 2px solid var(--brand);
  animation: gfabPulse 2s ease-out infinite; }
@keyframes gfabPulse { 0% { transform: scale(.9); opacity: .8; } 100% { transform: scale(1.5); opacity: 0; } }
.gfab-tip { position: absolute; left: 72px; top: 50%; transform: translateY(-50%); white-space: nowrap;
  background: #111330; color: #fff; font-style: normal; font-size: 11.5px; font-weight: 800; border-radius: 99px;
  padding: 6px 12px; opacity: 0; pointer-events: none; transition: opacity .2s, transform .2s; }
#gfab:hover .gfab-tip { opacity: 1; transform: translateY(-50%) translateX(4px); }
@media (min-width: 900px) { #gfab { bottom: 28px; } }

/* Hub */
.gm-hero { background: radial-gradient(700px 300px at 80% -10%, rgba(255,157,46,.28), transparent 60%),
  linear-gradient(120deg, #101233, #23268a 60%, var(--brand)); color: #fff; padding: 40px 0 28px; text-align: center; }
.gm-logo { height: 48px; width: auto; filter: drop-shadow(0 2px 8px rgba(0,0,0,.35)); animation: bxPopIn .6s var(--spring) both; }
.gm-hero h1 { font-family: var(--display); font-weight: 900; font-size: clamp(26px, 4.4vw, 42px); margin: 10px 0 6px;
  background: linear-gradient(92deg, #fff, #ffc400); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.gm-hero p { opacity: .9; margin: 0 0 12px; }
.gm-reset { display: inline-flex; gap: 6px; align-items: center; font-size: 12.5px; font-weight: 700;
  background: rgba(255,255,255,.12); border-radius: 99px; padding: 7px 16px; }
.gm-reset b { font-family: ui-monospace, monospace; color: #ffc400; }
.gm-reset span { opacity: .7; font-size: 11px; }
.gm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 18px; }
@media (max-width: 700px) { .gm-grid { grid-template-columns: 1fr; } }
.gm-card { position: relative; overflow: hidden; border-radius: var(--r-xl); padding: 22px 20px; color: #fff;
  box-shadow: var(--sh-2); transition: transform .22s var(--spring), box-shadow .22s; animation: bxCatIn .5s var(--ease) both; }
.gm-card:hover { transform: translateY(-6px) rotate(-.5deg); box-shadow: 0 22px 48px rgba(20,24,60,.3); }
.gm-pit { background: linear-gradient(130deg, #b91c1c, #f97316); }
.gm-tor { background: linear-gradient(130deg, #166534, #22c55e); animation-delay: .1s; }
.gm-ic { font-size: 40px; display: block; margin-bottom: 8px; animation: bxFloat 3.5s ease-in-out infinite; }
.gm-card b { font-family: var(--display); font-weight: 900; font-size: 21px; display: block; }
.gm-card p { font-size: 13px; opacity: .92; margin: 6px 0 14px; line-height: 1.55; }
.gm-play { display: inline-block; background: #fff; color: #111330; font-weight: 900; font-size: 13px;
  border-radius: 99px; padding: 9px 20px; transition: transform .18s var(--spring); }
.gm-card:hover .gm-play { transform: scale(1.07); }
.gm-panel { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-xl);
  padding: 18px; margin-bottom: 16px; box-shadow: var(--sh-1); }
.gm-panel h3 { font-family: var(--display); font-weight: 900; margin: 0 0 10px; }
.gm-tabs { display: flex; gap: 8px; margin-bottom: 12px; }
.gm-tab { font: inherit; font-size: 12.5px; font-weight: 800; border: 1px solid var(--line); background: var(--bg-2);
  color: var(--text); border-radius: 99px; padding: 8px 16px; cursor: pointer; transition: all .15s var(--ease); }
.gm-tab.on { background: var(--brand); border-color: var(--brand); color: #fff; }
.gm-prizes { margin: 0; padding-left: 20px; }
.gm-prizes li { font-weight: 700; padding: 4px 0; animation: bxCatIn .4s var(--ease) both; animation-delay: calc(var(--i) * .1s); }
.lb-head { font-size: 12.5px; color: var(--muted); margin-bottom: 10px; }
.lb-row { display: flex; align-items: center; gap: 10px; padding: 9px 12px; border-radius: 12px;
  animation: bxCatIn .4s var(--ease) both; animation-delay: calc(var(--i, 0) * .06s); }
.lb-row:nth-child(odd) { background: var(--bg-2); }
.lb-row.me { outline: 2px solid var(--brand); background: var(--brand-50); }
.lb-rk { width: 40px; font-weight: 900; font-size: 15px; }
.lb-nm { flex: 1; font-weight: 700; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.lb-nm i { font-style: normal; font-size: 11px; color: var(--brand); }
.lb-sc { font-family: ui-monospace, monospace; font-size: 15px; }
.lb-mine { margin-top: 8px; }
.gw-sec { margin-bottom: 12px; }
.gw-sec > b { display: block; margin-bottom: 6px; }
.gw-pz { font-size: 11.5px; color: var(--muted); font-weight: 700; }
.gw-st { font-size: 11.5px; font-weight: 800; color: #0c7a47; }
.gw-claim { padding: 7px 14px; font-size: 12px; animation: bxBadge .5s var(--spring) both, gfabFloat 2.4s ease-in-out .6s infinite; }

/* Panggung game bersama */
.garea { max-width: 560px; margin: 0 auto; padding: 12px 12px 30px; }
.gbar { display: flex; align-items: center; gap: 10px; padding: 10px 4px; }
.gback { font-size: 20px; font-weight: 900; color: var(--text); padding: 4px 10px; border-radius: 10px; }
.gback:hover { background: var(--bg-2); }
.gbar-logo { height: 22px; width: auto; }
.gbar b { font-family: var(--display); font-weight: 900; flex: 1; }
.gbar-sc { font-size: 13.5px; font-weight: 800; }
.gstage { background: linear-gradient(180deg, #14163a, #1d2050); border-radius: var(--r-xl); min-height: 420px;
  color: #fff; position: relative; overflow: hidden; box-shadow: var(--sh-2); user-select: none; -webkit-user-select: none; touch-action: manipulation; }
.gintro { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
  min-height: 420px; padding: 26px; }
.gi-ic { font-size: 52px; animation: bxFloat 3s ease-in-out infinite; }
.gintro h2 { font-family: var(--display); font-weight: 900; font-size: 24px; margin: 10px 0 8px; }
.gintro p { font-size: 13.5px; opacity: .9; line-height: 1.7; max-width: 40ch; margin: 0 0 18px; }
.gover { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
  min-height: 420px; padding: 26px; animation: bxPopIn .5s var(--spring) both; }
.gover img { height: 34px; width: auto; opacity: .95; }
.gover h2 { font-family: var(--display); font-weight: 900; margin: 10px 0 2px; }
.go-score { font-family: var(--display); font-weight: 900; font-size: 56px; line-height: 1;
  background: linear-gradient(92deg, #ffc400, #ff9d2e); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.go-sub { font-size: 13px; opacity: .85; margin: 6px 0 12px; }
.go-msg { font-size: 13px; line-height: 1.6; margin: 0 0 10px; }
.go-acts { display: flex; gap: 10px; margin-top: 12px; flex-wrap: wrap; justify-content: center; }
#go-net { min-height: 40px; }

/* Pit Stop */
.gp-bay { position: relative; min-height: 250px; padding: 14px; }
.gp-wall { display: flex; align-items: center; gap: 8px; opacity: .5; }
.gp-wall img { height: 20px; width: auto; }
.gp-wall span { font-size: 10px; font-weight: 900; letter-spacing: .2em; }
.gp-moto { display: grid; place-items: center; min-height: 170px; }
.gp-bike { position: relative; font-size: 74px; }
.gp-in { animation: gpIn .35s var(--ease) both; }
@keyframes gpIn { from { transform: translateX(-120%); } to { transform: none; } }
.gp-shake { animation: bxWiggle .4s var(--ease) 2; }
.gp-bubble { position: absolute; left: 70%; top: -34px; white-space: nowrap; background: #fff; color: #111330;
  font-size: 13.5px; font-weight: 900; border-radius: 14px 14px 14px 3px; padding: 8px 13px; box-shadow: 0 6px 18px rgba(0,0,0,.35);
  animation: bxPopIn .3s var(--spring) both .1s; }
.gp-timebar { height: 9px; background: rgba(255,255,255,.15); border-radius: 99px; overflow: hidden; }
.gp-timebar span { display: block; height: 100%; width: 100%; background: #22c55e; border-radius: 99px; transition: width .08s linear; }
.gp-tray { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; padding: 12px; background: rgba(0,0,0,.25); }
.gp-part { position: relative; font: inherit; border: 1px solid rgba(255,255,255,.18); background: rgba(255,255,255,.08);
  color: #fff; border-radius: 14px; padding: 10px 6px; cursor: pointer; display: flex; flex-direction: column; align-items: center; gap: 3px;
  transition: transform .12s var(--spring), background .12s; }
.gp-part:active { transform: scale(.93); }
.gp-part span { font-size: 24px; }
.gp-part b { font-size: 11px; font-weight: 800; }
.gp-part.flash-ok { background: #16a34a; }
.gp-part.flash-no { background: #b91c1c; animation: bxWiggle .3s var(--ease); }
.gp-fx { position: absolute; top: -8px; right: 6px; font-size: 14px; font-weight: 900; animation: gpFx .7s var(--ease) both; pointer-events: none; }
.gp-fx.ok { color: #4ade80; } .gp-fx.no { color: #f87171; }
@keyframes gpFx { from { transform: translateY(0); opacity: 1; } to { transform: translateY(-22px); opacity: 0; } }

/* Kunci Torsi */
.gt-wrap { display: flex; flex-direction: column; align-items: center; padding: 18px 14px 24px; cursor: pointer; }
.gt-svg { width: min(78vw, 330px); height: auto; }
.gt-face { fill: #0d0f2b; stroke: rgba(255,255,255,.2); stroke-width: 3; }
.gt-tick { stroke: rgba(255,255,255,.35); stroke-width: 2; }
.gt-zone { fill: #22c55e; opacity: .85; transition: opacity .15s; }
.gt-zone.zap-ok { fill: #86efac; animation: gtZap .4s var(--ease); }
.gt-zone.zap-no { fill: #ef4444; animation: bxWiggle .3s var(--ease); }
@keyframes gtZap { 0% { opacity: 1; } 50% { opacity: .4; } 100% { opacity: .85; } }
.gt-needle { stroke: #ffc400; stroke-width: 5; stroke-linecap: round; filter: drop-shadow(0 0 6px rgba(255,196,0,.6)); }
.gt-hubdot { fill: #ffc400; stroke: #14163a; stroke-width: 3; }
.gt-info { margin-top: 12px; font-weight: 900; font-size: 16px; min-height: 24px; }
.gt-ok { color: #4ade80; animation: bxPopIn .3s var(--spring) both; }
.gt-no { color: #f87171; animation: bxWiggle .35s var(--ease); }

/* ============================================================
   FX PASS 12 (v20260703p): HUANGLIE TURBO MATCH — match-3.
   ============================================================ */
/* Kartu hub */
.gm-match { background: linear-gradient(130deg, #7c3aed, #4a4ec8 55%, #f5b301 160%); animation-delay: .05s; grid-column: 1 / -1; }
.gm-new { position: absolute; right: 14px; top: 12px; background: #ffc400; color: #241300; font-size: 10px; font-weight: 900;
  letter-spacing: .1em; border-radius: 99px; padding: 4px 11px; animation: bxBadge .5s var(--spring) both .4s, servBlink 2.2s ease-in-out 1s infinite; }

/* Peta level */
.tm-map { max-width: 480px; margin: 0 auto; padding: 10px 12px 40px; }
.tm-map-head { display: flex; align-items: center; gap: 10px; padding: 8px 2px 14px; }
.tm-map-head img { height: 24px; width: auto; }
.tm-map-head b { font-family: var(--display); font-weight: 900; letter-spacing: .06em; flex: 1;
  background: linear-gradient(92deg, var(--brand), #f5b301); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.tm-mute, .tm-hbtn { font: inherit; font-size: 16px; border: 1px solid var(--line); background: var(--surface); border-radius: 12px;
  width: 40px; height: 40px; cursor: pointer; display: grid; place-items: center; color: var(--text); }
.tm-note { font-size: 12px; background: var(--brand-50); border: 1px solid var(--brand-100); border-radius: 12px; padding: 10px 14px; margin: 0 0 14px; }
.tm-road { position: relative; padding: 10px 0 20px;
  background: repeating-linear-gradient(180deg, transparent 0 34px, var(--line) 34px 36px) center / 4px 100% no-repeat; }
.tm-pin-row { display: flex; align-items: center; min-height: 76px; position: relative; animation: bxCatIn .4s var(--ease) both; animation-delay: calc(var(--i) * .04s); }
.tm-pin-row.l { justify-content: flex-start; padding-left: 12%; }
.tm-pin-row.r { justify-content: flex-end; padding-right: 12%; }
.tm-pin { position: relative; width: 62px; height: 62px; border-radius: 50%; border: none; cursor: pointer;
  font-family: var(--display); font-weight: 900; font-size: 21px; color: #fff;
  background: radial-gradient(circle at 32% 28%, #8b90ff, var(--brand) 60%, #23268a);
  box-shadow: 0 6px 0 #1b1d66, 0 10px 20px rgba(35,38,138,.35); transition: transform .15s var(--spring); }
.tm-pin:active { transform: translateY(3px); box-shadow: 0 3px 0 #1b1d66; }
.tm-pin.boss { background: radial-gradient(circle at 32% 28%, #ffe28a, #f5b301 60%, #b97c00); box-shadow: 0 6px 0 #8a5c00, 0 10px 20px rgba(245,179,1,.4); }
.tm-pin.lock { background: radial-gradient(circle at 32% 28%, #cbd5e1, #94a3b8 60%, #64748b); box-shadow: 0 6px 0 #475569; cursor: not-allowed; font-size: 16px; }
.tm-stars { position: absolute; left: 50%; bottom: -16px; transform: translateX(-50%); font-size: 12px; color: #f5b301; white-space: nowrap; text-shadow: 0 1px 2px rgba(0,0,0,.3); }
.tm-stars i { font-style: normal; color: var(--line); }
.tm-me { position: absolute; left: 50%; top: -26px; transform: translateX(-50%); font-size: 26px; animation: bxFloat 2.4s ease-in-out infinite; z-index: 2; }
.tm-pin-row.l .tm-me { left: calc(12% + 31px); }
.tm-pin-row.r .tm-me { left: auto; right: calc(12% + 31px); transform: translateX(50%); }
.tm-finish { text-align: center; font-weight: 900; color: var(--muted); padding: 16px 0; }

/* Arena permainan */
.tm-game { position: relative; max-width: 520px; margin: 0 auto; padding: 8px 8px 14px; min-height: 100vh;
  background: linear-gradient(180deg, #101233, #1a1d4e 40%, #23268a); display: flex; flex-direction: column; }
.tm-game:fullscreen { max-width: none; width: 100vw; }
.tm-game:fullscreen .tm-board, .tm-game:fullscreen .tm-boardwrap { max-width: min(94vw, 92vh - 160px); margin: 0 auto; }
.tm-hud { display: flex; align-items: center; gap: 8px; padding: 6px 2px 10px; color: #fff; }
.tm-hud .tm-hbtn { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.2); color: #fff; flex: none; }
.tm-goal { flex: 1; min-width: 0; }
.tm-goal span { font-size: 11.5px; font-weight: 800; display: block; margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.tm-gbar { height: 8px; border-radius: 99px; background: rgba(255,255,255,.15); overflow: hidden; }
.tm-gbar span { display: block; height: 100%; width: 0; border-radius: 99px; background: linear-gradient(90deg, #22c55e, #a3e635); transition: width .4s var(--ease); }
.tm-moves, .tm-scorebox { text-align: center; flex: none; }
.tm-moves b { display: block; width: 46px; height: 46px; border-radius: 50%; background: #fff; color: #16183f;
  font-family: var(--display); font-weight: 900; font-size: 19px; line-height: 46px; box-shadow: 0 3px 0 rgba(0,0,0,.25); }
.tm-scorebox b { display: block; font-family: var(--display); font-weight: 900; font-size: 17px; min-width: 64px; }
.tm-moves span, .tm-scorebox span { font-size: 8.5px; font-weight: 900; letter-spacing: .08em; opacity: .7; text-transform: uppercase; }
.tm-moves b.bump, .tm-scorebox b.bump { animation: bxPopIn .25s var(--spring); }
.tm-boardwrap { position: relative; width: 100%; }
.tm-board { position: relative; width: 100%; aspect-ratio: 1; border-radius: 16px; overflow: hidden;
  background:
    repeating-linear-gradient(0deg, transparent 0 calc(12.5% - 1px), rgba(255,255,255,.06) calc(12.5% - 1px) 12.5%),
    repeating-linear-gradient(90deg, transparent 0 calc(12.5% - 1px), rgba(255,255,255,.06) calc(12.5% - 1px) 12.5%),
    linear-gradient(135deg, #14163a, #191c4a);
  box-shadow: inset 0 2px 14px rgba(0,0,0,.5), 0 10px 30px rgba(0,0,0,.35); touch-action: none; }
.tm-board.quake { animation: tmQuake .35s var(--ease); }
@keyframes tmQuake { 0%,100% { transform: none; } 25% { transform: translate(-5px,3px); } 50% { transform: translate(5px,-4px); } 75% { transform: translate(-3px,-3px); } }
.tm-fx { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; z-index: 5; }
.tm-tile { position: absolute; left: 0; top: 0; border-radius: 22%; display: grid; place-items: center; cursor: pointer;
  box-shadow: inset 0 -4px 6px rgba(0,0,0,.28), inset 0 3px 5px rgba(255,255,255,.45), 0 2px 5px rgba(0,0,0,.35);
  transition: transform .22s cubic-bezier(.34,1.56,.64,1); margin: 1.5px; width: calc(12.5% - 3px) !important; height: calc(12.5% - 3px) !important;
  user-select: none; -webkit-user-select: none; }
.tm-tile::after { content: ''; position: absolute; left: 14%; top: 8%; width: 44%; height: 26%; border-radius: 50%;
  background: linear-gradient(180deg, rgba(255,255,255,.75), transparent); pointer-events: none; }
.tm-glyph { font-size: clamp(18px, 5.2vmin, 30px); filter: drop-shadow(0 2px 2px rgba(0,0,0,.35)); pointer-events: none; }
.tm-tile img { width: 82%; height: auto; pointer-events: none; filter: drop-shadow(0 1px 2px rgba(0,0,0,.4)); }
.tm-tile.sel { outline: 3px solid #fff; outline-offset: -2px; z-index: 2; }
.tm-tile.sel .tm-glyph { animation: bxWiggle .8s var(--ease) infinite; }
.tm-tile.shake { animation: bxWiggle .3s var(--ease); }
.tm-tile.sp-logo { animation: tmLogoGlow 1.6s ease-in-out infinite; }
@keyframes tmLogoGlow { 0%,100% { box-shadow: 0 0 6px 2px rgba(245,179,1,.55), inset 0 -4px 6px rgba(0,0,0,.28); } 50% { box-shadow: 0 0 16px 6px rgba(245,179,1,.85), inset 0 -4px 6px rgba(0,0,0,.28); } }
.tm-arr { position: absolute; right: 4%; bottom: 2%; font-size: 12px; font-style: normal; font-weight: 900; color: #fff; text-shadow: 0 1px 2px rgba(0,0,0,.6); }
.tm-pop { position: absolute; inset: 0; z-index: 8; display: grid; place-items: center; pointer-events: none; }
.tm-pop > * { pointer-events: auto; }
.tm-modal { background: linear-gradient(180deg, #fff, #f2f3ff); color: #16183f; border-radius: 22px; padding: 24px 22px;
  text-align: center; max-width: 320px; box-shadow: 0 24px 60px rgba(0,0,0,.5); }
.tm-modal img { height: 30px; width: auto; }
.tm-modal h3 { font-family: var(--display); font-weight: 900; font-size: 21px; margin: 8px 0 6px; }
.tm-modal p { font-size: 13.5px; line-height: 1.6; margin: 0 0 14px; color: #444a7a; }
.tm-in { animation: bxPopIn .4s var(--spring) both; }
.tm-combo { position: absolute; font-family: var(--display); font-weight: 900; font-size: clamp(26px, 8vw, 44px); color: #ffc400;
  -webkit-text-stroke: 2px #7c3aed; text-shadow: 0 4px 12px rgba(0,0,0,.4); animation: tmComboA .9s var(--ease) both; pointer-events: none; }
@keyframes tmComboA { 0% { transform: scale(.3) rotate(-6deg); opacity: 0; } 25% { transform: scale(1.15) rotate(2deg); opacity: 1; } 70% { transform: scale(1); opacity: 1; } 100% { transform: scale(1) translateY(-26px); opacity: 0; } }
.tm-toastmsg { position: absolute; bottom: 12%; background: rgba(0,0,0,.75); color: #fff; font-weight: 800; font-size: 13px;
  border-radius: 99px; padding: 8px 18px; animation: bxCatIn .3s var(--ease) both; pointer-events: none; }
.tm-starrow { display: flex; justify-content: center; gap: 6px; margin: 8px 0 6px; }
.tm-bigstar { font-size: 44px; color: #d8dbec; transform: scale(0); }
.tm-bigstar.on { color: #f5b301; text-shadow: 0 3px 8px rgba(245,179,1,.5); animation: tmStarIn .5s var(--spring) both; animation-delay: calc(var(--i) * .28s); }
.tm-bigstar:not(.on) { animation: tmStarIn .4s var(--ease) both; animation-delay: calc(var(--i) * .28s); }
@keyframes tmStarIn { from { transform: scale(0) rotate(-40deg); } to { transform: scale(1) rotate(0); } }
.tm-final { font-family: var(--display); font-weight: 900; font-size: 40px;
  background: linear-gradient(92deg, #7c3aed, #4a4ec8); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.tm-bonus { font-size: 12px; font-weight: 800; color: #0c7a47; margin-top: 2px; }
.tm-net { font-size: 12.5px; margin: 10px 0 4px; min-height: 20px; }
.tm-brandbar { display: flex; align-items: center; justify-content: center; gap: 10px; padding: 12px 0 4px; opacity: .8; }
.tm-brandbar img { height: 20px; width: auto; filter: brightness(10); }
.tm-brandbar span { color: #fff; font-size: 11px; font-weight: 800; letter-spacing: .1em; }

/* ============================================================
   FX PASS 13 (v20260703q): TURBO MATCH v2 — karat, oli,
   kombinasi spesial, 3 chapter, Turbo Finish.
   ============================================================ */
.tm-chapter { text-align: center; font-family: var(--display); font-weight: 900; font-size: 13px; letter-spacing: .08em;
  color: #fff; border-radius: 12px; padding: 10px 12px; margin: 14px 0 10px; box-shadow: var(--sh-1); }
.tm-chapter.ch1 { background: linear-gradient(92deg, #4a4ec8, #23268a); }
.tm-chapter.ch2 { background: linear-gradient(92deg, #b45309, #7c2d12); }
.tm-chapter.ch3 { background: linear-gradient(92deg, #0f766e, #134e4a); }
.tm-pin.rustpin { background: radial-gradient(circle at 32% 28%, #f0b27a, #b45309 60%, #7c2d12); box-shadow: 0 6px 0 #5a1f0a, 0 10px 20px rgba(180,83,9,.35); }
.tm-pin.oilpin { background: radial-gradient(circle at 32% 28%, #67e8f9, #0f766e 60%, #134e4a); box-shadow: 0 6px 0 #0c3835, 0 10px 20px rgba(15,118,110,.35); }
/* karat: menempati sel, statis, berlapis */
.tm-tile.tm-rust { cursor: not-allowed; border-radius: 14%;
  background:
    radial-gradient(circle at 22% 30%, rgba(0,0,0,.25) 0 12%, transparent 13%),
    radial-gradient(circle at 70% 60%, rgba(0,0,0,.2) 0 10%, transparent 11%),
    radial-gradient(circle at 45% 80%, rgba(255,255,255,.12) 0 8%, transparent 9%),
    linear-gradient(135deg, #a3562a, #6e3a1a 60%, #4e2a12);
  box-shadow: inset 0 -4px 6px rgba(0,0,0,.45), inset 0 3px 4px rgba(255,255,255,.15), 0 2px 5px rgba(0,0,0,.4); }
.tm-tile.tm-rust.r2 { filter: brightness(.8) saturate(1.15); }
.tm-rlayer { position: absolute; right: 6%; top: 4%; font-style: normal; font-size: 11px; font-weight: 900; color: #ffd9b3;
  background: rgba(0,0,0,.4); border-radius: 99px; padding: 1px 6px; }
.tm-tile.tm-rust.crack { animation: bxWiggle .35s var(--ease); filter: brightness(1.25); }
/* oli: lapisan DI BAWAH bidak */
.tm-oil { position: absolute; left: 0; top: 0; width: calc(12.5% - 3px); height: calc(12.5% - 3px); margin: 1.5px;
  border-radius: 40% 46% 42% 48%; pointer-events: none;
  background: radial-gradient(circle at 35% 30%, rgba(255,255,255,.18) 0 18%, transparent 20%), linear-gradient(135deg, #241a33, #0d0a18);
  box-shadow: inset 0 0 8px rgba(0,0,0,.8), 0 0 6px rgba(124,58,237,.35); opacity: .92; transition: opacity .3s; }
.tm-oil.o2 { box-shadow: inset 0 0 10px #000, 0 0 10px rgba(124,58,237,.6); outline: 2px solid rgba(124,58,237,.5); outline-offset: -3px; }
.tm-oil.gone { opacity: 0; transform: scale(.4) !important; transition: all .3s var(--ease); }
/* langkah menipis + spawn segmen bawah-karat */
.tm-moves b.low { background: #fee2e2; color: #b91c1c; animation: servBlink 1s ease-in-out infinite; }
.tm-tile.spawn-in { animation: tmFadeIn .32s ease both; }
@keyframes tmFadeIn { from { opacity: 0; } to { opacity: 1; } }