/* ================= Olafyu Store — Glass Pink Theme ================= */
:root {
  /* Dasar gelap seperti referensi */
  --bg:        #17141b;
  --bg-deep:   #110f14;
  --bg-soft:   rgba(255, 255, 255, .045);
  --card:      rgba(255, 255, 255, .055);
  --border:    rgba(255, 255, 255, .10);

  --text:      #f2ebef;
  --muted:     #b0a1ab;

  /* Pink muda, muted (tidak menyilaukan) */
  --primary:        #e3a9c4;
  --primary-soft:   #f0c7d9;
  --primary-deep:   #c98bab;
  --primary-glow:   rgba(227, 169, 196, .55);
  --primary-glow-2: rgba(227, 169, 196, .22);
  --primary-tint:   rgba(227, 169, 196, .12);

  --accent:  #f0c7d9;
  --success: #86c9a8;
  --danger:  #e08e93;
  --warning: #dfc08a;
  --info:    #a9b6e3;

  --radius: 18px;
  --radius-sm: 13px;

  /* Efek kaca */
  --glass: linear-gradient(145deg, rgba(255,255,255,.085) 0%, rgba(255,255,255,.03) 48%, rgba(255,255,255,.055) 100%);
  --glass-hi: linear-gradient(160deg, rgba(255,255,255,.16) 0%, rgba(255,255,255,.02) 55%);
  --shadow: 0 18px 40px rgba(0,0,0,.45);
  --shadow-glow: 0 8px 28px var(--primary-glow-2);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Segoe UI', system-ui, -apple-system, Roboto, Arial, sans-serif;
  background:
    radial-gradient(900px 520px at 12% -8%,  rgba(227,169,196,.16), transparent 62%),
    radial-gradient(760px 480px at 92% 8%,   rgba(201,139,171,.11), transparent 60%),
    radial-gradient(700px 560px at 50% 110%, rgba(227,169,196,.09), transparent 62%),
    var(--bg);
  background-attachment: fixed;
  color: var(--text);
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
.container { width: min(1140px, 92%); margin: 0 auto; }

/* ---------- Navbar ---------- */
.navbar {
  position: sticky; top: 0; z-index: 50;
  background: rgba(23, 20, 27, .72);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid var(--border);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.brand { display: flex; align-items: center; gap: 11px; font-weight: 700; font-size: 18px; }
.brand-mark {
  width: 38px; height: 38px; border-radius: 13px; display: grid; place-items: center;
  background: linear-gradient(150deg, var(--primary-soft), var(--primary-deep));
  color: #2a1f26; font-weight: 800;
  box-shadow: 0 0 18px var(--primary-glow-2), inset 0 1px 1px rgba(255,255,255,.5);
}
.nav-links { display: flex; align-items: center; gap: 8px; font-size: 14px; }
.nav-links a {
  padding: 8px 14px; border-radius: 999px; color: var(--muted); transition: .2s;
}
.nav-links a:hover { color: var(--text); background: rgba(255,255,255,.05); }
.nav-links a.active {
  color: var(--text); background: var(--primary-tint);
  box-shadow: inset 0 0 0 1px rgba(227,169,196,.3);
}

.page { padding: 34px 0 64px; }

/* ---------- Tombol Bubble ---------- */
.btn, .nav-links a.btn-nav {
  position: relative; isolation: isolate;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 26px; border-radius: 999px;
  border: 1px solid rgba(240,199,217,.45);
  background: linear-gradient(160deg, var(--primary-soft) 0%, var(--primary) 45%, var(--primary-deep) 100%);
  color: #2b1f26; font-weight: 650; font-size: 14px; letter-spacing: .2px;
  cursor: pointer; font-family: inherit; overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(227,169,196,.18),
    0 6px 20px rgba(227,169,196,.28),
    0 0 34px rgba(227,169,196,.20),
    inset 0 1px 1px rgba(255,255,255,.65),
    inset 0 -6px 14px rgba(180,120,150,.25);
  transition: transform .18s cubic-bezier(.34,1.4,.64,1), box-shadow .22s, filter .22s;
}
/* kilau kaca di separuh atas */
.btn::before, .nav-links a.btn-nav::before {
  content: ''; position: absolute; inset: 1px 1px 45% 1px; border-radius: 999px;
  background: linear-gradient(180deg, rgba(255,255,255,.55), rgba(255,255,255,0));
  pointer-events: none; z-index: -1;
}
.btn:hover, .nav-links a.btn-nav:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
  box-shadow:
    0 0 0 1px rgba(227,169,196,.3),
    0 10px 26px rgba(227,169,196,.38),
    0 0 46px rgba(227,169,196,.32),
    inset 0 1px 1px rgba(255,255,255,.75),
    inset 0 -6px 14px rgba(180,120,150,.25);
}
.btn:active, .nav-links a.btn-nav:active { transform: translateY(0) scale(.985); }
/* tombol nav sedikit lebih ringkas */
.nav-links a.btn-nav { padding: 9px 20px; font-size: 13.5px; }
.btn:disabled { opacity: .45; cursor: not-allowed; transform: none; filter: none; }
.btn-block { width: 100%; }
.btn-sm { padding: 9px 17px; font-size: 12.5px; }

/* Sekunder — kaca transparan bertepi pink */
.btn-outline {
  background: var(--glass);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(227,169,196,.38);
  color: var(--primary-soft);
  box-shadow:
    0 6px 20px rgba(0,0,0,.32),
    0 0 22px rgba(227,169,196,.14),
    inset 0 1px 1px rgba(255,255,255,.22);
}
.btn-outline::before { background: linear-gradient(180deg, rgba(255,255,255,.20), rgba(255,255,255,0)); }
.btn-outline:hover {
  border-color: rgba(227,169,196,.6); color: #fff;
  box-shadow: 0 10px 26px rgba(0,0,0,.36), 0 0 34px rgba(227,169,196,.26), inset 0 1px 1px rgba(255,255,255,.3);
}

.btn-success { background: linear-gradient(160deg, #a8dcc2, #86c9a8 45%, #6bab8b);
  border-color: rgba(168,220,194,.45);
  box-shadow: 0 6px 20px rgba(134,201,168,.28), 0 0 34px rgba(134,201,168,.18), inset 0 1px 1px rgba(255,255,255,.6); }
.btn-danger  { background: linear-gradient(160deg, #f0adb1, #e08e93 45%, #c2757a);
  border-color: rgba(240,173,177,.45);
  box-shadow: 0 6px 20px rgba(224,142,147,.28), 0 0 34px rgba(224,142,147,.18), inset 0 1px 1px rgba(255,255,255,.6); }

/* Tombol ikon bulat */
.btn-icon {
  width: 46px; height: 46px; padding: 0; border-radius: 50%; font-size: 19px;
}
.btn-icon::before { inset: 1px 1px 48% 1px; border-radius: 50%; }

/* ---------- Field Kaca ---------- */
input, select, textarea {
  width: 100%; padding: 13px 16px; border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--glass);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  color: var(--text); font-size: 14px; font-family: inherit; outline: none;
  box-shadow: inset 0 1px 1px rgba(255,255,255,.14), 0 4px 14px rgba(0,0,0,.22);
  transition: border-color .2s, box-shadow .2s;
}
input::placeholder, textarea::placeholder { color: rgba(176,161,171,.75); }
input:focus, select:focus, textarea:focus {
  border-color: rgba(227,169,196,.55);
  box-shadow:
    inset 0 1px 1px rgba(255,255,255,.18),
    0 0 0 3px rgba(227,169,196,.14),
    0 0 26px rgba(227,169,196,.22);
}
select { appearance: none; -webkit-appearance: none; cursor: pointer;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--muted) 50%),
    linear-gradient(135deg, var(--muted) 50%, transparent 50%),
    var(--glass);
  background-position: calc(100% - 20px) 50%, calc(100% - 14px) 50%, 0 0;
  background-size: 6px 6px, 6px 6px, auto;
  background-repeat: no-repeat;
  padding-right: 40px;
}
select option { background: #201b24; color: var(--text); }
label { display: block; font-size: 13px; color: var(--muted); margin-bottom: 7px; font-weight: 500; }
.form-group { margin-bottom: 17px; }

/* ---------- Banner Beranda ----------
   Ukuran gambar yang disarankan: 1140 x 320 px (rasio 3.5:1),
   atau 2280 x 640 px untuk layar retina. */
/* Slider banner: pembeli bisa geser ke samping (swipe / scroll / tombol panah). */
.banner-slider { position: relative; margin-bottom: 24px; }
.banner-track {
  display: flex; gap: 14px;
  overflow-x: auto; overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
  padding-bottom: 2px;
}
.banner-track::-webkit-scrollbar { display: none; } /* Chrome / Safari */
.banner-track > .site-banner {
  flex: 0 0 100%;
  scroll-snap-align: center;
  margin-bottom: 0;
}
.banner-slider-tunggal .banner-track { overflow-x: hidden; }

/* Tombol panah kiri / kanan */
.banner-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border); color: var(--text);
  background: rgba(20,16,22,.62); cursor: pointer;
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  font-size: 16px; line-height: 1; z-index: 3;
  transition: background .2s, border-color .2s, opacity .2s, transform .2s;
}
.banner-nav:hover { background: rgba(20,16,22,.85); border-color: rgba(227,169,196,.5); }
.banner-nav:disabled { opacity: .28; cursor: default; }
.banner-prev { left: 12px; }
.banner-next { right: 12px; }

