.min-w-0 { min-width: 0; }
.grid-col-full { grid-column: 1 / -1; }
.form-label-muted { font-size: 12px; color: var(--muted); font-weight: 800; }
.logo-fallback-hidden { display: none; }
.logo-fallback-visible { display: flex; }
.final-flag-hidden { visibility: hidden; }
.img-flag-rounded { border-radius: 2px; }
.step-head-copy { min-width: 0; }
.pack-icon-reset { padding: 0; }
.step-card-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 140px;
  text-align: center;
}
.empty-state-message { font-size: 15px; color: #c9a84c; }
.btn-ghost.is-disabled { cursor: not-allowed; }

:root{
  --font: var(--mmorpg-font-body, "Lato", system-ui, sans-serif);
  --font-title: var(--mmorpg-font-title, "Cinzel", Georgia, serif);
  --bg: var(--mmorpg-bg, #0d0f14);
  --card: var(--mmorpg-bg-card, #141822);
  --border: var(--mmorpg-border, #2a2f3d);
  --muted: var(--mmorpg-text-muted, #9ca3af);
  --title: var(--mmorpg-text, #e8e6e3);
  --accent: var(--mmorpg-gold, #c9a227);
  --accentDark: #a68b20;
  --accentSoft: rgba(201,162,39,.12);
  --price: var(--mmorpg-text, #e8e6e3);
  --shadow-sm: 0 6px 16px rgba(0,0,0,.25);
  --shadow-md: 0 12px 28px rgba(0,0,0,.35);
  --radius: 16px;
}
    body{
      background:var(--bg);
      font-family:var(--font);
      font-size:15px;
      color:var(--title);
      line-height:1.6;
      -webkit-font-smoothing:antialiased;
      -moz-osx-font-smoothing:grayscale;
      text-rendering:optimizeLegibility;
      letter-spacing:0.01em;
      min-height:100vh;
      display:flex;
      flex-direction:column;
    }
    body, body *{ box-sizing:border-box; }
    body *{ font-family:inherit; }
    .text-muted{ color:var(--muted) !important; }

    .topbar{
      position:sticky; top:0; z-index:50;
      background:rgba(13,15,20,.9);
      backdrop-filter: blur(12px);
      border-bottom:1px solid var(--border);
    }
    .topbar-title{ font-weight:600; color:var(--title); font-size:15px; letter-spacing:.02em; line-height:1.4; }

    .switchers{ display:flex; gap:10px; flex-wrap:wrap; justify-content:flex-end; }
    .switchers .lbl{ font-size:13px; color:var(--muted); margin-right:4px; line-height:1.4; }
    .switchers select{
      border:1px solid var(--border); background:var(--card); color:var(--title); border-radius:999px;
      font-size:14px; padding:8px 14px; outline:none; font-family:var(--font);
    }

    .wrap{ flex:1; }
    .layout{ display:grid; grid-template-columns: 360px 1fr; gap:20px; }
    @media (max-width: 992px){
      .layout{ grid-template-columns:1fr; display:flex; flex-direction:column; }
      .side-col{ order:1; position:static; }
      .main{ order:2; }
    }

    .side-card{
      background:var(--card);
      border:1px solid var(--border);
      border-radius:var(--radius);
      box-shadow:var(--shadow-sm);
      padding:20px;
      position:static;
      height:fit-content;
    }
    @media (max-width: 992px){ .side-card{ position:static; } }

    .game-row{ display:flex; gap:12px; }
    .game-img{
      width:72px; height:72px; border-radius:18px; overflow:hidden;
      border:1px solid var(--border); flex:0 0 auto; background:var(--card);
    }
    .game-img img{ width:100%; height:100%; object-fit:cover; display:block; }
    .game-name{ font-weight:700; font-size:17px; line-height:1.3; color:var(--title); letter-spacing:-0.01em; }
    .side-card-subtitle{ font-size:13px; color:var(--muted); line-height:1.45; margin-top:6px; }
    .side-card-official-btn{
      display:flex; align-items:center; justify-content:center; gap:8px;
      width:100%; margin-top:12px; padding:10px 16px;
      box-sizing:border-box;
      background:linear-gradient(135deg, rgba(201,162,39,.2) 0%, rgba(201,162,39,.12) 100%);
      border:1px solid rgba(201,162,39,.4);
      border-radius:10px;
      color:var(--accent); font-weight:700; font-size:14px;
      text-decoration:none;
      transition:background .2s, border-color .2s, color .2s, transform .05s;
    }
    .side-card-official-btn:hover{ background:rgba(201,162,39,.25); border-color:var(--accent); color:#f0e6c8; }
    .side-card-official-btn i{ font-size:1em; }
    .safe-pill{
      display:inline-flex; align-items:center; gap:8px;
      margin-top:6px;
      font-size:12px; color:var(--title);
    }
    .safe-dot{
      width:18px; height:18px; border-radius:999px;
      background:var(--accentSoft); border:1px solid rgba(201,162,39,.35);
      display:inline-flex; align-items:center; justify-content:center;
      font-weight:900; color:var(--accent); font-size:12px;
    }
    .side-desc{ margin-top:10px; font-size:12px; color:var(--muted); opacity:.9; }

    .side-faq{ margin-top:20px; display:flex; flex-direction:column; gap:12px; }
    .side-faq-title{ font-weight:700; font-size:15px; color:var(--title); letter-spacing:-0.01em; margin-bottom:2px; }
    .faq-item{ border:1px solid var(--border); border-radius:12px; background:var(--card); overflow:hidden; }
    .faq-item .faq-q-wrap{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
      padding:16px 18px;
      cursor:pointer;
      list-style:none;
      margin:0;
      border:none;
      width:100%;
      text-align:left;
      background:transparent;
      font-family:inherit;
      transition:background .15s ease;
    }
    .faq-item .faq-q-wrap:hover{ background:rgba(201,162,39,.06); }
    .faq-item .faq-q{
      font-weight:700;
      font-size:14px;
      color:var(--title);
      line-height:1.4;
      flex:1;
      min-width:0;
    }
    .faq-item .faq-chevron{
      flex-shrink:0;
      width:20px;
      height:20px;
      display:flex;
      align-items:center;
      justify-content:center;
      color:var(--muted);
      transition:transform .2s ease;
    }
    .faq-item.is-open .faq-chevron{ transform:rotate(180deg); }
    .faq-item .faq-a{
      font-size:14px;
      color:var(--muted);
      line-height:1.6;
      white-space:pre-line;
      padding:0 18px 16px;
      display:none;
    }
    .faq-item.is-open .faq-a{ display:block; }

    .auto-note{
      margin-top:14px;
      background:var(--accentSoft);
      border:1px solid rgba(201,162,39,.25);
      border-radius:14px;
      padding:10px 12px;
      font-size:12px;
      color:var(--accent);
      display:flex;
      gap:10px;
      align-items:flex-start;
    }
    .auto-note .ico{
      width:24px;height:24px;border-radius:999px;
      background:var(--accentSoft);
      border:1px solid rgba(201,162,39,.25);
      display:flex;align-items:center;justify-content:center;
      font-weight:900;
      flex:0 0 auto;
      color:var(--accent);
    }
    .auto-note strong{ font-weight:900; }

    .main{ display:flex; flex-direction:column; gap:20px; max-width:960px; }

    /* Topup external-redirect overlay */
    .main.topup-overlay-active {
      position: relative;
      overflow: visible;
    }
    .main.topup-overlay-active > *:not(.topup-redirect-overlay) {
      filter: blur(5px);
      pointer-events: none;
      user-select: none;
      opacity: 0.55;
      z-index: 0;
    }
    .main.topup-overlay-active .topup-redirect-overlay {
      z-index: 1;
    }
    .topup-redirect-overlay {
      position: absolute;
      inset: 0;
      z-index: 20;
      display: flex;
      align-items: flex-start;
      justify-content: center;
      padding: 2rem 1rem;
      overflow: visible;
      min-height: 100%;
    }
    .topup-redirect-card {
      background: linear-gradient(160deg, rgba(26,30,44,0.98) 0%, rgba(18,21,32,0.99) 100%);
      border: 1px solid rgba(201,162,39,0.28);
      border-radius: 20px;
      padding: 2.5rem 2.25rem 2.5rem;
      text-align: center;
      max-width: 400px;
      width: 100%;
      min-height: 280px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      box-shadow:
        0 0 0 1px rgba(255,255,255,0.03),
        0 8px 32px rgba(0,0,0,0.55),
        0 0 60px rgba(201,162,39,0.06);
      position: relative;
      overflow: visible;
      isolation: isolate;
    }
    .topup-redirect-card::before {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: inherit;
      background: radial-gradient(ellipse 100% 80% at 50% 0%, rgba(201,162,39,0.12) 0%, rgba(201,162,39,0.04) 45%, transparent 75%);
      pointer-events: none;
      z-index: 0;
    }
    .topup-redirect-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 68px;
      height: 68px;
      border-radius: 50%;
      background: rgba(201,162,39,0.10);
      border: 1px solid rgba(201,162,39,0.22);
      font-size: 2rem;
      color: var(--accent);
      margin: 0 auto 1.5rem;
      box-shadow: 0 0 20px rgba(201,162,39,0.12);
      flex-shrink: 0;
    }
    .topup-redirect-title {
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--title);
      margin-bottom: 0.65rem;
      line-height: 1.45;
      letter-spacing: -0.01em;
    }
    .topup-redirect-divider {
      width: 36px;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--accent), transparent);
      border-radius: 2px;
      margin: 0 auto 1rem;
      opacity: 0.55;
    }
    .topup-redirect-desc {
      color: var(--muted);
      font-size: 0.84rem;
      line-height: 1.7;
      margin-bottom: 2rem;
    }
    .topup-redirect-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      background: linear-gradient(135deg, var(--accent) 0%, var(--accentDark) 100%);
      color: #0d0f14;
      font-weight: 700;
      font-size: 0.875rem;
      padding: 0.8rem 2rem;
      border-radius: 12px;
      text-decoration: none;
      letter-spacing: 0.025em;
      width: 100%;
      box-shadow: 0 4px 18px rgba(201,162,39,0.25);
      transition: box-shadow 0.2s ease, transform 0.15s ease, opacity 0.2s ease;
    }
    .topup-redirect-btn:hover,
    .topup-redirect-btn:focus-visible {
      box-shadow: 0 6px 26px rgba(201,162,39,0.38);
      transform: translateY(-2px);
      color: #0d0f14;
      text-decoration: none;
      opacity: 0.93;
    }
    .topup-redirect-btn:active {
      transform: translateY(0);
      box-shadow: 0 2px 10px rgba(201,162,39,0.2);
    }
    /* Overlay card stretches to fill column when enough space (align with side card) */
    @media (min-width: 993px) {
      .layout.layout-topup-overlay { align-items: stretch; }
      .topup-redirect-overlay { align-items: flex-start; padding: 1.5rem 1rem; }
      .topup-redirect-card {
        min-height: 0;
        align-self: auto;
        border-radius: var(--radius);
        position: sticky;
        top: 2rem;
      }
      .topup-redirect-card::before { border-radius: var(--radius); }
    }

    .step-card{
      background:linear-gradient(180deg, var(--card) 0%, rgba(20,24,34,.97) 100%);
      border:1px solid rgba(201,162,39,.18);
      border-radius:14px;
      box-shadow:0 4px 16px rgba(0,0,0,.12), 0 0 0 1px rgba(255,255,255,.02);
      padding:22px 24px 24px;
      transition:box-shadow .25s ease, border-color .25s ease;
      min-width:0;
      overflow:hidden;
    }
    .step-card:hover{
      box-shadow:0 6px 24px rgba(0,0,0,.18), 0 0 0 1px rgba(201,162,39,.12);
      border-color:rgba(201,162,39,.3);
    }
    .step-card:focus-within{
      border-color:rgba(201,162,39,.4);
      box-shadow:0 6px 24px rgba(0,0,0,.18), 0 0 0 2px rgba(201,162,39,.15);
    }
    .step-head{
      display:flex;
      align-items:flex-start;
      gap:16px;
      margin-bottom:12px;
    }
    .step-num{
      width:40px;
      height:40px;
      border-radius:11px;
      background:linear-gradient(145deg, #e0c04a 0%, #c9a227 45%, #9a7a18 100%);
      border:1px solid rgba(190,160,60,.85);
      color:#fff;
      display:flex;
      align-items:center;
      justify-content:center;
      font-weight:900;
      font-size:15px;
      flex:0 0 auto;
      box-shadow:
        0 0 0 1px rgba(201,162,39,.25),
        0 4px 14px rgba(201,162,39,.38),
        0 2px 6px rgba(0,0,0,.2),
        inset 0 1px 0 rgba(255,255,255,.28);
      text-shadow:0 1px 2px rgba(0,0,0,.25);
    }
    .step-title{
      font-weight:800;
      font-size:17px;
      margin-top:1px;
      line-height:1.35;
      color:var(--title);
      letter-spacing:-0.02em;
    }
    .step-hint{
      color:var(--muted);
      font-size:13px;
      margin-top:5px;
      line-height:1.5;
      font-weight:500;
    }

    .pb-modal{
      position:fixed; inset:0;
      background:rgba(15,23,42,.55);
      display:none;
      align-items:center;
      justify-content:center;
      padding:18px;
      z-index:9999;
    }
    .pb-modal.open{ display:flex; }
    .pb-modal-card{
      width:min(920px, 100%);
      background:var(--card);
      border-radius:18px;
      border:1px solid var(--border);
      box-shadow:0 24px 60px rgba(0,0,0,.5);
      overflow:hidden;
    }
    .pb-modal-head{
      display:flex; align-items:center; justify-content:space-between;
      padding:12px 14px;
      background:rgba(20,24,34,.9);
      border-bottom:1px solid var(--border);
      gap:10px;
    }
    .pb-modal-title{ font-weight:700; font-size:15px; color:var(--title); line-height:1.4; }
    .pb-modal-close{
      border:1px solid var(--border);
      background:var(--card);
      color:var(--title);
      border-radius:12px;
      padding:8px 10px;
      font-weight:900;
      cursor:pointer;
    }
    .pb-modal-body{ padding:14px; }

    .userbox{
      margin-top:18px;
      border-radius:12px;
      padding:18px 20px;
      background:rgba(20,24,34,.6);
    }
    .step-card .tabs{ margin-top:14px; }
    .step-card .grid{ margin-top:18px; }
    .step-card .pm-list{ margin-top:14px; }
    #user .userbox,
    #receipt .userbox{
      background:rgba(20,24,34,.5);
      border:1px solid rgba(201,162,39,.15);
      box-shadow:inset 0 1px 0 rgba(255,255,255,.03);
    }
    .userbox .row{ --bs-gutter-x:12px; --bs-gutter-y:12px; }
    .form-label, .userbox label{
      font-size:14px;
      font-weight:600;
      color:var(--muted);
      line-height:1.45;
      font-family:var(--font);
    }
    .form-control{
      border-radius:12px;
      border:1px solid var(--border);
      font-size:15px;
      padding:12px 14px;
      line-height:1.5;
      font-family:var(--font);
      background:var(--card);
      color:var(--title);
    }
    .form-control:focus{
      border-color:rgba(201,162,39,.55);
      box-shadow:0 0 0 .2rem rgba(201,162,39,.14);
    }
    
    .cf-input-wrap{
      position:relative;
      display:block;
      border-radius:12px;
      overflow:visible;
    }
    .cf-input-inner{
      position:relative;
      display:block;
      width:100%;
    }
    .userbox .cf-input-wrap .cf-input{ width:100%; box-sizing:border-box; }
    .cf-input-wrap .cf-input{
      padding-right:44px;
      cursor:text;
      background:var(--card);
      color:var(--title);
      border:1px solid var(--border);
      border-radius:10px;
      transition:border-color .2s ease, box-shadow .2s ease, background .2s ease;
    }
    .cf-input-wrap .cf-input:hover{
      border-color:rgba(201,162,39,.3);
    }
    .cf-input-wrap .cf-input:focus{
      border-color:rgba(201,162,39,.5);
      box-shadow:0 0 0 3px rgba(201,162,39,.1);
    }
    
    .cf-input-wrap .cf-input-edit{
      display:none !important;
    }
    .cf-input-wrap.is-valid .cf-input-edit{
      display:none !important;
    }
    .cf-input-wrap .cf-input-check{
      position:absolute;
      top:50%;
      right:12px;
      transform:translateY(-50%);
      width:28px;
      height:28px;
      border-radius:8px;
      background:linear-gradient(135deg, rgba(34,197,94,.18) 0%, rgba(22,163,74,.12) 100%);
      border:1px solid rgba(34,197,94,.35);
      color:#15803d;
      display:flex;
      align-items:center;
      justify-content:center;
      font-size:14px;
      font-weight:700;
      opacity:0;
      pointer-events:none;
      transition:opacity .25s ease, transform .2s ease;
      box-shadow:0 1px 3px rgba(34,197,94,.15);
    }
    .cf-input-wrap.is-valid .cf-input-check{
      opacity:1;
    }
    .cf-input-wrap.is-invalid .cf-input{
      border-color:rgba(220,60,60,.6) !important;
      box-shadow:0 0 0 1px rgba(220,60,60,.15);
    }
    .receipt-email-wrap .receipt-email-label{
      display:block;
      margin-bottom:8px;
      font-size:13px;
      font-weight:700;
      color:var(--muted);
    }
    .receipt-email-wrap .cf-input-inner .cf-input{
      min-height:48px;
      font-size:15px;
    }
    .cf-input-wrap .cf-input-accent{
      display:none; 
    }
    .cf-input-wrap .cf-input::placeholder{
      color:var(--muted);
    }
    .cf-input-wrap.email-locked .cf-input{
      cursor:not-allowed;
      opacity:.8;
      border-color:rgba(201,162,39,.2);
      background:rgba(255,255,255,.04);
      user-select:none;
      -webkit-user-select:none;
      pointer-events:none;
    }
    .cf-input-wrap.email-locked{
      cursor:not-allowed;
    }
    .cf-input-wrap.email-locked .cf-input:hover,
    .cf-input-wrap.email-locked .cf-input:focus{
      border-color:rgba(201,162,39,.2);
      box-shadow:none;
    }
    .email-locked-badge{
      margin-top:6px;
      font-size:11px;
      color:var(--muted);
      opacity:.7;
      display:flex;
      align-items:center;
      gap:4px;
    }
    .email-locked-badge i{
      font-size:11px;
      opacity:.8;
    }
    .btn, .btn-primary, .btn-success, .btn-secondary{
      font-family:var(--font);
      font-size:15px;
      font-weight:600;
      line-height:1.4;
      padding:10px 18px;
    }

    .tabs{ display:flex; gap:10px; margin-top:14px; flex-wrap:wrap; }
    .tab{
      text-decoration:none;
      border:1px solid var(--border);
      background:var(--card);
      color:var(--title);
      border-radius:10px;
      padding:10px 16px;
      font-weight:600;
      font-size:14px;
      line-height:1.4;
      cursor:pointer;
      user-select:none;
      transition: all .15s ease;
    }
    .tab:hover{
      border-color:rgba(201,162,39,.35);
      background:var(--accentSoft);
      color:#c9a227;
    }
    .tab.active{
      border-color:rgba(201,162,39,.55);
      background:rgba(201,162,39,.18);
      color:#e5c94a;
      box-shadow:0 0 0 1px rgba(201,162,39,.15);
    }

    .grid{
      margin-top:24px;
      display:grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap:14px;
      align-items:stretch;
      min-width:0;
    }
    .grid .pack{ min-width:0; }
    @media (max-width: 900px){ .grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); gap:12px; } }
    @media (max-width: 480px){ .grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); gap:10px; } }

    /* ── Pack card ── */
    .pack{
      background:var(--card);
      border:1px solid var(--border);
      border-radius:14px;
      overflow:hidden;
      position:relative;
      cursor:pointer;
      display:flex;
      flex-direction:column;
      height:100%;
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }
    .pack:before,
    .pack:after{ display:none; }
    .pack:hover{
      transform: translateY(-3px);
      box-shadow:0 12px 28px rgba(0,0,0,.3), 0 0 0 1px rgba(201,162,39,.15);
      border-color:rgba(201,162,39,.35);
    }
    .pack:focus-within{
      border-color:rgba(201,162,39,.5);
      box-shadow:0 0 0 3px rgba(201,162,39,.15);
    }

    .pack-body{
      padding:14px 14px 16px;
      display:flex;
      flex-direction:column;
      align-items:center;
      gap:10px;
      flex:1;
    }
    .pack.has-qty .pack-body{
      min-height:300px;
    }

    .pack-top{
      width:100%;
      text-align:center;
      min-height:0;
    }
    .pack-title{
      font-weight:700;
      font-size:13px;
      color:var(--title);
      text-align:center;
      line-height:1.4;
      word-break:break-word;
      margin:0;
    }
    .pack-title:before{ display:none; }
    .pack-subtitle{
      margin-top:4px;
      font-size:12px;
      color:var(--muted);
      text-align:center;
      font-weight:600;
      line-height:1.4;
    }
    .pack-topup-display{
      display:flex;
      align-items:center;
      justify-content:center;
      gap:4px;
      flex-wrap:nowrap;
      font-size:11px;
      font-weight:700;
      line-height:1.2;
    }
    .pack-topup-old{
      text-decoration:line-through;
      text-decoration-color:var(--muted);
      color:var(--muted) !important;
      font-weight:700;
      opacity:0.95;
    }
    .pack-topup-sep{
      color:var(--muted);
      font-weight:700;
      font-size:10px;
    }
    .pack-topup-new{
      color:#15803d !important;
      font-weight:800;
      font-size:12px;
    }

    /* ── Pack icon ── */
    .pack-icon{
      margin:0;
      width:72px;
      height:72px;
      flex-shrink:0;
      border-radius:12px;
      background:rgba(255,255,255,.04);
      border:1px solid var(--border);
      display:flex;
      align-items:center;
      justify-content:center;
      font-weight:900;
      font-size:1.4rem;
      color:var(--title);
      overflow:hidden;
    }
    .pack-icon.pack-icon-img{
      background:#0e1018;
      border:1px solid rgba(201,162,39,.22);
      box-shadow:0 2px 10px rgba(0,0,0,.35);
      padding:5px;
    }
    .pack-icon.pack-icon-img img{
      width:100% !important;
      height:100% !important;
      object-fit:cover !important;
      object-position:center;
      border-radius:6px !important;
      display:block;
    }
    .pack:hover .pack-icon.pack-icon-img{
      border-color:rgba(201,162,39,.4);
    }
    .pack.is-selected .pack-icon.pack-icon-img{
      border-color:rgba(201,162,39,.55);
      box-shadow:0 2px 12px rgba(201,162,39,.2);
    }

    .pack { cursor:pointer; }
    .pack-stock-badge {
      position:absolute; top:8px; left:8px; z-index:2;
      background:#dc3545; color:#fff; font-size:11px; font-weight:700;
      padding:4px 8px; border-radius:6px;
    }
    .pack-out-of-stock { opacity:0.9; }

    /* All-products OOS notice */
    .oos-notice {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      background: rgba(220, 53, 69, 0.08);
      border: 1px solid rgba(220, 53, 69, 0.22);
      border-radius: 12px;
      padding: 14px 18px;
      font-size: 0.875rem;
      color: #f08a93;
      line-height: 1.5;
    }
    .oos-notice .bi { font-size: 1.1rem; flex-shrink: 0; }

    /* Pin product — out of stock */
    .pack.is-out-of-stock {
      cursor: not-allowed;
      opacity: 0.48;
      filter: grayscale(0.45);
      pointer-events: none;
    }
    .pack.is-out-of-stock:hover {
      transform: none;
      box-shadow: 0 4px 20px rgba(0,0,0,.2), 0 1px 0 rgba(255,255,255,.03);
      border-color: var(--border);
    }
    .pack-icon-wrap {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .pack.is-out-of-stock .pack-icon,
    .pack.is-out-of-stock .pack-icon img {
      opacity: 0.45;
      filter: grayscale(0.6);
    }
    .pack-oos-badge {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      z-index: 3;
      background: rgba(160, 20, 20, 0.92);
      color: #fff;
      font-size: 10px;
      font-weight: 800;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 4px 12px;
      border-radius: 20px;
      white-space: nowrap;
      box-shadow: 0 2px 12px rgba(0,0,0,0.6);
      backdrop-filter: blur(4px);
      -webkit-backdrop-filter: blur(4px);
      border: 1px solid rgba(255,255,255,0.15);
    }

    .pack-bottom{
      margin-top:auto;
      padding-top:6px;
      text-align:center;
      width:100%;
    }
    .pack-bottom:before{ display:none; }
    .pack-bottom > div{
      display:flex;
      flex-direction:column;
      align-items:center;
      gap:6px;
      width:100%;
      min-width:0;
    }

    /* Stock indicator on product cards */
    .pack-stock {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.02em;
      margin-top: 6px;
      display: inline-flex;
      align-items: center;
      gap: 4px;
      padding: 3px 10px;
      border-radius: 20px;
      white-space: nowrap;
      line-height: 1;
    }
    .pack-stock .bi { font-size: 11px; }
    .pack-stock-ok {
      color: #4ade80;
      background: rgba(74, 222, 128, 0.1);
      border: 1px solid rgba(74, 222, 128, 0.2);
    }
    .pack-stock-low {
      color: #fbbf24;
      background: rgba(251, 191, 36, 0.1);
      border: 1px solid rgba(251, 191, 36, 0.2);
      animation: stockPulse 2s ease-in-out infinite;
    }
    .pack-stock-none {
      color: #f87171;
      background: rgba(248, 113, 113, 0.1);
      border: 1px solid rgba(248, 113, 113, 0.2);
    }
    @keyframes stockPulse {
      0%, 100% { opacity: 1; }
      50%      { opacity: 0.6; }
    }

    .price{
      font-weight:800;
      font-size:17px;
      color:var(--title);
      letter-spacing:-0.01em;
      font-variant-numeric: tabular-nums;
      text-align:center;
      line-height:1.3;
    }

    .buy{
      border:none;
      background:var(--accent);
      color:#fff;
      font-weight:700;
      font-size:14px;
      padding:11px 14px;
      border-radius:12px;
      font-family:var(--font);
      text-decoration:none;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      white-space:nowrap;
      box-shadow:0 10px 20px rgba(201,162,39,.20);
      transition: transform .12s ease, background .12s ease, box-shadow .12s ease;
      cursor:pointer;
      width:100%;
    }
    .buy:hover{
      background:var(--accentDark);
      transform: translateY(-1px);
      box-shadow:0 14px 24px rgba(201,162,39,.26);
      opacity:1;
    }
    .buy:active{ transform: translateY(0); }
    .req-star{ color:#ef4444; font-weight:900; margin-left:4px; }

    .unit-big { font-size:18px; font-weight:700; color:#a68b20; line-height:1.4; }
    .price-big { font-size:20px; font-weight:700; color:var(--title); line-height:1.4; }
    .currency-small { font-size:14px; color:var(--muted); font-weight:600; margin-left:4px; }
    .small-label { font-size:13px; color:#9ca3af; font-weight:600; line-height:1.4; }

    .methods-wrap { padding: 6px 2px; }
    .methods-grid { display:grid; grid-template-columns: repeat(3, 1fr); gap:16px; }
    .methods-grid.two { grid-template-columns: repeat(2, 1fr); }

    .method-tile{
      display:block;
      background:var(--card);
      border:1px solid var(--border);
      border-radius:16px;
      padding:18px 18px;
      text-decoration:none;
      color:var(--title);
      box-shadow:0 6px 16px rgba(15,23,42,0.08);
      transition:transform .12s ease, box-shadow .12s ease, border-color .12s ease;
      cursor:pointer;
      user-select:none;
    }
    .method-tile:hover{
      transform: translateY(-2px);
      box-shadow:0 14px 26px rgba(15,23,42,0.14);
      border-color:rgba(201,162,39,.45);
      color:var(--title);
    }
    .method-top{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      margin-bottom:10px;
    }
    .method-title{
      font-weight:700;
      letter-spacing:.02em;
      font-size:15px;
      line-height:1.4;
    }
    .method-badge{
      font-size:11px;
      font-weight:900;
      padding:5px 10px;
      border-radius:999px;
      background:var(--accentSoft);
      color:#c9a227;
      border:1px solid rgba(201,162,39,.25);
      white-space:nowrap;
    }
    .method-desc{
      font-size:13px;
      color:var(--muted);
      line-height:1.35;
      margin:0;
    }

    .panel{
      margin-top:18px;
      padding:18px;
      border:1px solid var(--border);
      border-radius:16px;
      background:var(--card);
      box-shadow:0 12px 24px rgba(15,23,42,0.08);
      display:none;
      position:relative;
      overflow:hidden;
    }
    .panel:before{
      content:"";
      position:absolute;
      inset:-2px;
      background: radial-gradient(600px 140px at 20% 0%, rgba(201,162,39,.08), transparent 60%),
                  radial-gradient(600px 140px at 80% 0%, rgba(59,130,246,.06), transparent 60%);
      pointer-events:none;
    }
    .panel-head{
      position:relative;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      padding:2px 2px 14px 2px;
      border-bottom:1px dashed var(--border);
      margin-bottom:14px;
    }
    .panel-title{
      font-size:16px;
      font-weight:950;
      color:var(--title);
      letter-spacing:.2px;
    }
    .panel-sub{
      font-size:12px;
      color:var(--muted);
      font-weight:700;
      margin-top:2px;
    }
    .back-pill{
      display:inline-flex;
      align-items:center;
      gap:8px;
      font-weight:950;
      color:var(--title);
      text-decoration:none;
      padding:9px 14px;
      border:1px solid var(--border);
      border-radius:999px;
      background:var(--card);
      box-shadow:0 8px 16px rgba(15,23,42,0.08);
      transition:transform .12s ease, box-shadow .12s ease, border-color .12s ease;
      user-select:none;
      cursor:pointer;
      white-space:nowrap;
      position:relative;
      z-index:2;
    }
    .back-pill:hover{
      transform: translateY(-1px);
      box-shadow:0 16px 26px rgba(15,23,42,0.12);
      border-color:rgba(201,162,39,.45);
    }
    .back-pill:active{ transform: translateY(0); }

    @keyframes popIn {
      from { opacity:0; transform: translateY(8px); }
      to   { opacity:1; transform: translateY(0); }
    }
    .panel.is-open{ display:block; animation: popIn .18s ease-out; }

    .tile-btn{ width:100%; text-align:left; border:none; background:transparent; padding:0; }
    .tile-btn .method-tile{ width:100%; }

    @media (max-width: 900px){
      .methods-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 520px){
      .methods-grid, .methods-grid.two { grid-template-columns: 1fr; }
    }
    
    .pm-list{ display:flex; flex-direction:column; gap:10px; margin-top:14px; }
    .pm-item{
      border:1px solid var(--border); border-radius:16px; background:var(--card);
      box-shadow:0 6px 16px rgba(15,23,42,0.06);
      overflow:hidden;
    }
    .pm-head{
      display:flex; align-items:center; justify-content:space-between; gap:12px;
      padding:14px 16px; cursor:pointer; user-select:none;
    }
    .pm-title{ font-weight:950; font-size:15px; color:var(--title); }
    .pm-mini{ font-size:12px; color:var(--muted); font-weight:700; margin-top:3px; }
    .pm-right{ display:flex; align-items:center; }
    .pm-arrow{
      display:flex; align-items:center; justify-content:center;
      width:32px; height:32px; border-radius:8px;
      background:rgba(255,255,255,.06); color:var(--muted);
      font-size:14px; transition:transform .25s ease, background .2s ease, color .2s ease;
      flex-shrink:0;
    }
    .pm-head:hover .pm-arrow{ background:rgba(255,255,255,.1); color:var(--title); }
    .pm-item.open .pm-arrow{ transform:rotate(180deg); color:var(--gold,#c9a227); }
    .pm-body{ display:none; padding:0 16px 14px 16px; }
    .pm-item.open .pm-body{ display:block; }

    .pm-sub{
      display:flex; flex-direction:column; gap:10px; padding-top:10px;
    }
    .pm-subrow{
      display:flex; align-items:center; justify-content:space-between; gap:12px;
      border:1px solid var(--border); border-radius:14px; padding:12px 12px;
      background:rgba(20,24,34,.6); text-decoration:none; color:var(--title);
      box-shadow:0 2px 8px rgba(0,0,0,0.06);
      transition:border-color .12s ease, transform .12s ease, box-shadow .12s ease;
    }
    .pm-subrow:hover{
      border-color:rgba(201,162,39,.45); transform: translateY(-1px);
      box-shadow:0 10px 18px rgba(15,23,42,0.08);
      color:var(--title);
    }
    .pm-subname{ font-weight:950; font-size:14px; }
    .pm-subdesc{ font-size:12px; color:var(--muted); margin-top:2px; }
    .pm-min-note{ font-size:11px; color:var(--accent, #d4a843); margin-top:2px; font-weight:600; }
    .pm-price{ font-weight:700; font-size:13px; color:var(--title); white-space:nowrap; }
  .pm-price{
    display:flex;
    flex-direction:column;
    align-items:flex-end;
    gap:6px;
  }
  .pm-cta{
    display:block;
    padding:6px 10px;
    border-radius:8px;
    font-size:11px;
    font-weight:800;
    background:#c9a227;
    color:#fff;
    border:1px solid #a68b20;
    line-height:1.4;
    text-align:right;
    white-space:normal;
  }
  .need-product .pm-cta,
  .need-receipt .pm-cta,
  .need-user-info .pm-cta{
    background:rgba(220,60,60,.15);
    color:#e87c7c;
    border-color:rgba(220,60,60,.3);
  }
    .pm-sub .alert.alert-warning,
    #pmList .alert.alert-warning,
    #methods .alert.alert-warning{
      background:rgba(201,162,39,.1);
      border:1px solid rgba(201,162,39,.35);
      color:#e5c94a;
      border-radius:12px;
      padding:12px 16px;
      font-size:14px;
      font-weight:600;
      margin-top:10px;
    }
    .btn-ghost{ border:none; background:transparent; padding:0; width:100%; text-align:left; }

    .pack{ position:relative; }

    /* ── Selection badge (corner ribbon) ── */
    .sel-badge{
      position:absolute;
      top:8px;
      right:8px;
      z-index:5;
      width:24px;
      height:24px;
      border-radius:50%;
      background:linear-gradient(135deg, #e0c04a 0%, #c9a227 100%);
      color:#fff;
      display:none;
      align-items:center;
      justify-content:center;
      box-shadow:0 2px 8px rgba(201,162,39,.4);
    }
    .sel-badge i{
      font-size:13px;
      font-weight:800;
      line-height:1;
    }
    .pack.is-selected .sel-badge{ display:flex; }

    .pack.is-selected{
      border-color:rgba(201,162,39,.6) !important;
      box-shadow:0 0 0 1px rgba(201,162,39,.15), 0 8px 24px rgba(201,162,39,.18), 0 4px 12px rgba(0,0,0,.2) !important;
      background:var(--card) !important;
    }
    .pack.is-selected::after{
      content:"";
      position:absolute;
      top:0; left:0; right:0;
      height:2px;
      background:linear-gradient(90deg, rgba(201,162,39,.1), rgba(201,162,39,.7), rgba(201,162,39,.1));
      pointer-events:none;
      z-index:2;
    }
    
    .pm-left{ display:flex; align-items:center; gap:14px; min-width:0; }

    .pm-logo{
      width:56px;
      height:56px;
      object-fit:contain;
      object-position:center;
      flex:0 0 auto;
      box-sizing:border-box;

      background:var(--card);
      border:1px solid var(--border);
      border-radius:12px;
      padding:0;

      box-shadow: var(--shadow-sm);
    }

    /* Harf tepeli / siyah çerçeveli marka PNG: merkeze yakınlaştırıp kutu içini doldur */
    .pm-logo-bleed {
      width: 56px;
      height: 56px;
      flex: 0 0 auto;
      box-sizing: border-box;
      border-radius: 12px;
      overflow: hidden;
      border: 1px solid var(--border);
      box-shadow: var(--shadow-sm);
      background: #1a4d8f;
      line-height: 0;
    }
    .pm-logo-bleed .pm-logo--bleed {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
      object-position: center;
      transform: scale(1.58);
      border: none;
      box-shadow: none;
      background: transparent;
      margin: 0;
      padding: 0;
    }

    .pm-flag-solo-wrap{
      width:56px;
      height:56px;
      flex:0 0 auto;
      box-sizing:border-box;
      display:block;
      overflow:hidden;
      border:1px solid var(--border);
      border-radius:12px;
      padding:0;
      box-shadow:var(--shadow-sm);
      line-height:0;
      background:var(--border);
    }
    .pm-flag-solo{
      display:block;
      width:100%;
      height:100%;
      object-fit:cover;
      object-position:center;
    }

    .pm-subrow{
      padding:16px 16px;
      border:1px solid var(--border);
      border-radius:16px;
      background:rgba(20,24,34,.6);
      box-shadow:0 2px 8px rgba(0,0,0,0.06);
    }

    .pm-subrow:hover{
      background:rgba(201,162,39,.1);
      border-color:rgba(201,162,39,.45);
      box-shadow:0 4px 12px rgba(0,0,0,.25);
    }

    .pm-subname{ font-weight:950; font-size:15px; color:var(--title); }
    .pm-subdesc{ font-size:13px; color:var(--muted); margin-top:3px; }
    .pm-min-note{ font-size:11px; color:var(--accent, #d4a843); margin-top:2px; font-weight:600; }
    .pm-price{ font-weight:700; font-size:14px; color:var(--title); }
    
    .pb-footer-dark{
      margin-top:auto;
      background:linear-gradient(90deg, #0d0f14 0%, #141822 55%, #1a1d28 100%);
      border-top:1px solid var(--border);
    }

    .pb-footer-inner{
      max-width:var(--mmorpg-page-max-width, 1200px);
      margin:0 auto;
      padding:20px var(--mmorpg-page-padding-x, 1.5rem);
      display:flex;
      flex-direction:column;
      align-items:center;
      gap:10px;
    }

    .pb-footer-links{
      display:flex;
      align-items:center;
      gap:10px;
      flex-wrap:wrap;
      justify-content:center;
    }

    .pb-footer-links a,
    .pb-footer-links button{
      font-size:13px;
      font-weight:600;
      color:var(--title);
      text-decoration:none;
      transition:color .15s ease;
      background:transparent;
      border:0;
      padding:0;
      cursor:pointer;
    }

    .pb-footer-links a:hover,
    .pb-footer-links button:hover{
      color:var(--accent);
      text-decoration:underline;
    }

    .pb-footer-links .sep{
      color:var(--muted);
      font-size:12px;
    }

    .pb-footer-copy{
      font-size:12px;
      color:var(--muted);
      text-align:center;
    }

    .pb-legal-modal{
      position:fixed;
      inset:0;
      background:rgba(2,6,23,.6);
      display:none;
      align-items:center;
      justify-content:center;
      z-index:9999;
      padding:16px;
    }
    .pb-legal-modal.open{ display:flex; }
    .pb-legal-dialog{
      width:min(840px, 100%);
      max-height:85vh;
      overflow:auto;
      background:var(--card);
      border-radius:16px;
      border:1px solid var(--border);
      box-shadow:0 20px 60px rgba(0,0,0,.5);
      padding:18px;
      position:relative;
    }
    .pb-legal-title{
      font-size:18px;
      font-weight:800;
      color:var(--title);
      margin-bottom:10px;
    }
    .pb-legal-body{
      font-size:13px;
      color:var(--muted);
      line-height:1.6;
      white-space:normal;
    }
    .pb-legal-close{
      position:absolute;
      top:10px;
      right:12px;
      width:32px;
      height:32px;
      border-radius:10px;
      border:1px solid var(--border);
      background:var(--card);
      color:var(--title);
      font-size:18px;
      line-height:1;
      cursor:pointer;
    }
    .pb-legal-close:hover{ background:rgba(201,162,39,.1); }

    .corp-note{
      margin-top:14px;
      background:var(--card);
      border:1px solid var(--border);
      border-radius:14px;
      padding:12px;
      font-size:12px;
      color:var(--muted);
      line-height:1.45;
    }

    .page-footer{
      margin-top:28px;
      background:#0b0f17;
      color:#ffffff;
      border-top:1px solid rgba(255,255,255,.10);
    }
    .page-footer .inner{
      max-width:var(--mmorpg-page-max-width, 1200px);
      margin:0 auto;
      padding:18px var(--mmorpg-page-padding-x, 1.5rem);
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      flex-wrap:wrap;
    }
    .page-footer a{
      color:rgba(255,255,255,.88);
      text-decoration:none;
      font-weight:700;
      font-size:13px;
    }
    .page-footer a:hover{
      color:#ffffff;
      text-decoration:underline;
    }
    .footer-links{ display:flex; gap:14px; flex-wrap:wrap; }
    .footer-copy{ color:rgba(255,255,255,.70); font-size:13px; font-weight:600; }
    
    .need-product{
      cursor:not-allowed;
    }
    .need-product:hover{
      border-color:var(--border) !important;
      transform:none !important;
      box-shadow:0 8px 18px rgba(15,23,42,0.06) !important;
    }

    .need-receipt{
      cursor:not-allowed;
    }
    .need-receipt:hover{
      border-color:var(--border) !important;
      transform:none !important;
      box-shadow:0 8px 18px rgba(15,23,42,0.06) !important;
    }
    
    .need-user-info{
      cursor:not-allowed;
    }
    .need-user-info:hover{
      border-color:var(--border) !important;
      transform:none !important;
      box-shadow:0 8px 18px rgba(15,23,42,0.06) !important;
    }

    .pb-toast{
      position:fixed;
      left:50%;
      bottom:22px;
      transform:translateX(-50%);
      background:#111827;
      color:#fff;
      padding:10px 14px;
      border-radius:999px;
      font-size:13px;
      font-weight:800;
      box-shadow:0 12px 26px rgba(0,0,0,.18);
      opacity:0;
      pointer-events:none;
      transition:opacity .15s ease, transform .15s ease;
      z-index:9999;
    }
    .pb-toast.show{
      opacity:1;
      transform:translateX(-50%) translateY(-2px);
    }

    @keyframes pbBlink {
      0% { box-shadow: 0 0 0 .22rem rgba(201,162,39,.22); border-color: rgba(201,162,39,.75); }
      100% { box-shadow: none; border-color: var(--border); }
    }
    .pb-blink{
      animation: pbBlink .9s ease-out;
    }
    
    .pm-mini{
      display:none !important;
    }

    #qty-step .qty-step-head-form{ width:100%; }
    #qty-step .qty-step-row{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:20px;
      flex-wrap:wrap;
    }
    #qty-step .step-head{
      align-items:center;
      flex-shrink:1;
      min-width:0;
      margin-bottom:0;
    }
    #qty-step .qty-step-control{ flex-shrink:0; }

    .qty-stepper{
      display:inline-flex;
      align-items:center;
      background:#1b2030;
      border:1px solid rgba(201,162,39,.35);
      border-radius:14px;
      box-shadow:0 4px 14px rgba(0,0,0,.35), inset 0 1px 0 rgba(255,255,255,.04);
      overflow:hidden;
      transition:border-color .2s ease, box-shadow .2s ease;
    }
    .qty-stepper:focus-within{
      border-color:rgba(201,162,39,.7);
      box-shadow:0 0 0 3px rgba(201,162,39,.15), 0 4px 14px rgba(0,0,0,.35);
    }

    .qty-stepper-btn{
      all:unset;
      box-sizing:border-box;
      width:52px;
      height:52px;
      min-width:52px;
      display:flex;
      align-items:center;
      justify-content:center;
      cursor:pointer;
      user-select:none;
      background:#c9a227;
      color:#fff;
      transition:background .15s ease, transform .1s ease;
      flex-shrink:0;
    }
    .qty-stepper-btn svg{
      display:block;
      flex-shrink:0;
      pointer-events:none;
    }
    
    #stepQtyMinus{
      border-right:1px solid rgba(0,0,0,.25);
    }
    
    #stepQtyPlus{
      border-left:1px solid rgba(0,0,0,.25);
    }
    .qty-stepper-btn:hover{
      background:#a68b20;
    }
    .qty-stepper-btn:active{
      background:#8a7018;
      transform:scale(.95);
    }

    .qty-stepper-input{
      all:unset;
      box-sizing:border-box;
      width:80px;
      min-width:64px;
      height:52px;
      padding:0 8px;
      background:transparent;
      color:#f0e6c8;
      font-size:22px;
      font-weight:700;
      text-align:center;
      line-height:1;
      font-family:inherit;
      border-left:1px solid rgba(201,162,39,.2);
      border-right:1px solid rgba(201,162,39,.2);
      transition:color .15s;
    }
    .qty-stepper-input:focus{ color:#fff; }
    .qty-stepper-input::-webkit-outer-spin-button,
    .qty-stepper-input::-webkit-inner-spin-button{ -webkit-appearance:none; margin:0; }
    .qty-stepper-input[type=number]{ -moz-appearance:textfield; appearance:textfield; }

    @media (max-width: 560px){
      #qty-step .qty-step-row{ flex-direction:column; align-items:flex-start; }
      #qty-step .qty-step-control{ width:100%; }
      .qty-stepper{ width:100%; }
      .qty-stepper-btn{ flex:0 0 56px; width:56px; }
      .qty-stepper-input{ flex:1; width:auto; min-width:0; }
    }

:root{
    --pb-bg:#0d0f14;
    --pb-surface:#141822;
    --pb-border:#2a2f3d;
    --pb-text:#e8e6e3;
    --pb-muted:#9ca3af;
    --pb-accent:#c9a227;
    --pb-accent-2:#a68b20;
    --pb-accent-soft:rgba(201,162,39,.12);
    --pb-shadow-sm:0 6px 16px rgba(0,0,0,.25);
    --pb-shadow-md:0 16px 32px rgba(0,0,0,.35);
    --pb-radius:8px;
  }

  body{
    background:
      radial-gradient(900px 480px at 10% -10%, rgba(201,162,39,.06), transparent 60%),
      radial-gradient(900px 480px at 100% -10%, rgba(201,162,39,.04), transparent 60%),
      var(--pb-bg);
    color:var(--pb-text);
  }

  .side-col{
    display:flex;
    flex-direction:column;
    gap:12px;
    position:sticky;
    top:12px;
    align-self:start;
  }
  .side-switchers-wrap{
    position:static;
    z-index:20;
    margin-bottom:12px;
  }
  .side-switchers-box{
    background:linear-gradient(180deg, var(--pb-surface) 0%, rgba(20,24,34,.95) 100%);
    border:1px solid var(--pb-border);
    border-radius:12px;
    padding:12px;
    box-shadow:var(--pb-shadow-md);
  }
  .switchers{
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap:12px;
  }
  .lang-dd{
    width:100%;
    position:relative;
  }
  .lang-dd summary{
    list-style:none;
    display:flex;
    align-items:center;
    gap:8px;
    padding:8px 12px;
    border:1px solid var(--pb-border);
    border-radius:10px;
    background:var(--pb-surface);
    font-size:11px;
    font-weight:800;
    color:var(--pb-text);
    cursor:pointer;
    box-shadow:var(--pb-shadow-sm);
    width:100%;
  }
  .lang-dd summary:hover{
    border-color:rgba(201,162,39,.5);
    box-shadow:0 8px 16px rgba(201,162,39,.15);
  }
  .lang-dd summary::-webkit-details-marker{ display:none; }
  .lang-current{
    display:flex;
    align-items:center;
    gap:8px;
    width:100%;
  }
  .lang-current .lang-text{ flex:1 1 auto; text-align:left; }
  .lang-dd summary .chev{ margin-left:auto; color:var(--pb-muted); }
  .lang-menu{
    position:absolute;
    left:0;
    top:calc(100% + 6px);
    z-index:30;
    background:var(--pb-surface);
    border:1px solid var(--pb-border);
    border-radius:8px;
    box-shadow:var(--pb-shadow-md);
    padding:6px;
    display:flex;
    flex-direction:column;
    gap:4px;
    max-height:220px;
    overflow-y:auto;
    overflow-x:hidden;
    width:168px;
    max-width:60vw;
  }
  .lang-item-btn{
    display:flex;
    align-items:center;
    gap:8px;
    padding:6px 8px;
    border:1px solid transparent;
    background:var(--pb-surface);
    border-radius:6px;
    font-size:11px;
    font-weight:700;
    color:var(--pb-text);
    cursor:pointer;
    width:100%;
    text-align:left;
    white-space:nowrap;
    text-decoration:none;
  }
  .lang-item-btn:visited,
  .lang-item-btn:hover,
  .lang-item-btn:focus,
  .lang-item-btn:active{
    text-decoration:none;
    color:var(--pb-text);
  }
  .lang-item-btn span{
    line-height:1.2;
    white-space:nowrap;
  }
  .lang-item-btn:hover{
    background:rgba(201,162,39,.08);
    border-color:rgba(201,162,39,.3);
  }
  .lang-item-btn.active{
    background:var(--pb-accent-soft);
    border-color:rgba(201,162,39,.45);
    color:var(--pb-accent);
  }
  .lang-flag{
    width:16px;height:12px;object-fit:cover;border-radius:2px;
    border:1px solid var(--pb-border);
    flex:0 0 auto;
  }
  .switchers .d-flex{
    display:flex;
    align-items:center;
    gap:8px;
  }
  .switchers .lbl{
    display:none;
  }
  .switchers .d-flex:first-child .lbl{
    min-width:70px;
  }
  .switchers .d-flex:last-child .lbl{
    min-width:70px;
  }
  .lang-dd,
  .switchers select{
    flex:1 1 auto;
  }
  .switchers select{
    width:120px;
    border:1px solid var(--pb-border);
    background:var(--pb-surface);
    color:var(--pb-text);
    border-radius:10px;
    font-size:12px;
    padding:8px 12px;
    box-shadow:var(--pb-shadow-sm);
    margin-left:0;
  }
  .switchers .d-flex select{
    max-width:120px;
  }
  .switchers select:focus{
    border-color:rgba(201,162,39,.5);
    box-shadow:0 0 0 .2rem rgba(201,162,39,.15);
    outline:none;
  }

  .layout{
    width:100%;
    display:grid;
    grid-template-columns: 300px 1fr;
    gap:20px;
  }
  @media (max-width: 1200px){
    .layout{ grid-template-columns: 280px 1fr; }
  }
  .layout{
    width:100%;
    max-width:none;
    display:grid;
    grid-template-columns: 360px 1fr;
    gap:20px;
  }
  @media (max-width: 992px){ .layout{ grid-template-columns:1fr; display:flex; flex-direction:column; } .side-col{ order:1; position:static; } .main{ order:2; } }

  .main{ display:flex; flex-direction:column; gap:20px; max-width:960px; }
  .main > form{ display:flex; flex-direction:column; gap:20px; margin:0; }
  .step-card{ margin:0; }

  .side-card{
    background:var(--pb-surface);
    border:1px solid var(--pb-border);
    border-radius:var(--pb-radius);
    box-shadow:var(--pb-shadow-md);
    padding:16px;
  }
  .game-row{
    background:linear-gradient(180deg, rgba(20,24,34,.8) 0%, var(--pb-surface) 100%);
    border:1px solid var(--pb-border);
    border-radius:8px;
    padding:12px;
  }
  .game-img{
    width:72px;height:72px;border-radius:8px;overflow:hidden;
    border:1px solid var(--pb-border);background:var(--pb-surface);
  }
  .game-name{ font-weight:700; font-size:16px; color:var(--pb-text); }
  .safe-pill{ color:var(--pb-text); font-weight:700; }
  .safe-dot{
    background:var(--pb-accent-soft);
    color:var(--pb-accent);
    border:1px solid rgba(201,162,39,.25);
  }
  .side-desc{ color:var(--pb-muted); }
  .auto-note{
    background:var(--pb-accent-soft);
    border:1px dashed rgba(201,162,39,.35);
    color:var(--pb-accent);
    border-radius:8px;
  }
  .auto-note .ico{
    background:var(--pb-accent-soft);
    border:1px solid rgba(201,162,39,.25);
    color:var(--pb-accent);
  }
  .corp-note{
    margin-top:14px;
    background:#0b1020;
    color:#dbeafe;
    border:1px solid rgba(201,162,39,.25);
    border-radius:8px;
    padding:10px 12px;
    font-size:12px;
  }

  .step-card{
    background:linear-gradient(180deg, var(--pb-surface) 0%, rgba(20,24,34,.97) 100%);
    border:1px solid rgba(201,162,39,.2);
    border-radius:14px;
    box-shadow:var(--pb-shadow-sm), 0 0 0 1px rgba(255,255,255,.02);
    padding:22px 24px 24px;
    min-width:0;
    overflow:hidden;
  }
  .step-card:hover{
    border-color:rgba(201,162,39,.35);
    box-shadow:var(--pb-shadow-md), 0 0 0 1px rgba(201,162,39,.1);
  }
  .step-head{
    display:flex;
    align-items:flex-start;
    gap:16px;
    margin-bottom:12px;
  }
  .step-num{
    width:40px;
    height:40px;
    border-radius:11px;
    background:linear-gradient(145deg, #e0c04a 0%, #c9a227 45%, #9a7a18 100%);
    color:#fff;
    border:1px solid rgba(190,160,60,.85);
    font-weight:900;
    font-size:15px;
    box-shadow:
      0 0 0 1px rgba(201,162,39,.25),
      0 4px 14px rgba(201,162,39,.38),
      0 2px 6px rgba(0,0,0,.2),
      inset 0 1px 0 rgba(255,255,255,.28);
    text-shadow:0 1px 2px rgba(0,0,0,.25);
  }
  .step-title{
    font-weight:800;
    font-size:17px;
    font-family:var(--font);
    color:var(--pb-text);
    letter-spacing:-0.02em;
    line-height:1.35;
  }
  .step-hint{
    color:var(--pb-muted);
    font-size:13px;
    margin-top:5px;
    line-height:1.5;
    font-weight:500;
  }

  .userbox{
    background:rgba(20,24,34,.7);
    border-radius:12px;
    padding:18px 20px;
  }
  #user .userbox,
  #receipt .userbox{
    background:rgba(20,24,34,.55);
    border:1px solid rgba(201,162,39,.2);
    box-shadow:inset 0 1px 0 rgba(255,255,255,.04);
  }
  .userbox-hint{
    margin:0;
    padding:9px 14px;
    border-radius:8px;
    background:rgba(201,162,39,.06);
    border:1px dashed rgba(201,162,39,.22);
    font-size:12.5px;
    color:rgba(255,255,255,.5);
    line-height:1.45;
    display:flex;
    align-items:center;
    gap:7px;
  }
  .userbox-hint i.bi-info-circle{
    color:rgba(201,162,39,.55);
    font-size:13px;
    flex-shrink:0;
  }
  .userbox-hint a{
    color:var(--accent);
    font-weight:600;
    font-size:12px;
    text-decoration:none;
    white-space:nowrap;
    margin-left:auto;
    opacity:.8;
    transition:opacity .2s;
  }
  .userbox-hint a:hover{
    opacity:1;
  }
  .form-control{
    border-radius:8px;
    border:1px solid var(--pb-border);
  }
  .form-control:focus{
    border-color:rgba(201,162,39,.55);
    box-shadow:0 0 0 .2rem rgba(201,162,39,.14);
  }
  .cf-input-wrap .cf-input{ padding-right:44px; cursor:text; border-radius:10px; }
  .cf-input-wrap .cf-input-edit{ display:none !important; }
  .cf-input-wrap .cf-input-check{
    right:10px; width:26px; height:26px; border-radius:6px;
    background:rgba(34,197,94,.15);
    border-color:rgba(34,197,94,.35);
    color:#16a34a;
  }
  .cf-input-wrap .cf-input-accent{
    background:linear-gradient(90deg, #d97706 0%, #b45309 100%);
  }

  .tabs{ gap:8px; }
  .tab{
    border-radius:8px;
    border:1px solid var(--pb-border);
    background:var(--card);
    font-weight:800;
  }
  .tab:hover{
    border-color:rgba(201,162,39,.45);
    background:var(--accentSoft);
    color:#c9a227;
  }
  .tab.active{
    border-color:rgba(201,162,39,.6);
    background:rgba(201,162,39,.18);
    color:#e5c94a;
    box-shadow:0 0 0 1px rgba(201,162,39,.15);
  }

  .grid{ gap:16px; }
  .pack{
    background:var(--card);
    border:1px solid var(--pb-border);
    border-radius:16px;
    box-shadow:var(--pb-shadow-md);
  }
  .pack:hover{
    transform: translateY(-4px);
    box-shadow:0 16px 36px rgba(0,0,0,.3), 0 4px 12px rgba(201,162,39,.12);
    border-color:rgba(201,162,39,.4);
  }
  .pack.is-selected{
    border-color:rgba(201,162,39,.65) !important;
    box-shadow:0 12px 32px rgba(201,162,39,.25), 0 4px 12px rgba(0,0,0,.25) !important;
    background:var(--card) !important;
  }
  .pack-title{ font-size:14px; color:var(--title); min-height:1.2em; line-height:1.3; letter-spacing:.02em; word-break:break-word; }
  .pack-icon{
    width:80px;height:80px;border-radius:12px;
    background:rgba(255,255,255,.04);
    border:1px solid var(--pb-border);
    box-shadow:inset 0 1px 0 rgba(255,255,255,.06);
  }
  .pack-icon.pack-icon-img{
    background:#0e1018;
    border:1px solid rgba(201,162,39,.28);
    box-shadow:0 4px 16px rgba(0,0,0,.45), inset 0 1px 0 rgba(255,255,255,.05);
    padding:6px;
  }
  .pack-icon.pack-icon-img img{
    object-position:center;
    border-radius:6px !important;
  }
  .pack:hover .pack-icon.pack-icon-img{
    box-shadow:0 6px 20px rgba(0,0,0,.5), 0 0 0 1px rgba(201,162,39,.18);
    border-color:rgba(201,162,39,.45);
  }
  .pack.is-selected .pack-icon.pack-icon-img{
    border-color:rgba(201,162,39,.6);
    box-shadow:0 4px 22px rgba(201,162,39,.3), 0 0 0 1px rgba(201,162,39,.2);
  }
  .price{
    color:var(--title);
  }
  .buy{
    background:var(--pb-accent);
    border-radius:8px;
  }
  .buy:hover{ background:var(--pb-accent-2); }
  .receipt-save-btn{
    background:#c9a227;
  }
  .receipt-save-btn:hover{
    background:#a68b20;
  }

  .methods-grid{ gap:14px; }
  .method-tile{
    border-radius:8px;
    border:1px solid var(--pb-border);
    box-shadow:var(--pb-shadow-sm);
  }
  .method-tile:hover{
    border-color:rgba(201,162,39,.45);
    box-shadow:var(--pb-shadow-md);
  }
  .method-badge{
    background:var(--accentSoft);
    color:#c9a227;
    border:1px solid rgba(201,162,39,.25);
  }

  .pm-item{
    border-radius:8px;
    box-shadow:var(--pb-shadow-sm);
  }
  #pmList .alert.alert-warning,
  #methods .alert.alert-warning{
    background:rgba(201,162,39,.1);
    border:1px solid rgba(201,162,39,.35);
    color:#e5c94a;
    border-radius:10px;
    padding:12px 16px;
    font-size:14px;
    font-weight:600;
  }
  .pm-subrow:hover{
    background:rgba(201,162,39,.08);
    border-color:rgba(201,162,39,.45);
    box-shadow:0 12px 20px rgba(0,0,0,.25);
  }
  .sel-badge{
    top:8px;
    right:8px;
    width:24px;
    height:24px;
    border-radius:50%;
    clip-path:none;
    background:linear-gradient(135deg, #e0c04a 0%, #c9a227 100%);
    color:#fff;
    display:none;
    align-items:center;
    justify-content:center;
    padding:0;
    box-shadow:0 2px 8px rgba(201,162,39,.4);
    filter:none;
  }
  .pack.is-selected .sel-badge{ display:flex; }
  .sel-badge i{
    font-size:13px;
    font-weight:800;
    line-height:1;
    filter:none;
  }

  .final-pop{
    position:fixed;
    inset:0;
    display:none;
    align-items:center;
    justify-content:center;
    background:rgba(0,0,0,.6);
    backdrop-filter:blur(8px);
    z-index:9999;
    padding:20px;
  }
  .final-pop.open{ display:flex; }
  body:has(.final-pop.open) .mmorpg-footer,
  body:has(.final-pop.open) .mmorpg-header{
    z-index:0 !important;
    pointer-events:none;
  }
  .final-card{
    width:min(480px, 94vw);
    background:var(--card);
    border:1px solid var(--border);
    border-radius:20px;
    box-shadow:0 24px 56px rgba(0,0,0,.45), 0 0 0 1px rgba(255,255,255,.04);
    padding:28px;
  }
  .final-title{
    font-weight:800;
    font-size:20px;
    color:var(--title);
    margin-bottom:8px;
    letter-spacing:-.02em;
    line-height:1.3;
  }
  .final-sub{
    color:var(--muted);
    font-size:14px;
    line-height:1.5;
    margin-bottom:24px;
  }
  .final-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:16px;
  }
  .final-grid .full{ grid-column:1 / -1; }
  .final-grid label.form-label{
    font-size:13px;
    color:var(--muted);
    font-weight:700;
    margin-bottom:8px;
    display:block;
  }
  .final-grid .form-control{
    border-radius:12px;
    border:1px solid var(--border);
    background:rgba(20,24,34,.85) !important;
    color:#e8e6e3 !important;
    padding:12px 14px;
    font-size:14px;
    transition:border-color .2s, box-shadow .2s, background .2s;
  }
  .final-grid .form-control:focus{
    outline:none;
    border-color:rgba(201,162,39,.6) !important;
    box-shadow:0 0 0 3px rgba(201,162,39,.18) !important;
    background:#141822 !important;
    color:#e8e6e3 !important;
  }
  .final-grid .form-control:-webkit-autofill,
  .final-grid .form-control:-webkit-autofill:hover,
  .final-grid .form-control:-webkit-autofill:focus{
    -webkit-text-fill-color:#e8e6e3 !important;
    -webkit-box-shadow:0 0 0px 1000px #141822 inset !important;
    caret-color:#e8e6e3;
  }
  .final-grid .form-control::placeholder{
    color:rgba(156,163,175,.7);
  }
  .final-grid .form-control.text-uppercase::placeholder{
    text-transform:none;
  }
  .final-phone-row{
    display:flex;
    gap:10px;
    align-items:stretch;
  }
  .final-phone-row .form-control{
    flex:1;
    min-width:0;
    height:44px;
  }
  /* Flag icon: fixed 24×18 box, clips SVG overflow so it never expands */
  .cc-flag{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:24px; min-width:24px; max-width:24px;
    height:18px; min-height:18px; max-height:18px;
    overflow:hidden;
    border-radius:2px;
    flex-shrink:0;
    background:rgba(255,255,255,.06);
  }
  .cc-flag img{
    display:block;
    width:24px;
    height:18px;
    object-fit:cover;
    pointer-events:none;
  }

  .final-cc-dd{ position:relative; }
  .final-cc-btn{
    height:44px;
    font-size:13px;
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:0 14px;
    border:1px solid var(--border);
    border-radius:12px;
    background:rgba(20,24,34,.85);
    cursor:pointer;
    color:#e8e6e3;
    font-weight:600;
    transition:border-color .2s, background .2s;
    flex-shrink:0;
  }
  .final-cc-btn:hover{
    background:rgba(201,162,39,.1);
    border-color:rgba(201,162,39,.4);
    color:#e8e6e3;
  }
  .final-cc-menu{
    position:absolute;
    left:0;
    top:calc(100% + 8px);
    z-index:9999;
    background:var(--card);
    border:1px solid var(--border);
    border-radius:12px;
    box-shadow:0 16px 40px rgba(0,0,0,.5);
    padding:0;
    max-height:300px;
    overflow:hidden;
    width:240px;
    display:none;
    flex-direction:column;
  }
  .final-cc-dd.open .final-cc-menu{ display:flex; }
  .final-cc-search-wrap{
    padding:8px 8px 6px;
    border-bottom:1px solid var(--border);
    flex-shrink:0;
  }
  .final-cc-search{
    width:100%;
    padding:6px 10px;
    border:1px solid var(--border);
    border-radius:8px;
    background:rgba(20,24,34,.85);
    color:#e8e6e3;
    font-size:13px;
    outline:none;
    transition:border-color .2s;
  }
  .final-cc-search:focus{
    border-color:rgba(201,162,39,.5);
  }
  .final-cc-search::placeholder{
    color:var(--muted);
    opacity:.7;
  }
  .final-cc-list{
    overflow-y:auto;
    overflow-x:hidden;
    padding:6px;
    flex:1;
    scrollbar-width:thin;
    scrollbar-color:rgba(201,162,39,.3) transparent;
  }
  .final-cc-item{
    width:100%;
    display:flex;
    align-items:center;
    gap:10px;
    padding:8px 10px;
    border:0;
    background:transparent;
    text-align:left;
    border-radius:8px;
    cursor:pointer;
    font-size:13px;
    color:#e8e6e3;
    transition:background .15s;
    white-space:nowrap;
    overflow:hidden;
  }
  .final-cc-item span{
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
  }
  .final-cc-item:hover{ background:rgba(201,162,39,.12); color:var(--title); }
  .final-actions{
    display:flex;
    gap:12px;
    justify-content:flex-end;
    margin-top:28px;
    padding-top:22px;
    border-top:1px solid var(--border);
  }
  .final-actions .btn{
    padding:12px 20px;
    font-size:14px;
    font-weight:700;
    border-radius:12px;
    transition:all .2s;
  }
  .final-actions .btn-outline-secondary{
    border:1px solid var(--border);
    background:transparent;
    color:var(--title);
  }
  .final-actions .btn-outline-secondary:hover{
    background:rgba(201,162,39,.12);
    border-color:rgba(201,162,39,.4);
    color:var(--title);
  }
  .final-actions .btn-success{
    background:linear-gradient(180deg,#c9a227 0%,#a68b20 100%);
    border:0;
    color:#fff;
    box-shadow:0 4px 14px rgba(201,162,39,.35);
  }
  .final-actions .btn-success:hover{
    filter:brightness(1.08);
    box-shadow:0 6px 18px rgba(201,162,39,.4);
  }

  .step{
    background:var(--pb-accent) !important;
    color:#fff !important;
  }
  .step.active,
  .step.done{
    background:var(--pb-accent) !important;
    color:#fff !important;
  }

  .layout{ gap:24px; align-items:start; }
  .side-card{
    background:linear-gradient(180deg,var(--card) 0%,rgba(20,24,34,.95) 100%);
    border-radius:12px;
    box-shadow:var(--pb-shadow-md);
  }
  .side-card .game-name{ font-size:18px; }
  .step-card{
    border-radius:14px;
    background:linear-gradient(180deg,var(--card) 0%,rgba(20,24,34,.97) 100%);
    border-color:rgba(201,162,39,.2);
  }
  .step-card:hover{
    box-shadow:var(--pb-shadow-md), 0 0 0 1px rgba(201,162,39,.12);
    border-color:rgba(201,162,39,.35);
  }
  .step-head{ align-items:center; }
  .step-num{
    box-shadow:
      0 0 0 1px rgba(201,162,39,.25),
      0 4px 14px rgba(201,162,39,.38),
      0 2px 6px rgba(0,0,0,.2),
      inset 0 1px 0 rgba(255,255,255,.28);
  }
  .userbox{ background:linear-gradient(180deg,var(--card) 0%,rgba(20,24,34,.95) 100%); }
  .form-control{ background:var(--card); }
  .form-control::placeholder{ color:var(--muted); }
  .tabs{ overflow-x:auto; padding-bottom:4px; }
  .tabs::-webkit-scrollbar{ height:6px; }
  .tabs::-webkit-scrollbar-thumb{ background:var(--border); border-radius:999px; }
  .tab{ border-radius:8px; padding:8px 16px; }
  .grid{ gap:14px; }
  .pack{
    border-radius:14px;
  }
  .pack:focus-visible{ outline:3px solid rgba(201,162,39,.25); outline-offset:2px; }
  .pack.is-selected{
    border-color:rgba(201,162,39,.6) !important;
    box-shadow:0 0 0 1px rgba(201,162,39,.15), 0 8px 24px rgba(201,162,39,.18), 0 4px 12px rgba(0,0,0,.2) !important;
    background:var(--card) !important;
  }
  .price{ font-size:17px; }
  .buy{
    font-size:13px;
    padding:10px 14px;
    border-radius:10px;
    background:linear-gradient(180deg,#c9a227 0%,#a68b20 100%);
  }
  .buy:hover{ filter:brightness(0.98); }
  .method-tile{
    border-radius:12px;
    background:linear-gradient(180deg,var(--card) 0%,rgba(20,24,34,.95) 100%);
  }
  .method-badge{ font-size:10px; letter-spacing:.2px; }

body.page-store-products .store-page-content-inner {
  padding-top: 0 !important;
  padding-bottom: 2rem !important;
}
body.page-store-products .wrap {
  margin-top: 0.75rem !important;
  margin-bottom: 1.5rem !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

@media (max-width: 991.98px) {
  body.page-store-products .main    { order: 1 !important; }
  body.page-store-products .side-col { order: 2 !important; }
}

@media (max-width: 767.98px) {
  body.page-store-products .form-control,
  body.page-store-products .cf-input,
  body.page-store-products select.form-control,
  body.page-store-products .qty-stepper-input {
    font-size: 16px;
  }
}

@media (max-width: 575.98px) {
  body.page-store-products .step-card {
    padding: 16px 14px 18px;
  }
  body.page-store-products .step-head {
    gap: 12px;
    margin-bottom: 10px;
  }
  body.page-store-products .step-title {
    font-size: 15px;
  }
  body.page-store-products .step-hint {
    font-size: 12px;
  }
  body.page-store-products .userbox {
    padding: 14px 12px;
  }
}

@media (max-width: 575.98px) {
  body.page-store-products .tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    scroll-snap-type: x proximity;
    padding-bottom: 4px;
  }
  body.page-store-products .tabs::-webkit-scrollbar {
    display: none;
  }
  body.page-store-products .tab {
    flex-shrink: 0;
    white-space: nowrap;
    scroll-snap-align: start;
  }
}

@media (max-width: 479.98px) {
  body.page-store-products .grid {
    gap: 8px;
  }
  body.page-store-products .pack-icon,
  body.page-store-products .pack-icon.pack-icon-img {
    width: 56px;
    height: 56px;
  }
  body.page-store-products .pack-body {
    padding: 10px 10px 12px;
    gap: 8px;
  }
  body.page-store-products .pack-title {
    font-size: 12px;
  }
  body.page-store-products .price {
    font-size: 15px;
  }
  body.page-store-products .buy {
    font-size: 13px;
    padding: 10px 8px;
    gap: 4px;
  }
}

@media (max-width: 991.98px) {
  body.page-store-products .side-card {
    padding: 14px;
  }
  body.page-store-products .side-faq {
    margin-top: 10px;
    gap: 8px;
  }
}

@media (max-width: 767.98px) {
  body.page-store-products .store-section-inner {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  body.page-store-products .wrap > .container {
    max-width: 100% !important;
    width: 100% !important;
    padding-left: 12px;
    padding-right: 12px;
  }
  body.page-store-products .layout,
  body.page-store-products .side-col,
  body.page-store-products .main {
    width: 100%;
    max-width: 100% !important;
    box-sizing: border-box;
  }
}
@media (max-width: 399.98px) {
  body.page-store-products .wrap > .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media (max-width: 767.98px) {
  body.page-store-products .step-card-empty {
    min-height: 80px !important;
    padding: 16px 14px;
  }
}

@media (max-width: 767.98px) {
  body.page-store-products .layout {
    gap: 14px;
  }
  body.page-store-products .main {
    gap: 14px;
  }
  body.page-store-products .main > form {
    gap: 14px;
  }
}

@media (max-width: 767.98px) {
  body.page-store-products .game-name {
    font-size: 15px;
  }
  body.page-store-products .side-card-subtitle {
    font-size: 12px;
    margin-top: 4px;
  }
  body.page-store-products .side-card-official-btn {
    margin-top: 10px;
    padding: 9px 12px;
    font-size: 13px;
  }
  body.page-store-products .faq-item .faq-q {
    font-size: 13px;
  }
}

@media (max-width: 767.98px) {
  body.page-store-products.store-subpage .store-page-content-inner {
    padding-top: 0 !important;
    padding-bottom: 1.25rem !important;
  }
}

@media (max-width: 767.98px) {
  body.page-store-products {
    scroll-padding-top: 68px;
  }
}

@media (max-width: 575.98px) {
  body.page-store-products .pm-subrow {
    padding: 12px 12px;
    gap: 10px;
    border-radius: 14px;
  }
  body.page-store-products .pm-logo {
    width: 48px;
    height: 48px;
    padding: 0;
    border-radius: 11px;
  }
  body.page-store-products .pm-flag-solo-wrap {
    width: 48px;
    height: 48px;
    padding: 0;
    border-radius: 11px;
  }
  body.page-store-products .pm-logo-bleed {
    width: 48px;
    height: 48px;
    border-radius: 11px;
  }
  body.page-store-products .pm-left {
    gap: 10px;
    flex: 1 1 auto;
    min-width: 0;
  }
  body.page-store-products .pm-subname {
    font-size: 13px;
    font-weight: 800;
  }
  body.page-store-products .pm-subdesc {
    font-size: 11px;
  }
  body.page-store-products .pm-price {
    flex-shrink: 0;
    align-items: flex-end;
    gap: 5px;
  }
  body.page-store-products .pm-price .js-gw-price {
    font-size: 12px;
    white-space: nowrap;
  }
  body.page-store-products .pm-cta {
    font-size: 10px;
    padding: 5px 8px;
    border-radius: 7px;
    white-space: nowrap;
  }
}

@media (max-width: 399.98px) {
  body.page-store-products .pm-subrow {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 12px 12px;
  }
  body.page-store-products .pm-left {
    flex: unset;
    width: 100%;
  }
  body.page-store-products .pm-price {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding-top: 8px;
    border-top: 1px solid var(--border);
    gap: 8px;
  }
  body.page-store-products .pm-cta {
    flex: 0 0 auto;
  }
}

@media (min-width: 993px) {
  .layout {
    grid-template-columns: minmax(280px, 340px) minmax(0, 1fr);
  }

  .side-col,
  .main {
    min-width: 0;
  }

  .side-card {
    position: sticky;
    top: 92px;
    max-height: calc(100vh - 112px);
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(201,162,39,0.25) transparent;
  }
  .side-card::-webkit-scrollbar { width: 4px; }
  .side-card::-webkit-scrollbar-track { background: transparent; }
  .side-card::-webkit-scrollbar-thumb { background: rgba(201,162,39,0.3); border-radius: 4px; }

  .main {
    max-width: none;
  }
}

@media (max-width: 575.98px) {
  body.page-store-products .grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  body.page-store-products .pack {
    min-height: 0;
  }

  body.page-store-products .step-card-empty {
    min-height: 96px !important;
  }
}

/* Checkout view optimization (route: /{lang}/store/{slug}) */
body.page-store-products .wrap > .container {
  max-width: 1320px;
  padding-left: clamp(12px, 2.2vw, 24px);
  padding-right: clamp(12px, 2.2vw, 24px);
}

body.page-store-products .layout {
  grid-template-columns: minmax(280px, 340px) minmax(0, 1fr);
  gap: clamp(14px, 1.8vw, 24px);
  align-items: start;
}

body.page-store-products .main,
body.page-store-products .main > form {
  gap: clamp(12px, 1.6vw, 20px);
}

body.page-store-products .step-card {
  padding: clamp(14px, 1.8vw, 24px);
  border-radius: 14px;
}

body.page-store-products .grid {
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 12px;
}

@media (min-width: 992px) {
  body.page-store-products .grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

body.page-store-products .pack {
  min-width: 0;
  height: 100%;
}

body.page-store-products .pack-body {
  padding: 12px 10px;
  gap: 9px;
}

body.page-store-products .pack-title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.6em;
}

body.page-store-products .price {
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.25;
}

body.page-store-products .pm-subrow {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
}

body.page-store-products .pm-left {
  min-width: 0;
}

body.page-store-products .pm-price {
  min-width: 120px;
  align-items: flex-end;
}

body.page-store-products .side-card {
  position: sticky;
  top: 88px;
  max-height: calc(100vh - 108px);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(201,162,39,0.25) transparent;
}
body.page-store-products .side-card::-webkit-scrollbar {
  width: 4px;
}
body.page-store-products .side-card::-webkit-scrollbar-track {
  background: transparent;
}
body.page-store-products .side-card::-webkit-scrollbar-thumb {
  background: rgba(201,162,39,0.3);
  border-radius: 4px;
}

@media (max-width: 992px) {
  body.page-store-products .layout {
    display: flex;
    flex-direction: column;
  }

  body.page-store-products .side-card {
    position: static;
  }
}

@media (max-width: 640px) {
  body.page-store-products .step-card {
    padding: 14px 12px;
  }

  body.page-store-products .pm-subrow {
    grid-template-columns: 1fr;
  }

  body.page-store-products .pm-price {
    min-width: 0;
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding-top: 8px;
    border-top: 1px solid var(--border);
  }

  body.page-store-products #qty-step .qty-step-control,
  body.page-store-products .qty-stepper {
    width: 100%;
  }
}


/* ═══════════════════════════════════════════════════════════════════
   REDESIGN v2 — Unified Visual Overhaul
   ═══════════════════════════════════════════════════════════════════ */

/* ── Unified step card — all sections share same container look ── */
body.page-store-products .main .step-card {
  background: linear-gradient(180deg, #151a28 0%, #121620 100%);
  border: 1px solid rgba(201,162,39,0.12);
  border-radius: 18px;
  padding: clamp(18px, 2vw, 26px);
  box-shadow:
    0 6px 24px rgba(0,0,0,0.24),
    0 0 0 1px rgba(255,255,255,0.02);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
body.page-store-products .main .step-card:hover {
  border-color: rgba(201,162,39,0.20);
  box-shadow:
    0 10px 32px rgba(0,0,0,0.30),
    0 0 0 1px rgba(201,162,39,0.05);
}

/* #packs needs overflow:visible for the selection badge that extends outside cards */
body.page-store-products #packs.step-card {
  overflow: visible;
}
body.page-store-products #packs.step-card::before {
  display: none;
}

/* ── Side card — same visual tone ── */
body.page-store-products .side-card {
  background: linear-gradient(180deg, #151a28 0%, #121620 100%);
  border: 1px solid rgba(201,162,39,0.12);
  border-radius: 18px;
}

/* ── Product grid ── */
body.page-store-products #packs .grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(175px, 1fr));
  gap: 20px;
  margin-top: 28px;
}
@media (min-width: 992px) {
  body.page-store-products #packs .grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
  }
}
@media (max-width: 560px) {
  body.page-store-products #packs .grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
}

/* ── Pack card — base ── */
body.page-store-products #packs .pack {
  position: relative;
  background: linear-gradient(168deg, #1c2240 0%, #161c34 45%, #111520 100%);
  border: 1.5px solid rgba(255,255,255,0.06);
  border-radius: 18px;
  overflow: visible;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition:
    transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.35s ease,
    border-color 0.3s ease;
  box-shadow:
    0 4px 20px rgba(0,0,0,0.28),
    inset 0 1px 0 rgba(255,255,255,0.04);
  isolation: isolate;
}
body.page-store-products #packs .pack::before {
  content: '' !important;
  display: block !important;
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(ellipse 140% 80% at 50% -20%, rgba(201,162,39,0.06) 0%, transparent 60%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}
body.page-store-products #packs .pack::after {
  content: '' !important;
  display: block !important;
  position: absolute;
  bottom: -10px;
  left: 12%;
  right: 12%;
  height: 20px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(201,162,39,0.14) 0%, transparent 70%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  filter: blur(10px);
  z-index: -1;
}

/* ── Pack card — hover ── */
body.page-store-products #packs .pack:hover {
  transform: translateY(-7px);
  border-color: rgba(201,162,39,0.28);
  box-shadow:
    0 24px 52px rgba(0,0,0,0.38),
    0 0 32px rgba(201,162,39,0.07),
    0 0 0 1px rgba(201,162,39,0.10);
}
body.page-store-products #packs .pack:hover::before {
  opacity: 1;
}
body.page-store-products #packs .pack:hover::after {
  opacity: 1;
}
body.page-store-products #packs .pack:focus-visible {
  outline: 3px solid rgba(201,162,39,0.25);
  outline-offset: 3px;
}

/* ── Pack card — selected ── */
body.page-store-products #packs .pack.is-selected {
  background: linear-gradient(168deg, #222c58 0%, #1a2248 45%, #151c3a 100%) !important;
  border-color: rgba(201,162,39,0.55) !important;
  box-shadow:
    0 0 0 1px rgba(201,162,39,0.20),
    0 12px 40px rgba(201,162,39,0.16),
    0 0 80px rgba(201,162,39,0.05),
    0 4px 24px rgba(0,0,0,0.35) !important;
  transform: translateY(-3px);
}
body.page-store-products #packs .pack.is-selected::before {
  opacity: 1 !important;
  background: radial-gradient(ellipse 140% 90% at 50% -20%, rgba(201,162,39,0.12) 0%, transparent 60%) !important;
}
body.page-store-products #packs .pack.is-selected::after {
  content: '' !important;
  display: block !important;
  position: absolute;
  top: 0 !important;
  bottom: auto !important;
  left: 0 !important;
  right: 0 !important;
  height: 2.5px !important;
  border-radius: 18px 18px 0 0 !important;
  background: linear-gradient(90deg, rgba(201,162,39,0.05), rgba(224,192,74,0.9), rgba(201,162,39,0.05)) !important;
  filter: none !important;
  opacity: 1 !important;
  z-index: 3 !important;
}

/* ── Selection badge ── */
body.page-store-products #packs .sel-badge {
  position: absolute;
  top: -7px;
  right: -7px;
  z-index: 10;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(150deg, #f5dE6a 0%, #c9a227 45%, #9a7a18 100%);
  color: #fff;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 4px 14px rgba(201,162,39,0.55),
    0 0 20px rgba(201,162,39,0.25),
    0 0 0 3px #151c34;
  animation: v2BadgePop 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  clip-path: none;
  filter: none;
  padding: 0;
}
body.page-store-products #packs .pack.is-selected .sel-badge {
  display: flex;
}
body.page-store-products #packs .sel-badge i {
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.4));
}
@keyframes v2BadgePop {
  0%   { transform: scale(0) rotate(-30deg); opacity: 0; }
  60%  { transform: scale(1.2) rotate(5deg); }
  100% { transform: scale(1) rotate(0deg); opacity: 1; }
}

