@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Inter:wght@400;500;600;700&family=Pixelify+Sans:wght@400..700&display=swap");

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Color Palette */
  --bg: #070a13;
  --bg-darker: #05070d;
  --bg2: #0f1524;
  --bg3: #161f33;
  --bg-glass: rgba(15, 21, 36, 0.7);
  --bg-glass-active: rgba(22, 31, 51, 0.85);
  
  --border: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(140, 44, 237, 0.4);
  --border2: rgba(255, 255, 255, 0.15);
  
  --text: #f3f4f6;
  --text-muted: #9ca3af;
  --text-dark: #6b7280;
  
  --accent: #8c2ced; /* Martapedia Purple */
  --accent-rgb: 140, 44, 237;
  --accent-purple: #a55eea;
  --accent-green: #10b981;
  --accent-red: #ef4444;
  --accent-yellow: #f59e0b;
  --font-pixel: 'Pixelify Sans', 'Plus Jakarta Sans', sans-serif;
  --pixel-pattern: repeating-linear-gradient(45deg, rgba(140, 44, 237, 0.03), rgba(140, 44, 237, 0.03) 10px, transparent 10px, transparent 20px);
  
  /* Gradients */
  --grad: linear-gradient(135deg, #090e1a 0%, #060912 100%);
  --grad-accent: linear-gradient(135deg, #8c2ced 0%, #4834d4 100%);
  --grad-green: linear-gradient(135deg, #10b981 0%, #059669 100%);
  
  /* Shadows */
  --shadow-neon: 0 0 20px rgba(140, 44, 237, 0.2);
  --shadow-neon-strong: 0 0 30px rgba(140, 44, 237, 0.45);
  --shadow-box: 0 8px 32px 0 rgba(0, 0, 0, 0.4);
  --shadow-glass: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  
  /* Radius & Transitions */
  --radius: 16px;
  --radius-lg: 24px;
  --radius-sm: 8px;
  --trans: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
  min-height: 100vh;
  background-color: var(--bg);
  background-image: var(--grad);
  color: var(--text);
  font-family: 'Inter', -apple-system, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: var(--pixel-pattern);
  pointer-events: none;
  z-index: -1;
  opacity: 0.8;
}

/* Glowing Background Blobs */
.glowing-bg-blob {
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, rgba(140, 44, 237, 0.08) 0%, rgba(72, 52, 212, 0.04) 50%, rgba(0,0,0,0) 70%);
  z-index: -1;
  pointer-events: none;
  border-radius: 50%;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--trans);
}

button, input, textarea, select {
  font-family: inherit;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

main.wrap {
  min-height: calc(100vh - 180px);
  padding-bottom: 80px;
}

/* Header & Navbar */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 16px 0;
  background: rgba(7, 10, 19, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-pixel);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #fff;
  text-shadow: 0 0 10px rgba(140, 44, 237, 0.4);
}

.brand-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: var(--grad-accent);
  color: #fff;
  box-shadow: 0 0 15px rgba(140, 44, 237, 0.4);
}

.brand-logo svg {
  width: 20px;
  height: 20px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 50px;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--trans);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.btn.primary-gradient {
  background: var(--grad-accent);
  color: #fff;
  box-shadow: 0 4px 15px rgba(140, 44, 237, 0.3);
  animation: buttonGlow 3s infinite ease-in-out;
}

.btn.primary-gradient:hover {
  box-shadow: 0 6px 20px rgba(140, 44, 237, 0.5);
}

.btn.secondary-glass {
  background: var(--bg-glass);
  border: 1.5px solid var(--border2);
  color: #fff;
}

.btn.secondary-glass:hover {
  background: var(--bg-glass-active);
  border-color: var(--accent);
  box-shadow: var(--shadow-neon);
}

.btn.danger {
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid var(--accent-red);
  color: #fca5a5;
}

.btn.danger:hover {
  background: var(--accent-red);
  color: #fff;
}

.nav-btn {
  padding: 10px 18px;
}

.nav-svg {
  display: inline-flex;
  align-items: center;
}

.nav-svg svg {
  width: 18px;
  height: 18px;
}

/* Cart Counter Pulse Animation */
.btn.nav-btn.pulse {
  position: relative;
}

.btn.nav-btn.pulse::after {
  content: '';
  position: absolute;
  top: 2px;
  right: 2px;
  width: 8px;
  height: 8px;
  background-color: var(--accent-green);
  border-radius: 50%;
  animation: pulseGlow 1.5s infinite;
}

@keyframes pulseGlow {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.4; }
  100% { transform: scale(1); opacity: 1; }
}

