/*
 * VEILED — Nuclear Override
 * This is the preview's EXACT CSS with vl- prefixed classes
 * to guarantee zero SellAuth/Bootstrap conflicts.
 */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --accent: #ddf44b;
  --accent-dim: rgba(221, 244, 75, 0.15);
  --accent-glow: rgba(221, 244, 75, 0.25);
  --bg: #080808;
  --bg-card: rgba(255, 255, 255, 0.03);
  --bg-card-hover: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.2);
  --text: #ffffff;
  --text-dim: rgba(255, 255, 255, 0.5);
  --text-mid: rgba(255, 255, 255, 0.7);
  --radius: 16px;
  --radius-sm: 10px;
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
}

/* ========== SELLAUTH RESETS — Kill all conflicts ========== */

body {
  font-family: var(--font-body) !important;
  background: var(--bg) !important;
  background-image:
    radial-gradient(ellipse at 15% -5%, rgba(255, 230, 0, 0.03) 0%, transparent 45%),
    radial-gradient(ellipse at 85% 40%, rgba(255, 230, 0, 0.025) 0%, transparent 40%),
    radial-gradient(ellipse at 25% 100%, rgba(255, 230, 0, 0.03) 0%, transparent 50%) !important;
  color: var(--text) !important;
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
}

::selection { background: var(--accent); color: #000; }

/* Custom scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: rgba(255, 255, 255, 0.02); }
::-webkit-scrollbar-thumb {
  background: #ddf34a;
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover { background: #e5f760; }
html { scrollbar-width: thin; scrollbar-color: #ddf34a transparent; }

/* Kill header wrapper */
header.sticky-top {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 100 !important;
  background: transparent !important;
  border: none !important;
  border-bottom: none !important;
  padding: 0 !important;
}

/* Kill pro.css hero defaults */
.hero.component {
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-end !important;
  align-items: stretch !important;
  min-height: 75vh !important;
  padding: 0 80px 60px !important;
  background: transparent !important;
  background-image: none !important;
  background-size: initial !important;
  position: relative !important;
  overflow: visible !important;
}

.hero.component .bg-overlay { display: none !important; }
.hero.component .container { display: none !important; }
.hero.component .content { display: none !important; }
.hero.component .image { display: none !important; }
.hero.component .fake-searchbar { display: none !important; }
.hero.component .search-modal { display: none !important; }

/* Kill pro.css footer defaults */
footer.footer {
  background: transparent !important;
  border-top: none !important;
  padding: 0 !important;
}

footer.footer > .container { display: none !important; }
footer.footer .logo { display: none !important; }
footer.footer .links { display: none !important; }

/* Kill pro.css navbar defaults (our template outputs .vl-nav not .navbar) */
.navbar { display: none !important; }

/* Hide SellAuth socials component */
.socials.component { display: none !important; }

/* ========== NAVBAR ========== */
.vl-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  padding: 24px 16px 0;
  animation: fadeDown 0.8s ease forwards;
}

.vl-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  padding: 14px 24px;
  border-radius: var(--radius);
  background: rgba(30, 30, 30, 0.25) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.vl-nav-inner:hover { border-color: var(--border-hover); }

.vl-nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.vl-nav-brand span {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-mid);
  transition: color 0.3s;
}

.vl-nav-brand:hover span { color: var(--text); }

.vl-nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.vl-nav-links a {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.3s;
}

.vl-nav-links a:hover { color: var(--text); }

.vl-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 1px solid rgba(221, 244, 75, 0.3);
  background: rgba(221, 244, 75, 0.05);
  backdrop-filter: blur(8px);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.vl-nav-cta:hover {
  border-color: var(--accent);
  background: rgba(221, 244, 75, 0.1);
  box-shadow: 0 0 20px rgba(221, 244, 75, 0.15);
  color: var(--accent);
}