/* ── Pack body ── */
body.page-store-products #packs .pack-body {
  padding: 20px 16px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex: 1;
  position: relative;
  z-index: 1;
}

/* ── Pack title ── */
body.page-store-products #packs .pack-title {
  font-weight: 700;
  font-size: 14px;
  color: rgba(232,230,227,0.92);
  text-align: center;
  line-height: 1.35;
  letter-spacing: 0.02em;
  word-break: break-word;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 1.35em;
  transition: color 0.2s ease;
}
body.page-store-products #packs .pack:hover .pack-title {
  color: #f8f4ec;
}
body.page-store-products #packs .pack.is-selected .pack-title {
  color: #fff;
  text-shadow: 0 1px 8px rgba(201,162,39,0.15);
}

/* ── Pack icon ── */
body.page-store-products #packs .pack-icon-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
body.page-store-products #packs .pack-icon {
  width: 96px;
  height: 96px;
  border-radius: 16px;
  background: rgba(8,12,22,0.9);
  border: 1.5px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition:
    border-color 0.3s ease,
    box-shadow 0.35s ease,
    transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow:
    0 8px 24px rgba(0,0,0,0.45),
    inset 0 1px 0 rgba(255,255,255,0.05);
}
body.page-store-products #packs .pack-icon.pack-icon-img {
  background: linear-gradient(180deg, #10162a 0%, #0a0e1c 100%);
  border: 1.5px solid rgba(201,162,39,0.14);
  padding: 6px;
  box-shadow:
    0 8px 24px rgba(0,0,0,0.5),
    inset 0 1px 0 rgba(255,255,255,0.05),
    0 0 0 0px rgba(201,162,39,0);
}
body.page-store-products #packs .pack-icon.pack-icon-img img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center;
  border-radius: 10px !important;
  display: block;
  filter: brightness(1.05) contrast(1.02);
  transition: filter 0.3s ease, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
