/* ============================================================
   NEXTSHOP — Dark Gaming Cyberpunk Theme
   Inspired by: nextshop.work
   ============================================================ */

:root {
  --bg:           #000000;
  --bg-deep:      #05070d;
  --bg-card:      rgba(15, 20, 32, 0.65);
  --surface:      rgba(255, 255, 255, 0.035);
  --surface-2:    rgba(255, 255, 255, 0.065);
  --surface-hover:rgba(56, 225, 255, 0.08);
  --line:         rgba(160, 200, 255, 0.1);
  --line-strong:  rgba(56, 225, 255, 0.35);
  --line-accent:  #38e1ff;
  
  --accent:       #38e1ff;
  --accent-2:     #7af0ff;
  --accent-glow:  rgba(56, 225, 255, 0.35);
  --accent-soft:  rgba(56, 225, 255, 0.12);
  --accent-fg:    #001824;
  
  --positive:     #39e6a0;
  --warning:      #ffc857;
  --negative:     #ff5b7a;
  --purple:       #b07aff;
  
  --text:         #f1f5fd;
  --text-muted:   #8ca0be;
  --text-faint:   #546682;
  
  --radius-sm:    8px;
  --radius:       14px;
  --radius-lg:    20px;
  --radius-full:  9999px;
  --maxw:         1240px;
  --ease:         cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* Base resets */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

body {
  font-family: "Kanit", "Oxanium", system-ui, -apple-system, sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

/* Ambient Radial Glows */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(900px 500px at 15% 5%, rgba(56, 225, 255, 0.07), transparent 65%),
    radial-gradient(800px 600px at 85% 25%, rgba(176, 122, 255, 0.05), transparent 70%),
    radial-gradient(700px 500px at 50% 85%, rgba(56, 225, 255, 0.05), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

/* Interactive Canvas for Stars/Dust */
#particleCanvas, #dustCanvas, .dust-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* Top 2px Accent Bar */
.top-accent-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  z-index: 1000;
  background: linear-gradient(90deg, #38e1ff, #7af0ff, #b07aff, #38e1ff);
  background-size: 300% 100%;
  animation: barFlow 4s linear infinite;
}

@keyframes barFlow {
  0% { background-position: 0% 0; }
  100% { background-position: 300% 0; }
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

/* ============================================================
   Header & Navigation
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 14px 0;
  transition: all 0.3s var(--ease);
}

.site-header.scrolled {
  padding: 10px 0;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 24px;
  background: rgba(8, 12, 22, 0.75);
  backdrop-filter: blur(24px) saturate(1.8);
  -webkit-backdrop-filter: blur(24px) saturate(1.8);
  border: 1px solid var(--line);
  border-radius: var(--radius-full);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 20px rgba(56, 225, 255, 0.05);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.nav:hover {
  border-color: rgba(56, 225, 255, 0.25);
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 0.5px;
  font-family: "Oxanium", "Kanit", sans-serif;
  text-transform: uppercase;
}

.logo-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: linear-gradient(135deg, rgba(56, 225, 255, 0.2), rgba(176, 122, 255, 0.15));
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  color: var(--accent);
  box-shadow: 0 0 15px var(--accent-glow);
}

.logo span {
  background: linear-gradient(90deg, #ffffff 40%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Nav Menu */
.menu {
  display: flex;
  align-items: center;
  gap: 6px;
}

.menu a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s var(--ease);
  position: relative;
}

.menu a svg {
  width: 16px;
  height: 16px;
  opacity: 0.75;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu a:hover {
  color: #fff;
  background: var(--surface-2);
}

.menu a:hover svg {
  transform: translateY(-1px);
  opacity: 1;
}

.menu a.active {
  color: #fff;
  background: rgba(56, 225, 255, 0.12);
  border: 1px solid rgba(56, 225, 255, 0.3);
  box-shadow: 0 0 16px rgba(56, 225, 255, 0.2);
}

.menu a.active svg {
  color: var(--accent);
  opacity: 1;
}

/* Nav Actions (Cart & Login) */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cart-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--text);
  cursor: pointer;
  transition: all 0.25s var(--ease);
}

.cart-btn:hover {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--accent);
  box-shadow: 0 0 15px var(--accent-glow);
}

.cart-btn svg {
  width: 18px;
  height: 18px;
}

.cart-badge {
  position: absolute;
  top: -3px;
  right: -3px;
  min-width: 19px;
  height: 19px;
  padding: 0 5px;
  font-size: 11px;
  font-weight: 700;
  line-height: 19px;
  text-align: center;
  color: #000;
  background: var(--accent);
  border-radius: var(--radius-full);
  box-shadow: 0 0 8px var(--accent);
}

.nav-login {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  font-size: 13.5px;
  font-weight: 600;
  border-radius: var(--radius-full);
  text-decoration: none;
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--text);
  transition: all 0.25s var(--ease);
}

