/* ============================================================
   UNIPIN GAME STORE — PREMIUM UNIPIN-INSPIRED STYLING & DESIGN
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
  --unipin-bg:            #0a0d16;
  --unipin-bg-secondary:  #111625;
  --unipin-card-bg:       #161c2e;
  --unipin-header-bg:     #0e121e;
  --unipin-topbar-bg:     linear-gradient(90deg, #1b1625 0%, #2f1d17 100%);
  
  --unipin-orange:        #fa8418;
  --unipin-orange-hover:  #ff952b;
  --unipin-orange-light:  rgba(250, 132, 24, 0.15);
  --unipin-blue:          #1890ff;
  --unipin-blue-light:    rgba(24, 144, 255, 0.15);
  
  --card-bg:              #161c2e;
  --card-text:            #f8fafc;
  --card-border:          #232d45;
  --card-shadow:          0 12px 36px rgba(0, 0, 0, 0.4);

  --primary:              #fa8418;
  --primary-h:            #ff952b;
  --primary-light:        rgba(250, 132, 24, 0.15);
  
  --emerald:              #10b981;
  --emerald-light:        rgba(16, 185, 129, 0.15);
  --amber:                #f59e0b;
  --amber-light:          rgba(245, 158, 11, 0.15);
  --danger:               #ef4444;
  --danger-light:         rgba(239, 68, 68, 0.15);

  --text-primary:         #ffffff;
  --text-muted:           #94a3b8;
  --text-dim:             #64748b;

  --font-h:               'Outfit', sans-serif;
  --font-b:               'Inter', sans-serif;

  --r-card:               16px;
  --r-input:              10px;
  --r-btn:                10px;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
a { color: var(--unipin-orange); text-decoration: none; }
button { cursor: pointer; font-family: var(--font-b); }
input, select, textarea { font-family: var(--font-b); }

body {
  background: var(--unipin-bg) radial-gradient(circle at 50% 0%, #171f36 0%, #0a0d16 70%);
  color: var(--text-primary);
  font-family: var(--font-b);
  font-size: 14px;
  line-height: 1.5;
  min-height: 100vh;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-h);
  font-weight: 700;
  line-height: 1.3;
}

/* ---------- Canvas (Hyper option) ---------- */
canvas {
  position: fixed; top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
  display: none;
}

/* ---------- Theme Switcher ---------- */
#theme-switcher-wrap {
  position: fixed; bottom: 20px; left: 20px; z-index: 300;
}
.theme-toggle-circle {
  background: var(--unipin-orange); color: #ffffff;
  border: none; width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(250, 132, 24, 0.4);
  font-size: 18px; transition: transform .2s, box-shadow .2s;
}
.theme-toggle-circle:hover { transform: scale(1.08); }
#theme-panel {
  display: none; position: absolute; bottom: 54px; left: 0;
  background: #161c2e; border: 1px solid #28334e; border-radius: 12px;
  padding: 8px; min-width: 160px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
#theme-panel.open { display: flex; flex-direction: column; gap: 4px; }
.theme-opt {
  background: transparent; border: none;
  color: #cbd5e1; text-align: left;
  padding: 8px 12px; border-radius: 8px;
  font-size: 13px; font-weight: 600;
  transition: all .15s;
}
.theme-opt:hover, .theme-opt.active {
  background: var(--unipin-orange-light); color: var(--unipin-orange);
}

/* ============================================================
   UNIPIN TOP ANNOUNCEMENT BAR
   ============================================================ */
