/*
 * Enter any custom CSS here.
 * This file will not be overwritten by theme updates.
*/
/* ---------- KR0VA NEON OVERLAY ---------- */

:root {
  --neon: #a855f7;
  --neon-bright: #c084fc;
  --neon-soft: rgba(168, 85, 247, 0.4);
}

/* Body glow ambience */
body {
  background-color: #0a0014 !important;
  background-image:
    radial-gradient(circle at 20% 10%, rgba(168,85,247,0.15), transparent 40%),
    radial-gradient(circle at 80% 90%, rgba(192,132,252,0.12), transparent 40%);
}

/* Product cards — the main glow */
.product-card,
.product,
[class*="product-card"],
[class*="ProductCard"],
.card {
  border: 1px solid var(--neon) !important;
  border-radius: 12px !important;
  box-shadow:
    0 0 8px var(--neon-soft),
    0 0 20px rgba(168,85,247,0.25),
    inset 0 0 12px rgba(168,85,247,0.08) !important;
  transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease !important;
  background: rgba(20, 8, 40, 0.6) !important;
}

.product-card:hover,
.product:hover,
[class*="product-card"]:hover,
[class*="ProductCard"]:hover,
.card:hover {
  border-color: var(--neon-bright) !important;
  box-shadow:
    0 0 12px var(--neon-bright),
    0 0 30px var(--neon),
    0 0 60px rgba(168,85,247,0.5),
    inset 0 0 20px rgba(192,132,252,0.15) !important;
  transform: translateY(-3px);
}

/* Buttons */
button,
.btn,
.button,
a.button,
input[type="submit"] {
  background: linear-gradient(135deg, #6b21a8, #a855f7) !important;
  border: 1px solid var(--neon-bright) !important;
  box-shadow: 0 0 10px var(--neon-soft), 0 0 20px rgba(168,85,247,0.3) !important;
  color: #fff !important;
  transition: all 0.25s ease !important;
}

button:hover,
.btn:hover,
.button:hover,
a.button:hover,
input[type="submit"]:hover {
  box-shadow: 0 0 15px var(--neon-bright), 0 0 35px var(--neon), 0 0 60px rgba(168,85,247,0.4) !important;
  transform: translateY(-1px);
}

/* Headings — neon text */
h1, h2, h3, .site-title, .logo-text {
  color: #f3e8ff !important;
  text-shadow:
    0 0 6px var(--neon),
    0 0 14px var(--neon-soft),
    0 0 24px rgba(168,85,247,0.3);
}

/* Links */
a {
  color: var(--neon-bright) !important;
  transition: text-shadow 0.2s ease;
}
a:hover {
  text-shadow: 0 0 8px var(--neon-bright), 0 0 16px var(--neon);
}

/* Inputs / search bar */
input, textarea, select {
  background: rgba(20,8,40,0.7) !important;
  border: 1px solid var(--neon-soft) !important;
  color: #f3e8ff !important;
  box-shadow: inset 0 0 8px rgba(168,85,247,0.15);
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--neon-bright) !important;
  box-shadow: 0 0 8px var(--neon), inset 0 0 10px rgba(168,85,247,0.25) !important;
  outline: none !important;
}

/* Nav bar */
nav, header, .navbar, .header {
  background: rgba(10, 0, 20, 0.85) !important;
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--neon-soft) !important;
  box-shadow: 0 2px 20px rgba(168,85,247,0.2);
}

/* Subtle pulse animation for product cards (optional — comment out if too much) */
@keyframes neonPulse {
  0%, 100% { box-shadow: 0 0 8px var(--neon-soft), 0 0 20px rgba(168,85,247,0.25); }
  50%       { box-shadow: 0 0 12px var(--neon), 0 0 28px rgba(168,85,247,0.4); }
}
<style>
/* ============ REVIEWS UPGRADE ============ */
[class*="review"], .review-card, .reviews-list > * {
  background: linear-gradient(135deg, rgba(26,0,51,0.7), rgba(10,0,25,0.9)) !important;
  border: 1px solid rgba(168,85,247,0.35) !important;
  border-radius: 14px !important;
  padding: 18px 22px !important;
  margin-bottom: 14px !important;
  box-shadow:
    0 0 0 1px rgba(168,85,247,0.15),
    0 4px 20px rgba(168,85,247,0.15),
    inset 0 1px 0 rgba(255,255,255,0.05) !important;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease !important;
  position: relative;
  overflow: hidden;
}

[class*="review"]:hover, .review-card:hover, .reviews-list > *:hover {
  transform: translateY(-3px) !important;
  border-color: rgba(192,132,252,0.7) !important;
  box-shadow:
    0 0 0 1px rgba(192,132,252,0.4),
    0 8px 30px rgba(168,85,247,0.35),
    inset 0 1px 0 rgba(255,255,255,0.08) !important;
}

