/* ============================================================
   YK BYPASS — Tech Theme
   Palette: graphite/navy base, cyan signal accent, amber CTA
   ============================================================ */

:root{
  --bg-base: #0A0E14;
  --bg-surface: #121822;
  --bg-surface-alt: #1A2230;
  --bg-surface-hover: #1E2733;
  --border: #253040;
  --border-strong: #33445A;

  --cyan: #2DD4FF;
  --cyan-dim: #1B8FB0;
  --amber: #FFB020;
  --amber-dim: #C88214;
  --success: #34D399;
  --success-dim: #1F8F63;
  --danger: #FB5B5B;
  --danger-dim: #C23B3B;

  --text-primary: #E7EEF5;
  --text-muted: #7C8A9B;
  --text-faint: #55626F;

  --font-display: 'Space Grotesk', 'Segoe UI', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, Menlo, Consolas, monospace;

  --radius: 10px;
  --radius-sm: 6px;
}

*{ box-sizing: border-box; }

html{
  overflow-x: hidden;
  width: 100%;
}

html, body{
  margin: 0;
  padding: 0;
  background: var(--bg-base);
  color: var(--text-primary);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

body{
  background-image:
    radial-gradient(circle at 15% 0%, rgba(45,212,255,0.06), transparent 40%),
    radial-gradient(circle at 85% 10%, rgba(255,176,32,0.05), transparent 35%);
  background-attachment: fixed;
  min-height: 100vh;
}

a{ color: inherit; text-decoration: none; }

h1, h2, h3, h4, h5, h6{
  font-family: var(--font-display);
  letter-spacing: -0.01em;
  margin: 0;
}

code, .mono, .font-mono{ font-family: var(--font-mono); }

/* ---------- Layout shell ---------- */
.page-wrap{
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px 64px;
  box-sizing: border-box;
  width: 100%;
}

/* ---------- Navbar ---------- */
.yk-navbar{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10,14,20,0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.yk-navbar-inner{
  max-width: 1180px;
  margin: 0 auto;
  padding: 8px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.yk-logo{
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  color: var(--text-primary);
}

.yk-logo-mark{
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-dim) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.yk-logo-mark svg{ width: 18px; height: 18px; }

.yk-logo .brand-sub{
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  display: block;
  margin-top: -2px;
}

.yk-nav-links{
  display: flex;
  align-items: center;
  gap: 4px;
}

.yk-nav-links a{
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color .15s ease, background .15s ease;
}
.yk-nav-links a:hover{ color: var(--text-primary); background: var(--bg-surface-alt); }
.yk-nav-links a.active{ color: var(--cyan); background: rgba(45,212,255,0.08); }

.yk-navbar-right{
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.yk-account-pill{
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  padding: 6px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--bg-surface);
  color: var(--text-muted);
}
.yk-account-pill svg{
  width: 13px; height: 13px;
  color: var(--cyan);
  flex-shrink: 0;
}
.yk-account-pill .acct-name{
  color: var(--text-primary);
  font-weight: 600;
}
.yk-account-pill .acct-divider{
  color: var(--border-strong);
}
.yk-account-pill .acct-balance{
  color: var(--success);
  font-weight: 600;
}

.yk-status-pill{
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  padding: 6px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--bg-surface);
}
.yk-status-pill--error{
  border-color: rgba(251,91,91,0.3);
  color: var(--danger);
}
.yk-status-dot{
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 3px rgba(52,211,153,0.18);
  animation: pulse-dot 2.2s ease-in-out infinite;
}
.yk-status-dot--error{
  background: var(--danger);
  box-shadow: 0 0 0 3px rgba(251,91,91,0.18);
}
@keyframes pulse-dot{
  0%, 100% { opacity: 1; }
  50% { opacity: .45; }
}

/* ---------- Hero band with circuit trace ---------- */
.yk-hero{
  position: relative;
  padding: 46px 20px 30px;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.yk-hero-inner{
  max-width: 1180px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.yk-hero-eyebrow{
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--cyan);
  text-transform: uppercase;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.yk-hero-eyebrow::before{
  content: '';
  width: 16px; height: 1px;
  background: var(--cyan);
  display: inline-block;
}
.yk-hero h1{
  font-size: 28px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.yk-hero p{
  color: var(--text-muted);
  font-size: 14.5px;
  max-width: 560px;
  margin: 0;
  line-height: 1.6;
}
.yk-circuit-bg{
  position: absolute;
  inset: 0;
  opacity: 0.5;
  z-index: 1;
  pointer-events: none;
}

/* ---------- Cards / surfaces ---------- */
.yk-card{
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.yk-panel-header{
  padding: 18px 22px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.yk-panel-header h2, .yk-panel-header h4{
  font-size: 15.5px;
  font-weight: 600;
  color: var(--text-primary);
}
.yk-panel-body{ padding: 22px; }

/* ---------- Buttons ---------- */
.yk-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .15s ease;
}
.yk-btn-primary{
  background: var(--cyan);
  color: #06131A;
}
.yk-btn-primary:hover{ background: #58e0ff; }
.yk-btn-primary:disabled{
  background: var(--bg-surface-alt);
  color: var(--text-faint);
  cursor: not-allowed;
}
.yk-btn-amber{
  background: var(--amber);
  color: #241600;
}
.yk-btn-amber:hover{ background: #ffc247; }
.yk-btn-ghost{
  background: transparent;
  border-color: var(--border-strong);
  color: var(--text-muted);
}
.yk-btn-ghost:hover{ color: var(--text-primary); border-color: var(--cyan); }
.yk-btn-block{ width: 100%; }

/* ---------- Form elements ---------- */
.yk-label{
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.yk-input{
  width: 100%;
  padding: 12px 14px;
  background: var(--bg-surface-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: var(--font-mono);
  font-size: 14px;
  transition: border-color .15s ease;
}
.yk-input::placeholder{ color: var(--text-faint); font-family: var(--font-body); }
.yk-input:focus{
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(45,212,255,0.12);
}
.yk-input:disabled{ opacity: .5; cursor: not-allowed; }
.yk-help{ font-size: 12.5px; color: var(--text-muted); margin-top: 7px; }

/* ---------- Filter bar ---------- */
.yk-filter-bar{
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

/* Search inline (inside filter bar) */
.yk-search-wrap{ position: relative; margin-bottom: 26px; }
.yk-search-inline{ margin-bottom: 0; flex: 1; min-width: 200px; }
.yk-search-wrap svg{
  position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  width: 16px; height: 16px; color: var(--text-faint);
}
.yk-search-wrap input{ padding-left: 40px; }

/* Select dropdown */
.yk-select-wrap{
  position: relative;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.yk-select-wrap svg{
  position: absolute;
  left: 12px;
  width: 14px; height: 14px;
  color: var(--text-faint);
  pointer-events: none;
}
.yk-select{
  padding: 11px 14px 11px 34px;
  background: var(--bg-surface-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 13.5px;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%237C8A9B' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
  transition: border-color .15s;
  min-width: 160px;
}
.yk-select:focus{
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(45,212,255,0.12);
}
.yk-select option{ background: var(--bg-surface-alt); }

/* Total badge */
.yk-total-badge{
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-faint);
  padding: 6px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  white-space: nowrap;
  margin-left: auto;
}

/* ---------- Category Section Headers ---------- */
.yk-cat-section{
  margin-bottom: 28px;
}
.yk-cat-section-header{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0 10px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 14px;
}
.yk-cat-section-title{
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
}
.yk-cat-section-dot{
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(45,212,255,0.18);
}
.yk-cat-section-count{
  flex-shrink: 0;
}

/* Type badges on service cards */
.yk-type-badge{
  font-family: var(--font-mono);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 999px;
  white-space: nowrap;
  /* default (tidak dikenal) */
  background: rgba(124,138,155,0.1);
  color: var(--text-muted);
  border: 1px solid var(--border);
}
.yk-type-badge.type-imei{
  background: rgba(45,212,255,0.08);
  color: var(--cyan-dim);
  border-color: rgba(45,212,255,0.25);
}
.yk-type-badge.type-server{
  background: rgba(255,176,32,0.08);
  color: var(--amber);
  border-color: rgba(255,176,32,0.25);
}
.yk-type-badge.type-remote{
  background: rgba(52,211,153,0.08);
  color: var(--success);
  border-color: rgba(52,211,153,0.25);
}

/* ---------- Service grid ---------- */
.yk-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 4px 0;
  min-width: 0;
  width: 100%;
}

.yk-grid .col,
.yk-grid .service-item {
  min-width: 0;
  overflow: hidden;
}
.yk-grid--category{ margin-bottom: 4px; }

.yk-grid::-webkit-scrollbar{ width: 7px; }
.yk-grid::-webkit-scrollbar-thumb{ background: var(--border-strong); border-radius: 10px; }
.yk-grid::-webkit-scrollbar-track{ background: transparent; }

@media (max-width: 900px){
  .yk-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px){
  .yk-grid{ grid-template-columns: 1fr; }
}



.yk-service-card{
  background: var(--bg-surface-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  cursor: pointer;
  transition: border-color .15s ease, transform .12s ease, background .15s ease;
}
.yk-service-card:hover{
  border-color: var(--cyan-dim);
  transform: translateY(-1px);
  background: var(--bg-surface-hover);
}
.yk-service-card.selected{
  border-color: var(--cyan);
  background: rgba(45,212,255,0.06);
  box-shadow: 0 0 0 1px var(--cyan) inset;
}
.yk-service-card-top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  gap: 8px;
}
.yk-service-icon{
  width: 30px; height: 30px;
  border-radius: 7px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 10px;
  color: var(--cyan);
}
.yk-service-icon svg{ width: 16px; height: 16px; }
.yk-service-card h6{
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 3px;
  line-height: 1.35;
}
.yk-service-card .desc{
  font-size: 11.5px;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.yk-service-card .row{
  display: flex; align-items: center; justify-content: space-between;
}
.yk-chip{
  font-family: var(--font-mono);
  font-size: 10.5px;
  padding: 3px 8px;
  border-radius: 999px;
  background: var(--bg-surface);
  color: var(--text-muted);
  border: 1px solid var(--border);
}
.yk-price{
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 13px;
  color: var(--success);
}

/* ---------- Terminal / data chip (signature element) ---------- */
.yk-terminal{
  background: #060A0F;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 1.9;
}
.yk-terminal .t-row{
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px dashed var(--border);
  padding: 4px 0;
}
.yk-terminal .t-row:last-child{ border-bottom: none; }
.yk-terminal .t-key{ color: var(--text-muted); }
.yk-terminal .t-val{ color: var(--text-primary); text-align: right; word-break: break-all; }
.yk-terminal .t-val.accent{ color: var(--cyan); }

/* ---------- Status badges ---------- */
.yk-badge{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 4px 10px;
  border-radius: 999px;
  text-transform: uppercase;
}
.yk-badge::before{ content: ''; width: 6px; height: 6px; border-radius: 50%; }
.yk-badge-success{ background: rgba(52,211,153,0.1); color: var(--success); border: 1px solid rgba(52,211,153,0.3); }
.yk-badge-success::before{ background: var(--success); }
.yk-badge-danger{ background: rgba(251,91,91,0.1); color: var(--danger); border: 1px solid rgba(251,91,91,0.3); }
.yk-badge-danger::before{ background: var(--danger); }
.yk-badge-warning{ background: rgba(255,176,32,0.1); color: var(--amber); border: 1px solid rgba(255,176,32,0.3); }
.yk-badge-warning::before{ background: var(--amber); }

/* ---------- Table (history) ---------- */
.yk-table{
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
}
.yk-table thead th{
  text-align: left;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-surface-alt);
}
.yk-table thead th:first-child{ border-top-left-radius: var(--radius-sm); }
.yk-table thead th:last-child{ border-top-right-radius: var(--radius-sm); }
.yk-table tbody td{
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
  color: var(--text-primary);
}
.yk-table tbody tr:hover{ background: rgba(255,255,255,0.015); }
.yk-table tbody tr:last-child td{ border-bottom: none; }
.yk-table .ref-id{ font-family: var(--font-mono); color: var(--cyan); font-size: 12.5px; }
.yk-table .timestamp{ font-size: 11.5px; color: var(--text-muted); display: block; margin-bottom: 2px; }
.yk-table .imei-val{ font-family: var(--font-mono); font-size: 12px; color: var(--text-muted); }

/* ---------- Empty state ---------- */
.yk-empty{
  text-align: center;
  padding: 56px 20px;
  color: var(--text-muted);
}
.yk-empty svg{ width: 40px; height: 40px; color: var(--text-faint); margin-bottom: 14px; }
.yk-empty p{ font-size: 14px; }

/* ---------- Alert / notice ---------- */
.yk-alert{
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  border: 1px solid;
  font-size: 13.5px;
}
.yk-alert-amber{
  background: rgba(255,176,32,0.06);
  border-color: rgba(255,176,32,0.25);
  color: var(--text-primary);
}
.yk-alert-amber .label{ font-size: 12px; color: var(--amber); font-family: var(--font-mono); margin-bottom: 4px; }
.yk-alert-amber .amount{ font-family: var(--font-mono); font-size: 24px; font-weight: 700; color: var(--text-primary); }

/* ---------- Utility ---------- */
.text-center{ text-align: center; }
.text-muted{ color: var(--text-muted); }
.mb-0{ margin-bottom: 0; }
.section-gap{ margin-top: 26px; }

/* ---------- Result icon circles (execute_order) ---------- */
.yk-result-icon{
  width: 60px; height: 60px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
}
.yk-result-icon.ok{ background: rgba(52,211,153,0.1); border: 1px solid rgba(52,211,153,0.3); }
.yk-result-icon.fail{ background: rgba(251,91,91,0.1); border: 1px solid rgba(251,91,91,0.3); }
.yk-result-icon svg{ width: 26px; height: 26px; }
.yk-result-icon.ok svg{ color: var(--success); }
.yk-result-icon.fail svg{ color: var(--danger); }

/* ---------- QRIS box ---------- */
.yk-qris-box{
  display: inline-block;
  padding: 14px;
  background: #fff;
  border-radius: var(--radius);
  margin: 6px 0 18px;
}
.yk-qris-box img{ display: block; max-width: 220px; width: 100%; border-radius: 4px; }

/* ============================================================
   AUTH PAGES (login, register)
   ============================================================ */
.auth-body{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 30px 20px;
}
.auth-wrap{ width: 100%; max-width: 420px; }
.auth-logo{
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}
.auth-brand{
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.1;
}
.auth-brand-sub{
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: .12em;
}
.auth-card{ max-width: 420px; }

/* ── Alert messages ── */
.yk-alert-msg{
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 13.5px;
  border: 1px solid;
}
.yk-alert-msg--error{
  background: rgba(251,91,91,0.08);
  border-color: rgba(251,91,91,0.3);
  color: var(--danger);
}
.yk-alert-msg--success{
  background: rgba(52,211,153,0.08);
  border-color: rgba(52,211,153,0.3);
  color: var(--success);
}

/* ============================================================
   NAVBAR — Customer pill & saldo
   ============================================================ */
.yk-customer-pill{
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-mono);
  font-size: 12px;
  padding: 6px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--bg-surface);
  color: var(--text-muted);
}
.yk-customer-pill svg{ width: 13px; height: 13px; color: var(--cyan); flex-shrink:0; }
.cust-name{ color: var(--text-primary); font-weight: 600; }
.cust-sep{ color: var(--border-strong); }
.cust-saldo{
  color: var(--success);
  font-weight: 700;
  text-decoration: none;
  transition: color .15s;
}
.cust-saldo:hover{ color: #5dffcd; }

/* ============================================================
   SALDO BAR (on order page)
   ============================================================ */
.yk-saldo-bar{
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  margin-bottom: 18px;
}
.yk-saldo-label{
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  color: var(--text-muted);
  flex: 1;
}
.yk-saldo-amount{
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 700;
}
.yk-saldo-amount.ok{ color: var(--success); }
.yk-saldo-amount.low{ color: var(--danger); }

/* ============================================================
   TOPUP PAGE
   ============================================================ */
.yk-nominal-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 4px;
}
@media(max-width:560px){ .yk-nominal-grid{ grid-template-columns: repeat(2,1fr); } }

.yk-nominal-btn{
  padding: 10px 8px;
  background: var(--bg-surface-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 12.5px;
  cursor: pointer;
  transition: all .15s;
  text-align: center;
}
.yk-nominal-btn:hover, .yk-nominal-btn.active{
  border-color: var(--amber);
  color: var(--amber);
  background: rgba(255,176,32,0.06);
}

.yk-upload-area{
  border: 2px dashed var(--border-strong);
  border-radius: var(--radius-sm);
  padding: 32px 20px;
  text-align: center;
  cursor: pointer;
  transition: border-color .2s, background .2s;
  color: var(--text-muted);
}
.yk-upload-area:hover{ border-color: var(--cyan); background: rgba(45,212,255,0.03); }
.yk-upload-area svg{ width: 28px; height: 28px; margin-bottom: 10px; color: var(--text-faint); display: block; margin: 0 auto 10px; }

/* ============================================================
   ADMIN PANEL — Stats grid
   ============================================================ */
.admin-stats-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
@media(max-width:768px){ .admin-stats-grid{ grid-template-columns: repeat(2,1fr); } }
@media(max-width:400px){ .admin-stats-grid{ grid-template-columns: 1fr; } }

.admin-stat-card{
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  text-align: center;
}
.stat-label{
  font-size: 11.5px;
  color: var(--text-muted);
  font-family: var(--font-mono);
  letter-spacing: .05em;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.stat-value{
  font-size: 28px;
  font-weight: 700;
  font-family: var(--font-display);
  color: var(--text-primary);
}

/* ============================================================
   PRODUCT THUMBNAILS (Small & Large Initials)
   ============================================================ */
.yk-product-thumb-sm {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: var(--bg-surface);
  border: 1px solid var(--border-strong);
  color: var(--cyan);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: -0.02em;
}

.yk-product-thumb-large {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #19222c;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  color: #7c8a9b;
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: -0.03em;
  box-shadow: inset 0 0 20px rgba(0,0,0,0.5);
}

/* ============================================================
   PRODUCT POPUP MODAL (Matching iphoneunlockingstore.com)
   ============================================================ */
.yk-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(6, 19, 26, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.yk-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.yk-modal-dialog {
  position: relative;
  width: 100%;
  max-width: 860px;
  max-height: 90vh;
  background: var(--bg-surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg), 0 0 40px rgba(45, 212, 255, 0.1);
  overflow-y: auto;
  padding: 28px 30px;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.yk-modal-overlay.active .yk-modal-dialog {
  transform: translateY(0) scale(1);
}

.yk-modal-close {
  position: absolute;
  top: 18px;
  right: 20px;
  width: 32px;
  height: 32px;
  background: var(--bg-surface-alt);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--text-muted);
  font-size: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s ease;
  z-index: 10;
}
.yk-modal-close:hover {
  background: var(--danger);
  border-color: var(--danger);
  color: #fff;
}

.yk-modal-header-title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  padding-bottom: 14px;
  margin-bottom: 24px;
  padding-right: 40px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.yk-modal-body-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 28px;
  align-items: start;
}

@media (max-width: 720px) {
  .yk-modal-body-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .yk-product-thumb-large {
    max-width: 180px;
    margin: 0 auto;
    font-size: 48px;
  }
  .yk-modal-dialog {
    padding: 20px;
  }
}

.yk-modal-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
  margin-bottom: 12px;
}

.yk-modal-badges {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.yk-modal-delivery {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--cyan);
  background: rgba(45, 212, 255, 0.06);
  border: 1px solid rgba(45, 212, 255, 0.18);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 18px;
}

/* Harga Dual Currency + Strikethrough */
.yk-modal-price-box {
  background: var(--bg-surface-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  margin-bottom: 20px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.yk-price-main {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--text-primary);
}

.yk-price-sub {
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 700;
  color: var(--success);
}

.yk-price-strike {
  font-size: 15px;
  color: var(--text-faint);
  text-decoration: line-through;
  font-weight: 400;
  margin-left: 8px;
}

/* Deskripsi Box */
.yk-modal-desc-box {
  background: var(--bg-surface-alt);
  border-left: 3px solid var(--cyan);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 14px 16px;
  margin-bottom: 22px;
}

.yk-desc-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.yk-desc-content {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  white-space: pre-wrap;
  word-break: break-word;
}

.yk-desc-note {
  font-size: 11.5px;
  color: var(--text-faint);
  margin-top: 10px;
  font-style: italic;
  line-height: 1.5;
}

.yk-field-info-none {
  font-size: 13px;
  color: var(--text-muted);
  background: var(--bg-surface-alt);
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  margin-bottom: 16px;
}

/* ============================================================
   2-TIER NAVBAR & SUB-NAVBAR (iphoneunlockingstore.com style)
   ============================================================ */
.yk-header-wrapper {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border-strong);
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.yk-nav-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: var(--text-muted);
  transition: color 0.15s, background 0.15s;
}
.yk-nav-btn:hover { color: var(--cyan); background: var(--bg-surface-alt); }
.yk-nav-btn svg { width: 16px; height: 16px; }

.yk-nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.15s ease;
}
.yk-nav-link svg { width: 16px; height: 16px; }
.yk-nav-link:hover { color: var(--text-primary); background: var(--bg-surface-alt); }
.yk-nav-link.active { color: var(--cyan); background: rgba(45, 212, 255, 0.08); font-weight: 600; }

.yk-saldo-pill-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #151d26;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  padding: 4px 14px;
  text-decoration: none;
  transition: border-color 0.15s;
}
.yk-saldo-pill-nav:hover { border-color: var(--cyan); }
.yk-saldo-pill-nav .currency-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-faint);
  text-transform: uppercase;
}
.yk-saldo-pill-nav .amount {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--success);
}

/* ── Sub-Navbar ── */
.yk-subnav {
  background: #0b141d;
  border-top: 1px solid rgba(255,255,255,0.04);
  padding: 6px 0;
}

.yk-subnav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  overflow-x: auto;
  scrollbar-width: none;
}
.yk-subnav-inner::-webkit-scrollbar { display: none; }

.yk-subnav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  white-space: nowrap;
  padding: 6px 10px;
  border-radius: 4px;
  transition: color 0.15s;
}
.yk-subnav-link:hover { color: var(--text-primary); }
.yk-subnav-link.active { color: var(--cyan); }

.yk-subnav-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  white-space: nowrap;
  border: none;
  transition: all 0.15s ease;
}
.yk-subnav-btn svg { width: 15px; height: 15px; }

.yk-subnav-btn--cat {
  background: var(--cyan);
  color: #06131a;
}
.yk-subnav-btn--cat:hover { background: #5ce0ff; }
.yk-subnav-btn--cat .arrow { width: 12px; height: 12px; }

.yk-subnav-btn--funds {
  background: rgba(255, 176, 32, 0.12);
  color: var(--amber);
  border: 1px solid rgba(255, 176, 32, 0.3);
  margin-left: auto;
  text-decoration: none;
}
.yk-subnav-btn--funds:hover { background: var(--amber); color: #06131a; }

/* ── Category Dropdown ── */
.yk-dropdown { position: relative; }
.yk-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 6px;
  width: 240px;
  background: var(--bg-surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  padding: 8px 0;
  display: none;
  z-index: 200;
}
.yk-dropdown:hover .yk-dropdown-menu { display: block; }
.yk-dropdown-item {
  display: block;
  padding: 8px 16px;
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.yk-dropdown-item:hover { background: var(--bg-surface-alt); color: var(--cyan); }

/* ============================================================
   STORE PAGE (Dashboard Store matching iphoneunlockingstore.com)
   ============================================================ */
.store-page-wrap { padding-top: 24px; }

.store-hero-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 18px;
  margin-bottom: 32px;
}
@media (max-width: 960px) {
  .store-hero-grid { grid-template-columns: 1fr; }
}

.store-main-banner {
  background: linear-gradient(135deg, #0d2538 0%, #081622 100%);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 36px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
  overflow: hidden;
}
.store-main-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(45,212,255,0.2) 0%, transparent 70%);
  pointer-events: none;
}

.main-banner-content { max-width: 460px; z-index: 2; }
.main-banner-content .badge-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--cyan);
  background: rgba(45, 212, 255, 0.1);
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(45, 212, 255, 0.3);
  display: inline-block;
  margin-bottom: 12px;
}
.main-banner-content h2 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 10px;
}
.main-banner-content p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}
.banner-features {
  display: flex;
  gap: 14px;
  font-size: 12px;
  color: var(--success);
  font-weight: 600;
  margin-bottom: 22px;
  flex-wrap: wrap;
}
.banner-actions { display: flex; gap: 12px; }