.nav-login:hover {
  background: var(--surface-2);
  border-color: var(--line-strong);
  color: #fff;
}

/* Mobile Toggle */
.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 36px;
  height: 36px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: 0.3s ease;
}

/* ============================================================
   Buttons & Chips
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 24px;
  font-size: 14.5px;
  font-weight: 600;
  border-radius: var(--radius);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  position: relative;
  overflow: hidden;
  user-select: none;
  border: 1px solid transparent;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, #00b4db 100%);
  color: var(--accent-fg);
  font-weight: 700;
  box-shadow: 0 4px 20px var(--accent-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(56, 225, 255, 0.5);
  filter: brightness(1.08);
}

.btn-ghost {
  background: var(--surface);
  border-color: var(--line);
  color: var(--text);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  background: var(--surface-2);
  border-color: var(--line-strong);
  color: #fff;
  transform: translateY(-2px);
}

.btn-outline-accent {
  background: var(--accent-soft);
  border-color: var(--line-strong);
  color: var(--accent);
}

.btn-outline-accent:hover {
  background: var(--accent);
  color: var(--accent-fg);
  box-shadow: 0 0 20px var(--accent-glow);
}

/* ============================================================
   Hero Section
   ============================================================ */
.hero {
  padding: 60px 0 50px;
  position: relative;
  z-index: 1;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 40px;
}

.hero.hero-centered .hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}

.hero.hero-centered .hero-lead {
  margin: 0 auto 30px;
}

.hero.hero-centered .hero-cta {
  justify-content: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-soft);
  border: 1px solid rgba(56, 225, 255, 0.3);
  border-radius: var(--radius-full);
  margin-bottom: 20px;
  box-shadow: 0 0 15px rgba(56, 225, 255, 0.15);
}

.hero-badge::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent);
  animation: pulseDot 1.5s ease-in-out infinite;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}

.hero-h1 {
  font-size: 54px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 18px;
  color: #fff;
  font-family: "Oxanium", "Kanit", sans-serif;
}

.hero-h1 .glow-text {
  background: linear-gradient(135deg, #38e1ff 10%, #7af0ff 60%, #b07aff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 35px rgba(56, 225, 255, 0.3);
}

.hero-lead {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 30px;
  max-width: 540px;
}

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

/* Hero Visual Card */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-card-glow {
  position: relative;
  width: 100%;
  max-width: 440px;
  padding: 30px;
  background: linear-gradient(145deg, rgba(20, 26, 42, 0.7), rgba(8, 11, 20, 0.9));
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 40px rgba(56, 225, 255, 0.15);
  backdrop-filter: blur(20px);
  text-align: center;
  transition: transform 0.4s var(--ease), border-color 0.4s ease;
}

.hero-card-glow:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7), 0 0 50px rgba(56, 225, 255, 0.25);
}

.hero-img-wrap {
  width: 100%;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 20px;
}

.hero-img-wrap img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 15px 25px rgba(56, 225, 255, 0.35));
  animation: floatArt 4s ease-in-out infinite;
}

@keyframes floatArt {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero-card-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 15px;
  border-top: 1px solid var(--line);
}