/* subtle top glow accent */
[class*="review"]::before, .review-card::before, .reviews-list > *::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #a855f7, #c084fc, #a855f7, transparent);
  opacity: 0.6;
}

/* bigger, glowing stars */
[class*="review"] [class*="star"],
[class*="review"] svg,
.review-card svg {
  color: #fbbf24 !important;
  fill: #fbbf24 !important;
  filter: drop-shadow(0 0 4px rgba(251,191,36,0.7)) drop-shadow(0 0 8px rgba(251,191,36,0.4)) !important;
  width: 18px !important;
  height: 18px !important;
}

/* reviewer name */
[class*="review"] [class*="name"],
[class*="review"] strong,
.review-card strong {
  color: #f3e8ff !important;
  font-weight: 700 !important;
  font-size: 0.95rem !important;
  letter-spacing: 0.02em !important;
  text-shadow: 0 0 8px rgba(168,85,247,0.4);
}

/* review body text */
[class*="review"] p,
.review-card p {
  color: #d8b4fe !important;
  font-size: 0.9rem !important;
  line-height: 1.55 !important;
  margin-top: 6px !important;
}

/* review date / meta */
[class*="review"] [class*="date"],
[class*="review"] time,
[class*="review"] small,
.review-card small {
  color: #9333ea !important;
  font-size: 0.75rem !important;
  opacity: 0.8;
  letter-spacing: 0.05em;
}

/* ============ FOOTER SHRINK ============ */
footer, .site-footer, [class*="footer"]:not([class*="footer-item"]) {
  padding: 12px 20px !important;
  font-size: 0.72rem !important;
  min-height: unset !important;
  background: rgba(10,0,25,0.6) !important;
  border-top: 1px solid rgba(168,85,247,0.2) !important;
}

footer *, .site-footer *, [class*="footer"] * {
  font-size: 0.72rem !important;
  line-height: 1.4 !important;
}

footer a, .site-footer a, [class*="footer"] a {
  color: #c084fc !important;
  opacity: 0.75;
  margin: 0 8px !important;
  transition: opacity 0.2s, color 0.2s;
}

footer a:hover, .site-footer a:hover, [class*="footer"] a:hover {
  opacity: 1;
  color: #f3e8ff !important;
  text-shadow: 0 0 6px #a855f7;
}

/* shrink footer headings if any */
footer h1, footer h2, footer h3, footer h4,
.site-footer h1, .site-footer h2, .site-footer h3, .site-footer h4 {
  font-size: 0.8rem !important;
  margin: 4px 0 !important;
  letter-spacing: 0.05em;
}

/* shrink footer logo/images */
footer img, .site-footer img, [class*="footer"] img {
  max-height: 24px !important;
  width: auto !important;
}

/* tighten copyright / bottom line */
footer [class*="copyright"],
footer [class*="bottom"],
.site-footer [class*="copyright"] {
  padding: 4px 0 !important;
  font-size: 0.65rem !important;
  opacity: 0.6;
}
</style>
/* ===================== */
/* KR0VA — HEADER GLOW-UP */
/* ===================== */

/* header shell */
header,
nav.navbar,
[class*="header"]:not([class*="sub"]):not([class*="card"]) {
  background: linear-gradient(90deg, #0a0015 0%, #1a0033 50%, #0a0015 100%) !important;
  border-bottom: 1px solid rgba(168,85,247,0.35) !important;
  box-shadow: 0 4px 24px rgba(168,85,247,0.15), 0 0 40px rgba(168,85,247,0.08) inset !important;
  padding: 12px 28px !important;
  backdrop-filter: blur(10px);
}

/* logo area — bigger, glowing */
header a[href="/"],
header a[href="/"] img,
nav.navbar a[href="/"] img {
  max-height: 44px !important;
  filter: drop-shadow(0 0 8px rgba(168,85,247,0.6)) drop-shadow(0 0 16px rgba(168,85,247,0.3)) !important;
  transition: filter 0.3s ease, transform 0.3s ease !important;
}
header a[href="/"]:hover img {
  filter: drop-shadow(0 0 12px rgba(192,132,252,0.9)) drop-shadow(0 0 24px rgba(168,85,247,0.5)) !important;
  transform: scale(1.05) !important;
}

/* store name text next to logo (if it renders as text) */
header a[href="/"] span,
nav.navbar a[href="/"] span {
  font-family: 'Orbitron', 'Segoe UI', sans-serif !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  color: #f3e8ff !important;
  text-shadow: 0 0 10px rgba(168,85,247,0.7), 0 0 20px rgba(168,85,247,0.4) !important;
  font-size: 1.15rem !important;
}

/* nav links — Home / Products */
header nav a,
nav.navbar a:not([href="/"]):not(.discord-btn):not([class*="lang"]) {
  color: #d8b4fe !important;
  font-family: 'Orbitron', 'Segoe UI', sans-serif !important;
  font-weight: 600 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  font-size: 0.85rem !important;
  padding: 8px 16px !important;
  border-radius: 6px !important;
  position: relative !important;
  transition: all 0.3s ease !important;
}
header nav a::after,
nav.navbar a:not([href="/"]):not(.discord-btn)::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #c084fc, transparent);
  transition: width 0.3s ease, left 0.3s ease;
  box-shadow: 0 0 8px #a855f7;
}
header nav a:hover::after,
nav.navbar a:not([href="/"]):not(.discord-btn):hover::after {
  width: 80%;
  left: 10%;
}
header nav a:hover,
nav.navbar a:not([href="/"]):not(.discord-btn):hover {
  color: #ffffff !important;
  text-shadow: 0 0 10px rgba(192,132,252,0.8) !important;
}

