/* ==========================================================================
   WISANGGENI APP STOREFRONT - FLUENT ACRYLIC DESIGN SYSTEM
   Hybrid Microsoft Store (Windows 11 Fluent) + Google Play Store (Material 3)
   ========================================================================== */

:root {
  /* Common Brand Colors */
  --wg-primary: #2563eb;
  --wg-primary-glow: rgba(37, 99, 235, 0.35);
  --wg-primary-dark: #1d4ed8;
  --wg-accent-cyan: #06b6d4;
  --wg-accent-gold: #f59e0b;
  --wg-gold-glow: rgba(245, 158, 11, 0.35);
  --wg-emerald: #10b981;
  --wg-rose: #f43f5e;
  --wg-purple: #8b5cf6;

  /* Typography */
  --font-main: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-heading: 'Outfit', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Radii */
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  /* Default Light Theme */
  --store-bg: #f8fafc;
  --store-surface: #ffffff;
  --store-surface-elevated: #ffffff;
  --store-acrylic: rgba(255, 255, 255, 0.82);
  --store-border: rgba(0, 0, 0, 0.08);
  --store-border-hover: rgba(37, 99, 235, 0.35);
  --store-text-main: #0f172a;
  --store-text-sub: #475569;
  --store-text-muted: #94a3b8;
  --store-shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.04);
  --store-shadow-md: 0 8px 24px -4px rgba(0, 0, 0, 0.06), 0 2px 6px -1px rgba(0, 0, 0, 0.03);
  --store-shadow-lg: 0 20px 40px -8px rgba(0, 0, 0, 0.12);
  --store-header-bg: rgba(255, 255, 255, 0.88);
  --store-sidebar-bg: rgba(248, 250, 252, 0.92);
  --store-pill-bg: #f1f5f9;
  --store-hero-gradient: linear-gradient(135deg, #1e3a8a 0%, #0f172a 100%);
}

/* Dark Theme (Fluent Obsidian & Acrylic) */
[data-theme="dark"] {
  --store-bg: #090d16;
  --store-surface: #111827;
  --store-surface-elevated: #1a2236;
  --store-acrylic: rgba(17, 24, 39, 0.85);
  --store-border: rgba(255, 255, 255, 0.09);
  --store-border-hover: rgba(56, 189, 248, 0.45);
  --store-text-main: #f8fafc;
  --store-text-sub: #cbd5e1;
  --store-text-muted: #64748b;
  --store-shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.3);
  --store-shadow-md: 0 10px 30px -4px rgba(0, 0, 0, 0.5);
  --store-shadow-lg: 0 24px 48px -8px rgba(0, 0, 0, 0.7);
  --store-header-bg: rgba(9, 13, 22, 0.88);
  --store-sidebar-bg: rgba(15, 23, 42, 0.92);
  --store-pill-bg: rgba(255, 255, 255, 0.06);
  --store-hero-gradient: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #090d16 100%);
}

/* Base Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-main);
  background-color: var(--store-bg);
  color: var(--store-text-main);
  min-height: 100vh;
  line-height: 1.5;
  transition: background-color 0.25s ease, color 0.25s ease;
  overflow-x: hidden;
}

/* Scrollbars */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background: var(--store-border);
  border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--wg-primary);
}

/* ==========================================================================
   1. TOP COMMAND BAR (STICKY HEADER)
   ========================================================================== */
.store-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 68px;
  background: var(--store-header-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--store-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  transition: all 0.2s ease;
}

.store-brand-group {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  flex-shrink: 0;
}

.store-brand-logo {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, #ef4444, #f59e0b);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.35);
}

.store-brand-titles h1 {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.2px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--store-text-main);
}

.store-version-badge {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: var(--radius-full);
  background: var(--wg-primary-glow);
  color: var(--wg-primary);
  border: 1px solid rgba(37, 99, 235, 0.2);
}

.store-brand-titles p {
  font-size: 11px;
  color: var(--store-text-muted);
  font-weight: 500;
}

/* Global Search Bar */
.store-search-container {
  flex: 1;
  max-width: 580px;
  margin: 0 24px;
  position: relative;
}

.store-search-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.store-search-icon {
  position: absolute;
  left: 14px;
  color: var(--store-text-muted);
  font-size: 15px;
  pointer-events: none;
}