body.page-store-products #packs .pack:hover .pack-icon {
  transform: scale(1.08);
  border-color: rgba(201,162,39,0.32);
  box-shadow:
    0 10px 32px rgba(0,0,0,0.5),
    0 0 24px rgba(201,162,39,0.08),
    0 0 0 1px rgba(201,162,39,0.06);
}
body.page-store-products #packs .pack:hover .pack-icon.pack-icon-img img {
  filter: brightness(1.12) contrast(1.05);
  transform: scale(1.04);
}
body.page-store-products #packs .pack.is-selected .pack-icon {
  border-color: rgba(201,162,39,0.45);
  box-shadow:
    0 6px 28px rgba(201,162,39,0.22),
    0 0 40px rgba(201,162,39,0.08),
    0 0 0 1px rgba(201,162,39,0.12);
  transform: scale(1.04);
}
body.page-store-products #packs .pack.is-selected .pack-icon.pack-icon-img {
  border-color: rgba(201,162,39,0.55);
  box-shadow:
    0 6px 28px rgba(201,162,39,0.25),
    0 0 40px rgba(201,162,39,0.10),
    0 0 0 2px rgba(201,162,39,0.08);
}
body.page-store-products #packs .pack.is-selected .pack-icon.pack-icon-img img {
  filter: brightness(1.15) contrast(1.05) saturate(1.1);
}