/* language selector (EN button) */
header button[class*="lang"],
header [class*="language"] button,
header select,
nav.navbar select {
  background: rgba(168,85,247,0.12) !important;
  border: 1px solid rgba(168,85,247,0.4) !important;
  color: #f3e8ff !important;
  border-radius: 8px !important;
  padding: 6px 12px !important;
  font-family: 'Orbitron', sans-serif !important;
  font-size: 0.8rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.1em !important;
  transition: all 0.25s ease !important;
  cursor: pointer !important;
}
header button[class*="lang"]:hover,
header [class*="language"] button:hover,
header select:hover {
  background: rgba(168,85,247,0.25) !important;
  border-color: #c084fc !important;
  box-shadow: 0 0 12px rgba(168,85,247,0.5) !important;
}

/* ===================== */
/* DISCORD BUTTON */
/* ===================== */
.kr0va-discord-btn {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  padding: 9px 18px !important;
  background: linear-gradient(135deg, #5865F2 0%, #7289DA 100%) !important;
  color: #ffffff !important;
  font-family: 'Orbitron', 'Segoe UI', sans-serif !important;
  font-weight: 700 !important;
  font-size: 0.82rem !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  border-radius: 8px !important;
  border: 1px solid rgba(255,255,255,0.15) !important;
  box-shadow:
    0 0 15px rgba(88,101,242,0.5),
    0 0 30px rgba(88,101,242,0.3),
    inset 0 1px 0 rgba(255,255,255,0.2) !important;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1) !important;
  cursor: pointer !important;
  position: relative !important;
  overflow: hidden !important;
  animation: discordPulse 2.5s ease-in-out infinite !important;
  margin: 0 8px !important;
}
.kr0va-discord-btn:hover {
  transform: translateY(-2px) scale(1.04) !important;
  box-shadow:
    0 0 25px rgba(88,101,242,0.8),
    0 0 50px rgba(88,101,242,0.5),
    0 8px 20px rgba(0,0,0,0.4) !important;
}
.kr0va-discord-btn svg {
  width: 18px;
  height: 18px;
  fill: #ffffff;
  filter: drop-shadow(0 0 4px rgba(255,255,255,0.6));
}
.kr0va-discord-btn::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transition: left 0.6s ease;
}
.kr0va-discord-btn:hover::before {
  left: 100%;
}
@keyframes discordPulse {
  0%, 100% {
    box-shadow:
      0 0 15px rgba(88,101,242,0.5),
      0 0 30px rgba(88,101,242,0.3),
      inset 0 1px 0 rgba(255,255,255,0.2);
  }
  50% {
    box-shadow:
      0 0 22px rgba(88,101,242,0.75),
      0 0 45px rgba(88,101,242,0.45),
      inset 0 1px 0 rgba(255,255,255,0.2);
  }
}

/* mobile */
@media (max-width: 640px) {
  .kr0va-discord-btn {
    padding: 7px 12px !important;
    font-size: 0.72rem !important;
  }
  .kr0va-discord-btn span.discord-text { display: none; }
  header, nav.navbar { padding: 10px 14px !important; }
}
/* ===== KR0VA BACKGROUND v4 — star field + feedback fix ===== */