.unipin-top-notice-bar {
  background: var(--unipin-topbar-bg);
  padding: 7px 0;
  font-size: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.top-notice-inner {
  max-width: 1240px; margin: 0 auto;
  padding: 0 20px;
  display: flex; align-items: center; justify-content: space-between;
}
.top-notice-text {
  font-weight: 800; color: #ffffff; letter-spacing: 0.8px;
  text-transform: uppercase; font-size: 11px;
}
.top-notice-right {
  display: flex; align-items: center; gap: 16px;
}
.country-selector {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 600; color: #e2e8f0;
  cursor: pointer;
}
.country-flag-icon {
  width: 18px; height: 18px; border-radius: 50%; object-fit: cover;
}
.lang-toggle-group {
  display: flex; align-items: center; background: #262c3e;
  border-radius: 6px; padding: 2px;
}
.lang-btn {
  border: none; background: transparent; color: #94a3b8;
  font-size: 11px; font-weight: 800; padding: 3px 8px;
  border-radius: 4px; cursor: pointer; transition: all .15s;
}
.lang-btn.active {
  background: var(--unipin-orange); color: #ffffff;
}

/* ============================================================
   UNIPIN MAIN NAVBAR
   ============================================================ */
.itemku-navbar-wrapper, .unipin-header-wrapper {
  position: sticky; top: 0; left: 0; right: 0;
  z-index: 100;
  box-shadow: 0 6px 24px rgba(0,0,0,0.4);
}
.unipin-top-bar, .itemku-top-bar {
  background: var(--unipin-header-bg);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.top-bar-inner {
  max-width: 1240px; margin: 0 auto;
  padding: 0 20px;
  display: flex; align-items: center;
  justify-content: space-between; gap: 20px;
}

/* Brand Logo */
.unipin-brand {
  display: flex; align-items: center; gap: 4px;
  text-decoration: none; flex-shrink: 0;
}
.brand-title {
  font-family: var(--font-h); font-size: 28px;
  font-weight: 900; color: #ffffff; letter-spacing: -0.5px;
  display: flex; align-items: center;
}
.brand-title .unipin-pin { color: var(--unipin-orange); }
.brand-title .unipin-reg {
  font-size: 10px; font-weight: 700; color: var(--unipin-orange);
  vertical-align: super; margin-left: 2px;
}

/* Header Nav Menu Links */
.unipin-nav-links {
  display: flex; align-items: center; gap: 20px;
  margin-left: 16px;
}
.nav-link-item {
  color: #e2e8f0; font-size: 14px; font-weight: 700;
  text-decoration: none; display: flex; align-items: center; gap: 4px;
  transition: color .15s;
}
.nav-link-item:hover, .nav-link-item.active {
  color: var(--unipin-orange);
}

/* Search Container */
.itemku-search-container, .unipin-search-container {
  flex: 1; max-width: 440px;
  margin-left: auto;
}
.itemku-search-input-wrap, .unipin-search-wrap {
  position: relative; width: 100%;
  display: flex; align-items: center;
}
.search-lens-icon {
  position: absolute; left: 16px;
  color: #64748b; font-size: 15px;
  pointer-events: none;
}
#itemku-search-input {
  width: 100%; height: 42px;
  padding: 0 80px 0 44px;
  border-radius: 8px; border: 1px solid #2a344a;
  font-size: 13px; font-weight: 500;
  color: #ffffff; background: #161c2e;
  outline: none; box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  transition: all .2s;
}
#itemku-search-input:focus {
  border-color: var(--unipin-orange);
  box-shadow: 0 0 0 3px rgba(250, 132, 24, 0.2);
}
#itemku-search-input::placeholder { color: #64748b; }
.enter-badge {
  position: absolute; right: 8px;
  font-size: 10px; font-weight: 700;
  background: #232c42; color: #94a3b8;
  padding: 3px 6px; border-radius: 6px;
  pointer-events: none;
}