/* ── Pack bottom / price ── */
body.page-store-products #packs .pack-bottom {
  margin-top: auto;
  padding-top: 8px;
  text-align: center;
  width: 100%;
}
body.page-store-products #packs .pack .price {
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.02em;
  line-height: 1.25;
  text-align: center;
  font-variant-numeric: tabular-nums;
  color: transparent;
  background: linear-gradient(180deg, #f8eed8 0%, #d9b63e 50%, #b8941e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: filter 0.25s ease;
}
body.page-store-products #packs .pack:hover .price {
  filter: drop-shadow(0 0 8px rgba(201,162,39,0.25));
}
body.page-store-products #packs .pack.is-selected .price {
  background: linear-gradient(180deg, #fffde8 0%, #f5de60 40%, #c9a227 100%);
  -webkit-background-clip: text;
  background-clip: text;
  filter: drop-shadow(0 0 12px rgba(201,162,39,0.35));
}

/* ── Out of stock ── */
body.page-store-products #packs .pack.is-out-of-stock {
  cursor: not-allowed;
  opacity: 0.4;
  filter: grayscale(0.5) brightness(0.8);
  pointer-events: none;
}
body.page-store-products #packs .pack.is-out-of-stock:hover {
  transform: none;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  border-color: rgba(255,255,255,0.05);
}