/* Star field layer — three sizes for depth */
html::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    radial-gradient(1px 1px at 20px 30px, rgba(255,255,255,0.9), transparent),
    radial-gradient(1px 1px at 60px 120px, rgba(216,180,254,0.7), transparent),
    radial-gradient(1.5px 1.5px at 130px 80px, rgba(255,255,255,0.8), transparent),
    radial-gradient(1px 1px at 200px 200px, rgba(192,132,252,0.6), transparent),
    radial-gradient(1px 1px at 280px 40px, rgba(255,255,255,0.9), transparent),
    radial-gradient(2px 2px at 340px 160px, rgba(216,180,254,0.85), transparent),
    radial-gradient(1px 1px at 90px 250px, rgba(255,255,255,0.7), transparent),
    radial-gradient(1px 1px at 380px 300px, rgba(192,132,252,0.8), transparent),
    radial-gradient(1.5px 1.5px at 150px 350px, rgba(255,255,255,0.9), transparent),
    radial-gradient(1px 1px at 250px 380px, rgba(216,180,254,0.6), transparent);
  background-repeat: repeat;
  background-size: 400px 400px;
  animation: starTwinkle 8s ease-in-out infinite alternate;
}

/* Second layer — bigger, slower stars for parallax depth */
html::after {
  content: '';
  position: fixed;
  inset: -20%;
  pointer-events: none;
  z-index: 0;
  background-image:
    radial-gradient(2px 2px at 100px 100px, rgba(255,255,255,0.9), transparent),
    radial-gradient(2.5px 2.5px at 300px 250px, rgba(216,180,254,0.8), transparent),
    radial-gradient(2px 2px at 500px 400px, rgba(192,132,252,0.7), transparent),
    radial-gradient(3px 3px at 700px 150px, rgba(255,255,255,0.95), transparent),
    radial-gradient(2px 2px at 200px 500px, rgba(216,180,254,0.75), transparent),
    /* Keep the aurora underneath */
    radial-gradient(ellipse 40% 30% at 30% 40%, rgba(168, 85, 247, 0.14), transparent 60%),
    radial-gradient(ellipse 35% 25% at 70% 60%, rgba(124, 58, 237, 0.11), transparent 65%);
  background-repeat: repeat;
  background-size: 800px 800px, 800px 800px, 800px 800px, 800px 800px, 800px 800px, auto, auto;
  animation: starDrift 60s linear infinite, starTwinkle2 5s ease-in-out infinite alternate;
  filter: blur(0.3px);
}

@keyframes starTwinkle {
  0%   { opacity: 0.7; }
  50%  { opacity: 1; }
  100% { opacity: 0.75; }
}

@keyframes starTwinkle2 {
  0%   { opacity: 0.8; }
  100% { opacity: 1; }
}

@keyframes starDrift {
  0%   { background-position: 0 0, 0 0, 0 0, 0 0, 0 0, 0 0, 0 0; }
  100% { background-position: -800px 400px, -800px 400px, -800px 400px, -800px 400px, -800px 400px, 0 0, 0 0; }
}

/* ===== FEEDBACK / STATS BLOCK — transparent glass ===== */

[class*="feedback"],
[class*="stats"],
.stat-block,
main div:has(> [class*="star"]):has(> [class*="feedback"]),
main div:has(> div > [class*="Feedback Rating"]) {
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(168, 85, 247, 0.35) !important;
  border-radius: 12px !important;
  padding: 14px 22px !important;
  display: inline-flex !important;
  gap: 32px !important;
  align-items: center !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  box-shadow:
    0 0 0 1px rgba(168, 85, 247, 0.15),
    0 4px 24px rgba(168, 85, 247, 0.12),
    inset 0 1px 0 rgba(168, 85, 247, 0.1) !important;
  width: fit-content !important;
  margin: 12px auto !important;
  transition: all 0.3s ease !important;
}

[class*="feedback"]:hover,
[class*="stats"]:hover,
.stat-block:hover {
  border-color: rgba(168, 85, 247, 0.6) !important;
  box-shadow:
    0 0 0 1px rgba(168, 85, 247, 0.3),
    0 4px 32px rgba(168, 85, 247, 0.25) !important;
}

/* Fallback selector — most SellAuth stat rows */
main > div [class*="rounded"]:has([class*="star"]),
main [class*="flex"]:has(svg[class*="star"]) {
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(168, 85, 247, 0.3) !important;
  border-radius: 10px !important;
  padding: 12px 20px !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  width: fit-content !important;
  margin: 10px auto !important;
}
/* ===== KR0VA PRODUCT CARD HOVER v2 (LIFT FIXED) ===== */