.hero-card-title {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  text-align: left;
}

.hero-card-sub {
  font-size: 12px;
  color: var(--accent);
  text-align: left;
}

.hero-card-pill {
  padding: 4px 10px;
  background: rgba(57, 230, 160, 0.12);
  border: 1px solid rgba(57, 230, 160, 0.3);
  color: var(--positive);
  font-size: 11px;
  font-weight: 700;
  border-radius: var(--radius-full);
}

/* ============================================================
   Stats Strip
   ============================================================ */
.stats-strip {
  margin: 30px 0 60px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.stat-item {
  padding: 22px 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
  text-align: center;
  transition: all 0.3s var(--ease);
}

.stat-item:hover {
  transform: translateY(-3px);
  border-color: var(--line-strong);
  background: var(--surface-2);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.stat-num {
  font-size: 32px;
  font-weight: 800;
  font-family: "Oxanium", sans-serif;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 6px;
  background: linear-gradient(180deg, #ffffff 40%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

/* ============================================================
   Feature Highlights
   ============================================================ */
.features-sec {
  padding: 30px 0 60px;
}

.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feat-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
  transition: all 0.3s var(--ease);
}

.feat-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  background: var(--surface-2);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 25px rgba(56, 225, 255, 0.1);
}

.feat-ico {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  background: var(--accent-soft);
  border: 1px solid rgba(56, 225, 255, 0.3);
  border-radius: 12px;
  color: var(--accent);
  box-shadow: 0 0 15px rgba(56, 225, 255, 0.2);
}

.feat-ico svg {
  width: 22px;
  height: 22px;
}

.feat-info h3 {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.feat-info p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ============================================================
   Section Headers
   ============================================================ */
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.section-head.center {
  text-align: center;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.section-title-wrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sec-badge {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.sec-title {
  font-size: 30px;
  font-weight: 800;
  color: #fff;
  font-family: "Oxanium", "Kanit", sans-serif;
  letter-spacing: -0.5px;
}

.sec-sub {
  font-size: 14px;
  color: var(--text-muted);
}

.sec-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  border-radius: var(--radius-full);
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--text);
  text-decoration: none;
  transition: all 0.2s ease;
}

.sec-link:hover {
  border-color: var(--line-strong);
  background: var(--surface-2);
  color: #fff;
}

/* ============================================================
   Products Grid (NextShop Style)
   ============================================================ */
.product-sec {
  padding: 40px 0 70px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.product-card {
  display: flex;
  flex-direction: column;
  background: rgba(14, 18, 30, 0.65);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(16px);
}

.product-card:hover {
  transform: translateY(-4px) scale(1.01);
  border-color: var(--accent);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 25px rgba(56, 225, 255, 0.2);
}

/* Media Box */
.pc-media {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.pc-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .pc-media img {
  transform: scale(1.06);
}

/* Product Tag Badge */
.pc-tag {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 5;
  padding: 3px 9px;
  font-size: 11px;
  font-weight: 700;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  backdrop-filter: blur(10px);
}

.pc-tag.bestseller {
  background: rgba(255, 200, 87, 0.15);
  border: 1px solid rgba(255, 200, 87, 0.4);
  color: var(--warning);
}

.pc-tag.popular {
  background: rgba(56, 225, 255, 0.15);
  border: 1px solid rgba(56, 225, 255, 0.4);
  color: var(--accent);
}

.pc-tag.flagship {
  background: rgba(176, 122, 255, 0.15);
  border: 1px solid rgba(176, 122, 255, 0.4);
  color: var(--purple);
}

/* Stock tag */
.pc-stock {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.pc-stock .stock-label {
  color: var(--accent);
  font-weight: 600;
}

.pc-stock .stock-val {
  color: #fff;
  font-weight: 500;
}

/* Title & Spec */
.pc-title {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.8em;
}

.pc-spec {
  font-size: 12.5px;
  color: var(--text-muted);
  margin-bottom: 14px;
  line-height: 1.4;
}

/* Price */
.pc-price-wrap {
  margin-top: auto;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 12px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.pc-price-lbl {
  font-size: 13px;
  color: var(--text-muted);
}

.pc-price {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  font-family: "Oxanium", sans-serif;
}

.pc-price span {
  color: var(--accent);
}

/* Buy Action */
.buy-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 10px 14px;
  font-size: 13.5px;
  font-weight: 700;
  border-radius: var(--radius-sm);
  background: var(--accent);
  color: var(--accent-fg);
  text-decoration: none;
  cursor: pointer;
  border: 0;
  transition: all 0.25s var(--ease);
}

.buy-btn svg {
  width: 16px;
  height: 16px;
}

.buy-btn:hover {
  background: var(--accent-2);
  box-shadow: 0 4px 18px rgba(56, 225, 255, 0.45);
  transform: translateY(-1px);
}

/* ============================================================
   Category Grid
   ============================================================ */
.category-sec {
  padding: 40px 0 70px;
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.cat-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none;
  color: inherit;
  backdrop-filter: blur(12px);
  transition: all 0.3s var(--ease);
}

.cat-card:hover {
  transform: translateY(-3px);
  border-color: var(--line-strong);
  background: var(--surface-2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(56, 225, 255, 0.1);
}

.cat-ico-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(56, 225, 255, 0.1);
  border: 1px solid rgba(56, 225, 255, 0.2);
  color: var(--accent);
}

.cat-ico-box svg {
  width: 24px;
  height: 24px;
}

.cat-details h4 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.cat-details span {
  font-size: 12px;
  color: var(--text-muted);
}

/* ============================================================
   Customer Feedback (Infinite Marquee)
   ============================================================ */
.feedback-sec {
  padding: 50px 0 70px;
  overflow: hidden;
}

.marquee-wrap {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 10px 0;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: scrollMarquee 35s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

@keyframes scrollMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.review-card {
  width: 320px;
  flex-shrink: 0;
  padding: 20px;
  background: rgba(15, 20, 32, 0.7);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  backdrop-filter: blur(14px);
  transition: border-color 0.25s ease;
}

.review-card:hover {
  border-color: var(--line-strong);
}

.review-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.review-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--purple));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  color: #000;
}

.review-who {
  flex: 1;
}

.review-name {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

.review-meta {
  font-size: 11.5px;
  color: var(--text-faint);
}

.review-stars {
  color: #ffc857;
  font-size: 13px;
  letter-spacing: 1px;
}

.review-body {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ============================================================
   Slide-out Cart Drawer
   ============================================================ */
.cart-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

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

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 420px;
  height: 100%;
  background: #090d18;
  border-left: 1px solid var(--line);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.32, 1, 0.23, 1);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.7);
}

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

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid var(--line);
}

.cart-header h3 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-close {
  background: transparent;
  border: 0;
  color: var(--text-muted);
  font-size: 24px;
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: 0.2s ease;
}

.cart-close:hover {
  background: var(--surface-2);
  color: #fff;
}

.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cart-empty {
  margin: auto;
  text-align: center;
  color: var(--text-muted);
  font-size: 14px;
}

.cart-item {
  display: flex;
  gap: 14px;
  padding: 12px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  align-items: center;
}

.ci-thumb {
  width: 54px;
  height: 54px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
  flex-shrink: 0;
}

.ci-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ci-info {
  flex: 1;
}

.ci-title {
  font-size: 13.5px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}

.ci-price {
  font-size: 13px;
  color: var(--accent);
  font-weight: 700;
}

.ci-remove {
  background: transparent;
  border: 0;
  color: var(--text-faint);
  cursor: pointer;
  padding: 4px;
  transition: color 0.2s;
}

.ci-remove:hover {
  color: var(--negative);
}

.cart-footer {
  padding: 20px;
  border-top: 1px solid var(--line);
  background: rgba(8, 12, 22, 0.9);
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}

.cart-total-price {
  color: var(--accent);
  font-family: "Oxanium", sans-serif;
  font-size: 20px;
}

/* ============================================================
   Toast Notification
   ============================================================ */
.toast-msg {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  opacity: 0;
  background: #0d1527;
  border: 1px solid var(--accent);
  color: #fff;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), 0 0 20px var(--accent-glow);
  font-size: 14px;
  font-weight: 600;
  z-index: 2000;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.28), opacity 0.3s ease;
  pointer-events: none;
}

.toast-msg.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  border-top: 1px solid var(--line);
  background: #03050a;
  padding: 60px 0 30px;
  position: relative;
  z-index: 1;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
  margin-top: 14px;
  max-width: 340px;
}