.main-banner-graphic { z-index: 2; }
.gfx-box {
  width: 140px;
  height: 140px;
  background: #18334a;
  border: 2px solid var(--cyan);
  border-radius: var(--radius);
  color: var(--cyan);
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 30px rgba(45, 212, 255, 0.25);
}

.store-side-promos {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.side-promo-card {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  transition: transform 0.15s;
}
.side-promo-card:hover { transform: translateX(2px); }
.promo-red { background: linear-gradient(135deg, rgba(239, 68, 68, 0.12) 0%, #0d1722 100%); border-color: rgba(239, 68, 68, 0.3); }
.promo-blue { background: linear-gradient(135deg, rgba(45, 212, 255, 0.12) 0%, #0d1722 100%); border-color: rgba(45, 212, 255, 0.3); }
.promo-green { background: linear-gradient(135deg, rgba(52, 211, 153, 0.12) 0%, #0d1722 100%); border-color: rgba(52, 211, 153, 0.3); }

.promo-title { font-weight: 700; font-size: 13.5px; color: #fff; margin-bottom: 4px; }
.promo-sub { font-size: 12px; color: var(--text-muted); margin-bottom: 8px; }
.promo-link { font-size: 12px; font-weight: 600; color: var(--cyan); text-decoration: none; }

/* ── Featured Tools Grid ── */
.store-section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.store-section-title h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}
.see-all-link {
  font-size: 13px;
  color: var(--cyan);
  text-decoration: none;
  font-weight: 600;
}

.store-tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
@media (max-width: 840px) { .store-tools-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .store-tools-grid { grid-template-columns: 1fr; } }

.tool-card {
  background: var(--bg-surface-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.2s ease;
}
.tool-card:hover {
  border-color: var(--cyan);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.tool-badge {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--cyan);
  margin-bottom: 8px;
}
.tool-card h4 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.tool-card p {
  font-size: 12.5px;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.tool-btn {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--cyan);
  background: rgba(45, 212, 255, 0.08);
  border: 1px solid rgba(45, 212, 255, 0.25);
  border-radius: 4px;
  padding: 6px 12px;
  display: inline-block;
  transition: all 0.15s;
}
.tool-card:hover .tool-btn {
  background: var(--cyan);
  color: #06131a;
}

/* ============================================================
   LEFT SIDEBAR CATEGORY DRAWER (iphoneunlockingstore.com style)
   ============================================================ */
.yk-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(6, 19, 26, 0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.yk-drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

.yk-drawer {
  position: absolute;
  top: 0;
  left: 0;
  width: 320px;
  max-width: 85vw;
  height: 100vh;
  background: var(--bg-surface);
  border-right: 1px solid var(--border-strong);
  box-shadow: 10px 0 40px rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.yk-drawer-overlay.active .yk-drawer {
  transform: translateX(0);
}

.yk-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px;
  border-bottom: 1px solid var(--border);
  background: #0b141d;
}

.yk-drawer-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}

.yk-drawer-close {
  width: 30px;
  height: 30px;
  background: var(--bg-surface-alt);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--text-muted);
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s;
}
.yk-drawer-close:hover {
  background: var(--danger);
  border-color: var(--danger);
  color: #fff;
}

.yk-drawer-search {
  position: relative;
  padding: 16px 20px 12px;
  border-bottom: 1px solid var(--border);
}
.yk-drawer-search svg {
  position: absolute;
  left: 32px;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  color: var(--text-faint);
}
.yk-drawer-search input {
  padding-left: 36px;
  font-size: 13px;
}

.yk-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 10px 0;
}

.yk-drawer-cat-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 22px;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  transition: background 0.15s, color 0.15s, padding-left 0.15s;
  line-height: 1.4;
}

.yk-drawer-cat-item:hover {
  background: var(--bg-surface-alt);
  color: var(--cyan);
  padding-left: 26px;
}

.yk-drawer-cat-item.active {
  color: var(--cyan);
  font-weight: 700;
  background: rgba(45, 212, 255, 0.06);
}

.cat-arrow {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--text-faint);
  transition: color 0.15s;
}
.yk-drawer-cat-item:hover .cat-arrow {
  color: var(--cyan);
}

/* ============================================================
   3-DOTS PROFILE DROPDOWN MENU (iphoneunlockingstore.com style)
   ============================================================ */
.yk-profile-icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.15s ease;
  position: relative;
}
.yk-profile-icon-btn:hover {
  background: var(--bg-surface-alt);
  border-color: var(--border);
  color: var(--cyan);
}
.yk-profile-icon-btn svg {
  width: 18px;
  height: 18px;
}

.yk-profile-dropdown-wrap {
  position: relative;
}

.yk-profile-menu-popup {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 10px;
  width: 250px;
  background: #0d1620;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
  padding: 18px 0 10px;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px) scale(0.96);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.yk-profile-menu-popup.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.profile-popup-header {
  text-align: center;
  padding: 0 18px 14px;
}

.profile-avatar-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #182736;
  border: 1px solid var(--cyan-dim);
  color: var(--cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
}
.profile-avatar-circle svg {
  width: 28px;
  height: 28px;
}

.profile-user-name {
  font-family: var(--font-display);
  font-size: 14.5px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 3px;
}

.profile-user-role {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
}

.profile-popup-divider {
  height: 1px;
  background: var(--border);
  margin: 6px 0;
}

.profile-popup-links {
  padding: 4px 0;
}

.profile-popup-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.profile-popup-item svg {
  width: 16px;
  height: 16px;
  color: var(--text-faint);
  transition: color 0.15s;
}

.profile-popup-item:hover {
  background: rgba(45, 212, 255, 0.08);
  color: var(--cyan);
}
.profile-popup-item:hover svg {
  color: var(--cyan);
}

.item-logout {
  color: var(--danger);
}
.item-logout svg {
  color: var(--danger);
}
.item-logout:hover {
  background: rgba(251, 91, 91, 0.1);
  color: #ff7b7b;
}

/* ============================================================
   CAROUSEL SLIDER & VISUAL PROMO CARDS (iphoneunlockingstore.com)
   ============================================================ */
.store-main-slider {
  position: relative;
  border-radius: var(--radius);
  border: 1px solid var(--border-strong);
  overflow: hidden;
  background: #081420;
  min-height: 260px;
}

.store-slide {
  display: none;
  padding: 34px 36px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 260px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.store-slide.active {
  display: flex;
  opacity: 1;
}

.slide-wuxinji {
  background: linear-gradient(135deg, #111a26 0%, #06111a 100%);
  border-left: 4px solid var(--amber);
}

.slide-frp {
  background: linear-gradient(135deg, #092036 0%, #05101c 100%);
  border-left: 4px solid var(--cyan);
}

.slide-otix {
  background: linear-gradient(135deg, #1d0f33 0%, #090514 100%);
  border-left: 4px solid #a855f7;
}

.slide-content {
  max-width: 480px;
  z-index: 2;
}

.slide-content h2 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 8px;
}

.slide-content p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 14px;
}

.slide-graphic { z-index: 2; }

.gfx-gold-card {
  width: 140px;
  height: 140px;
  background: linear-gradient(135deg, #2b220d 0%, #151004 100%);
  border: 2px solid var(--amber);
  border-radius: var(--radius);
  color: var(--amber);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 30px rgba(255, 176, 32, 0.25);
  text-align: center;
}
.gfx-gold-card .gfx-crown { font-size: 32px; margin-bottom: 2px; }
.gfx-gold-card .gfx-title { font-family: var(--font-display); font-weight: 700; font-size: 18px; letter-spacing: 0.05em; }
.gfx-gold-card .gfx-sub { font-family: var(--font-mono); font-size: 10px; opacity: 0.8; }

.gfx-blue-card {
  width: 140px;
  height: 140px;
  background: linear-gradient(135deg, #0a2538 0%, #04101a 100%);
  border: 2px solid var(--cyan);
  border-radius: var(--radius);
  color: var(--cyan);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 30px rgba(45, 212, 255, 0.25);
}
.gfx-blue-card .gfx-title { font-family: var(--font-display); font-weight: 700; font-size: 42px; }
.gfx-blue-card .gfx-sub { font-family: var(--font-mono); font-size: 10px; opacity: 0.8; }

.gfx-purple-card {
  width: 140px;
  height: 140px;
  background: linear-gradient(135deg, #281045 0%, #0d041a 100%);
  border: 2px solid #a855f7;
  border-radius: var(--radius);
  color: #a855f7;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 30px rgba(168, 85, 247, 0.25);
}
.gfx-purple-card .gfx-title { font-family: var(--font-display); font-weight: 700; font-size: 24px; }
.gfx-purple-card .gfx-sub { font-family: var(--font-mono); font-size: 10px; opacity: 0.8; }

/* Navigation Arrows & Dots */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(6, 19, 26, 0.7);
  border: 1px solid var(--border-strong);
  color: var(--text-primary);
  font-size: 14px;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s;
}
.slider-arrow:hover { background: var(--cyan); color: #06131a; border-color: var(--cyan); }
.arrow-prev { left: 14px; }
.arrow-next { right: 14px; }

.slider-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.slider-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.2s;
}
.slider-dots .dot.active {
  background: var(--cyan);
  width: 24px;
  border-radius: 999px;
}

/* ── Visual Banner Cards Grid ── */
.tool-banner-card {
  min-height: 160px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.22s ease;
  background-size: cover;
  background-position: center;
}
.tool-banner-card:hover {
  transform: translateY(-3px) scale(1.01);
  border-color: var(--cyan);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(45, 212, 255, 0.2);
}

.card-overlay {
  padding: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(135deg, rgba(13, 22, 32, 0.92) 0%, rgba(6, 13, 20, 0.96) 100%);
}

.card-badge {
  font-family: var(--font-mono);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--cyan);
  background: rgba(45, 212, 255, 0.1);
  border: 1px solid rgba(45, 212, 255, 0.3);
  padding: 3px 8px;
  border-radius: 999px;
  align-self: flex-start;
}
.badge-amber { color: var(--amber); background: rgba(255,176,32,0.1); border-color: rgba(255,176,32,0.3); }
.badge-pink { color: #f472b6; background: rgba(244,114,182,0.1); border-color: rgba(244,114,182,0.3); }
.badge-blue { color: #60a5fa; background: rgba(96,165,250,0.1); border-color: rgba(96,165,250,0.3); }
.badge-gold { color: #f59e0b; background: rgba(245,158,11,0.1); border-color: rgba(245,158,11,0.3); }
.badge-purple { color: #c084fc; background: rgba(192,132,252,0.1); border-color: rgba(192,132,252,0.3); }

.tool-banner-card h4 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-top: 10px;
  margin-bottom: 4px;
}
.tool-banner-card p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
  margin-bottom: 14px;
}
.card-btn {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--cyan);
  align-self: flex-start;
  transition: transform 0.15s;
}
.tool-banner-card:hover .card-btn {
  transform: translateX(4px);
  color: #fff;
}

/* Banner Background Images */
.slide-wuxinji {
  background: linear-gradient(135deg, rgba(17,26,38,0.82) 0%, rgba(6,17,26,0.92) 100%), url('banners/wuxinji.jpg') center/cover no-repeat;
  border-left: 4px solid var(--amber);
}
.slide-frp {
  background: linear-gradient(135deg, rgba(9,32,54,0.82) 0%, rgba(5,16,28,0.92) 100%), url('banners/frp.jpg') center/cover no-repeat;
  border-left: 4px solid var(--cyan);
}
.slide-otix {
  background: linear-gradient(135deg, rgba(29,15,51,0.82) 0%, rgba(9,5,20,0.92) 100%), url('banners/otix.jpg') center/cover no-repeat;
  border-left: 4px solid #a855f7;
}

/* Side Promos Background Images */
.promo-red { background: linear-gradient(135deg, rgba(239, 68, 68, 0.85) 0%, rgba(13, 23, 34, 0.92) 100%), url('banners/microsoft.jpg') center/cover no-repeat; border-color: rgba(239, 68, 68, 0.4); }
.promo-blue { background: linear-gradient(135deg, rgba(45, 212, 255, 0.85) 0%, rgba(13, 23, 34, 0.92) 100%), url('banners/att.jpg') center/cover no-repeat; border-color: rgba(45, 212, 255, 0.4); }
.promo-green { background: linear-gradient(135deg, rgba(52, 211, 153, 0.85) 0%, rgba(13, 23, 34, 0.92) 100%), url('banners/instantapi.jpg') center/cover no-repeat; border-color: rgba(52, 211, 153, 0.4); }

/* Tool Cards Background Images */
.card-iremove { background: linear-gradient(135deg, rgba(9,26,42,0.85) 0%, rgba(3,10,18,0.92) 100%), url('banners/iremove.jpg') center/cover no-repeat; }
.card-tmobile { background: linear-gradient(135deg, rgba(43,11,26,0.85) 0%, rgba(12,2,7,0.92) 100%), url('banners/tmobile.jpg') center/cover no-repeat; }
.card-cleaning { background: linear-gradient(135deg, rgba(42,8,32,0.85) 0%, rgba(11,2,10,0.92) 100%), url('banners/tmobile.jpg') center/cover no-repeat; }
.card-ikey { background: linear-gradient(135deg, rgba(24,39,11,0.85) 0%, rgba(6,12,2,0.92) 100%), url('banners/ikey.jpg') center/cover no-repeat; }
.card-hfz { background: linear-gradient(135deg, rgba(10,31,51,0.85) 0%, rgba(3,11,20,0.92) 100%), url('banners/hfz.jpg') center/cover no-repeat; }
.card-chimera { background: linear-gradient(135deg, rgba(42,32,7,0.85) 0%, rgba(12,9,1,0.92) 100%), url('banners/chimera.jpg') center/cover no-repeat; }
.card-iberry { background: linear-gradient(135deg, rgba(13,30,45,0.85) 0%, rgba(3,8,14,0.92) 100%), url('banners/iremove.jpg') center/cover no-repeat; }
.card-otix { background: linear-gradient(135deg, rgba(35,11,51,0.85) 0%, rgba(10,2,18,0.92) 100%), url('banners/otix.jpg') center/cover no-repeat; }
.card-tsm { background: linear-gradient(135deg, rgba(29,9,44,0.85) 0%, rgba(8,2,13,0.92) 100%), url('banners/chimera.jpg') center/cover no-repeat; }



.item-logout:hover svg {
  color: #ff7b7b;
}

/* Official Brand Logo Styling */
.yk-brand-logo-img {
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(45, 212, 255, 0.65));
  transition: transform 0.25s ease, filter 0.25s ease;
}
.yk-brand-logo-img:hover {
  transform: scale(1.03);
  filter: drop-shadow(0 0 20px rgba(45, 212, 255, 0.9));
}

/* ============================================================
   PURE VISUAL BANNER IMAGES (iphoneunlockingstore.com style)
   ============================================================ */
.store-main-slider-img {
  position: relative;
  border-radius: var(--radius);
  border: 1px solid var(--border-strong);
  overflow: hidden;
  background: #081420;
  box-shadow: 0 8px 30px rgba(0,0,0,0.5);
}

.slider-track-img {
  position: relative;
  width: 100%;
}

.store-slide-img {
  display: none;
  width: 100%;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.store-slide-img.active {
  display: block;
  opacity: 1;
}

.store-slide-img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: var(--radius);
}

/* 3 Side Promos Images Stack */
.store-side-promos-img {
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: space-between;
}

.side-promo-img-card {
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-strong);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.side-promo-img-card:hover {
  transform: translateY(-2px);
  border-color: var(--cyan);
  box-shadow: 0 8px 24px rgba(45, 212, 255, 0.2);
}

.side-promo-img-card img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Featured Tools Grid Images */
.store-tools-grid-img {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 840px) { .store-tools-grid-img { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .store-tools-grid-img { grid-template-columns: 1fr; } }

.tool-img-card {
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  background: var(--bg-surface-alt);
}

.tool-img-card:hover {
  transform: translateY(-4px) scale(1.01);
  border-color: var(--cyan);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.6), 0 0 24px rgba(45, 212, 255, 0.25);
}

.tool-img-card img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.tool-img-card:hover img {
  transform: scale(1.03);
}



/* ============================================================
   MOBILE RESPONSIVE — Full HP Support
   ============================================================ */

/* Hide nav text labels on small screens */
@media (max-width: 768px) {
  .yk-brand-logo-img { max-width: 160px !important; max-height: 48px !important; }
  .yk-nav-link span { display: none; }
  .yk-nav-link { padding: 6px 8px; }
  .yk-navbar-right .yk-nav-link:not(:last-of-type) { display: none; }
  .yk-saldo-pill-nav .currency-tag { display: none; }
  .yk-status-pill { font-size: 10px; padding: 4px 8px; }
  .yk-navbar-right .yk-btn { padding: 5px 10px; font-size: 12px; }
  .page-wrap { padding: 0 12px 64px; }
  .yk-hero { padding: 28px 12px 20px; }
  .yk-hero h1 { font-size: 20px; }
  .yk-hero p { font-size: 13px; }

  /* FIX: Filter bar — stack vertically, prevent overflow */
  .yk-filter-bar {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    width: 100%;
    overflow: hidden;
  }
  .yk-search-wrap,
  .yk-search-inline {
    width: 100% !important;
    min-width: 0 !important;
    flex: unset !important;
  }
  .yk-search-wrap input,
  .yk-input { width: 100% !important; box-sizing: border-box; }
  .yk-select-wrap {
    width: 100% !important;
    min-width: 0 !important;
  }
  .yk-select { width: 100% !important; min-width: 0 !important; box-sizing: border-box; }
  .yk-total-badge { margin-left: 0; align-self: flex-start; }

  /* FIX: Prevent page-wide horizontal scroll */
  body { overflow-x: hidden; }
  .page-wrap { overflow-x: hidden; }

  .store-hero-grid { grid-template-columns: 1fr !important; }
  .store-main-banner { padding: 22px 18px; flex-direction: column; }
  .main-banner-content h2 { font-size: 18px; }
  .main-banner-graphic { display: none; }

  /* Table: scrollable */
  .yk-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .yk-table { min-width: 560px; }

  /* Modal: slide up from bottom */
  .yk-modal-overlay { padding: 0; align-items: flex-end; }
  .yk-modal-dialog {
    max-width: 100%;
    max-height: 92vh;
    border-radius: var(--radius) var(--radius) 0 0;
    padding: 18px 16px;
  }

  .auth-wrap { max-width: 100%; padding: 0; }
  .auth-card { max-width: 100%; }
  .admin-stats-grid { grid-template-columns: repeat(2, 1fr) !important; }
}

@media (max-width: 480px) {
  .yk-brand-logo-img { max-width: 120px !important; max-height: 40px !important; }
  .yk-navbar-right .yk-nav-link { display: none; }
  .yk-navbar-inner { padding: 6px 12px; gap: 8px; }
  .yk-grid { grid-template-columns: 1fr !important; }
  .store-tools-grid { grid-template-columns: 1fr !important; }
  .store-tools-grid-img { grid-template-columns: 1fr !important; }
  .yk-nominal-grid { grid-template-columns: repeat(2, 1fr); }
  .yk-saldo-bar { flex-direction: column; align-items: flex-start; gap: 6px; }
  .yk-hero h1 { font-size: 17px; }
  .yk-profile-menu-popup { right: -12px; width: 220px; }
}