/* Kill inline transforms at rest so hover state can win */
.product-card,
.product-item,
[class*="ProductCard"],
[class*="product-card"],
[class*="product_card"],
a[href*="/product/"],
a[href*="/products/"],
.products > div,
.products > a,
.products > article,
.grid > div,
.grid > a,
.grid > article {
  position: relative !important;
  overflow: hidden !important;
  border-radius: 16px !important;
  background: rgba(20, 10, 35, 0.55) !important;
  border: 1px solid rgba(181, 55, 242, 0.2) !important;
  transform: translateY(0) scale(1) !important;
  transition:
    transform 0.35s cubic-bezier(.2,.9,.3,1.15),
    box-shadow 0.35s ease,
    border-color 0.35s ease,
    background 0.35s ease,
    margin 0.35s ease !important;
  will-change: transform;
}

/* Make sure grid parents don't clip the lift */
.products,
.grid,
[class*="product-grid"],
[class*="ProductGrid"],
[class*="products-grid"] {
  overflow: visible !important;
}

/* Hover — lift, scale, glow, brighter border, margin backup */
.product-card:hover,
.product-item:hover,
[class*="ProductCard"]:hover,
[class*="product-card"]:hover,
[class*="product_card"]:hover,
a[href*="/product/"]:hover,
a[href*="/products/"]:hover,
.products > div:hover,
.products > a:hover,
.products > article:hover,
.grid > div:hover,
.grid > a:hover,
.grid > article:hover {
  transform: translateY(-10px) scale(1.025) !important;
  margin-top: -2px !important;
  margin-bottom: 2px !important;
  border-color: #b537f2 !important;
  background: rgba(30, 15, 50, 0.7) !important;
  box-shadow:
    0 0 30px rgba(181, 55, 242, 0.55),
    0 0 60px rgba(125, 42, 232, 0.28),
    0 15px 45px rgba(0, 0, 0, 0.55) !important;
  z-index: 5;
}

/* Inner image — zoom + brighten on card hover */
.product-card img,
.product-item img,
[class*="ProductCard"] img,
[class*="product-card"] img,
a[href*="/product/"] img,
a[href*="/products/"] img,
.products > div img,
.products > a img,
.products > article img,
.grid > div img,
.grid > a img,
.grid > article img {
  transition: transform 0.5s cubic-bezier(.2,.9,.3,1.05), filter 0.35s ease !important;
  will-change: transform;
}

.product-card:hover img,
.product-item:hover img,
[class*="ProductCard"]:hover img,
[class*="product-card"]:hover img,
a[href*="/product/"]:hover img,
a[href*="/products/"]:hover img,
.products > div:hover img,
.products > a:hover img,
.products > article:hover img,
.grid > div:hover img,
.grid > a:hover img,
.grid > article:hover img {
  transform: scale(1.08) !important;
  filter: brightness(1.1) saturate(1.15) !important;
}

/* Shimmer sweep across the card on hover */
.product-card::before,
.product-item::before,
[class*="ProductCard"]::before,
[class*="product-card"]::before,
a[href*="/product/"]::before,
a[href*="/products/"]::before,
.products > div::before,
.products > a::before,
.products > article::before,
.grid > div::before,
.grid > a::before,
.grid > article::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(181, 55, 242, 0.15) 45%,
    rgba(217, 166, 255, 0.28) 50%,
    rgba(181, 55, 242, 0.15) 55%,
    transparent 100%
  );
  transform: skewX(-20deg);
  transition: left 0.7s cubic-bezier(.2,.9,.3,1);
  pointer-events: none;
  z-index: 2;
}

.product-card:hover::before,
.product-item:hover::before,
[class*="ProductCard"]:hover::before,
[class*="product-card"]:hover::before,
a[href*="/product/"]:hover::before,
a[href*="/products/"]:hover::before,
.products > div:hover::before,
.products > a:hover::before,
.products > article:hover::before,
.grid > div:hover::before,
.grid > a:hover::before,
.grid > article:hover::before {
  left: 125%;
}