.footer-discord-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 8px 16px;
  background: #5865f2;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  border-radius: var(--radius-sm);
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(88, 101, 242, 0.4);
  transition: transform 0.2s, filter 0.2s;
}

.footer-discord-badge:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
}

.footer-col h4 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-col a {
  display: block;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 13.5px;
  margin-bottom: 10px;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--accent);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 13px;
  color: var(--text-faint);
}

/* ============================================================
   Subpages / Details (Products, Checkout, About, Contact)
   ============================================================ */
.subpage {
  padding: 50px 0 80px;
  position: relative;
  z-index: 1;
}

/* Filter Bar in Products page */
.filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.filter-chips {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.filter-chip {
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  border-radius: var(--radius-full);
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-chip:hover {
  color: #fff;
  border-color: var(--line-strong);
}

.filter-chip.active {
  background: var(--accent-soft);
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 0 15px var(--accent-glow);
}

.search-box {
  position: relative;
  width: 260px;
}

.search-box input {
  width: 100%;
  padding: 9px 16px 9px 38px;
  font-size: 13.5px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-full);
  color: #fff;
  outline: none;
  transition: border-color 0.2s;
}

.search-box input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 15px var(--accent-glow);
}

.search-box svg {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  color: var(--text-muted);
}

/* Checkout & Detail Layout */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.breadcrumb a {
  color: var(--text-muted);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--accent);
}