/* Navbar scroll state — keep same transparency */
.vl-nav.scrolled .vl-nav-inner {
  background: rgba(30, 30, 30, 0.25) !important;
  border-color: rgba(221, 244, 75, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* ========== HERO ========== */
.vl-hero-bg {
  position: absolute;
  inset: -20% 0 -80% 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

/* Hero split layout */
.vl-hero-split {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 60px;
  width: 100%;
  animation: fadeUp 1s ease 0.3s forwards;
  opacity: 0;
}

.vl-hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  animation: fadeUp 1s ease 0.3s forwards;
  opacity: 0;
}

.vl-hero-media {
  flex: 0 0 520px;
  max-width: 520px;
}

.vl-hero-media-frame {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
}

.vl-hero-media-frame iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 900px) {
  .vl-hero-split {
    flex-direction: column;
    gap: 40px;
  }
  .vl-hero-media {
    flex: none;
    max-width: 100%;
    width: 100%;
  }
}

.hero.component h1 {
  font-family: var(--font-heading) !important;
  font-size: clamp(2.5rem, 7vw, 5.5rem) !important;
  font-weight: 500 !important;
  line-height: 0.95 !important;
  letter-spacing: -0.03em !important;
  text-wrap: balance !important;
  text-align: left !important;
  margin: 0 !important;
}

.hero.component h1 em {
  font-style: italic !important;
  color: var(--accent) !important;
}

.vl-hero-sub {
  margin-top: 24px;
  font-size: 16px;
  color: var(--text-dim);
  max-width: 500px;
  line-height: 1.6;
}

.vl-hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 48px;
  padding: 16px 32px;
  border: 1px solid rgba(221, 244, 75, 0.3);
  background: rgba(221, 244, 75, 0.05);
  backdrop-filter: blur(8px);
  text-decoration: none;
  transition: all 0.3s ease;
}

.vl-hero-btn span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  transition: color 0.3s;
}

.vl-hero-btn .arrow {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(221, 244, 75, 0.4);
  border-radius: 50%;
  font-size: 12px;
  color: var(--accent);
  transition: all 0.3s;
}

.vl-hero-btn:hover {
  border-color: var(--accent);
  box-shadow: 0 0 30px rgba(221, 244, 75, 0.15);
}

.vl-hero-btn:hover .arrow {
  border-color: var(--accent);
  transform: rotate(45deg);
}

/* ========== ORBS ========== */
.vl-hero-bg .orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  animation: orbFloat 8s ease-in-out infinite;
  opacity: 0.4;
}

.vl-hero-bg .orb-1 {
  width: 600px; height: 600px;
  background: rgba(244, 230, 50, 0.05);
  top: 30%; left: -10%;
  animation-duration: 10s;
}

.vl-hero-bg .orb-2 {
  width: 500px; height: 500px;
  background: rgba(244, 230, 50, 0.035);
  bottom: -30%; right: -5%;
  animation-duration: 12s;
  animation-delay: -4s;
}

.vl-hero-bg .orb-3 {
  width: 400px; height: 400px;
  background: rgba(255, 255, 255, 0.02);
  bottom: -50%; left: 40%;
  animation-duration: 14s;
  animation-delay: -7s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -40px) scale(1.1); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

/* ========== STATS ========== */
.vl-stats-wrap {
  display: flex;
  justify-content: center;
  padding: 48px 40px;
  position: relative;
}

.vl-stats-wrap::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  max-width: 800px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border), transparent);
}

.vl-stats-card {
  display: flex;
  gap: 0;
  width: 100%;
  max-width: 1200px;
}

.vl-stat {
  flex: 1;
  text-align: center;
  padding: 0 32px;
  border-right: 1px solid var(--border);
  animation: countUp 0.6s ease forwards;
  opacity: 0;
}

.vl-stat:last-child { border-right: none; }
.vl-stat:nth-child(1) { animation-delay: 0.1s; }
.vl-stat:nth-child(2) { animation-delay: 0.2s; }
.vl-stat:nth-child(3) { animation-delay: 0.3s; }
.vl-stat:nth-child(4) { animation-delay: 0.4s; }

.vl-stat-value {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.vl-stat-label {
  margin-top: 4px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* ========== PRODUCTS ========== */
.vl-products-section {
  padding: 120px 40px;
}

.vl-section-header {
  text-align: center;
  margin-bottom: 64px;
}

.vl-section-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  padding: 6px 16px;
  border: 1px solid rgba(221, 244, 75, 0.2);
  background: linear-gradient(90deg, rgba(221, 244, 75, 0.05), rgba(221, 244, 75, 0.15), rgba(221, 244, 75, 0.05));
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
}

.vl-section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text);
}

.vl-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.vl-product-card {
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
  overflow: hidden;
  transition: all 0.4s ease;
  text-decoration: none;
  color: var(--text);
  animation: pulseGlow 4s ease-in-out infinite;
}