/* ── Mobile small cards ── */
@media (max-width: 479px) {
  body.page-store-products #packs .pack-body {
    padding: 16px 12px 18px;
    gap: 10px;
  }
  body.page-store-products #packs .pack-icon,
  body.page-store-products #packs .pack-icon.pack-icon-img {
    width: 72px;
    height: 72px;
    border-radius: 14px;
  }
  body.page-store-products #packs .pack-title {
    font-size: 12.5px;
  }
  body.page-store-products #packs .pack .price {
    font-size: 16px;
  }
  body.page-store-products #packs .sel-badge {
    top: -5px;
    right: -5px;
    width: 26px;
    height: 26px;
  }
  body.page-store-products #packs .sel-badge i {
    font-size: 12px;
  }
  body.page-store-products #packs.step-card {
    padding: 20px 16px 24px;
    border-radius: 18px;
  }
  body.page-store-products #packs .pack {
    border-radius: 16px;
  }
  body.page-store-products #packs .pack:hover {
    transform: translateY(-4px);
  }
}

@media (max-width: 575px) {
  body.page-store-products #packs .step-title {
    font-size: 16px;
  }
  body.page-store-products #packs .step-num {
    width: 38px;
    height: 38px;
    font-size: 14px;
    border-radius: 11px;
  }
}