/* Titik indikator */
.banner-dots { display: flex; justify-content: center; gap: 8px; margin-top: 12px; }
.banner-dot {
  width: 9px; height: 9px; padding: 0; border-radius: 50%; cursor: pointer;
  border: 1px solid var(--border); background: rgba(255,255,255,.18);
  transition: background .2s, width .2s, border-color .2s;
}
.banner-dot.aktif { width: 26px; border-radius: 6px; background: var(--primary); border-color: var(--primary); }

.site-banner {
  display: block; position: relative;
  width: 100%; aspect-ratio: 1140 / 320;
  margin-bottom: 24px; overflow: hidden;
  border: 1px solid var(--border); border-radius: 22px;
  box-shadow: var(--shadow), inset 0 1px 1px rgba(255,255,255,.12);
  background: var(--glass);
}
.site-banner img { width: 100%; height: 100%; object-fit: cover; display: block; }
a.site-banner { transition: transform .22s cubic-bezier(.34,1.3,.64,1), box-shadow .22s, border-color .22s; }
a.site-banner:hover {
  transform: translateY(-4px);
  border-color: rgba(227,169,196,.45);
  box-shadow: 0 18px 40px rgba(0,0,0,.45), 0 0 32px rgba(227,169,196,.24);
}

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background: var(--glass);
  backdrop-filter: blur(20px) saturate(140%); -webkit-backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid var(--border);
  border-radius: 26px; padding: 48px 38px; margin-bottom: 34px;
  box-shadow: var(--shadow), inset 0 1px 1px rgba(255,255,255,.14);
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(560px 260px at 8% 0%, rgba(240,199,217,.22), transparent 65%),
    radial-gradient(420px 240px at 96% 100%, rgba(201,139,171,.18), transparent 62%);
  pointer-events: none;
}
/* Mode "background hero": gambar banner jadi latar kotak judul. */
.hero-banner {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-banner::before {
  background:
    linear-gradient(90deg, rgba(20,16,22,.92) 0%, rgba(20,16,22,.7) 45%, rgba(20,16,22,.35) 100%),
    radial-gradient(560px 260px at 8% 0%, rgba(240,199,217,.18), transparent 65%);
}
.hero > * { position: relative; }
.hero h1 { font-size: 34px; margin-bottom: 10px; letter-spacing: -.4px; }
.hero p { color: var(--muted); max-width: 620px; }
.hero-search { display: flex; gap: 10px; margin-top: 24px; max-width: 470px; }

/* ---------- Grid Game ---------- */
.section-title { font-size: 20px; margin: 32px 0 18px; letter-spacing: -.2px; }
.grid-games { display: grid; gap: 18px; grid-template-columns: repeat(auto-fill, minmax(165px, 1fr)); }
.game-card {
  position: relative;
  background: var(--glass);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,.38), inset 0 1px 1px rgba(255,255,255,.13);
  transition: transform .22s cubic-bezier(.34,1.3,.64,1), box-shadow .22s, border-color .22s;
}
.game-card:hover {
  transform: translateY(-6px);
  border-color: rgba(227,169,196,.45);
  box-shadow: 0 18px 40px rgba(0,0,0,.45), 0 0 34px rgba(227,169,196,.26), inset 0 1px 1px rgba(255,255,255,.2);
}
.game-thumb {
  aspect-ratio: 1/1;
  background: linear-gradient(150deg, rgba(240,199,217,.30), rgba(201,139,171,.18));
  display: grid; place-items: center; font-size: 34px; font-weight: 800; color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,.35);
}
.game-thumb img { width: 100%; height: 100%; object-fit: cover; }
.game-info { padding: 13px 15px; }
.game-info h3 { font-size: 14px; line-height: 1.35; }
.game-info small { color: var(--muted); font-size: 12px; }