/* Hero Section */
.store-hero {
  padding: 60px 0;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.badge-online {
  font-family: var(--font-pixel);
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 50px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  color: var(--accent-green);
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 20px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-green);
  border-radius: 50%;
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.hero-copy h1 {
  font-family: var(--font-pixel);
  font-size: clamp(34px, 5.5vw, 50px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 16px;
  color: #fff;
  text-shadow: 0 0 10px rgba(140, 44, 237, 0.3);
}

.hero-copy h1 span {
  background: var(--grad-accent);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-copy p {
  color: var(--text-muted);
  font-size: 16px;
  margin-bottom: 28px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 36px;
}

.popular-strip {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.strip-title {
  color: var(--text-dark);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.strip-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.popular-tag {
  font-family: var(--font-pixel);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
}

.popular-tag:hover {
  background: rgba(140, 44, 237, 0.08);
  border-color: var(--accent);
  color: #fff;
}

/* Hero Showcase Card */
.hero-showcase {
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: floatCard 6s ease-in-out infinite;
}

.showcase-card {
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-glass);
  position: relative;
  overflow: hidden;
}

.showcase-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, rgba(0,0,0,0) 75%);
  pointer-events: none;
}

.showcase-badge {
  font-family: var(--font-pixel);
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 50px;
  background: rgba(140, 44, 237, 0.1);
  border: 1px solid rgba(140, 44, 237, 0.2);
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.showcase-card h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 8px;
}

.showcase-card p {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 20px;
}

.verified-qris {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent-green);
}

.showcase-subcards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.showcase-subcard {
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-glass);
  transition: var(--trans);
  cursor: pointer;
}

.showcase-subcard:hover {
  transform: translateY(-4px) scale(1.02);
  border-color: var(--border-hover);
  box-shadow: 0 10px 25px rgba(140, 44, 237, 0.15), var(--shadow-box);
}

.subcard-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--trans);
}

.showcase-subcard:nth-child(1) .subcard-icon {
  background: rgba(255, 159, 67, 0.08);
  border: 1px solid rgba(255, 159, 67, 0.2);
  box-shadow: 0 0 15px rgba(255, 159, 67, 0.15);
}

.showcase-subcard:nth-child(2) .subcard-icon {
  background: rgba(84, 160, 255, 0.08);
  border: 1px solid rgba(84, 160, 255, 0.2);
  box-shadow: 0 0 15px rgba(84, 160, 255, 0.15);
}

.showcase-subcard:hover:nth-child(1) .subcard-icon {
  background: rgba(255, 159, 67, 0.15);
  border-color: rgba(255, 159, 67, 0.4);
  box-shadow: 0 0 20px rgba(255, 159, 67, 0.3);
  transform: scale(1.08) rotate(5deg);
}

.showcase-subcard:hover:nth-child(2) .subcard-icon {
  background: rgba(84, 160, 255, 0.15);
  border-color: rgba(84, 160, 255, 0.4);
  box-shadow: 0 0 20px rgba(84, 160, 255, 0.3);
  transform: scale(1.08) rotate(-5deg);
}

/* Toolbar Section */
.toolbar-section {
  padding: 30px 0 20px;
}

.toolbar-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 20px;
}

.toolbar-title h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: #fff;
}

.toolbar-title p {
  font-size: 14px;
  color: var(--text-muted);
}

.toolbar-count-badge {
  font-family: var(--font-pixel);
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1.5px solid var(--border);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
}

.count-num {
  color: var(--accent);
  font-weight: 800;
}

/* Product Cards */
.products-section {
  padding: 10px 0 60px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.product-card {
  background: var(--bg-glass);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-glass);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: var(--trans);
  animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-neon), var(--shadow-box);
}

.thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, rgba(140, 44, 237, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%), var(--bg2);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .thumb img {
  transform: scale(1.08);
}

.avatar-fallback {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--accent);
  box-shadow: inset 0 0 10px rgba(140, 44, 237, 0.1);
}

.category-badge {
  font-family: var(--font-pixel);
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(7, 10, 19, 0.8);
  border: 1px solid var(--border2);
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  backdrop-filter: blur(4px);
}

.card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 8px;
}

.product-title a:hover {
  color: var(--accent);
}

.product-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 38px;
}

.meta-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: auto;
  margin-bottom: 16px;
}

.price-container {
  display: flex;
  flex-direction: column;
}

.price-label {
  font-size: 11px;
  color: var(--text-dark);
}

.price {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
}

.stock-badge {
  font-family: var(--font-pixel);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
}

.stock-badge.in-stock {
  background: rgba(16, 185, 129, 0.1);
  color: var(--accent-green);
}

.stock-badge.in-stock .stock-dot {
  width: 6px;
  height: 6px;
  background: var(--accent-green);
  border-radius: 50%;
}

.stock-badge.out-of-stock {
  background: rgba(239, 68, 68, 0.1);
  color: var(--accent-red);
}