/* Title + price color shift on hover */
.product-card *,
.product-item *,
[class*="ProductCard"] *,
[class*="product-card"] * {
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.product-card:hover [class*="title"],
.product-card:hover h3,
.product-card:hover h4,
.product-item:hover [class*="title"],
[class*="ProductCard"]:hover [class*="title"],
[class*="product-card"]:hover [class*="title"] {
  color: #f3e8ff !important;
  text-shadow: 0 0 12px rgba(181, 55, 242, 0.5);
}

.product-card:hover [class*="price"],
.product-item:hover [class*="price"],
[class*="ProductCard"]:hover [class*="price"],
[class*="product-card"]:hover [class*="price"] {
  color: #d9a6ff !important;
  text-shadow: 0 0 10px rgba(181, 55, 242, 0.6);
}
/* ===================================
   KR0VA CART PAGE v1
   =================================== */

/* Page wrapper — give it breathing room */
main:has(> [class*="cart"]),
[class*="CartPage"],
[class*="cart-page"],
[class*="cart-container"] {
  padding: 60px 24px 100px !important;
  max-width: 1300px;
  margin: 0 auto;
}

/* "Shopping Cart" heading */
h1:has(+ * [class*="empty"]),
[class*="cart"] h1,
[class*="Cart"] h1,
main h1 {
  font-family: 'Orbitron', 'Segoe UI', sans-serif !important;
  font-size: 38px !important;
  font-weight: 800 !important;
  letter-spacing: 3px !important;
  background: linear-gradient(90deg, #ffffff 0%, #d9a6ff 60%, #b537f2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(181, 55, 242, 0.35);
  margin-bottom: 32px !important;
  position: relative;
  padding-bottom: 14px;
}

[class*="cart"] h1::after,
[class*="Cart"] h1::after,
main h1::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #b537f2, transparent);
  border-radius: 3px;
  box-shadow: 0 0 10px #b537f2;
}

/* ===== EMPTY CART STATE ===== */

/* The "Your cart is empty" block */
[class*="empty"],
[class*="Empty"],
p:has-text("empty"),
div:has(> p:only-child) {
  text-align: center;
  padding: 60px 40px !important;
}

/* Actually target the empty message text */
[class*="cart"] p,
[class*="Cart"] p {
  color: #a89bb8 !important;
  font-size: 17px !important;
  font-style: italic;
  letter-spacing: 0.5px;
}

/* Inject a floating cart icon + CTA into the empty state */
[class*="empty"]::before,
[class*="Empty"]::before {
  content: '🛒';
  display: block;
  font-size: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 20px rgba(181, 55, 242, 0.6)) grayscale(0.3);
  animation: kr0va-cart-float 3s ease-in-out infinite;
}

@keyframes kr0va-cart-float {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50% { transform: translateY(-12px) rotate(3deg); }
}

/* ===== ORDER SUMMARY BOX ===== */

/* The "Your Order" card on the right */
[class*="summary"],
[class*="Summary"],
[class*="order-total"],
[class*="OrderTotal"],
aside,
.cart-summary {
  background: linear-gradient(160deg, rgba(30, 15, 50, 0.75) 0%, rgba(20, 10, 35, 0.85) 100%) !important;
  border: 1px solid rgba(181, 55, 242, 0.3) !important;
  border-radius: 20px !important;
  padding: 32px 28px !important;
  box-shadow:
    0 0 40px rgba(181, 55, 242, 0.2),
    0 15px 50px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.05) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
}

/* Purple glow bar across top of summary */
[class*="summary"]::before,
[class*="Summary"]::before,
aside::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #b537f2, transparent);
  box-shadow: 0 0 15px #b537f2;
}

/* "Your Order" heading */
[class*="summary"] h2,
[class*="summary"] h3,
[class*="Summary"] h2,
[class*="Summary"] h3,
aside h2,
aside h3 {
  font-family: 'Orbitron', sans-serif !important;
  font-size: 20px !important;
  font-weight: 700 !important;
  letter-spacing: 2px !important;
  color: #fff !important;
  text-transform: uppercase;
  margin-bottom: 22px !important;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(181, 55, 242, 0.2);
}

/* Subtotal / Total rows */
[class*="summary"] > div,
[class*="Summary"] > div,
aside > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  color: #cfc4dc;
  font-size: 15px;
  letter-spacing: 0.5px;
}

/* Total row — make it stand out */
[class*="total"]:not([class*="subtotal"]),
[class*="Total"]:not([class*="Subtotal"]),
[class*="grand-total"] {
  border-top: 1px solid rgba(181, 55, 242, 0.25) !important;
  padding-top: 18px !important;
  margin-top: 10px !important;
  font-size: 20px !important;
  font-weight: 700 !important;
  color: #fff !important;
}

[class*="total"] span:last-child,
[class*="Total"] span:last-child {
  color: #d9a6ff !important;
  text-shadow: 0 0 10px rgba(181, 55, 242, 0.5);
  font-family: 'Orbitron', sans-serif;
}

/* ===== CHECKOUT BUTTON ===== */