.breadcrumb .sep {
  opacity: 0.4;
}

.pd-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.pd-gallery {
  background: rgba(14, 18, 30, 0.65);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  backdrop-filter: blur(16px);
}

.pd-main {
  width: 100%;
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.pd-main img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 25px rgba(56, 225, 255, 0.25));
}

.pd-thumbs {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.pd-thumb {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--surface);
  cursor: pointer;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s;
}

.pd-thumb.active, .pd-thumb:hover {
  border-color: var(--accent);
  box-shadow: 0 0 10px var(--accent-glow);
}

.pd-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pd-info {
  background: rgba(14, 18, 30, 0.65);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  backdrop-filter: blur(16px);
}

.pd-title {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  margin: 10px 0 14px;
  line-height: 1.25;
}

.pd-price {
  font-size: 28px;
  font-weight: 800;
  color: var(--accent);
  font-family: "Oxanium", sans-serif;
  margin-bottom: 16px;
}

.pd-desc {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
}

.pd-label {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.pd-options {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.pd-chip {
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s;
}

.pd-chip.active, .pd-chip:hover {
  background: var(--accent-soft);
  border-color: var(--accent);
  color: var(--accent);
}

.pd-qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  margin-bottom: 24px;
  overflow: hidden;
}

.pd-qty button {
  width: 36px;
  height: 36px;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  transition: background 0.2s;
}

.pd-qty button:hover {
  background: var(--surface-2);
}

.pd-qty input {
  width: 44px;
  height: 36px;
  background: transparent;
  border: 0;
  text-align: center;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  outline: none;
}

.pd-cta {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}

.pd-trust {
  display: flex;
  gap: 16px;
  font-size: 12.5px;
  color: var(--text-muted);
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.pd-section {
  background: rgba(14, 18, 30, 0.65);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  backdrop-filter: blur(16px);
  margin-bottom: 30px;
}

.pd-section h3 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  border-left: 3px solid var(--accent);
  padding-left: 12px;
}

.pd-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.pd-spec {
  display: flex;
  justify-content: space-between;
  padding: 10px 14px;
  background: var(--surface);
  border-radius: 6px;
  font-size: 13.5px;
}

.pd-spec .k { color: var(--text-muted); }
.pd-spec .v { color: #fff; font-weight: 600; }

/* Contact Form / Order Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field label {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
}

.field input, .field textarea {
  width: 100%;
  padding: 11px 16px;
  font-size: 14px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: #fff;
  outline: none;
  font-family: inherit;
  transition: border-color 0.2s;
}

.field input:focus, .field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 15px var(--accent-glow);
}

/* Contact Grid */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
  transition: all 0.25s ease;
}

.contact-card:hover {
  transform: translateY(-3px);
  border-color: var(--line-strong);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.c-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 2px;
}

.c-value {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
}

.c-value:hover {
  color: var(--accent);
}

/* Timeline in About page */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  padding-left: 20px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: var(--line-strong);
}