.vl-product-card:nth-child(2) { animation-delay: 1.3s; }
.vl-product-card:nth-child(3) { animation-delay: 2.6s; }

.vl-product-card:hover {
  border-color: rgba(221, 244, 75, 0.2);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(221, 244, 75, 0.05);
  animation: none;
  color: var(--text);
}

.vl-product-card-image {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

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

.vl-product-card:hover .vl-product-card-image img { transform: scale(1.05); }

.vl-product-card-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #080808, #0f0f0f);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
}

.vl-product-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 10px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 4px;
}

.vl-badge-stock { background: rgba(221, 244, 75, 0.15); color: var(--accent); border: 1px solid rgba(221, 244, 75, 0.3); }
.vl-badge-oos { background: rgba(255, 60, 60, 0.15); color: #ff6b6b; border: 1px solid rgba(255, 60, 60, 0.3); }

.vl-product-card-body { padding: 24px; }

.vl-product-card-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}

.vl-product-card-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 20px;
}

.vl-price-current {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--accent);
}

.vl-price-original {
  font-size: 14px;
  color: var(--text-dim);
  text-decoration: line-through;
}

.vl-product-card-actions {
  display: flex;
  gap: 10px;
}

.vl-product-card-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text-mid);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.vl-product-card-btn:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
  color: var(--text);
}

.vl-product-card-btn:active { transform: scale(0.98); }

.vl-product-card-buy {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  border: 1px solid rgba(221, 244, 75, 0.3);
  background: rgba(221, 244, 75, 0.05);
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.vl-product-card-buy:hover {
  background: rgba(221, 244, 75, 0.12);
  border-color: var(--accent);
  box-shadow: 0 0 20px rgba(221, 244, 75, 0.1);
  color: var(--accent);
}

.vl-product-card-buy:active { transform: scale(0.98); }

/* Click-press on all interactive buttons */
.vl-hero-btn:active,
.vl-nav-cta:active { transform: scale(0.98); }

/* ========== PRODUCT PAGE OVERRIDES ========== */
.product-wrapper {
  padding-top: 40px;
}

/* Hide the placeholder icon when no product image is uploaded */
.product-wrapper .product-img-placeholder {
  display: none !important;
}

/* Hide product image / carousel on product page */
.product-wrapper .carousel,
.product-wrapper .card-img-top {
  display: none !important;
}

/* Product title */
.product-wrapper .display-6 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* Price display */
.product-wrapper .fs-5 {
  font-size: 22px !important;
  font-weight: 700;
}

/* Stock badge */
.product-wrapper .stock-indicator {
  font-size: 11px;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.product-wrapper .btn-outline-primary.stock-indicator {
  color: var(--accent);
  border-color: rgba(221, 244, 75, 0.3);
  background: rgba(221, 244, 75, 0.05);
}

/* Variant selector cards */
.product-wrapper .variants {
  gap: 8px;
}

.product-wrapper .variant {
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid var(--border) !important;
  border-radius: 10px !important;
  padding: 14px 18px !important;
  transition: background 0.2s ease !important;
  color: var(--text) !important;
}

.product-wrapper .variant:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.06) !important;
  border-color: var(--border-hover) !important;
}

.product-wrapper .variant.active,
.product-wrapper .variant.active:hover {
  border-color: var(--accent) !important;
  background: rgba(221, 244, 75, 0.04) !important;
}

.product-wrapper .variant .name {
  font-weight: 600;
  font-size: 14px;
  color: var(--text);
}

.product-wrapper .variant .stock {
  font-size: 11px;
  color: var(--text-dim);
}

.product-wrapper .variant .price {
  font-weight: 700;
  font-size: 15px;
  color: var(--text);
}

.product-wrapper .variant .price s {
  color: var(--text-dim);
  font-size: 12px;
}

.product-wrapper .variant .active-indicator svg {
  color: var(--accent) !important;
}

.product-wrapper .variant:disabled {
  opacity: 0.35;
}

/* Quantity input */
.product-wrapper .form-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dim);
}

.product-wrapper .form-control {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 8px;
}

.product-wrapper .form-control:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(221, 244, 75, 0.1);
  background: rgba(255, 255, 255, 0.05);
}

.product-wrapper .input-group .btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  color: var(--text-dim);
}

.product-wrapper .input-group .btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--border-hover);
  color: var(--text);
}