.store-search-input {
  width: 100%;
  height: 40px;
  padding: 0 44px 0 40px;
  background: var(--store-pill-bg);
  border: 1px solid var(--store-border);
  border-radius: var(--radius-full);
  color: var(--store-text-main);
  font-family: var(--font-main);
  font-size: 13.5px;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  outline: none;
}

.store-search-input:focus {
  background: var(--store-surface);
  border-color: var(--wg-primary);
  box-shadow: 0 0 0 3px var(--wg-primary-glow);
}

.store-search-shortcut {
  position: absolute;
  right: 12px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  background: var(--store-surface);
  border: 1px solid var(--store-border);
  color: var(--store-text-muted);
  pointer-events: none;
}

/* Search Results Autocomplete Dropdown */
.store-search-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: var(--store-surface-elevated);
  backdrop-filter: blur(24px);
  border: 1px solid var(--store-border);
  border-radius: var(--radius-md);
  box-shadow: var(--store-shadow-lg);
  max-height: 420px;
  overflow-y: auto;
  display: none;
  z-index: 1050;
}

.store-search-dropdown.active {
  display: block;
}

.search-result-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  border-bottom: 1px solid var(--store-border);
  transition: background 0.15s ease;
}

.search-result-item:last-child {
  border-bottom: none;
}

.search-result-item:hover {
  background: var(--store-pill-bg);
}

.search-result-icon {
  font-size: 22px;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: var(--store-pill-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.search-result-info {
  flex: 1;
}

.search-result-title {
  font-weight: 700;
  font-size: 13.5px;
  color: var(--store-text-main);
}

.search-result-category {
  font-size: 11.5px;
  color: var(--store-text-muted);
}

/* Header Action Right */
.store-header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.live-vps-pill {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  background: rgba(16, 185, 129, 0.1);
  color: var(--wg-emerald);
  border: 1px solid rgba(16, 185, 129, 0.25);
}

.live-pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--wg-emerald);
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.theme-toggle-btn {
  background: var(--store-pill-bg);
  border: 1px solid var(--store-border);
  color: var(--store-text-main);
  width: 38px;
  height: 38px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.theme-toggle-btn:hover {
  background: var(--store-border);
  transform: rotate(15deg);
}

.btn-header-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  background: linear-gradient(135deg, var(--wg-primary), var(--wg-accent-cyan));
  color: white;
  text-decoration: none;
  font-size: 12.5px;
  font-weight: 700;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
  transition: all 0.2s ease;
}

.btn-header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.45);
}

/* ==========================================================================
   2. STORE MAIN LAYOUT (SIDEBAR + STAGE)
   ========================================================================== */
.store-layout {
  display: flex;
  min-height: calc(100vh - 68px);
}

/* Left Navigation Rail (Microsoft Store Style) */
.store-sidebar {
  width: 250px;
  background: var(--store-sidebar-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-right: 1px solid var(--store-border);
  position: sticky;
  top: 68px;
  height: calc(100vh - 68px);
  overflow-y: auto;
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.sidebar-nav-title {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--store-text-muted);
  padding: 8px 12px 6px;
}

.sidebar-menu-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-bottom: 20px;
}

.sidebar-item-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  background: transparent;
  border: 1px solid transparent;
  color: var(--store-text-sub);
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: all 0.15s ease;
  position: relative;
}

.sidebar-item-btn:hover {
  background: var(--store-pill-bg);
  color: var(--store-text-main);
}

.sidebar-item-btn.active {
  background: var(--store-surface);
  color: var(--wg-primary);
  font-weight: 700;
  box-shadow: var(--store-shadow-sm);
  border-color: var(--store-border);
}

[data-theme="dark"] .sidebar-item-btn.active {
  background: rgba(37, 99, 235, 0.15);
  border-color: rgba(37, 99, 235, 0.3);
}

.sidebar-item-btn.active::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  bottom: 20%;
  width: 3.5px;
  border-radius: 0 4px 4px 0;
  background: var(--wg-primary);
}