.timeline-item {
  position: relative;
  padding-left: 24px;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
}

.timeline-year {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 4px;
  font-family: "Oxanium", sans-serif;
}

.timeline-body h4 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.timeline-body p {
  font-size: 13.5px;
  color: var(--text-muted);
}

/* ============================================================
   AI Chat Widget (Cyber Neon Dark)
   ============================================================ */
.chat-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
}

.chat-toggle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #00a2c7);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(56, 225, 255, 0.4);
  transition: transform 0.25s, box-shadow 0.25s;
}

.chat-toggle:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 30px rgba(56, 225, 255, 0.6);
}

.chat-toggle svg {
  width: 24px;
  height: 24px;
}

.chat-panel {
  position: absolute;
  bottom: 66px;
  right: 0;
  width: 340px;
  height: 440px;
  background: #0a0f1d;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8), 0 0 25px rgba(56, 225, 255, 0.15);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(0.95);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.chat-widget.open .chat-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.chat-header {
  padding: 14px 16px;
  background: rgba(14, 21, 38, 0.9);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 12px;
}

.chat-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--accent-soft);
  border: 1px solid var(--accent);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.chat-avatar svg { width: 18px; height: 18px; }

.chat-title {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

.chat-sub {
  font-size: 11px;
  color: var(--positive);
  display: flex;
  align-items: center;
  gap: 4px;
}

.chat-sub::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--positive);
}

.chat-close {
  margin-left: auto;
  background: transparent;
  border: 0;
  color: var(--text-muted);
  font-size: 20px;
  cursor: pointer;
}

.chat-body {
  flex: 1;
  padding: 16px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.msg {
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 13px;
  line-height: 1.45;
  max-width: 85%;
  word-break: break-word;
}

.msg.bot {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  color: var(--text);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

.msg.user {
  background: linear-gradient(135deg, var(--accent), #0099bd);
  color: #000;
  font-weight: 600;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.chat-input {
  display: flex;
  padding: 10px;
  background: rgba(8, 12, 22, 0.9);
  border-top: 1px solid var(--line);
  gap: 8px;
}

.chat-input input {
  flex: 1;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  color: #fff;
  font-size: 13px;
  outline: none;
}

.chat-input input:focus {
  border-color: var(--accent);
}

.chat-send {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: var(--accent);
  border: 0;
  color: #000;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chat-send svg { width: 16px; height: 16px; }

/* ============================================================
   Responsive Media Queries
   ============================================================ */
@media (max-width: 1024px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .feat-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-lead { margin: 0 auto 30px; }
  .hero-cta { justify-content: center; }
  .hero-visual { margin-top: 20px; }
  .pd-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .menu {
    display: none;
    position: absolute;
    top: calc(100% + 12px);
    left: 20px;
    right: 20px;
    background: rgba(10, 15, 28, 0.95);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 16px;
    flex-direction: column;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7);
  }
  
  .menu.open { display: flex; }
  .nav-toggle { display: flex; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .cat-grid { grid-template-columns: 1fr; }
  .hero-h1 { font-size: 38px; }
  .footer-inner { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .product-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .hero-h1 { font-size: 32px; }
  .chat-panel { width: 300px; right: -10px; }
}

/* ============================================================
   Logo Additions & Brand Styles
   ============================================================ */
.nav-logo-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(56, 225, 255, 0.5));
  transition: transform 0.3s ease;
}

.logo:hover .nav-logo-img {
  transform: scale(1.08) rotate(3deg);
}

.footer-logo-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(56, 225, 255, 0.4));
}

/* ============================================================
   Hero Floating Logo (Right Side)
   ============================================================ */
.hero-logo-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

.logo-glow-backdrop {
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56, 225, 255, 0.3) 0%, rgba(176, 122, 255, 0.18) 45%, transparent 70%);
  filter: blur(45px);
  animation: pulseBackdrop 4s ease-in-out infinite alternate;
  z-index: 1;
  pointer-events: none;
}