.stock-badge.out-of-stock .stock-dot {
  width: 6px;
  height: 6px;
  background: var(--accent-red);
  border-radius: 50%;
}

.card-btn {
  width: 100%;
  border-radius: 12px;
  background: var(--bg3);
  border: 1px solid var(--border);
  color: #fff;
  font-weight: 600;
}

.product-card:hover .card-btn {
  background: var(--grad-accent);
  border-color: transparent;
  box-shadow: 0 4px 10px rgba(140, 44, 237, 0.2);
}

/* Service Info Section */
.service-section,
.steps-section,
.faq-section {
  padding: 40px 0 60px;
  border-top: 1px solid var(--border);
}

.text-center {
  text-align: center;
}

.section-head {
  margin-bottom: 40px;
}

.section-eyebrow {
  font-family: var(--font-pixel);
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: block;
  margin-bottom: 8px;
}

.section-head h2 {
  font-family: var(--font-pixel);
  font-size: clamp(26px, 4vw, 34px);
  font-weight: 700;
  color: #fff;
  text-shadow: 0 0 8px rgba(140, 44, 237, 0.25);
}

.section-desc {
  color: var(--text-muted);
  font-size: 14px;
  max-width: 600px;
  margin: 8px auto 0;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card-item {
  background: var(--bg-glass);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

.service-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  color: #fff;
}

.service-icon-box svg {
  width: 22px;
  height: 22px;
}

.service-icon-box.cyan-glow { color: var(--accent); box-shadow: 0 0 15px rgba(140, 44, 237, 0.2); }
.service-icon-box.purple-glow { color: var(--accent-purple); box-shadow: 0 0 15px rgba(139, 92, 246, 0.2); }
.service-icon-box.green-glow { color: var(--accent-green); box-shadow: 0 0 15px rgba(16, 185, 129, 0.2); }

.service-card-item h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 18px;
  font-weight: 800;
}

.service-card-item p {
  font-size: 13.5px;
  color: var(--text-muted);
}

.service-link {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  margin-top: auto;
}

.service-link:hover {
  text-shadow: 0 0 10px rgba(140, 44, 237, 0.5);
  transform: translateX(4px);
}

/* Steps Grid */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.step-card {
  background: var(--bg-glass);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  position: relative;
}

.step-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 28px;
  font-weight: 800;
  background: var(--grad-accent);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 12px;
}

.step-card h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 8px;
}

.step-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* FAQ Accordion */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-details {
  background: var(--bg-glass);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--trans);
}

.faq-details[open] {
  border-color: var(--border2);
  background: rgba(22, 31, 51, 0.4);
}

.faq-summary {
  list-style: none;
  padding: 18px 24px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  user-select: none;
}

.faq-summary::-webkit-details-marker {
  display: none;
}

.faq-icon {
  display: inline-flex;
  transition: transform 0.3s ease;
}

.faq-details[open] .faq-icon {
  transform: rotate(180deg);
  color: var(--accent);
}

.faq-content {
  padding: 0 24px 20px;
  font-size: 13.5px;
  color: var(--text-muted);
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  padding-top: 14px;
}

/* Product Detail Page */
.product-detail-section {
  padding: 40px 0;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 440px 1fr;
  gap: 40px;
  align-items: start;
}

.product-media-panel {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.product-media {
  background: var(--bg-glass);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  aspect-ratio: 16 / 11;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: var(--shadow-glass);
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-avatar-fallback {
  width: 100px;
  height: 100px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.03);
  border: 1.5px solid var(--border2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--accent);
}

.product-assurance {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.assurance-item {
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  display: flex;
  gap: 16px;
}

.assurance-icon-box {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(140, 44, 237, 0.08);
  border: 1px solid rgba(140, 44, 237, 0.15);
  color: var(--accent);
  flex-shrink: 0;
}

.assurance-icon-box svg {
  width: 18px;
  height: 18px;
}

.assurance-item strong {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  display: block;
}

.assurance-item span {
  font-size: 11.5px;
  color: var(--text-muted);
}

/* Product Info Panel */
.panel {
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-glass);
}

.product-info-panel h1 {
  font-family: var(--font-pixel);
  text-shadow: 0 0 10px rgba(140, 44, 237, 0.25);
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 800;
  margin-top: 10px;
  margin-bottom: 14px;
}

.product-description-text {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
}

.variant-section-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 18px;
  font-weight: 800;
  border-bottom: 1px solid var(--border);
  padding-bottom: 12px;
  margin-bottom: 16px;
}

.variant-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.variant-row {
  background: rgba(255, 255, 255, 0.02);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 20px;
  transition: var(--trans);
}

.variant-row:hover {
  border-color: var(--border-hover);
  background: rgba(140, 44, 237, 0.03);
}