button:has-text("Checkout"),
[class*="checkout"] button,
[class*="Checkout"] button,
button[type="submit"],
a[href*="checkout"] {
  display: block !important;
  width: 100% !important;
  margin-top: 24px !important;
  padding: 16px 24px !important;
  background: linear-gradient(135deg, #b537f2 0%, #7d2ae8 100%) !important;
  border: none !important;
  border-radius: 14px !important;
  color: #fff !important;
  font-family: 'Orbitron', sans-serif !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 0 25px rgba(181, 55, 242, 0.5),
    0 8px 25px rgba(125, 42, 232, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
  transition: all 0.3s cubic-bezier(.2,.9,.3,1.15) !important;
}

button:has-text("Checkout"):hover,
[class*="checkout"] button:hover,
[class*="Checkout"] button:hover,
a[href*="checkout"]:hover {
  transform: translateY(-3px) scale(1.02) !important;
  box-shadow:
    0 0 40px rgba(181, 55, 242, 0.8),
    0 15px 35px rgba(125, 42, 232, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
}

/* Shimmer sweep on checkout button */
button[type="submit"]::before,
a[href*="checkout"]::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

button[type="submit"]:hover::before,
a[href*="checkout"]:hover::before {
  left: 100%;
}

/* Disabled state for empty cart */
button[type="submit"]:disabled,
button[disabled] {
  background: rgba(60, 40, 90, 0.4) !important;
  color: #7a6a90 !important;
  box-shadow: none !important;
  cursor: not-allowed !important;
}

button[type="submit"]:disabled:hover {
  transform: none !important;
}

/* ===== CART ITEM ROWS (when cart has items) ===== */

[class*="cart-item"],
[class*="CartItem"],
[class*="line-item"],
[class*="LineItem"] {
  display: flex !important;
  align-items: center;
  gap: 20px;
  padding: 20px !important;
  background: rgba(20, 10, 35, 0.5) !important;
  border: 1px solid rgba(181, 55, 242, 0.15) !important;
  border-radius: 14px !important;
  margin-bottom: 14px !important;
  transition: all 0.3s ease !important;
  position: relative;
  overflow: hidden;
}

[class*="cart-item"]:hover,
[class*="CartItem"]:hover,
[class*="line-item"]:hover {
  border-color: rgba(181, 55, 242, 0.5) !important;
  background: rgba(30, 15, 50, 0.65) !important;
  transform: translateX(4px);
  box-shadow: 0 0 25px rgba(181, 55, 242, 0.25);
}

/* Item images inside cart rows */
[class*="cart-item"] img,
[class*="CartItem"] img,
[class*="line-item"] img {
  width: 80px !important;
  height: 80px !important;
  object-fit: cover;
  border-radius: 10px !important;
  border: 1px solid rgba(181, 55, 242, 0.3);
  box-shadow: 0 0 15px rgba(181, 55, 242, 0.2);
}

/* Quantity controls */
[class*="quantity"] button,
[class*="Quantity"] button {
  width: 32px !important;
  height: 32px !important;
  border-radius: 8px !important;
  background: rgba(181, 55, 242, 0.15) !important;
  border: 1px solid rgba(181, 55, 242, 0.3) !important;
  color: #d9a6ff !important;
  font-weight: 700 !important;
  cursor: pointer;
  transition: all 0.2s ease;
}

[class*="quantity"] button:hover,
[class*="Quantity"] button:hover {
  background: rgba(181, 55, 242, 0.35) !important;
  border-color: #b537f2 !important;
  color: #fff !important;
  transform: scale(1.1);
}

/* Remove button — subtle red glow */
button[class*="remove"],
button[class*="Remove"],
button[aria-label*="remove"] {
  background: rgba(242, 55, 55, 0.1) !important;
  border: 1px solid rgba(242, 55, 55, 0.3) !important;
  color: #ff8888 !important;
  border-radius: 8px !important;
  padding: 8px 12px !important;
  transition: all 0.2s ease !important;
}

button[class*="remove"]:hover,
button[class*="Remove"]:hover {
  background: rgba(242, 55, 55, 0.25) !important;
  color: #fff !important;
  box-shadow: 0 0 15px rgba(242, 55, 55, 0.4) !important;
}

/* ===== "Continue Shopping" link ===== */
a[href="/"],
a[href*="products"]:not([class*="cart-item"] a) {
  color: #d9a6ff;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.2s ease;
}

a[href="/"]:hover {
  color: #fff;
  text-shadow: 0 0 10px rgba(181, 55, 242, 0.6);
}
/* ===== KR0VA HEADER — TRANSPARENT GLASS ===== */

header,
nav.navbar,
[class*="header"]:not([class*="sub"]):not([class*="card"]):not([class*="product"]) {
  background: rgba(10, 0, 25, 0.25) !important;
  background-image: none !important;
  backdrop-filter: blur(14px) saturate(140%) !important;
  -webkit-backdrop-filter: blur(14px) saturate(140%) !important;
  border-bottom: 1px solid rgba(168, 85, 247, 0.35) !important;
  box-shadow:
    0 4px 24px rgba(168, 85, 247, 0.12),
    inset 0 -1px 0 rgba(192, 132, 252, 0.15) !important;
}

/* kill any inner wrapper backgrounds that might still be solid */
header > *,
nav.navbar > *,
header .container,
header [class*="wrapper"] {
  background: transparent !important;
  background-image: none !important;
}

/* if there's a top-of-page hero/banner section sitting under the header */
[class*="hero"],
[class*="banner"]:not([class*="product"]),
section:first-of-type {
  background: transparent !important;
  background-image: none !important;
}
/* ===== KR0VA CUSTOM SCROLLBAR ===== */

/* --- Main page scrollbar (WebKit: Chrome, Edge, Safari, Brave, Opera) --- */
::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

::-webkit-scrollbar-track {
  background: rgba(15, 5, 30, 0.6);
  border-left: 1px solid rgba(168, 85, 247, 0.15);
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(
    180deg,
    #c084fc 0%,
    #a855f7 45%,
    #7e22ce 100%
  );
  border-radius: 10px;
  border: 2px solid rgba(15, 5, 30, 0.8);
  box-shadow:
    0 0 8px rgba(168, 85, 247, 0.6),
    inset 0 0 4px rgba(255, 255, 255, 0.15);
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(
    180deg,
    #d8b4fe 0%,
    #c084fc 45%,
    #9333ea 100%
  );
  box-shadow:
    0 0 14px rgba(192, 132, 252, 0.9),
    0 0 24px rgba(168, 85, 247, 0.5),
    inset 0 0 6px rgba(255, 255, 255, 0.25);
}

::-webkit-scrollbar-thumb:active {
  background: linear-gradient(
    180deg,
    #e9d5ff 0%,
    #a855f7 50%,
    #6b21a8 100%
  );
  box-shadow:
    0 0 20px rgba(216, 180, 254, 1),
    0 0 35px rgba(168, 85, 247, 0.7);
}

::-webkit-scrollbar-corner {
  background: rgba(15, 5, 30, 0.8);
}

/* --- Firefox --- */
* {
  scrollbar-width: thin;
  scrollbar-color: #a855f7 rgba(15, 5, 30, 0.6);
}

/* --- Optional: hide scrollbar on tiny inner elements (dropdowns, tooltips) so only the main page scrollbar glows --- */
.dropdown-menu::-webkit-scrollbar,
.tooltip::-webkit-scrollbar {
  width: 6px;
}
.dropdown-menu::-webkit-scrollbar-thumb,
.tooltip::-webkit-scrollbar-thumb {
  background: rgba(168, 85, 247, 0.5);
  box-shadow: none;
}
/* Bigger product cards */
.product-card,
[class*="product"] .card,
.grid > div {
  min-height: 380px;
  padding: 26px !important;
  transition: all 0.3s ease;
  background: rgba(30, 20, 50, 0.4) !important;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(168, 85, 247, 0.2) !important;
  border-radius: 16px !important;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Transparent product images with purple glow */
.product-card img,
[class*="product"] img {
  background: transparent !important;
  mix-blend-mode: normal;
  filter: drop-shadow(0 0 18px rgba(168, 85, 247, 0.6));
  width: 180px !important;
  height: 180px !important;
  object-fit: contain;
  transition: transform 0.3s ease, filter 0.3s ease;
  margin: 10px auto;
  image-rendering: pixelated;
}

/* Hover effect */
.product-card:hover,
[class*="product"] .card:hover {
  transform: translateY(-6px);
  border-color: rgba(168, 85, 247, 0.6) !important;
  box-shadow: 0 12px 45px rgba(168, 85, 247, 0.35);
}

.product-card:hover img,
[class*="product"] .card:hover img {
  transform: scale(1.12);
  filter: drop-shadow(0 0 28px rgba(168, 85, 247, 0.9));
}

/* Kill white backgrounds on images */
img[src*="product"] {
  background-color: transparent !important;
}

/* Bigger price/title text */
.product-card h3,
.product-card .title {
  font-size: 1.2rem !important;
  margin-top: 12px;
}

.product-card .price {
  font-size: 1.1rem !important;
  font-weight: 600;
}

/* Button polish */
.product-card button,
.product-card a.button {
  margin-top: auto;
  padding: 10px 20px !important;
  border-radius: 10px !important;
  transition: all 0.2s ease;
}

.product-card button:hover,
.product-card a.button:hover {
  background: rgba(168, 85, 247, 0.8) !important;
  transform: scale(1.03);
}

/* Grid spacing */
.products-grid,
.grid {
  gap: 24px !important;
}
/* ---------- CART: stays near right edge on any res ---------- */
a.btn.btn-outline-primary[href*="/cart"] {
  position: absolute !important;
  right: 12% !important;        /* ← percentage instead of px — scales with screen */
  top: 50% !important;
  transform: translateY(-50%) !important;
}
.tiktok-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.2s ease;
  z-index: 9999;
}

.tiktok-float:hover {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}