@keyframes pulseBackdrop {
  0% { transform: scale(0.9); opacity: 0.6; }
  100% { transform: scale(1.18); opacity: 1; }
}

.logo-orbit-ring {
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  border: 1px dashed rgba(56, 225, 255, 0.28);
  animation: orbitSpin 24s linear infinite;
  z-index: 1;
  pointer-events: none;
}

.logo-orbit-ring::after {
  content: "";
  position: absolute;
  top: -4px;
  left: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
}

@keyframes orbitSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.hero-floating-logo {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 380px;
  max-height: 380px;
  object-fit: contain;
  filter: drop-shadow(0 0 35px rgba(56, 225, 255, 0.65)) drop-shadow(0 25px 50px rgba(0, 0, 0, 0.85));
  animation: floatHeroLogo 5s ease-in-out infinite;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.4s ease;
  cursor: pointer;
}

.hero-floating-logo:hover {
  transform: scale(1.06) translateY(-10px) !important;
  filter: drop-shadow(0 0 55px rgba(56, 225, 255, 0.95)) drop-shadow(0 30px 60px rgba(0, 0, 0, 0.95));
}

@keyframes floatHeroLogo {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  25% {
    transform: translateY(-16px) rotate(1.2deg);
  }
  50% {
    transform: translateY(-6px) rotate(-1deg);
  }
  75% {
    transform: translateY(-20px) rotate(0.8deg);
  }
}

.hero-chip-badge {
  position: absolute;
  bottom: 0;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(10, 15, 28, 0.9);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(56, 225, 255, 0.4);
  border-radius: var(--radius-full);
  box-shadow: 0 10px 30px rgba(0,0,0,0.6), 0 0 20px rgba(56, 225, 255, 0.25);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
}

.hero-chip-badge .live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  animation: pulseDot 1.5s infinite;
}

/* ============================================================
   NextShop Product Detail Page Styles
   ============================================================ */
.p-page-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: start;
  margin-top: 24px;
}

.p-eyebrow {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.p-title {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}

.p-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.p-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 600;
  border-radius: var(--radius-full);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-muted);
}

.p-badge.accent {
  border-color: rgba(56, 225, 255, 0.35);
  color: var(--accent);
  background: var(--accent-soft);
}

.p-badge.positive {
  border-color: rgba(69, 219, 137, 0.35);
  color: #45db89;
  background: rgba(69, 219, 137, 0.1);
}

.p-badge.hot {
  border-color: rgba(255, 122, 56, 0.35);
  color: #ff7a38;
  background: rgba(255, 122, 56, 0.1);
}

/* Product Main Image Frame */
.p-image-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  max-height: 480px;
  background: rgba(14, 18, 30, 0.7);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(56, 225, 255, 0.1);
  margin-bottom: 30px;
}

.p-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.p-image-frame:hover img {
  transform: scale(1.03);
}