.variant-details-col {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.variant-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}

.variant-meta-labels {
  display: flex;
  gap: 8px;
  align-items: center;
}

.duration-badge {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
}

.warranty-badge {
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
}

.warranty-badge.type-warranty {
  background: rgba(16, 185, 129, 0.1);
  color: var(--accent-green);
}

.warranty-badge.type-no-warranty {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
}

.variant-purchase-col {
  display: flex;
  align-items: center;
  gap: 20px;
}

.variant-pricing-stock {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.variant-action-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.qty-control input.qty {
  width: 60px;
  height: 40px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  background: var(--bg2);
  text-align: center;
  font-weight: 700;
  outline: none;
}

.qty-control input.qty:focus {
  border-color: var(--accent);
}

.add-to-cart-btn {
  height: 40px;
  padding: 0 16px;
  border-radius: 8px;
}

/* Cart Page Layout */
.cart-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 32px;
  padding: 40px 0;
}

.panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
  padding-bottom: 16px;
  margin-bottom: 24px;
}

.panel-icon-title {
  display: flex;
  align-items: center;
  gap: 12px;
}

.panel-icon-title svg {
  color: var(--accent);
}

.panel-icon-title h1 {
  font-family: var(--font-pixel);
  text-shadow: 0 0 10px rgba(140, 44, 237, 0.25);
  font-size: 20px;
  font-weight: 800;
}

.btn-clear-cart {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: none;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent-red);
  cursor: pointer;
}

.btn-clear-cart:hover {
  opacity: 0.8;
}

.items-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cart-item-row {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cart-item-details h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
}

.cart-item-category {
  font-size: 10px;
  color: var(--accent);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.cart-item-variant {
  font-size: 12.5px;
  color: var(--text-muted);
}

.cart-item-price-qty {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
}

.qty-badge {
  background: var(--bg3);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
}

.price-multiplier {
  font-size: 12.5px;
  color: var(--text-dark);
}

.cart-item-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.cart-subtotal {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  font-weight: 800;
}

.btn-remove-item {
  background: transparent;
  border: none;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border);
}

.btn-remove-item:hover {
  background: rgba(239, 68, 68, 0.1);
  color: var(--accent-red);
  border-color: var(--accent-red);
}

.cart-total-footer {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.total-label {
  font-size: 15px;
  font-weight: 700;
}

.total-price {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  text-shadow: 0 0 10px rgba(140, 44, 237, 0.2);
}

/* Empty Cart State */
.empty-cart-state {
  padding: 48px 20px;
}

.empty-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.empty-cart-state h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 8px;
}

.empty-cart-state p {
  margin-bottom: 24px;
}

/* Checkout Aside Panel */
.checkout-panel-aside {
  position: sticky;
  top: 92px;
}

.checkout-form-panel h2 {
  font-family: var(--font-pixel);
  text-shadow: 0 0 10px rgba(140, 44, 237, 0.25);
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 6px;
}

.subtitle-checkout {
  font-size: 12.5px;
  margin-bottom: 20px;
}

.checkout-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.form-group label svg {
  color: var(--accent);
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: var(--bg2);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 13.5px;
  outline: none;
  transition: var(--trans);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(140, 44, 237, 0.12);
  background: var(--bg3);
}

.form-group textarea {
  height: 80px;
  resize: vertical;
}

.checkout-submit-btn {
  width: 100%;
  border-radius: 10px;
  margin-top: 10px;
  height: 48px;
}

/* Notices & Alerts */
.notice {
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 13.5px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.notice.ok {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid var(--accent-green);
  color: #a7f3d0;
}

.notice.err {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid var(--accent-red);
  color: #fca5a5;
}

.notice.warn {
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid var(--accent-yellow);
  color: #fde68a;
}

.notice.warn svg {
  color: var(--accent-yellow);
}

/* Order Success & Details Page */
.order-detail-section {
  padding: 40px 0;
}

.order-progress-tracker {
  background: var(--bg-glass);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  box-shadow: var(--shadow-glass);
}

.tracker-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--text-dark);
}

.tracker-step .step-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg3);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
}

.tracker-step.completed {
  color: #fff;
}

.tracker-step.completed .step-icon {
  background: var(--accent-green);
  border-color: var(--accent-green);
  color: #fff;
}

.tracker-step.active {
  color: var(--accent);
}

.tracker-step.active .step-icon {
  background: rgba(140, 44, 237, 0.1);
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 0 10px rgba(140, 44, 237, 0.3);
}

.tracker-line {
  flex-grow: 1;
  height: 2px;
  background: var(--border);
  margin: 0 16px;
  margin-bottom: 24px;
}

.tracker-line.active {
  background: var(--accent-green);
}