/* ---------- Card Kaca ---------- */
.card {
  position: relative;
  background: var(--glass);
  backdrop-filter: blur(18px) saturate(135%); -webkit-backdrop-filter: blur(18px) saturate(135%);
  border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px; margin-bottom: 22px;
  box-shadow: var(--shadow), inset 0 1px 1px rgba(255,255,255,.13);
}
.card-head { display: flex; align-items: center; gap: 13px; margin-bottom: 18px; }
.step-num {
  width: 32px; height: 32px; border-radius: 50%; display: grid; place-items: center;
  background: linear-gradient(160deg, var(--primary-soft), var(--primary-deep));
  color: #2b1f26; font-size: 13px; font-weight: 800; flex-shrink: 0;
  box-shadow: 0 0 18px var(--primary-glow-2), inset 0 1px 1px rgba(255,255,255,.6);
}
.card-head h2 { font-size: 16px; }

/* ---------- Pilihan nominal & channel ---------- */
.opt-grid { display: grid; gap: 12px; grid-template-columns: repeat(auto-fill, minmax(175px, 1fr)); }
.opt {
  position: relative;
  border: 1px solid var(--border);
  background: var(--glass);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-sm); padding: 14px 16px; cursor: pointer;
  box-shadow: 0 6px 18px rgba(0,0,0,.26), inset 0 1px 1px rgba(255,255,255,.12);
  transition: transform .18s cubic-bezier(.34,1.3,.64,1), box-shadow .2s, border-color .2s;
}
.opt:hover {
  transform: translateY(-3px);
  border-color: rgba(227,169,196,.45);
  box-shadow: 0 10px 24px rgba(0,0,0,.32), 0 0 26px rgba(227,169,196,.20), inset 0 1px 1px rgba(255,255,255,.18);
}
.opt.selected {
  border-color: rgba(227,169,196,.72);
  background: linear-gradient(150deg, rgba(240,199,217,.20), rgba(227,169,196,.08));
  box-shadow:
    0 10px 26px rgba(0,0,0,.34),
    0 0 34px rgba(227,169,196,.34),
    inset 0 1px 1px rgba(255,255,255,.28);
}
.opt .opt-name { font-size: 13px; font-weight: 600; }
.opt .opt-price { font-size: 13.5px; color: var(--primary-soft); margin-top: 4px; font-weight: 700; }
.opt .opt-fee { font-size: 11px; color: var(--muted); }
.channel-group-title {
  font-size: 11.5px; color: var(--muted); margin: 16px 0 9px;
  text-transform: uppercase; letter-spacing: .9px; font-weight: 700;
}