.p-live-stock {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(10, 15, 28, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(69, 219, 137, 0.35);
  border-radius: var(--radius-full);
  color: #45db89;
  font-size: 12px;
  font-weight: 700;
}

.pulse-dot-green {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #45db89;
  box-shadow: 0 0 8px #45db89;
  animation: pulseDot 1.5s infinite;
}

/* Product Content Box */
.p-content-box {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  backdrop-filter: blur(14px);
  margin-bottom: 24px;
}

.p-content-box h2 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.p-desc-text {
  font-size: 14.5px;
  line-height: 1.85;
  color: var(--text-muted);
  white-space: pre-wrap;
}

/* Sticky Buy Panel (NextShop Style) */
.p-buy-panel {
  position: sticky;
  top: 100px;
  background: rgba(13, 17, 28, 0.85);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 0 30px rgba(56, 225, 255, 0.08);
  backdrop-filter: blur(20px);
  overflow: hidden;
}

.p-buy-head {
  padding: 22px 24px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}

.p-buy-eyebrow {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent);
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.p-price-display {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.p-price-big {
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  font-family: "Oxanium", sans-serif;
  letter-spacing: -0.5px;
}

.p-variants-count {
  font-size: 13px;
  color: var(--text-muted);
}

.p-buy-sub {
  margin-top: 6px;
  font-size: 12.5px;
  color: var(--text-muted);
}

.p-buy-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.p-field-label {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 10px;
}

/* Variant Selector Options */
.variant-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.variant-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-align: left;
  transition: all 0.25s var(--ease);
  color: inherit;
}

.variant-btn:hover {
  border-color: rgba(56, 225, 255, 0.4);
  background: rgba(56, 225, 255, 0.04);
  transform: translateY(-1px);
}

.variant-btn.active {
  border-color: var(--accent);
  background: var(--accent-soft);
  box-shadow: 0 0 20px rgba(56, 225, 255, 0.25);
}

.variant-radio {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1.5px solid var(--line-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.variant-btn.active .variant-radio {
  border-color: var(--accent);
  box-shadow: 0 0 8px var(--accent);
}

.variant-radio-inner {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0;
  transform: scale(0);
  transition: all 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.variant-btn.active .variant-radio-inner {
  opacity: 1;
  transform: scale(1);
}

.variant-info {
  flex: 1;
  min-width: 0;
}

.variant-name {
  font-size: 13.5px;
  font-weight: 600;
  color: #fff;
  display: block;
}

.variant-stock {
  font-size: 11.5px;
  color: var(--text-muted);
}

.variant-price {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--accent);
  font-family: "Oxanium", sans-serif;
  flex-shrink: 0;
}

/* Quantity Stepper */
.qty-stepper-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.qty-stepper {
  display: flex;
  align-items: center;
  gap: 8px;
}

.qty-btn {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  border-radius: 6px;
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  transition: all 0.2s ease;
}

.qty-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-soft);
}

.qty-input {
  width: 44px;
  text-align: center;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  font-family: "Oxanium", sans-serif;
}

/* Summary Row */
.p-summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px dashed var(--line);
}

.p-summary-label {
  font-size: 13.5px;
  color: var(--text-muted);
}

.p-summary-total {
  font-size: 22px;
  font-weight: 800;
  color: var(--accent);
  font-family: "Oxanium", sans-serif;
}

/* Action Stack */
.p-action-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn-instant-order {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 13px;
  font-size: 15px;
  font-weight: 700;
  border-radius: var(--radius-sm);
  background: var(--accent);
  color: var(--accent-fg);
  border: 0;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  box-shadow: 0 4px 20px rgba(56, 225, 255, 0.35);
}

.btn-instant-order:hover {
  background: var(--accent-2);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(56, 225, 255, 0.55);
}

.btn-add-cart {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px;
  font-size: 14.5px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line-strong);
  color: #fff;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-add-cart:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-soft);
}

.p-member-perk {
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-muted);
  font-size: 12px;
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

@media (max-width: 1024px) {
  .p-page-layout {
    grid-template-columns: 1fr;
  }
  .p-buy-panel {
    position: static;
  }
}