/* Buy buttons */
.product-wrapper .buy-buttons .btn-primary {
  background: rgba(221, 244, 75, 0.08) !important;
  border: 1px solid rgba(221, 244, 75, 0.3) !important;
  color: var(--accent) !important;
  border-radius: 10px !important;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 12px 20px;
  transition: all 0.3s ease;
}

.product-wrapper .buy-buttons .btn-primary:hover {
  background: rgba(221, 244, 75, 0.15) !important;
  box-shadow: 0 0 24px rgba(221, 244, 75, 0.12);
}

.product-wrapper .buy-buttons .btn-primary:active { transform: scale(0.98); }

.product-wrapper .buy-buttons .btn-outline-primary {
  background: transparent !important;
  border: 1px solid var(--border) !important;
  color: var(--text) !important;
  border-radius: 10px !important;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 12px 20px;
  transition: all 0.3s ease;
}

.product-wrapper .buy-buttons .btn-outline-primary:hover {
  background: rgba(255, 255, 255, 0.05) !important;
  border-color: var(--border-hover) !important;
}

.product-wrapper .buy-buttons .btn-outline-primary:active { transform: scale(0.98); }

/* Product tabs */
.product-wrapper .product-tabs .btn {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 8px;
  padding: 8px 16px;
}

.product-wrapper .product-tabs .btn-primary {
  background: rgba(221, 244, 75, 0.1) !important;
  border-color: var(--accent) !important;
  color: var(--accent) !important;
}

.product-wrapper .product-tabs .btn-outline-primary {
  background: transparent !important;
  border-color: var(--border) !important;
  color: var(--text-dim) !important;
}

.product-wrapper .product-tabs .btn-outline-primary:hover {
  background: rgba(255, 255, 255, 0.03) !important;
  border-color: var(--border-hover) !important;
  color: var(--text) !important;
}

/* Description/content area */
.product-wrapper .editor {
  color: var(--text-dim);
  font-size: 14px;
  line-height: 1.7;
}