/* ---------- Flash sale ---------- */
.opt-flash { border-color: rgba(255,138,138,.45); }
.flash-badge {
  position: absolute; top: -8px; right: 8px;
  background: linear-gradient(135deg, #ff8a8a, #e05252);
  color: #fff; font-size: 9px; font-weight: 800; letter-spacing: .6px;
  padding: 3px 8px; border-radius: 999px;
  box-shadow: 0 4px 12px rgba(224,82,82,.42);
}
.opt .opt-price-coret {
  font-size: 11.5px; color: var(--muted);
  text-decoration: line-through; font-weight: 500; margin-left: 5px;
}
.opt .opt-hemat { font-size: 10.5px; color: #7ddc9a; font-weight: 700; margin-top: 2px; }
.text-hemat { color: #7ddc9a; font-weight: 700; }

/* ---------- Voucher ---------- */
.voucher-row { display: flex; gap: 8px; }
.voucher-row input { flex: 1; }
.voucher-row .btn { flex-shrink: 0; padding: 0 16px; }
.voucher-info { font-size: 12px; margin-top: 7px; }
.voucher-info.voucher-ok { color: #7ddc9a; }
.voucher-info.voucher-gagal { color: #ff9b9b; }

/* ---------- Tata cara & review ---------- */
.tutorial-list { margin: 0; padding-left: 20px; display: grid; gap: 12px; }
.tutorial-list li { font-size: 13.5px; }
.tutorial-list li p { margin: 3px 0 0; font-size: 12.5px; }
.review-list { display: grid; gap: 13px; }
.review-item {
  padding: 13px 15px; border: 1px solid var(--border);
  border-radius: var(--radius-sm); background: rgba(255,255,255,.03);
}
.review-top { display: flex; justify-content: space-between; align-items: center; gap: 10px; }
.review-top strong { font-size: 13px; }
.review-star { color: #ffcf5c; font-size: 13px; letter-spacing: 1px; }
.review-star-off { color: rgba(255,255,255,.18); }
.review-item p { margin: 6px 0 0; font-size: 12.5px; }
.review-reply {
  border-left: 2px solid var(--primary); padding-left: 10px;
  color: var(--primary-soft) !important;
}
.rating-pick { display: flex; gap: 6px; }
.rating-star {
  background: none; border: none; cursor: pointer; padding: 0;
  font-size: 26px; line-height: 1; color: rgba(255,255,255,.18);
  transition: color .15s, transform .15s;
}
.rating-star:hover { transform: scale(1.15); }
.rating-star.aktif { color: #ffcf5c; text-shadow: 0 0 14px rgba(255,207,92,.45); }

/* ---------- Tabel ---------- */
.table-wrap { overflow-x: auto; border-radius: var(--radius-sm); }
table { width: 100%; border-collapse: collapse; font-size: 13.5px; }
th, td { padding: 13px 14px; text-align: left; border-bottom: 1px solid var(--border); }
th {
  color: var(--muted); font-weight: 700; font-size: 11.5px;
  text-transform: uppercase; letter-spacing: .7px;
  background: rgba(255,255,255,.03);
}
tbody tr { transition: background .18s; }
tbody tr:hover { background: var(--primary-tint); }

/* ---------- Badge ---------- */
.badge {
  display: inline-block; padding: 4px 12px; border-radius: 999px;
  font-size: 11.5px; font-weight: 650; backdrop-filter: blur(8px);
  border: 1px solid transparent;
}
.badge-success { background: rgba(134,201,168,.16); color: #a8dcc2; border-color: rgba(134,201,168,.32); }
.badge-danger  { background: rgba(224,142,147,.16); color: #f0adb1; border-color: rgba(224,142,147,.32); }
.badge-warning { background: rgba(223,192,138,.16); color: #ecd6a8; border-color: rgba(223,192,138,.32); }
.badge-info    { background: rgba(169,182,227,.16); color: #c6cfee; border-color: rgba(169,182,227,.32); }
.badge-muted   { background: rgba(255,255,255,.07);  color: #cfc3cb; border-color: var(--border); }

/* ---------- Alert ---------- */
.alert {
  padding: 14px 18px; border-radius: var(--radius-sm); font-size: 13.5px; margin-bottom: 18px;
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  box-shadow: inset 0 1px 1px rgba(255,255,255,.12), 0 6px 18px rgba(0,0,0,.24);
}
.alert-success { background: rgba(134,201,168,.13); border: 1px solid rgba(134,201,168,.34); color: #b6e3cd; }
.alert-danger  { background: rgba(224,142,147,.13); border: 1px solid rgba(224,142,147,.34); color: #f3bfc2; }
.alert-info    { background: rgba(227,169,196,.13); border: 1px solid rgba(227,169,196,.34); color: #f0d3e0; }
.alert-warning { background: rgba(230,196,124,.13); border: 1px solid rgba(230,196,124,.38); color: #f2ddab; }

/* ---------- Invoice ---------- */
.invoice-grid { display: grid; grid-template-columns: 1.25fr .85fr; gap: 22px; }
.detail-row {
  display: flex; justify-content: space-between; padding: 10px 0;
  border-bottom: 1px dashed var(--border); font-size: 14px; gap: 14px;
}
.detail-row span:first-child { color: var(--muted); }
.pay-code {
  font-size: 23px; font-weight: 800; letter-spacing: 1.6px; text-align: center;
  background: linear-gradient(150deg, rgba(240,199,217,.14), rgba(255,255,255,.03));
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  padding: 18px; border-radius: var(--radius-sm);
  border: 1px dashed rgba(227,169,196,.55); word-break: break-all;
  color: var(--primary-soft);
  box-shadow: 0 0 30px rgba(227,169,196,.18), inset 0 1px 1px rgba(255,255,255,.14);
}
.total-amount {
  font-size: 27px; font-weight: 800; color: var(--primary-soft);
  text-shadow: 0 0 22px var(--primary-glow-2);
}

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--border);
  background: rgba(17,15,20,.55);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  padding: 40px 0 0; margin-top: 48px;
}
.footer-inner {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px; padding-bottom: 28px;
}
.footer h4 { font-size: 14px; margin-bottom: 9px; color: var(--primary-soft); }
.footer p { color: var(--muted); font-size: 13px; }
.footer a:hover { color: var(--primary-soft); }
.footer-bottom {
  border-top: 1px solid var(--border); padding: 17px 0;
  text-align: center; color: var(--muted); font-size: 12.5px;
}

/* ---------- Utilitas ---------- */
.empty-state {
  text-align: center; padding: 60px 20px; color: var(--muted);
}
.empty-state h3 { color: var(--text); margin-bottom: 8px; }
.text-muted { color: var(--muted); }
.text-right { text-align: right; }
.mt-2 { margin-top: 12px; } .mt-3 { margin-top: 20px; }

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar { width: 11px; height: 11px; }
::-webkit-scrollbar-track { background: rgba(255,255,255,.03); }
::-webkit-scrollbar-thumb {
  background: rgba(227,169,196,.28); border-radius: 999px;
  border: 3px solid transparent; background-clip: content-box;
}
::-webkit-scrollbar-thumb:hover { background: rgba(227,169,196,.5); background-clip: content-box; }
::selection { background: rgba(227,169,196,.35); color: #fff; }

@media (max-width: 860px) {
  .invoice-grid { grid-template-columns: 1fr; }
  .nav-links { gap: 2px; font-size: 13px; }
  .nav-links a { padding: 7px 10px; }
  .hero { padding: 32px 22px; border-radius: 20px; }
  .hero h1 { font-size: 25px; }
  /* Di HP banner dipotong jadi rasio ~2.2:1, taruh objek penting di tengah gambar. */
  .site-banner { aspect-ratio: 2.2 / 1; border-radius: 16px; margin-bottom: 18px; }
  .banner-slider { margin-bottom: 18px; }
  .banner-track { gap: 10px; }
  .banner-track > .site-banner { margin-bottom: 0; }
  /* Di HP cukup geser dengan jari, tombol panah disembunyikan. */
  .banner-nav { display: none; }
  .brand-text { display: none; }
}