.sidebar-item-icon {
  font-size: 17px;
  width: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sidebar-badge {
  margin-left: auto;
  font-size: 10.5px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: var(--radius-full);
  background: var(--store-pill-bg);
  color: var(--store-text-muted);
}

/* Main Store Stage */
.store-main-stage {
  flex: 1;
  padding: 24px 36px 64px;
  max-width: 1560px;
  overflow-x: hidden;
}

/* ==========================================================================
   3. HERO SPOTLIGHT CAROUSEL (FEATURED BANNER)
   ========================================================================== */
.store-hero-spotlight {
  background: var(--store-hero-gradient);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 36px 44px;
  margin-bottom: 36px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--store-shadow-lg);
  color: white;
  min-height: 320px;
  display: flex;
  align-items: center;
}

.hero-mesh-overlay {
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.25) 0%, rgba(37, 99, 235, 0.1) 50%, transparent 70%);
  filter: blur(50px);
  pointer-events: none;
  z-index: 1;
}

.hero-content-inner {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 32px;
}

.hero-text-col {
  max-width: 620px;
}

.hero-featured-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  background: rgba(245, 158, 11, 0.2);
  color: #fbbf24;
  border: 1px solid rgba(245, 158, 11, 0.35);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 14px;
}

.hero-app-title {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 12px;
  color: #ffffff;
}

.hero-app-tagline {
  font-size: 15px;
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: 24px;
}

.hero-action-buttons {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-hero-launch {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 26px;
  border-radius: var(--radius-full);
  background: #ffffff;
  color: #0f172a;
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 4px 16px rgba(255, 255, 255, 0.25);
  transition: all 0.2s ease;
}

.btn-hero-launch:hover {
  transform: translateY(-2px);
  background: #f8fafc;
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.35);
}

.btn-hero-details {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.12);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.25);
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.2s ease;
}

.btn-hero-details:hover {
  background: rgba(255, 255, 255, 0.22);
}

.hero-preview-col {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-mockup-badge-box {
  width: 140px;
  height: 140px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(255,255,255,0.15), rgba(255,255,255,0.05));
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.3);
  animation: float-gentle 4s ease-in-out infinite;
}

@keyframes float-gentle {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hero-dots-indicator {
  position: absolute;
  bottom: 16px;
  left: 44px;
  display: flex;
  gap: 8px;
  z-index: 10;
}

.hero-dot {
  width: 24px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: all 0.2s ease;
}

.hero-dot.active {
  background: var(--wg-accent-gold);
  width: 36px;
}

/* ==========================================================================
   4. CATEGORY APP SHELVES (PLAY STORE HORIZONTAL CAROUSELS)
   ========================================================================== */
.store-shelf {
  margin-bottom: 40px;
}

.shelf-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 16px;
}

.shelf-title-group h2 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  color: var(--store-text-main);
  display: flex;
  align-items: center;
  gap: 10px;
}

.shelf-title-group p {
  font-size: 13px;
  color: var(--store-text-muted);
  margin-top: 2px;
}

.shelf-nav-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-shelf-scroll {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-full);
  background: var(--store-surface);
  border: 1px solid var(--store-border);
  color: var(--store-text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.15s ease;
  box-shadow: var(--store-shadow-sm);
}

.btn-shelf-scroll:hover {
  background: var(--wg-primary);
  color: white;
  border-color: var(--wg-primary);
}

.shelf-scroll-row {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 4px 4px 18px;
  scrollbar-width: thin;
}

/* Store Card Tile (Squircle Design) */
.app-card-tile {
  min-width: 290px;
  max-width: 310px;
  flex: 0 0 auto;
  scroll-snap-align: start;
  background: var(--store-surface);
  border: 1px solid var(--store-border);
  border-radius: var(--radius-lg);
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-decoration: none;
  color: inherit;
  box-shadow: var(--store-shadow-sm);
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  cursor: pointer;
}

.app-card-tile:hover {
  transform: translateY(-5px);
  box-shadow: var(--store-shadow-md);
  border-color: var(--store-border-hover);
}

.card-top-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 12px;
}