/* Product page collapsibles (Features, Requirements) — native <details>/<summary> */
details.e-collapsible {
  background: var(--bg-card) !important;
  border: 1px solid var(--border) !important;
  border-radius: var(--radius-sm) !important;
  margin-bottom: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

details.e-collapsible:hover {
  border-color: rgba(221, 244, 75, 0.15) !important;
  background: var(--bg-card-hover) !important;
}

details.e-collapsible[open] {
  border-color: rgba(221, 244, 75, 0.12) !important;
  background: rgba(221, 244, 75, 0.02) !important;
}

summary.e-collapsible-title {
  padding: 10px 14px 10px 28px !important;
  cursor: pointer;
  font-family: var(--font-body) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: 0.03em;
  color: var(--text-mid) !important;
  transition: color 0.3s ease;
  user-select: none;
}

summary.e-collapsible-title:hover {
  color: var(--text) !important;
}

details.e-collapsible[open] > summary.e-collapsible-title {
  color: var(--accent) !important;
  border-bottom: 1px solid var(--border);
}

/* Style the native marker */
summary.e-collapsible-title::marker {
  color: var(--text-dim);
}

details.e-collapsible[open] > summary.e-collapsible-title::marker {
  color: var(--accent);
}


/* Inner content */
details.e-collapsible .editor,
details.e-collapsible > :not(summary) {
  padding: 8px 14px 12px !important;
  color: var(--text-dim) !important;
  font-size: 14px;
  line-height: 1.7;
}

/* Reset nested p/b/strong inside summary */
summary.e-collapsible-title p,
summary.e-collapsible-title b,
summary.e-collapsible-title strong {
  margin: 0 !important;
  font-weight: inherit;
  color: inherit;
}


/* Product image placeholder */
.product-wrapper .product-img-placeholder {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Image carousel */
.product-wrapper .carousel-item img {
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.product-wrapper .thumbnails button {
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  opacity: 0.5;
  transition: all 0.2s ease;
}

.product-wrapper .thumbnails button.active,
.product-wrapper .thumbnails button:hover {
  opacity: 1;
  border-color: var(--accent);
}

/* Status indicator */
.product-wrapper .status .label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Alert styling */
.product-wrapper .alert-warning {
  background: rgba(255, 180, 0, 0.08);
  border: 1px solid rgba(255, 180, 0, 0.2);
  color: #ffb400;
  border-radius: 10px;
  font-size: 13px;
}

/* ========== CART PAGE OVERRIDES ========== */
.cart .section-title h1 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* Cart item cards */
.cart .cart-item-bg {
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid var(--border) !important;
  border-radius: 12px !important;
  transition: background 0.2s ease;
}

.cart .cart-item-bg:hover {
  background: rgba(255, 255, 255, 0.05) !important;
}

/* Product link */
.cart .cart-product-link {
  color: var(--text) !important;
  font-weight: 600 !important;
  font-size: 14px;
}

/* Variant name text */
.cart .cart-variant-text {
  color: var(--text-dim) !important;
  font-size: 12px !important;
}

/* Volume discount text */
.cart .cart-discount-text {
  color: var(--accent) !important;
  font-size: 11px !important;
}

/* Quantity controls */
.cart .cart-quantity-controls {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 8px !important;
}

.cart .cart-qty-btn {
  background: transparent !important;
  border: none !important;
  color: var(--text-dim) !important;
  width: 32px;
  height: 32px;
}

.cart .cart-qty-btn:hover:not(:disabled) {
  color: var(--text) !important;
  background: rgba(255, 255, 255, 0.05) !important;
}

.cart .cart-qty-input {
  background: transparent !important;
  color: var(--text) !important;
  font-weight: 600;
  font-size: 13px;
  width: 40px;
  -moz-appearance: textfield;
}

.cart .cart-qty-input::-webkit-inner-spin-button,
.cart .cart-qty-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Price text */
.cart .cart-price-text {
  color: var(--text) !important;
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
}

/* Remove button */
.cart .cart-remove-desktop,
.cart .cart-remove-mobile {
  color: var(--text-dim) !important;
  opacity: 0.5;
  transition: all 0.2s ease;
}

.cart .cart-remove-desktop:hover,
.cart .cart-remove-mobile:hover {
  color: #ff4444 !important;
  opacity: 1;
}

.cart .cart-remove-icon {
  width: 18px;
  height: 18px;
}

/* Product image in cart */
.cart .aspect-product-card-image img {
  border-radius: 10px;
  border: 1px solid var(--border);
}

.cart .cart-placeholder-svg {
  color: var(--text-dim);
  width: 40px;
  height: 40px;
}

/* Order summary panel */
.cart .form {
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid var(--border) !important;
  border-radius: 12px !important;
}

.cart .form .form-label {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text);
}

.cart .form .text-muted {
  color: var(--text-dim) !important;
  font-size: 13px;
}

.cart .form .fw-bold {
  color: var(--text) !important;
}

.cart .form .border-bottom {
  border-color: var(--border) !important;
}

/* Checkout button */
.cart .form .btn-outline-primary {
  background: rgba(221, 244, 75, 0.08) !important;
  border: 1px solid rgba(221, 244, 75, 0.3) !important;
  color: var(--accent) !important;
  border-radius: 10px !important;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 14px 20px;
  transition: all 0.3s ease;
}

.cart .form .btn-outline-primary:hover:not(:disabled) {
  background: rgba(221, 244, 75, 0.15) !important;
  box-shadow: 0 0 24px rgba(221, 244, 75, 0.12);
}

.cart .form .btn-outline-primary:active { transform: scale(0.98); }

.cart .form .btn-outline-primary:disabled {
  opacity: 0.4;
}

/* Empty cart */
.cart .text-muted {
  color: var(--text-dim) !important;
}

.cart .border {
  border-color: var(--border) !important;
}

/* Alert */
.cart .alert-danger {
  background: rgba(255, 68, 68, 0.08);
  border: 1px solid rgba(255, 68, 68, 0.2);
  color: #ff4444;
  border-radius: 10px;
}

.cart .alert-warning {
  background: rgba(255, 180, 0, 0.08);
  border: 1px solid rgba(255, 180, 0, 0.2);
  color: #ffb400;
  border-radius: 10px;
}

/* ========== FEATURES ========== */
.vl-features-section {
  padding: 80px 40px;
}

.vl-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.vl-feature {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 48px 32px;
  transition: all 0.3s;
}

.vl-feature:hover {
  background: var(--bg-card-hover);
  border-color: rgba(221, 244, 75, 0.15);
}

.vl-feature-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(221, 244, 75, 0.2);
  color: var(--accent);
  font-size: 18px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.vl-feature:hover .vl-feature-icon {
  border-color: var(--accent);
  box-shadow: 0 0 15px rgba(221, 244, 75, 0.15);
  transform: scale(1.1);
}

.vl-feature h3 {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: var(--text);
}

.vl-feature p {
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-dim);
  margin: 0;
}

/* Hide SellAuth feedbacks/reviews component on homepage */
.feedbacks.component { display: none !important; }

/* Hide SellAuth default product/feature sections if they still render */
section.container.py-20.component:not(.vl-products-section):not(.vl-features-section) {
  /* only hide if it has old SellAuth structure */
}



/* ========== FOOTER ========== */
.vl-footer-inner {
  padding: 48px 40px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.vl-footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.vl-footer-brand span {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.vl-footer-copy {
  font-size: 12px;
  color: var(--text-dim);
}

.vl-footer-links {
  display: flex;
  gap: 24px;
}

.vl-footer-links a {
  font-size: 11px;
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.3s;
}

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

.vl-footer-socials {
  display: flex;
  gap: 12px;
}

.vl-footer-socials a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  color: var(--text-dim);
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s;
}

.vl-footer-socials a:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ========== CHECKOUT POPUP MODAL ========== */
.vl-checkout-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.vl-checkout-overlay.show {
  opacity: 1;
  pointer-events: auto;
}

.vl-checkout-modal {
  width: 90%;
  max-width: 520px;
  max-height: 80vh;
  background: #0a0a0a;
  border: 1px solid var(--border);
  border-top: 2px solid var(--accent);
  border-radius: var(--radius);
  overflow: hidden;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  display: flex;
  flex-direction: column;
}

.vl-checkout-overlay.show .vl-checkout-modal {
  transform: translateY(0) scale(1);
}

.vl-checkout-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--text-dim);
  font-size: 12px;
  cursor: pointer;
  transition: all 0.3s;
  z-index: 10;
  padding: 0;
}