/* Right Header Actions */
.unipin-top-actions {
  display: flex; align-items: center; gap: 10px; flex-shrink: 0;
}
.btn-unipin-masuk {
  background: var(--unipin-orange); color: #ffffff;
  border: none; padding: 10px 24px;
  border-radius: 8px; font-size: 13px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.5px;
  box-shadow: 0 4px 14px rgba(250, 132, 24, 0.35);
  transition: all .15s;
}
.btn-unipin-masuk:hover {
  background: var(--unipin-orange-hover); transform: translateY(-1px);
}
.btn-itemku-history {
  display: inline-flex; align-items: center; gap: 6px;
  background: #20293d; color: #ffffff;
  border: 1px solid #2e3a56; padding: 10px 16px;
  border-radius: 8px; font-size: 13px; font-weight: 700;
  transition: all .15s;
}
.btn-itemku-history:hover { background: #2a3652; border-color: var(--unipin-orange); }

/* Subnav Bar */
.itemku-subnav-bar {
  background: #0b0e18;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 8px 0;
}
.subnav-inner-container {
  max-width: 1240px; margin: 0 auto;
  padding: 0 20px;
  display: flex; align-items: center; gap: 10px;
  overflow-x: auto;
}
.subnav-category-pill {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 800; color: var(--unipin-orange);
  padding-right: 12px; border-right: 1px solid rgba(255,255,255,0.15);
  white-space: nowrap;
}
.subnav-link {
  background: transparent; border: none;
  color: #94a3b8; font-size: 12px; font-weight: 600;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px; border-radius: 6px;
  white-space: nowrap; transition: all .15s;
}
.subnav-link:hover, .subnav-link.active {
  background: rgba(250, 132, 24, 0.15); color: #ffffff;
}

/* ============================================================
   MAIN CONTAINER
   ============================================================ */
.itemku-main-content {
  max-width: 1240px; margin: 0 auto;
  padding: 24px 20px 60px;
}

/* ============================================================
   UNIPIN HERO PROMO BANNER CAROUSEL (EXACT UNIPIN MLBB STYLE)
   ============================================================ */
.unipin-hero-slider-section {
  position: relative;
  margin-bottom: 30px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.unipin-carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
}

.unipin-banner-slide {
  min-width: 100%;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 380px;
  background: #0f1422;
}

/* Banner Left (Orange MLBB Section) */
.banner-slide-left {
  background: linear-gradient(135deg, #ff4e00 0%, #ff6b00 45%, #e04400 100%);
  padding: 32px 36px;
  display: flex; flex-direction: column;
  justify-content: space-between;
  position: relative; overflow: hidden;
}
.banner-slide-left::after {
  content: ''; position: absolute; right: -40px; top: -40px;
  width: 180px; height: 180px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.08); pointer-events: none;
}
.banner-brand-badges {
  display: flex; align-items: center; gap: 12px; margin-bottom: 12px;
}
.brand-badge-unipin {
  font-family: var(--font-h); font-size: 20px; font-weight: 900; color: #ffffff;
}
.brand-badge-unipin span { color: #ffe600; }
.brand-badge-konekin {
  background: #000000; color: #ffffff; font-size: 10px; font-weight: 900;
  padding: 4px 10px; border-radius: 14px; text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.banner-headline-group {
  margin: 8px 0;
}
.banner-main-title {
  font-family: var(--font-h); font-size: 26px; font-weight: 900;
  color: #ffffff; text-transform: uppercase; letter-spacing: -0.5px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3); margin-bottom: 10px;
  line-height: 1.25;
}
.banner-chip-mlbb {
  display: inline-block;
  background: #ffffff; color: #000000;
  font-size: 12px; font-weight: 800; padding: 4px 14px;
  border-radius: 20px; margin-bottom: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.banner-price-callout {
  background: rgba(0, 0, 0, 0.35); border: 2px solid #ffe600;
  border-radius: 30px; padding: 8px 20px;
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 8px;
}
.price-callout-lbl {
  font-size: 12px; font-weight: 800; color: #ffffff; text-transform: uppercase;
}
.price-callout-num {
  font-family: var(--font-h); font-size: 28px; font-weight: 900; color: #ffe600;
}
.banner-dates {
  font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.85);
  display: flex; align-items: center; gap: 6px; margin-top: 4px;
}

.banner-bottom-bar {
  margin-top: 14px; padding-top: 14px; border-top: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
}
.banner-subtext {
  font-size: 18px; font-weight: 800; color: #ffffff; line-height: 1.3;
}
.banner-action-row {
  display: flex; align-items: center; gap: 8px; flex-shrink: 0;
}
.btn-banner-more {
  background: rgba(0, 0, 0, 0.4); color: #ffe600;
  border: 1px solid #ffe600; padding: 8px 18px;
  border-radius: 6px; font-size: 12px; font-weight: 800;
  text-transform: uppercase; transition: all .15s;
}
.btn-banner-more:hover { background: #ffe600; color: #000; }
.btn-banner-share {
  background: rgba(0,0,0,0.4); color: #ffffff; border: 1px solid rgba(255,255,255,0.4);
  width: 36px; height: 36px; border-radius: 6px;
  display: flex; align-items: center; justify-content: justify; font-size: 14px;
  transition: all .15s; justify-content: center;
}
.btn-banner-share:hover { background: rgba(255,255,255,0.2); }

/* Banner Right (Cosmic Blue Graphics) */
.banner-slide-right {
  background: radial-gradient(circle at 70% 40%, #1a2f68 0%, #0d152c 60%, #060914 100%);
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.banner-slide-right img.banner-bg-img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
}

/* Fallback SVG Graphic for Right Side */
.banner-graphic-fallback {
  position: relative; width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.mlbb-logo-top {
  position: absolute; top: 20px; right: 24px;
  font-family: var(--font-h); font-size: 14px; font-weight: 900;
  color: #facc15; text-transform: uppercase; letter-spacing: 1.5px;
  display: flex; align-items: center; gap: 6px;
}
.diamond-visual-container {
  position: relative; width: 220px; height: 220px;
  display: flex; align-items: center; justify-content: center;
}
.glowing-bubble {
  position: absolute; width: 180px; height: 180px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 242, 254, 0.4) 0%, rgba(13, 110, 253, 0.1) 70%);
  box-shadow: 0 0 40px rgba(0, 242, 254, 0.5), inset 0 0 20px rgba(255, 255, 255, 0.6);
  animation: floatBubble 3s ease-in-out infinite alternate;
}
@keyframes floatBubble {
  0% { transform: translateY(0) scale(1); }
  100% { transform: translateY(-10px) scale(1.03); }
}
.giant-diamond-ico {
  font-size: 84px; color: #00f2fe;
  text-shadow: 0 0 30px rgba(0, 242, 254, 0.8);
  position: relative; z-index: 2;
}
.chest-deco-left {
  position: absolute; left: 30px; bottom: 40px; font-size: 42px; color: #f59e0b;
  text-shadow: 0 4px 12px rgba(0,0,0,0.5);
}
.gift-deco-right {
  position: absolute; right: 30px; bottom: 40px; font-size: 42px; color: #ec4899;
  text-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

/* Carousel Navigation Arrows */
.carousel-nav-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(0, 0, 0, 0.6); color: #ffffff;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; z-index: 10; transition: all .2s;
}
.carousel-nav-btn:hover {
  background: var(--unipin-orange); border-color: var(--unipin-orange);
  transform: translateY(-50%) scale(1.1);
}
.carousel-nav-btn.prev { left: 16px; }
.carousel-nav-btn.next { right: 16px; }

/* Carousel Dash Indicators */
.carousel-indicators {
  position: absolute; bottom: 16px; right: 24px;
  display: flex; align-items: center; gap: 8px; z-index: 10;
}
.dash-indicator {
  width: 24px; height: 4px; border-radius: 2px;
  background: rgba(255, 255, 255, 0.3);
  transition: all .3s; cursor: pointer;
}
.dash-indicator.active {
  width: 40px; background: var(--unipin-orange);
}

/* Floating WhatsApp Widget */
#whatsapp-floating-btn {
  position: fixed; bottom: 24px; right: 24px; z-index: 300;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25d366; color: #ffffff;
  display: flex; align-items: center; justify-content: justify;
  font-size: 32px; box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
  text-decoration: none; justify-content: center;
  transition: transform .2s, box-shadow .2s;
}
#whatsapp-floating-btn:hover {
  transform: scale(1.1); box-shadow: 0 12px 32px rgba(37, 211, 102, 0.7);
}

/* ============================================================
   HERO SHOWCASE: 3 GAME POSTERS
   ============================================================ */
.itemku-hero-showcase {
  margin-bottom: 40px;
}
.hero-header-line {
  margin-bottom: 20px; text-align: center;
}
.hero-header-line h2 {
  font-size: 26px; font-weight: 800; color: #ffffff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
  margin-bottom: 6px;
}
.hero-header-line p {
  color: #94a3b8; font-size: 14px;
}

/* 3 Cards Showcase Grid */
.itemku-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}

/* ITEMKU / UNIPIN GAME CARD */
.itemku-game-card {
  border-radius: var(--r-card);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.5);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s;
  border: 2px solid #232d45;
  height: 380px;
  background: #111625;
}
.itemku-game-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(250, 132, 24, 0.3);
  border-color: var(--unipin-orange);
}
.itemku-game-card.active-card, .itemku-game-card.selected {
  transform: translateY(-4px);
  border-color: var(--unipin-orange);
  box-shadow: 0 0 0 3px rgba(250, 132, 24, 0.35), 0 20px 48px rgba(0, 0, 0, 0.6);
}