.card-app-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(6, 182, 212, 0.12));
  border: 1px solid var(--store-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.card-titles {
  flex: 1;
  min-width: 0;
}

.card-brand-name {
  font-family: var(--font-heading);
  font-size: 15.5px;
  font-weight: 800;
  color: var(--store-text-main);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 2px;
}

.card-sector-name {
  font-size: 11.5px;
  color: var(--store-text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 6px;
}

.card-rating-row {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--store-text-sub);
}

.rating-star {
  color: #f59e0b;
}

.card-tagline {
  font-size: 12px;
  color: var(--store-text-sub);
  line-height: 1.5;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-badges-row {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.card-badge-pill {
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--radius-full);
  background: var(--store-pill-bg);
  color: var(--store-text-sub);
  border: 1px solid var(--store-border);
}

.badge-offline {
  background: rgba(16, 185, 129, 0.08);
  color: var(--wg-emerald);
  border-color: rgba(16, 185, 129, 0.2);
}

/* Card Action Row */
.card-action-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--store-border);
}

.btn-card-launch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  background: var(--store-pill-bg);
  color: var(--wg-primary);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid var(--store-border);
  transition: all 0.15s ease;
}

.btn-card-launch:hover {
  background: var(--wg-primary);
  color: white;
  border-color: var(--wg-primary);
  transform: translateY(-1px);
}

.card-detail-hint {
  font-size: 11.5px;
  color: var(--store-text-muted);
  font-weight: 600;
}

/* ==========================================================================
   5. MODAL PLAY STORE APP DETAIL (FLUENT GLASS DIALOG)
   ========================================================================== */
.store-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: fadeIn 0.2s ease-out;
}

.store-modal-backdrop.active {
  display: flex;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.store-modal-dialog {
  background: var(--store-surface-elevated);
  border: 1px solid var(--store-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--store-shadow-lg);
  max-width: 820px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  display: flex;
  flex-direction: column;
  animation: slideUp 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideUp {
  from { transform: translateY(24px) scale(0.98); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}

.modal-close-btn {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background: var(--store-pill-bg);
  border: 1px solid var(--store-border);
  color: var(--store-text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  z-index: 10;
  transition: all 0.15s ease;
}

.modal-close-btn:hover {
  background: var(--wg-rose);
  color: white;
  border-color: var(--wg-rose);
}

/* Modal App Header */
.modal-header-section {
  padding: 32px 32px 24px;
  border-bottom: 1px solid var(--store-border);
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.modal-app-icon {
  width: 84px;
  height: 84px;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--wg-primary), var(--wg-accent-cyan));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 44px;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3);
}

.modal-app-titles h2 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  color: var(--store-text-main);
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.verified-dev-badge {
  font-size: 12px;
  font-weight: 700;
  color: var(--wg-primary);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.modal-app-subtitle {
  font-size: 14px;
  color: var(--store-text-muted);
  margin-bottom: 14px;
}

/* Modal Metrics Row (Play Store Style) */
.modal-metrics-bar {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 12px 18px;
  background: var(--store-pill-bg);
  border-radius: var(--radius-md);
  border: 1px solid var(--store-border);
}

.metric-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.metric-val {
  font-weight: 800;
  font-size: 13.5px;
  color: var(--store-text-main);
}

.metric-lbl {
  font-size: 10px;
  color: var(--store-text-muted);
  text-transform: uppercase;
}

.metric-divider {
  width: 1px;
  height: 24px;
  background: var(--store-border);
}

/* Modal Actions Cluster */
.modal-actions-cluster {
  padding: 20px 32px;
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--store-border);
  background: var(--store-acrylic);
}

.btn-modal-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  background: var(--wg-emerald);
  color: white;
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 800;
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.35);
  transition: all 0.2s ease;
}

.btn-modal-primary:hover {
  background: #059669;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(16, 185, 129, 0.5);
}

.btn-modal-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: var(--radius-full);
  background: var(--store-surface);
  color: var(--store-text-main);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 700;
  border: 1px solid var(--store-border);
  transition: all 0.2s ease;
}

.btn-modal-secondary:hover {
  background: var(--store-pill-bg);
  border-color: var(--store-border-hover);
}

.btn-modal-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: var(--radius-full);
  background: #25d366;
  color: white;
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 700;
  transition: all 0.2s ease;
}

.btn-modal-wa:hover {
  background: #1eb954;
  transform: translateY(-2px);
}

.btn-modal-copy {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  border-radius: var(--radius-full);
  background: transparent;
  color: var(--store-text-muted);
  border: 1px solid var(--store-border);
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  margin-left: auto;
}

.btn-modal-copy:hover {
  color: var(--store-text-main);
  background: var(--store-pill-bg);
}