.vl-checkout-close:hover { color: var(--text); border-color: var(--accent); }

.vl-checkout-header {
  padding: 32px 32px 16px;
  text-align: center;
}

.vl-checkout-header h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 4px;
}

.vl-checkout-header p {
  font-size: 13px;
  color: var(--text-dim);
  margin: 0;
}

.vl-checkout-body {
  flex: 1;
  min-height: 300px;
  max-height: 55vh;
  overflow-y: auto;
}

.vl-checkout-body iframe {
  width: 100%;
  height: 100%;
  min-height: 300px;
  border: none;
  background: transparent;
}

.vl-checkout-footer {
  padding: 16px 32px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 11px;
  color: var(--text-dim);
}

/* Checkout variant rows */
.vl-checkout-body {
  padding: 0 24px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 55vh;
  overflow-y: auto;
}

.vl-co-variant {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.2s ease;
  text-align: left;
  color: var(--text);
}

.vl-co-variant:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--border-hover);
}

.vl-co-variant.vl-co-active,
.vl-co-variant.vl-co-active:hover {
  border-color: var(--accent);
  background: rgba(221, 244, 75, 0.04);
}

.vl-co-variant.vl-co-oos {
  opacity: 0.4;
  cursor: not-allowed;
}

.vl-co-variant-left {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.vl-co-variant-name {
  font-weight: 600;
  font-size: 14px;
}

.vl-co-variant-stock {
  font-size: 11px;
  color: var(--text-dim);
}

.vl-co-variant-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.vl-co-variant-price {
  font-weight: 700;
  font-size: 16px;
}

.vl-co-slash {
  font-size: 12px;
  color: var(--text-dim);
  text-decoration: line-through;
}

.vl-co-add-btn {
  width: 100%;
  margin-top: 8px;
  padding: 14px;
  background: rgba(221, 244, 75, 0.08);
  border: 1px solid rgba(221, 244, 75, 0.3);
  border-radius: 10px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.vl-co-add-btn:hover:not(:disabled) {
  background: rgba(221, 244, 75, 0.15);
  box-shadow: 0 0 24px rgba(221, 244, 75, 0.12);
}

.vl-co-add-btn:active:not(:disabled) { transform: scale(0.98); }

.vl-co-add-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ========== DISCORD POPUP ========== */
.discord-popup {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 200;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.discord-popup.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.discord-popup-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  position: relative;
}

.discord-popup-close {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1a1a1a;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--text-dim);
  font-size: 10px;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}

.discord-popup-close:hover { color: var(--text); border-color: var(--accent); }

.discord-popup-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.discord-popup-text strong {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
}

.discord-popup-text span {
  font-size: 11px;
  color: var(--text-dim);
}

.discord-popup-btn {
  padding: 8px 20px;
  background: var(--accent);
  color: #000;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 6px;
  white-space: nowrap;
  text-decoration: none;
  transition: all 0.3s;
}

.discord-popup-btn:hover {
  box-shadow: 0 0 20px rgba(221, 244, 75, 0.3);
  color: #000;
}

/* ========== ANIMATIONS ========== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes countUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0px rgba(221, 244, 75, 0); }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

/* Scroll reveal — elements start hidden, JS adds .revealed */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.reveal-stagger > .reveal:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger > .reveal:nth-child(2) { transition-delay: 0.15s; }
.reveal-stagger > .reveal:nth-child(3) { transition-delay: 0.25s; }
/* ========== FEEDBACK / REVIEWS PAGE ========== */
.py-5-nav {
  padding-top: 120px !important;
}

.testimonials.row {
  --bs-gutter-x: 20px;
  --bs-gutter-y: 20px;
}

.testimonial {
  background: var(--bg-card) !important;
  border: 1px solid var(--border) !important;
  border-radius: var(--radius) !important;
  transition: all 0.4s ease;
  margin-bottom: 0 !important;
}

.testimonial:hover {
  border-color: rgba(221, 244, 75, 0.15) !important;
  background: var(--bg-card-hover) !important;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.testimonial .header {
  padding: 14px 18px 0 18px !important;
  margin-bottom: 0 !important;
}

.testimonial .stars svg {
  width: 14px !important;
  height: 14px !important;
}

.testimonial .content {
  padding: 4px 18px 10px !important;
}

.testimonial .content .message {
  font-family: var(--font-body) !important;
  font-size: 14px !important;
  color: var(--text-mid) !important;
  line-height: 1.6;
}

.testimonial .content .message span {
  color: var(--text) !important;
}

.testimonial .content .reply {
  background: rgba(0, 0, 0, 0.3) !important;
  border: 1px solid var(--border) !important;
  border-radius: var(--radius-sm) !important;
}

.testimonial .content .reply .text {
  border-left-color: var(--accent) !important;
  color: var(--text-mid) !important;
}

.testimonial .content .reply .author span {
  color: var(--accent) !important;
}

.testimonial .footer {
  background: rgba(0, 0, 0, 0.2) !important;
  border-top: 1px solid var(--border) !important;
  border-radius: 0 0 var(--radius) var(--radius) !important;
  padding: 10px 18px !important;
  font-family: var(--font-body) !important;
  font-size: 11px !important;
  color: var(--text-dim) !important;
}

.testimonial .footer .items {
  color: var(--text-dim) !important;
  font-weight: 500;
}

.testimonial .footer .date {
  color: var(--text-dim) !important;
  font-weight: 500 !important;
}

/* Pagination */
.pagination .page-item .page-link {
  background: var(--bg-card) !important;
  border: 1px solid var(--border) !important;
  color: var(--text-dim) !important;
  border-radius: 8px !important;
  transition: all 0.3s ease;
}

.pagination .page-item.active .page-link {
  background: rgba(221, 244, 75, 0.1) !important;
  border-color: rgba(221, 244, 75, 0.3) !important;
  color: var(--accent) !important;
}

.pagination .page-item .page-link:hover {
  background: var(--bg-card-hover) !important;
  border-color: var(--border-hover) !important;
  color: var(--text) !important;
}

.reveal-stagger > .reveal:nth-child(4) { transition-delay: 0.35s; }

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .vl-nav-links { display: none; }
  .hero.component { padding: 0 20px 60px !important; min-height: 70vh !important; }
  .vl-products-section, .vl-features-section { padding: 80px 20px; }
  .vl-stats-wrap { padding: 32px 20px; }
  .vl-stats-card { flex-wrap: wrap; }
  .vl-stat { flex: 0 0 50%; border-right: none; padding: 12px 0; }
  .vl-products-grid { grid-template-columns: 1fr; }
  .vl-footer-inner { flex-direction: column; gap: 24px; text-align: center; }
  .discord-popup { left: 16px; right: 16px; bottom: 16px; }
}