/* ── Flash stock error banner ── */
.flash-stock-error {
  margin-bottom: 16px;
  animation: flashSlideIn 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.flash-stock-error-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, rgba(220, 53, 69, 0.14), rgba(220, 53, 69, 0.08));
  border: 1px solid rgba(220, 53, 69, 0.35);
  border-radius: 14px;
  padding: 16px 20px;
  font-size: 0.9rem;
  color: #f5a3aa;
  line-height: 1.55;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.flash-stock-error-inner .bi {
  font-size: 1.35rem;
  color: #ef4444;
  flex-shrink: 0;
}
.flash-stock-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.flash-stock-text strong {
  font-size: 1rem;
  color: #fca5a5;
}
.flash-stock-text span {
  font-size: 0.85rem;
  opacity: 0.85;
}
.flash-stock-count {
  font-size: 0.85rem;
  color: #fbbf24;
  opacity: 1;
}
.flash-stock-count strong {
  color: #fde68a;
  font-size: 0.95rem;
}
.flash-close {
  margin-left: auto;
  background: none;
  border: none;
  color: #f5a3aa;
  font-size: 1.4rem;
  cursor: pointer;
  padding: 0 4px;
  line-height: 1;
  opacity: 0.7;
  transition: opacity 0.2s;
  flex-shrink: 0;
}
.flash-close:hover {
  opacity: 1;
}
@keyframes flashSlideIn {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Sidebar language & currency prefs ── */
.side-prefs {
  display: flex;
  gap: 6px;
  align-items: stretch;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.sp-compact-btn,
.sp-compact-select {
  height: 36px;
  padding: 0 10px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  font-family: inherit;
  color: var(--title);
  background: var(--card);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: border-color .2s;
}
.sp-compact-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  flex: 1;
  min-width: 0;
}
.sp-compact-btn:hover,
.sp-dropdown.open .sp-compact-btn { border-color: var(--accent, #22d3ee); }
.sp-compact-btn span { flex: 1; text-align: left; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sp-compact-flag { border-radius: 2px; object-fit: cover; flex-shrink: 0; }
.sp-compact-chev { font-size: 10px; color: var(--muted); transition: transform .2s; flex-shrink: 0; }
.sp-dropdown.open .sp-compact-chev { transform: rotate(180deg); }

.sp-compact-select {
  flex: 1;
  min-width: 0;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2394a3b8' d='M2.5 4.5L6 8l3.5-3.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  padding-right: 26px;
}
.sp-compact-select:focus { outline: none; border-color: var(--accent, #22d3ee); }
.sp-compact-select option { background: var(--bg, #0b1220); color: var(--title); }

/* Dil seçici para biriminden daha geniş; sarmalayıcı genişlerken buton da dolsun (arada boşluk kalmasın) */
.side-prefs .sp-dropdown {
  display: flex;
  flex: 1.75 1 0%;
  min-width: 0;
}
.side-prefs .sp-dropdown .sp-compact-btn {
  width: 100%;
  min-width: 0;
}
.side-prefs .sp-compact-select { flex: 1 1 0%; min-width: 4.5rem; }

/* ── Custom flag dropdown menu ── */
.sp-dropdown { position: relative; flex: 1; min-width: 0; }
.sp-dropdown__menu {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  z-index: 50;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 4px;
  box-shadow: 0 8px 24px rgba(0,0,0,.4);
}
.sp-dropdown.open .sp-dropdown__menu { display: block; }
.sp-dropdown__item {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border: none;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  font-family: inherit;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  transition: all .15s;
}
.sp-dropdown__item:hover { background: rgba(34, 211, 238, .08); color: var(--title); }
.sp-dropdown__item.active { color: var(--accent, #22d3ee); font-weight: 700; }
.sp-dropdown__item span { flex: 1; text-align: left; }
.sp-dropdown__check { font-size: 14px; color: var(--accent, #22d3ee); }