/* Poster Wrap */
.itemku-poster-wrap {
  width: 100%; height: 100%;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
  justify-content: space-between;
}
.itemku-poster-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transition: transform .4s ease;
  z-index: 1;
}
.itemku-game-card:hover .itemku-poster-img {
  transform: scale(1.06);
}

.itemku-poster-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.1) 40%, rgba(10,13,22,0.92) 80%, rgba(10,13,22,0.98) 100%);
  z-index: 2;
}

.itemku-poster-top {
  position: relative; z-index: 3;
  padding: 14px;
  display: flex; align-items: center;
  justify-content: space-between;
}
.game-status-pill {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 700;
  padding: 4px 10px; border-radius: 20px;
  backdrop-filter: blur(8px);
}
.game-status-pill.ready {
  background: rgba(16, 185, 129, 0.85);
  color: #ffffff; box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.game-status-pill.maint {
  background: rgba(239, 68, 68, 0.85);
  color: #ffffff;
}
.game-server-tag {
  font-size: 10px; font-weight: 700;
  background: rgba(0,0,0,0.65); color: #e2e8f0;
  padding: 3px 8px; border-radius: 12px;
  backdrop-filter: blur(6px);
}

.itemku-poster-bottom {
  position: relative; z-index: 3;
  padding: 18px 16px;
  display: flex; flex-direction: column;
  align-items: center; text-align: center; gap: 8px;
}
.itemku-game-title {
  font-family: var(--font-h); font-size: 18px;
  font-weight: 900; color: #ffffff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.8);
}
.itemku-game-sub {
  font-size: 12px; color: #cbd5e1; font-weight: 500;
}
.itemku-card-badge {
  display: inline-block;
  background: var(--unipin-orange); color: #ffffff;
  font-family: var(--font-h); font-size: 11px;
  font-weight: 900; letter-spacing: 0.5px;
  padding: 4px 14px; border-radius: 6px;
  text-transform: uppercase;
}
.itemku-btn-action {
  width: 100%; max-width: 180px;
  padding: 9px 18px; font-size: 13px; font-weight: 700;
  border-radius: 8px;
  background: rgba(22, 28, 46, 0.85);
  color: #ffffff; border: 1.5px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  transition: all .2s;
}
.itemku-game-card:hover .itemku-btn-action,
.itemku-game-card.active-card .itemku-btn-action,
.itemku-game-card.selected .itemku-btn-action {
  background: var(--unipin-orange);
  border-color: var(--unipin-orange); color: #ffffff;
  box-shadow: 0 4px 14px rgba(250, 132, 24, 0.4);
}