.order-layout-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 32px;
}

.order-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 20px;
  margin-bottom: 24px;
}

.order-code-display {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
}

.order-code-display h1 {
  font-family: var(--font-pixel);
  text-shadow: 0 0 10px rgba(140, 44, 237, 0.25);
  font-size: 24px;
  font-weight: 800;
  color: #fff;
}

.btn-copy-code,
.btn-copy-account {
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-copy-code {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
}

.btn-copy-code:hover,
.btn-copy-account:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.invoice-id-text {
  font-size: 11.5px;
  font-family: monospace;
}

.status-badge {
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.status-badge.status-pending_payment { background: rgba(245, 158, 11, 0.1); border: 1px solid var(--accent-yellow); color: var(--accent-yellow); }
.status-badge.status-processing { background: rgba(140, 44, 237, 0.1); border: 1px solid var(--accent); color: var(--accent); }
.status-badge.status-completed { background: rgba(16, 185, 129, 0.1); border: 1px solid var(--accent-green); color: var(--accent-green); }

.order-items-summary {
  margin-bottom: 24px;
}

.order-items-summary h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 12px;
}

.order-item-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.item-name-variant {
  display: flex;
  flex-direction: column;
}

.item-name-variant strong {
  font-size: 14px;
}

.item-name-variant span {
  font-size: 12px;
}

.item-subtotal {
  font-weight: 600;
  font-size: 14px;
}

.order-totals-summary {
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 13.5px;
}

.summary-row.unique-row {
  color: var(--accent-yellow);
}

.summary-row.total-row {
  border-top: 1px solid var(--border);
  padding-top: 10px;
  font-size: 15px;
  font-weight: 700;
}

.summary-row.total-row .highlight {
  font-size: 20px;
  color: #fff;
  text-shadow: 0 0 10px rgba(0,174,214,0.2);
}

/* Delivery Credentials Box */
.delivery-credentials-section {
  margin-top: 32px;
  border-top: 1px solid var(--border);
  padding-top: 24px;
}

.delivery-actions-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 20px 0 16px;
}

.delivery-actions-bar h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  font-weight: 800;
}

.delivery-download-buttons {
  display: flex;
  gap: 8px;
}

.btn-download {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
}

.btn-download.primary {
  background: var(--bg3);
  border: 1px solid var(--border2);
  color: #fff;
}

.btn-download.primary:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-download.secondary {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  color: var(--text-muted);
}

.btn-download.secondary:hover {
  background: rgba(255,255,255,0.05);
  color: #fff;
}

.delivery-credentials-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.account-detail-card {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg2);
  overflow: hidden;
}

.account-card-header {
  background: rgba(255,255,255,0.02);
  border-bottom: 1px solid var(--border);
  padding: 10px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.account-card-header strong {
  font-size: 12.5px;
  color: var(--accent);
}

.btn-copy-account {
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  border: 1px solid var(--border);
  padding: 3px 8px;
  border-radius: 4px;
  background: rgba(255,255,255,0.02);
}

.account-card-body {
  padding: 16px;
}

.account-card-body pre {
  font-family: 'Courier New', Courier, monospace;
  font-size: 13.5px;
  white-space: pre-wrap;
  word-break: break-all;
}

/* Payment QR Page Layout */
.qr-container h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 6px;
}

.subtitle-qr {
  font-size: 12px;
  margin-bottom: 20px;
}

.qr-wrapper {
  background: #fff;
  padding: 16px;
  border-radius: var(--radius);
  width: min(260px, 100%);
  margin: 0 auto 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.qr-image {
  width: 100%;
  aspect-ratio: 1;
}

.qr-placeholder {
  width: 100%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
  font-size: 13px;
  background: #f3f4f6;
  border-radius: 8px;
}

.payment-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

.btn-block {
  width: 100%;
  height: 44px;
  border-radius: 10px;
}

.footer-qr-text {
  font-size: 11px;
}

/* Orders Lookup Screen */
.orders-lookup-section {
  padding: 80px 0;
  display: flex;
  justify-content: center;
}

.lookup-panel {
  max-width: 540px;
  width: 100%;
}

.lookup-icon-box {
  width: 64px;
  height: 64px;
  background: rgba(140, 44, 237, 0.08);
  border: 1px solid rgba(140, 44, 237, 0.2);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin: 0 auto 20px;
}

.lookup-panel h1 {
  font-family: var(--font-pixel);
  text-shadow: 0 0 10px rgba(140, 44, 237, 0.25);
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 8px;
}

.lookup-desc {
  font-size: 13.5px;
  margin-bottom: 24px;
}

.lookup-form {
  margin-bottom: 24px;
}

.form-group-input {
  display: flex;
  gap: 8px;
  background: var(--bg2);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 6px;
  transition: var(--trans);
}

.form-group-input:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(140, 44, 237, 0.12);
}