/* Modal Screenshots Gallery Section (Play Store Style) */
.modal-screenshots-section {
  padding: 18px 32px 20px;
  border-bottom: 1px solid var(--store-border);
  background: var(--store-surface);
}

.screenshots-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-size: 13px;
  font-weight: 700;
  color: var(--store-text-main);
}

.screenshots-badge-count {
  font-size: 11px;
  font-weight: 600;
  color: var(--store-text-muted);
  background: var(--store-pill-bg);
  padding: 2px 8px;
  border-radius: var(--radius-full);
  border: 1px solid var(--store-border);
}

.screenshots-scroll-row {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
  scrollbar-width: thin;
}

.screenshot-thumb-card {
  flex: 0 0 250px;
  scroll-snap-align: start;
  cursor: pointer;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--store-border);
  background: var(--store-surface-elevated);
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  box-shadow: var(--store-shadow-sm);
  display: flex;
  flex-direction: column;
}

.screenshot-thumb-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: var(--store-shadow-md);
  border-color: var(--wg-primary);
}

.screenshot-thumb-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  background: #0f172a;
  border-bottom: 1px solid var(--store-border);
}

.screenshot-caption-tag {
  padding: 8px 10px;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--store-text-sub);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--store-surface);
}

.screenshot-zoom-hint {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(0, 0, 0, 0.65);
  color: white;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.18s ease;
  pointer-events: none;
}

.screenshot-thumb-card:hover .screenshot-zoom-hint {
  opacity: 1;
  transform: scale(1);
}

/* ==========================================================================
   LIGHTBOX FULLSCREEN ZOOM OVERLAY
   ========================================================================== */
.lightbox-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 24px;
}

.lightbox-backdrop.active {
  display: flex;
  opacity: 1;
}

.lightbox-dialog {
  max-width: 90vw;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  user-select: none;
}

.lightbox-image {
  max-width: 100%;
  max-height: 76vh;
  border-radius: var(--radius-lg);
  object-fit: contain;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.18);
  animation: lightboxZoomIn 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes lightboxZoomIn {
  from { transform: scale(0.95); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.lightbox-caption {
  margin-top: 14px;
  color: #f8fafc;
  font-size: 14.5px;
  font-weight: 700;
  text-align: center;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
  letter-spacing: 0.2px;
}

.lightbox-counter {
  margin-top: 5px;
  color: #94a3b8;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
}

.lightbox-close-btn {
  position: absolute;
  top: 24px;
  right: 28px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  z-index: 100001;
}

.lightbox-close-btn:hover {
  background: var(--wg-rose);
  border-color: var(--wg-rose);
  transform: scale(1.08) rotate(90deg);
}

.lightbox-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: white;
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  z-index: 100001;
}

.lightbox-nav-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-50%) scale(1.12);
}

.lightbox-nav-btn.prev {
  left: 28px;
}

.lightbox-nav-btn.next {
  right: 28px;
}

@media (max-width: 768px) {
  .screenshot-thumb-card {
    flex: 0 0 200px;
  }
  .lightbox-nav-btn {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
  .lightbox-nav-btn.prev {
    left: 10px;
  }
  .lightbox-nav-btn.next {
    right: 10px;
  }
  .lightbox-close-btn {
    top: 14px;
    right: 14px;
  }
}

/* Modal Tabs Navigation */
.modal-tabs-bar {
  display: flex;
  gap: 8px;
  padding: 0 32px;
  border-bottom: 1px solid var(--store-border);
  background: var(--store-surface);
}

.modal-tab-btn {
  padding: 14px 18px;
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  color: var(--store-text-muted);
  font-family: var(--font-main);
  font-size: 13.5px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.modal-tab-btn:hover {
  color: var(--store-text-main);
}

.modal-tab-btn.active {
  color: var(--wg-primary);
  border-bottom-color: var(--wg-primary);
}

/* Modal Body Tab Content */
.modal-body-content {
  padding: 28px 32px 36px;
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
}

/* Problem Solution List */
.problem-solution-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.problem-card-item {
  padding: 14px 18px;
  border-radius: var(--radius-md);
  background: var(--store-pill-bg);
  border: 1px solid var(--store-border);
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.problem-icon {
  color: var(--wg-rose);
  font-size: 16px;
  margin-top: 2px;
}

.feature-pill-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 12px;
}

.feature-pill-card {
  padding: 14px 18px;
  border-radius: var(--radius-md);
  background: var(--store-pill-bg);
  border: 1px solid var(--store-border);
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--store-text-main);
}

.feature-check {
  color: var(--wg-emerald);
  font-weight: 800;
}

/* ==========================================================================
   6. JASA PEMBUATAN APLIKASI MURAH SECTION (PRESERVED & UPGRADED)
   ========================================================================== */
.store-jasa-section {
  margin: 0 0 36px 0;
  padding: 36px 40px;
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.95), rgba(15, 23, 42, 0.98));
  border: 1px solid rgba(245, 158, 11, 0.35);
  border-radius: var(--radius-xl);
  box-shadow: 0 16px 40px -8px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(245, 158, 11, 0.15);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.jasa-glow-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.4);
  color: #fbbf24;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.jasa-grid-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 36px;
  align-items: center;
}