/* Trust Badges Bar */
.itemku-trust-badges {
  background: #161c2e;
  border: 1px solid #232d45;
  border-radius: 16px;
  padding: 16px 28px;
  display: flex; align-items: center;
  justify-content: space-around; gap: 20px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.trust-badge-item {
  display: flex; align-items: center; gap: 14px;
}
.trust-ico {
  font-size: 26px; color: var(--unipin-orange);
}
.trust-txt {
  display: flex; flex-direction: column; text-align: left;
}
.trust-txt strong { font-size: 13px; color: #ffffff; font-weight: 700; }
.trust-txt span { font-size: 11px; color: #94a3b8; }

/* ============================================================
   CHECKOUT WIZARD LAYOUT
   ============================================================ */
.checkout-layout-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 28px;
  align-items: flex-start;
  margin-top: 30px;
}
.checkout-steps-panel { min-width: 0; }
.checkout-summary-panel { position: sticky; top: 120px; }

.card {
  background: var(--card-bg);
  color: var(--card-text);
  border-radius: var(--r-card);
  padding: 28px;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--card-border);
}

.step-wizard-container {
  background: #161c2e;
  border: 1px solid #232d45;
  border-radius: var(--r-card);
  padding: 16px 24px;
  display: flex; align-items: center; justify-content: space-between;
  box-shadow: var(--card-shadow);
  margin-bottom: 8px;
}
.step-wizard-node {
  display: flex; align-items: center; gap: 10px;
  cursor: pointer;
}
.step-bar-circle {
  width: 34px; height: 34px; border-radius: 50%;
  background: #20283c; color: #94a3b8;
  border: 2px solid #2e3a56;
  font-family: var(--font-h); font-size: 14px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  transition: all .25s; flex-shrink: 0;
}
.step-wizard-node.active .step-bar-circle {
  background: var(--unipin-orange); color: #ffffff;
  border-color: var(--unipin-orange);
  box-shadow: 0 0 0 4px rgba(250, 132, 24, 0.25);
}
.step-wizard-node.completed .step-bar-circle {
  background: var(--emerald); color: #ffffff;
  border-color: var(--emerald);
}
.step-node-label {
  font-size: 13px; font-weight: 700; color: #94a3b8;
}
.step-wizard-node.active .step-node-label { color: var(--unipin-orange); }
.step-wizard-node.completed .step-node-label { color: #ffffff; }

.step-wizard-line {
  flex: 1; height: 3px;
  background: #232d45; margin: 0 12px;
  transition: background .3s;
}
.step-wizard-line.active { background: var(--emerald); }
.step-indicator-chip {
  font-size: 12px; color: var(--unipin-orange); font-weight: 700;
  background: rgba(250, 132, 24, 0.15);
  display: inline-block; padding: 4px 12px;
  border-radius: 12px; margin-bottom: 16px;
}

.form-step-section {
  display: none;
}
.form-step-section.active { display: block; }

.card-step-title {
  display: flex; align-items: center; gap: 14px;
  padding-bottom: 16px; border-bottom: 1px solid #232d45;
  margin-bottom: 20px;
}
.step-num-pill {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--unipin-orange-light); color: var(--unipin-orange);
  font-family: var(--font-h); font-size: 18px; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.card-step-title h3 {
  font-size: 18px; color: #ffffff; margin-bottom: 2px;
}
.card-step-title p {
  font-size: 13px; color: #94a3b8; margin: 0;
}

.form-group { margin-bottom: 18px; }
.form-group label {
  display: block; font-size: 13px; font-weight: 700;
  color: #e2e8f0; margin-bottom: 6px;
}
.form-input-control {
  width: 100%; height: 44px; padding: 0 14px;
  border-radius: var(--r-input);
  border: 1.5px solid #2a344a;
  background: #111625; color: #ffffff;
  font-size: 14px; outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.form-input-control:focus {
  border-color: var(--unipin-orange); background: #161c2e;
  box-shadow: 0 0 0 3px rgba(250, 132, 24, 0.2);
}
select.form-input-control { cursor: pointer; color: #ffffff; }
select.form-input-control option { background: #161c2e; color: #ffffff; }

.voucher-input-row { display: flex; gap: 8px; }
.voucher-input-row .form-input-control { flex: 1; }
.btn-voucher-submit {
  background: var(--unipin-orange); color: #ffffff;
  border: none; padding: 0 20px;
  border-radius: var(--r-btn); font-size: 13px; font-weight: 700;
  transition: background .2s;
}
.btn-voucher-submit:hover { background: var(--unipin-orange-hover); }
.btn-show-promos {
  background: none; border: none;
  color: var(--unipin-orange); font-size: 12px; font-weight: 600;
  margin-top: 8px; display: inline-flex; align-items: center; gap: 6px;
}

.step-actions-footer {
  display: flex; gap: 12px;
  padding-top: 20px; border-top: 1px solid #232d45;
}
.step-actions-footer.right { justify-content: flex-end; }
.step-actions-footer.split { justify-content: space-between; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 22px; border-radius: var(--r-btn);
  font-size: 14px; font-weight: 700; border: none;
  transition: all .2s; text-decoration: none;
}
.btn-primary-action {
  background: var(--unipin-orange); color: #ffffff;
}
.btn-primary-action:hover { background: var(--unipin-orange-hover); transform: translateY(-1px); }
.btn-outline-action {
  background: #20283c; color: #e2e8f0;
  border: 1px solid #2e3a56;
}
.btn-outline-action:hover { background: #2a3652; color: #ffffff; }
.btn-pay-now-action {
  background: linear-gradient(135deg, #fa8418 0%, #ff5700 100%);
  color: #ffffff; font-size: 15px; padding: 12px 28px;
  box-shadow: 0 4px 14px rgba(250, 132, 24, 0.4);
}

/* STEP 2: PAKET CARDS */
.paket-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 14px; margin-bottom: 8px;
}
.paket-card {
  border: 2px solid #232d45;
  border-radius: 12px; padding: 14px 16px;
  background: #111625; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  transition: all .2s;
}
.paket-card:hover {
  border-color: var(--unipin-orange); background: #161c2e;
  transform: translateY(-2px);
}
.paket-card.active, .paket-card.selected {
  border-color: var(--unipin-orange); background: rgba(250, 132, 24, 0.15);
  box-shadow: 0 0 0 2px var(--unipin-orange);
}
.paket-card-icon {
  width: 38px; height: 38px; border-radius: 8px;
  background: #20283c; color: var(--unipin-orange);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0;
}
.paket-card.active .paket-card-icon { background: var(--unipin-orange); color: #ffffff; }
.paket-duration { font-size: 14px; font-weight: 800; color: #ffffff; }
.paket-bonus { font-size: 11px; font-weight: 700; color: var(--emerald); margin-top: 2px; }

/* STEP 4: PAYMENT METHODS */
.pay-category-title {
  font-size: 12px; font-weight: 800; letter-spacing: 0.8px;
  text-transform: uppercase; color: #94a3b8;
  display: flex; align-items: center; gap: 8px; margin: 16px 0 10px;
}
.method-card {
  border: 2px solid #232d45;
  border-radius: 12px; padding: 14px 16px;
  background: #111625; cursor: pointer;
  transition: all .2s; position: relative;
}
.method-card:hover { border-color: var(--unipin-orange); background: #161c2e; }
.method-card.active {
  border-color: var(--unipin-orange); background: rgba(250, 132, 24, 0.15);
  box-shadow: 0 0 0 2px var(--unipin-orange);
}
.qris-headline { font-size: 14px; font-weight: 800; color: #ffffff; margin-bottom: 4px; }
.qris-sub-desc { font-size: 12px; color: #94a3b8; margin: 0; }
.retail-cards-grid, .va-cards-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 10px;
}

/* ORDER SUMMARY SIDEBAR */
.summary-card { padding: 24px; }
.summary-card-title {
  display: flex; align-items: center; gap: 8px;
  padding-bottom: 14px; border-bottom: 1px solid #232d45;
  margin-bottom: 16px;
}
.summary-card-title h3 { font-size: 17px; color: #ffffff; }
.summary-field-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 0; font-size: 13px;
}
.summary-field-row .f-label { color: #94a3b8; display: flex; align-items: center; gap: 6px; }
.summary-field-row .f-value { font-weight: 700; color: #ffffff; max-width: 55%; text-align: right; word-break: break-all; }
.summary-split-line { border-top: 1px dashed #232d45; margin: 10px 0; }
.summary-total-price-row .t-price {
  font-family: var(--font-h); font-size: 22px; font-weight: 900; color: var(--unipin-orange);
}
.summary-guarantee-note {
  background: #111625; border: 1px solid #232d45;
  border-radius: 8px; padding: 10px 12px; margin-top: 14px;
  font-size: 11px; color: #94a3b8; display: flex; align-items: center; gap: 8px;
}

/* CLIENT DOWNLOADS WIDGET */
.client-downloads-section {
  margin-top: 20px; padding-top: 16px; border-top: 1px solid #232d45;
}
.downloads-section-title {
  font-size: 12px; font-weight: 800; text-transform: uppercase;
  color: #94a3b8; display: flex; align-items: center; gap: 6px; margin-bottom: 12px;
}
.download-client-card {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 0; border-bottom: 1px solid #1c2438;
}
.dl-client-info strong { display: block; font-size: 13px; color: #ffffff; }
.dl-client-info span { font-size: 11px; color: #94a3b8; }
.btn-download-pill {
  background: var(--unipin-orange-light); color: var(--unipin-orange);
  font-size: 11px; font-weight: 700; padding: 5px 12px; border-radius: 16px;
  display: inline-flex; align-items: center; gap: 4px; transition: all .15s;
}
.btn-download-pill:hover { background: var(--unipin-orange); color: #ffffff; }

/* INVOICE & SUCCESS SECTIONS */
.invoice-container, .success-container { margin-top: 20px; }
.invoice-header-box {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 18px; border-bottom: 1px solid #232d45; margin-bottom: 20px;
}
.invoice-timer-card {
  background: #111625; border: 1px solid #232d45;
  border-radius: 10px; padding: 16px; margin-bottom: 24px;
}
.countdown-clock-digits {
  font-family: var(--font-h); font-size: 26px; font-weight: 900; color: #ef4444;
}
.timer-progress-track {
  height: 6px; background: #232d45; border-radius: 3px; overflow: hidden;
}
.timer-progress-fill-bar {
  height: 100%; background: #ef4444; transition: width .5s linear;
}
.payment-qr-area {
  background: #111625; border: 1px solid #232d45;
  border-radius: 12px; padding: 24px; text-align: center;
}
.qr-canvas-box {
  background: #ffffff; border: 1px solid #cbd5e1;
  border-radius: 12px; padding: 16px;
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 200px; min-height: 200px; margin-bottom: 14px;
}
.member-key-showcase {
  background: rgba(16, 185, 129, 0.1); border: 2px dashed #10b981;
  border-radius: 12px; padding: 18px; margin-bottom: 24px;
}
.key-box-inner h3 {
  font-family: monospace; font-size: 24px; font-weight: 900; color: #10b981; letter-spacing: 2px;
}

/* MODALS */
.modal-backdrop {
  position: fixed; inset: 0; z-index: 500;
  background: rgba(0, 0, 0, 0.8); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center; padding: 20px;
}
.modal-window, .modal-card {
  width: 100%; max-width: 560px; max-height: 90vh; overflow-y: auto;
  background: #161c2e; color: #ffffff; border-radius: 16px;
  padding: 24px; box-shadow: 0 24px 64px rgba(0,0,0,0.6);
  border: 1px solid #28334e;
}
.modal-window-wide { max-width: 760px; }
.modal-compact-card { max-width: 420px; }

/* FOOTER */
.itemku-footer-wrapper {
  background: var(--unipin-header-bg);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 0; margin-top: 60px; text-align: center;
}
.footer-container {
  max-width: 1240px; margin: 0 auto; padding: 0 20px;
  font-size: 13px; color: #94a3b8;
}

/* RESPONSIVE */
@media (max-width: 960px) {
  .unipin-banner-slide { grid-template-columns: 1fr; }
  .banner-slide-right { display: none; }
  .itemku-cards-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto 24px; }
  .checkout-layout-grid { grid-template-columns: 1fr; }
  .checkout-summary-panel { position: static; }
  .invoice-content-grid { grid-template-columns: 1fr; }
  .itemku-trust-badges { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 640px) {
  .unipin-nav-links { display: none; }
  .top-bar-inner { flex-wrap: wrap; }
  .itemku-search-container { order: 3; max-width: 100%; width: 100%; }
}