.form-group-input input {
  flex-grow: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 0 12px;
  font-size: 14px;
  font-weight: 600;
}

.lookup-submit-btn {
  border-radius: 8px;
  padding: 0 18px;
  height: 40px;
}

.lookup-footer-note {
  border-top: 1px solid var(--border);
  padding-top: 18px;
  font-size: 12px;
  color: var(--text-muted);
}

/* Store Footer */
.store-footer {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  background: rgba(5, 7, 13, 0.5);
  text-align: center;
  font-size: 12.5px;
  color: var(--text-dark);
}

/* ------------------- Admin CSS Compatibility ------------------- */
.login-screen {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background-color: var(--bg);
}

.login-card {
  width: 100%;
  max-width: 440px;
  background: var(--bg-glass);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-box);
}

.login-card h2 {
  font-family: var(--font-pixel);
  text-shadow: 0 0 10px rgba(140, 44, 237, 0.25);
  font-size: 24px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 24px;
}

.login-card input {
  width: 100%;
  background: var(--bg2);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
  margin-bottom: 16px;
  outline: none;
  transition: var(--trans);
}

.login-card input:focus {
  border-color: var(--accent);
  background: var(--bg3);
}

.admin-body {
  display: grid;
  grid-template-columns: 240px 1fr;
  min-height: 100vh;
  background-color: var(--bg-darker);
}

.admin-sidebar {
  background: var(--bg);
  border-right: 1px solid var(--border);
  padding: 24px 16px;
}

.admin-sidebar .brand {
  border-bottom: 1px solid var(--border);
  padding-bottom: 20px;
  margin-bottom: 24px;
}

.admin-sidebar nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.admin-sidebar nav a {
  display: flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
}

.admin-sidebar nav a:hover {
  background: rgba(255,255,255,0.02);
  color: #fff;
}

.admin-sidebar nav a.active {
  background: rgba(140, 44, 237, 0.08);
  color: var(--accent);
  border: 1px solid rgba(140, 44, 237, 0.15);
}

.admin-main {
  padding: 32px;
  overflow-y: auto;
}

.admin-shell-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  background: var(--bg-glass);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 24px;
}

.admin-top h1 {
  font-family: var(--font-pixel);
  text-shadow: 0 0 10px rgba(140, 44, 237, 0.25);
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 4px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.stat {
  background: var(--bg-glass);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.stat span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  font-weight: 700;
}

.stat strong {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 24px;
  font-weight: 800;
  margin-top: 6px;
  color: #fff;
}

.admin-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 24px;
  align-items: start;
}

.table-wrap {
  background: var(--bg-glass);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
}

th {
  background: rgba(255,255,255,0.02);
  border-bottom: 1.5px solid var(--border);
  padding: 12px 18px;
  text-align: left;
  font-weight: 700;
  color: #fff;
}

td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
  vertical-align: middle;
}

tr:hover td {
  background: rgba(255,255,255,0.01);
  color: #fff;
}

/* Form Styles inside panels */
.form select, select {
  width: 100%;
  background: var(--bg2);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 10px 14px;
  outline: none;
  transition: var(--trans);
}
.form select:focus, select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(140, 44, 237, 0.12);
  background: var(--bg3);
}

.login-body-bg {
  background: var(--bg-darker);
  min-height: 100vh;
}

.btn-logout-sidebar {
  margin-top: auto;
  color: var(--accent-red) !important;
  display: flex !important;
  align-items: center;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  transition: var(--trans);
}

.btn-logout-sidebar:hover {
  background: rgba(239, 68, 68, 0.08) !important;
}

.table-action-form {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  min-width: 150px;
}

.table-action-form select {
  padding: 4px 8px;
  font-size: 12px;
  height: 30px;
  border-radius: 6px;
  background: var(--bg3);
  border: 1px solid var(--border);
  outline: none;
  cursor: pointer;
}

.table-action-form .btn {
  height: 30px;
  padding: 0 10px;
  font-size: 11px;
  border-radius: 6px;
}

/* Support Page Layout */
.support-layout-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 32px;
  padding: 40px 0;
  align-items: start;
}

.support-header {
  display: flex;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.support-icon-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(140, 44, 237, 0.08);
  border: 1.5px solid rgba(140, 44, 237, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  box-shadow: var(--shadow-neon);
}

.support-header h2 {
  font-family: var(--font-pixel);
  text-shadow: 0 0 10px rgba(140, 44, 237, 0.25);
  font-size: 20px;
  font-weight: 800;
  color: #fff;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
}

.contact-icon.wa {
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.25);
  color: #25d366;
}