.jasa-content-left h2 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
  line-height: 1.25;
}

.jasa-content-left p {
  font-size: 14px;
  color: #cbd5e1;
  line-height: 1.65;
  margin-bottom: 24px;
}

.jasa-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 28px;
}

.jasa-feat-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 12.5px;
  color: #f1f5f9;
}

.jasa-feat-item.highlight {
  background: rgba(16, 185, 129, 0.12);
  border-color: rgba(16, 185, 129, 0.4);
  color: #6ee7b7;
  font-weight: 700;
}

.jasa-feat-item .icon {
  color: #34d399;
  font-weight: 800;
}

.btn-jasa-wa-main {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #0f172a;
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 4px 18px rgba(245, 158, 11, 0.4);
  transition: all 0.2s ease;
}

.btn-jasa-wa-main:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.55);
}

/* Jasa Right Pricing & Steps Card */
.jasa-card-right {
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
}

.jasa-price-tag {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 800;
  color: #fbbf24;
  margin: 6px 0;
}

.jasa-price-sub {
  font-size: 12px;
  color: #94a3b8;
  margin-bottom: 20px;
}

.jasa-steps-box {
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-sm);
  padding: 16px;
  text-align: left;
  font-size: 12px;
  color: #cbd5e1;
  margin-bottom: 20px;
  line-height: 1.6;
}

.btn-jasa-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 700;
  transition: all 0.2s ease;
}

.btn-jasa-contact:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* ==========================================================================
   7. RESPONSIVE BREAKPOINTS (MOBILE & TABLET)
   ========================================================================== */
@media (max-width: 1024px) {
  .store-sidebar {
    position: fixed;
    left: -260px;
    z-index: 1010;
    box-shadow: var(--store-shadow-lg);
  }
  .store-sidebar.open {
    transform: translateX(260px);
  }
  .store-main-stage {
    padding: 20px;
  }
  .jasa-grid-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .store-header {
    padding: 0 16px;
  }
  .store-search-container {
    margin: 0 10px;
  }
  .live-vps-pill {
    display: none;
  }
  .hero-content-inner {
    flex-direction: column;
    text-align: center;
  }
  .hero-preview-col {
    display: none;
  }
  .hero-action-buttons {
    justify-content: center;
  }
  .modal-header-section {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .modal-app-titles h2 {
    justify-content: center;
  }
  .jasa-features-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   8. FLOATING WHATSAPP ACTION BUTTON (FAB)
   ========================================================================== */
.wg-floating-wa {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #ffffff;
  text-decoration: none;
  padding: 13px 24px;
  border-radius: var(--radius-full);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.25);
  font-family: var(--font-main);
  font-weight: 800;
  font-size: 13.5px;
  letter-spacing: 0.2px;
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

.wg-floating-wa:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 14px 35px rgba(37, 211, 102, 0.6), 0 0 0 1.5px rgba(255, 255, 255, 0.4);
  color: #ffffff;
}

.wg-floating-wa .icon-wa {
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wg-floating-wa .wa-status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.9);
  animation: pulseWa 2s infinite ease-in-out;
}

@keyframes pulseWa {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.35); opacity: 0.7; }
}

@media (max-width: 640px) {
  .wg-floating-wa {
    bottom: 20px;
    right: 20px;
    padding: 12px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    justify-content: center;
  }
  .wg-floating-wa .text,
  .wg-floating-wa .wa-status-dot {
    display: none;
  }
}