.contact-icon.telegram {
  background: rgba(0, 136, 204, 0.1);
  border: 1px solid rgba(0, 136, 204, 0.25);
  color: #0088cc;
}

.contact-icon.clock {
  background: rgba(140, 44, 237, 0.1);
  border: 1px solid rgba(140, 44, 237, 0.25);
  color: var(--accent);
}

.contact-card strong {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  display: block;
}

.contact-card span {
  font-size: 12px;
  color: var(--text-muted);
}

/* Floating WhatsApp Widget */
.whatsapp-floating-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 999;
  text-decoration: none;
  cursor: pointer;
}

.wa-widget-bubble {
  background: var(--bg-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1.5px solid var(--border2);
  border-radius: 30px;
  padding: 8px 16px;
  box-shadow: var(--shadow-box);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 700;
  color: #fff;
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.whatsapp-floating-widget:hover .wa-widget-bubble {
  opacity: 1;
  transform: translateX(0);
}

.wa-status-dot {
  width: 8px;
  height: 8px;
  background-color: var(--accent-green);
  border-radius: 50%;
  animation: pulseDot 1.5s infinite;
}

.wa-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  transition: var(--trans);
}

.whatsapp-floating-widget:hover .wa-icon-box {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.wa-icon-box svg {
  width: 26px;
  height: 26px;
}

/* Live Purchase Toast Notification */
#live-toast-container {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 999;
  pointer-events: none;
}

.live-toast-card {
  background: rgba(15, 21, 36, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1.5px solid var(--border2);
  border-radius: var(--radius);
  padding: 14px 18px;
  box-shadow: var(--shadow-box);
  display: flex;
  align-items: center;
  gap: 14px;
  width: 320px;
  opacity: 0;
  transform: translateY(30px) scale(0.9);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.live-toast-card.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.live-toast-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(140, 44, 237, 0.1);
  border: 1px solid rgba(140, 44, 237, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 16px;
}

.live-toast-details {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.live-toast-title {
  font-size: 12.5px;
  font-weight: 700;
  color: #fff;
}

.live-toast-desc {
  font-size: 11.5px;
  color: var(--text-muted);
}

.live-toast-time {
  font-size: 10px;
  color: var(--text-dark);
}

/* ------------------- Responsive Layouts ------------------- */
@media (max-width: 1024px) {
  .support-layout-grid {
    grid-template-columns: 1fr;
  }
  .hero-container,
  .product-detail-grid,
  .cart-layout,
  .order-layout-grid,
  .admin-body,
  .admin-grid {
    grid-template-columns: 1fr;
  }
  
  .product-media-panel {
    max-width: 440px;
    margin: 0 auto;
    width: 100%;
  }

  .product-detail-section {
    padding: 28px 0;
  }

  .product-detail-grid {
    gap: 24px;
  }

  .product-info-panel,
  .product-media-panel {
    max-width: 760px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .product-media {
    aspect-ratio: 16 / 10;
  }

  .product-assurance {
    display: grid;
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    height: auto;
  }
}

@media (max-width: 768px) {
  .wrap {
    padding: 0 16px;
  }

  .product-detail-section {
    padding: 20px 0;
  }

  .product-detail-grid {
    gap: 18px;
  }

  .product-media {
    border-radius: 18px;
    aspect-ratio: 16 / 11;
  }

  .detail-avatar-fallback {
    width: 84px;
    height: 84px;
    border-radius: 22px;
    font-size: 30px;
  }

  .assurance-item {
    padding: 14px;
    gap: 12px;
  }

  .assurance-item strong {
    font-size: 13px;
  }

  .assurance-item span {
    font-size: 11px;
    line-height: 1.5;
  }

  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-actions {
    width: 100%;
    justify-content: flex-end;
  }

  .service-grid,
  .steps-grid,
  .stats {
    grid-template-columns: 1fr;
  }

  .showcase-subcards {
    grid-template-columns: 1fr;
  }

  .order-progress-tracker {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    gap: 16px;
  }

  .tracker-line {
    width: 2px;
    height: 24px;
    margin: 4px 15px;
  }

  .product-info-panel {
    padding: 20px;
    border-radius: 18px;
  }

  .detail-badge {
    position: static;
    display: inline-flex;
    margin-bottom: 10px;
  }

  .product-info-panel h1 {
    font-size: 24px;
    line-height: 1.2;
    margin-bottom: 10px;
  }

  .product-description-text {
    font-size: 13.5px;
    margin-bottom: 20px;
  }

  .variant-section-title {
    font-size: 16px;
    padding-bottom: 10px;
    margin-bottom: 14px;
  }

  .variant-list {
    gap: 12px;
  }

  .variant-row {
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: 12px;
    padding: 14px;
    border-radius: 14px;
  }

  .variant-meta-labels {
    flex-wrap: wrap;
    gap: 6px;
  }

  .variant-purchase-col {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .variant-pricing-stock {
    align-items: flex-start;
    gap: 6px;
  }

  .variant-action-row {
    width: 100%;
    gap: 10px;
  }

  .qty-control {
    flex: 0 0 84px;
  }

  .qty-control input.qty {
    width: 100%;
    height: 44px;
    font-size: 16px;
  }

  .add-to-cart-btn {
    width: 100%;
    flex: 1 1 auto;
    justify-content: center;
    height: 44px;
    min-width: 0;
  }
}

@media (max-width: 480px) {
  .wrap {
    padding: 0 12px;
  }

  .product-detail-section {
    padding: 16px 0;
  }

  .product-media {
    aspect-ratio: 4 / 3;
    border-radius: 16px;
  }

  .product-info-panel {
    padding: 16px;
    border-radius: 16px;
  }

  .product-info-panel h1 {
    font-size: 21px;
  }

  .product-description-text {
    font-size: 13px;
  }

  .assurance-item {
    border-radius: 14px;
  }

  .variant-name {
    font-size: 14px;
    line-height: 1.4;
  }

  .duration-badge,
  .warranty-badge,
  .stock-badge {
    font-size: 10px;
  }

  .variant-action-row {
    flex-direction: column;
    align-items: stretch;
  }

  .qty-control {
    flex: 1 1 auto;
  }

  .add-to-cart-btn {
    width: 100%;
  }
}

/* Lucide Icons Premium Styling */
.lucide {
  width: 18px;
  height: 18px;
  stroke-width: 2px;
  stroke: currentColor;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  display: inline-block;
  vertical-align: middle;
  transition: var(--trans);
}

.brand-logo .lucide {
  width: 22px;
  height: 22px;
  stroke-width: 2.5px;
  color: #fff;
}

.btn .lucide {
  margin-right: 6px;
}

/* Premium Footer Styling */
.premium-footer {
  background: rgba(7, 10, 19, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  padding: 60px 0 30px 0;
  margin-top: 80px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  font-family: var(--font-pixel);
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 20px;
  color: #fff;
  letter-spacing: -0.2px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul a {
  font-size: 13.5px;
  color: var(--text-muted);
  transition: var(--trans);
}

.footer-col ul a:hover {
  color: var(--accent);
  padding-left: 4px;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: var(--trans);
}

.social-btn:hover {
  color: #fff;
  transform: translateY(-2px);
}

.social-btn.wa:hover {
  background: rgba(37, 211, 102, 0.1);
  border-color: rgba(37, 211, 102, 0.3);
  color: #25d366;
}

.social-btn.telegram:hover {
  background: rgba(0, 136, 204, 0.1);
  border-color: rgba(0, 136, 204, 0.3);
  color: #0088cc;
}

.payment-badges {
  display: flex;
  gap: 10px;
}

.payment-badge {
  font-size: 11px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 6px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-muted);
}

.payment-badge.gopay {
  color: #00aed6;
  border-color: rgba(140, 44, 237, 0.2);
  background: rgba(140, 44, 237, 0.05);
}

.payment-badge.qris {
  color: #ef4444;
  border-color: rgba(239, 68, 68, 0.2);
  background: rgba(239, 68, 68, 0.05);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  font-size: 12.5px;
  color: var(--text-dark);
}

.mt-12 { margin-top: 12px; }
.mb-12 { margin-bottom: 12px; }

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}


/* ------------------- Custom Live Animations & Keyframes ------------------- */
@keyframes floatBlob {
  0% { transform: translate(-50%, 0) scale(1); }
  50% { transform: translate(-48%, 5%) scale(1.06); }
  100% { transform: translate(-50%, 0) scale(1); }
}

@keyframes floatCard {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0px); }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes buttonGlow {
  0% { box-shadow: 0 4px 15px rgba(140, 44, 237, 0.3); }
  50% { box-shadow: 0 4px 22px rgba(140, 44, 237, 0.55); }
  100% { box-shadow: 0 4px 15px rgba(140, 44, 237, 0.3); }
}

/* Staggered load for product cards */
.products-grid > *:nth-child(1) { animation-delay: 0.05s; }
.products-grid > *:nth-child(2) { animation-delay: 0.1s; }
.products-grid > *:nth-child(3) { animation-delay: 0.15s; }
.products-grid > *:nth-child(4) { animation-delay: 0.2s; }
.products-grid > *:nth-child(5) { animation-delay: 0.25s; }
.products-grid > *:nth-child(6) { animation-delay: 0.3s; }
.products-grid > *:nth-child(7) { animation-delay: 0.35s; }
.products-grid > *:nth-child(8) { animation-delay: 0.4s; }
