/* ZeraphX - Stasis-Style Premium Theme v3 */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* === COLOR SYSTEM === */
:root {
  --cl-accent: #A855F7 !important;
  --cl-accent-rgb: 168, 85, 247 !important;
  --cl-background-primary: #050510 !important;
  --cl-background-primary-rgb: 5, 5, 16 !important;
  --cl-background-secondary: #0a0a1a !important;
  --cl-background-secondary-rgb: 10, 10, 26 !important;
  --cl-border: #1a1a2e !important;
  --cl-border-rgb: 26, 26, 46 !important;
  --bs-body-bg: #050510 !important;
  --bs-body-color: #e2e8f0 !important;
  --bs-font-sans-serif: 'Inter', sans-serif !important;
  --bs-primary: #A855F7 !important;
  --bs-primary-rgb: 168, 85, 247 !important;
}

/* === ANIMATIONS === */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 15px rgba(168, 85, 247, 0.15); }
  50% { box-shadow: 0 0 35px rgba(168, 85, 247, 0.3); }
}
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@keyframes borderGlow {
  0%, 100% { border-color: rgba(168, 85, 247, 0.1); }
  50% { border-color: rgba(168, 85, 247, 0.4); }
}
@keyframes gradientText {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* === GLOBAL === */
body {
  background: #050510 !important;
  background-image:
    radial-gradient(ellipse at 15% 0%, rgba(168, 85, 247, 0.07) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 100%, rgba(139, 92, 246, 0.04) 0%, transparent 55%) !important;
  color: #e2e8f0 !important;
  font-family: 'Inter', sans-serif !important;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* === NAVBAR === */
.navbar {
  background: rgba(5, 5, 16, 0.92) !important;
  backdrop-filter: blur(24px) saturate(1.5) !important;
  -webkit-backdrop-filter: blur(24px) saturate(1.5) !important;
  border-bottom: 1px solid rgba(168, 85, 247, 0.1) !important;
  padding: 0.55rem 0 !important;
  animation: fadeIn 0.6s ease both !important;
}
.navbar .navbar-brand {
  font-weight: 800 !important;
  letter-spacing: -0.04em !important;
  font-size: 1.35rem !important;
}
.navbar .navbar-brand span {
  background: linear-gradient(135deg, #C084FC, #A855F7, #7C3AED) !important;
  background-size: 200% 200% !important;
  animation: gradientText 4s ease infinite !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}
.navbar .nav-link {
  color: rgba(255,255,255,0.5) !important;
  font-weight: 500 !important;
  font-size: 0.84rem !important;
  letter-spacing: 0.01em !important;
  transition: all 0.3s ease !important;
  padding: 0.5rem 0.85rem !important;
  position: relative !important;
}
.navbar .nav-link:hover {
  color: #fff !important;
  text-shadow: 0 0 20px rgba(168, 85, 247, 0.5);
}
.navbar .nav-link::after {
  content: '' !important;
  position: absolute !important;
  bottom: 0 !important;
  left: 50% !important;
  width: 0 !important;
  height: 2px !important;
  background: linear-gradient(90deg, transparent, #A855F7, transparent) !important;
  transition: all 0.3s ease !important;
  transform: translateX(-50%) !important;
}
.navbar .nav-link:hover::after {
  width: 70% !important;
}
.navbar .btn-outline-primary {
  border: 1px solid rgba(168, 85, 247, 0.3) !important;
  color: #C084FC !important;
  font-weight: 600 !important;
  font-size: 0.82rem !important;
  border-radius: 8px !important;
  padding: 0.4rem 1rem !important;
  transition: all 0.3s ease !important;
  background: transparent !important;
}
.navbar .btn-outline-primary:hover {
  background: rgba(168, 85, 247, 0.1) !important;
  border-color: #A855F7 !important;
  box-shadow: 0 0 25px rgba(168, 85, 247, 0.15) !important;
  color: #fff !important;
}

/* === HERO - FIX BACKGROUND === */
.hero {
  background-size: cover !important;
  background-position: center !important;
  position: relative !important;
  animation: none !important;
}
.hero .bg-overlay {
  background: rgba(5, 5, 16, 0.96) !important;
  backdrop-filter: blur(3px) !important;
}
.hero .container {
  position: relative !important;
  z-index: 2 !important;
}
.hero .content {
  animation: fadeInUp 0.8s ease both !important;
}
.hero .content h1 {
  font-weight: 900 !important;
  letter-spacing: -0.045em !important;
  line-height: 1.05 !important;
  font-size: 3.8rem !important;
  background: linear-gradient(135deg, #ffffff 30%, #C084FC 70%, #A855F7 100%) !important;
  background-size: 200% 200% !important;
  animation: gradientText 6s ease infinite !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  margin-bottom: 0.8rem !important;
}
.hero .content p {
  color: rgba(255,255,255,0.45) !important;
  font-size: 1.05rem !important;
  line-height: 1.7 !important;
  animation: fadeInUp 0.8s ease 0.15s both !important;
}
.hero .image {
  display: none !important;
}
.hero .fake-searchbar {
  background: rgba(10, 10, 26, 0.6) !important;
  border: 1px solid rgba(168, 85, 247, 0.12) !important;
  border-radius: 12px !important;
  backdrop-filter: blur(10px) !important;
  transition: all 0.3s ease !important;
  animation: fadeInUp 0.8s ease 0.2s both !important;
}
.hero .fake-searchbar:hover {
  border-color: rgba(168, 85, 247, 0.35) !important;
  box-shadow: 0 0 25px rgba(168, 85, 247, 0.08) !important;
}
.hero .fake-searchbar .form-control {
  background: transparent !important;
  border: none !important;
  color: rgba(255,255,255,0.4) !important;
}
.hero .stats-wrapper {
  animation: fadeInUp 0.8s ease 0.3s both !important;
}
.hero .stats {
  border: 1px solid rgba(168, 85, 247, 0.1) !important;
  background: rgba(168, 85, 247, 0.03) !important;
  backdrop-filter: blur(10px) !important;
  border-radius: 14px !important;
  padding: 1rem 1.5rem !important;
  animation: glowPulse 4s ease infinite !important;
}
.hero .stats .value {
  color: #fff !important;
  font-weight: 800 !important;
  font-size: 1.25rem !important;
}
.hero .stats .value svg {
  color: #FBBF24 !important;
  stroke: #FBBF24 !important;
}
.hero .stats .label {
  color: rgba(255,255,255,0.3) !important;
  font-size: 0.72rem !important;
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
  font-weight: 600 !important;
}
.hero .btn-primary {
  animation: fadeInUp 0.8s ease 0.25s both !important;
}

/* === SECTION TITLES === */
.section-title {
  margin-bottom: 0.4rem !important;
  animation: fadeInUp 0.6s ease both !important;
}
.section-title h2 {
  font-weight: 800 !important;
  letter-spacing: -0.03em !important;
  color: #fff !important;
  font-size: 2rem !important;
}
.section-subtitle p {
  color: rgba(255,255,255,0.35) !important;
}

/* === PRODUCT CARDS === */
.products .col-12 {
  animation: fadeInUp 0.5s ease both;
}
.products .col-12:nth-child(1) { animation-delay: 0.05s; }
.products .col-12:nth-child(2) { animation-delay: 0.12s; }
.products .col-12:nth-child(3) { animation-delay: 0.19s; }
.products .col-12:nth-child(4) { animation-delay: 0.26s; }

.card {
  background: rgba(10, 10, 26, 0.7) !important;
  border: 1px solid rgba(168, 85, 247, 0.06) !important;
  border-radius: 16px !important;
  backdrop-filter: blur(12px) !important;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
  overflow: hidden !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25) !important;
}
.card:hover {
  border-color: rgba(168, 85, 247, 0.35) !important;
  transform: translateY(-8px) scale(1.015) !important;
  box-shadow:
    0 20px 50px -10px rgba(168, 85, 247, 0.2),
    0 0 0 1px rgba(168, 85, 247, 0.15),
    inset 0 0 30px rgba(168, 85, 247, 0.03) !important;
}
.card .card-img-top {
  border-bottom: 1px solid rgba(168, 85, 247, 0.04) !important;
  position: relative !important;
  overflow: hidden !important;
}
.card .card-img-top img {
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1) !important;
}
.card:hover .card-img-top img {
  transform: scale(1.06) !important;
}
.card .overlay {
  background: rgba(5, 5, 16, 0.65) !important;
  backdrop-filter: blur(6px) !important;
}
.card .card-body {
  padding: 1.1rem 1.25rem !important;
}
.card .card-title {
  color: #fff !important;
  font-weight: 700 !important;
  letter-spacing: -0.02em !important;
  font-size: 1rem !important;
}
.card .price {
  color: #C084FC !important;
  font-weight: 800 !important;
  font-size: 1.05rem !important;
}
.card .info .text-primary {
  color: rgba(168, 85, 247, 0.55) !important;
  font-size: 0.75rem !important;
  font-weight: 500 !important;
}
.card .overlay .btn-primary,
.card .overlay .btn {
  background: linear-gradient(135deg, #9333EA, #A855F7) !important;
  border: none !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 18px rgba(168, 85, 247, 0.4) !important;
  color: #fff !important;
  font-size: 0.85rem !important;
}
.card .product-img-placeholder {
  background: rgba(168, 85, 247, 0.04) !important;
  color: rgba(168, 85, 247, 0.25) !important;
}

/* === GLOBAL BUTTONS === */
.btn-primary {
  background: linear-gradient(135deg, #9333EA 0%, #A855F7 50%, #7C3AED 100%) !important;
  background-size: 200% 200% !important;
  border: none !important;
  border-radius: 10px !important;
  font-weight: 600 !important;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
  box-shadow: 0 4px 18px rgba(168, 85, 247, 0.25) !important;
  color: #fff !important;
  padding: 0.6rem 1.5rem !important;
  font-size: 0.9rem !important;
}
.btn-primary:hover, .btn-primary:focus {
  background-position: 100% 50% !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 10px 35px rgba(168, 85, 247, 0.4) !important;
  color: #fff !important;
}
.btn-primary:active {
  transform: translateY(0) scale(0.98) !important;
}
.btn-outline-primary {
  border: 1px solid rgba(168, 85, 247, 0.3) !important;
  color: #C084FC !important;
  background: transparent !important;
  border-radius: 10px !important;
  font-weight: 600 !important;
  transition: all 0.3s ease !important;
  padding: 0.6rem 1.5rem !important;
  font-size: 0.9rem !important;
}
.btn-outline-primary:hover {
  background: rgba(168, 85, 247, 0.08) !important;
  border-color: #A855F7 !important;
  color: #fff !important;
  box-shadow: 0 0 20px rgba(168, 85, 247, 0.12) !important;
}

/* === PRODUCT PAGE === */
.product-page, [data-component-id] {
  animation: fadeInUp 0.6s ease both !important;
}
.product-page .btn-primary,
.product-page .btn {
  padding: 0.65rem 1.8rem !important;
  font-size: 0.9rem !important;
  border-radius: 10px !important;
}
.product-page .btn svg, .btn svg.icon {
  width: 1.1rem !important;
  height: 1.1rem !important;
  max-width: 1.1rem !important;
  max-height: 1.1rem !important;
  vertical-align: -0.15em !important;
}
.product-page .btn img {
  width: 1.1rem !important;
  height: 1.1rem !important;
  max-width: 1.1rem !important;
  max-height: 1.1rem !important;
}
.product-page .product-img-placeholder {
  background: rgba(168, 85, 247, 0.04) !important;
  border-radius: 14px !important;
  border: 1px solid rgba(168, 85, 247, 0.08) !important;
}
.product-page h1, .product-page h2, .product-page h3 {
  color: #fff !important;
  font-weight: 800 !important;
  letter-spacing: -0.03em !important;
}
.product-page .price, .product-page .price span {
  color: #C084FC !important;
  font-weight: 800 !important;
  font-size: 1.6rem !important;
}
.product-page .badge, .product-page .stock-badge {
  background: rgba(168, 85, 247, 0.12) !important;
  color: #C084FC !important;
  border: 1px solid rgba(168, 85, 247, 0.2) !important;
  border-radius: 6px !important;
  font-weight: 600 !important;
  font-size: 0.78rem !important;
  padding: 0.3rem 0.65rem !important;
}

/* Fix quantity input */
.quantity-input, .product-page input[type="number"] {
  background: rgba(10, 10, 26, 0.8) !important;
  border: 1px solid rgba(168, 85, 247, 0.12) !important;
  color: #fff !important;
  border-radius: 10px !important;
  text-align: center !important;
  font-weight: 600 !important;
}
.quantity-input .btn, .quantity-btn {
  background: rgba(168, 85, 247, 0.08) !important;
  border: 1px solid rgba(168, 85, 247, 0.12) !important;
  color: #C084FC !important;
  transition: all 0.2s ease !important;
}
.quantity-input .btn:hover, .quantity-btn:hover {
  background: rgba(168, 85, 247, 0.15) !important;
  color: #fff !important;
}

/* Product description */
.product-page .description, .product-page .card-body p,
.product-page .text-muted, .description {
  color: rgba(255,255,255,0.5) !important;
  line-height: 1.7 !important;
  font-size: 0.92rem !important;
}

/* === FOOTER === */
footer, .footer {
  background: rgba(3, 3, 10, 0.97) !important;
  border-top: 1px solid rgba(168, 85, 247, 0.06) !important;
  padding: 3rem 0 1.5rem !important;
  animation: fadeIn 0.5s ease both !important;
}
footer h5, footer h6, .footer h5, .footer h6 {
  color: #fff !important;
  font-weight: 700 !important;
  letter-spacing: -0.01em !important;
  font-size: 0.95rem !important;
}
footer a, .footer a {
  color: rgba(255,255,255,0.35) !important;
  transition: all 0.25s ease !important;
  font-size: 0.88rem !important;
}
footer a:hover, .footer a:hover {
  color: #C084FC !important;
  padding-left: 4px !important;
}

/* === MODALS === */
.modal-content {
  background: #0c0c1a !important;
  border: 1px solid rgba(168, 85, 247, 0.1) !important;
  border-radius: 16px !important;
  box-shadow: 0 30px 70px rgba(0,0,0,0.6) !important;
  animation: fadeInUp 0.3s ease both !important;
}
.modal-header { border-bottom: 1px solid rgba(168, 85, 247, 0.06) !important; }
.modal-footer { border-top: 1px solid rgba(168, 85, 247, 0.06) !important; }
.btn-close { filter: invert(1) !important; }

/* === FORMS === */
.form-control, .form-select {
  background: rgba(10, 10, 26, 0.8) !important;
  border: 1px solid rgba(168, 85, 247, 0.1) !important;
  color: #e2e8f0 !important;
  border-radius: 10px !important;
  transition: all 0.25s ease !important;
  font-size: 0.9rem !important;
}
.form-control:focus, .form-select:focus {
  border-color: #A855F7 !important;
  box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.1) !important;
  background: rgba(10, 10, 26, 0.95) !important;
}
.form-label {
  color: rgba(255,255,255,0.6) !important;
  font-weight: 600 !important;
  font-size: 0.82rem !important;
  text-transform: uppercase !important;
  letter-spacing: 0.06em !important;
}

/* === SCROLLBAR === */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: #050510; }
::-webkit-scrollbar-thumb { background: rgba(168,85,247,0.18); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(168,85,247,0.4); }

/* === TESTIMONIALS === */
.testimonial {
  background: rgba(10, 10, 26, 0.5) !important;
  border: 1px solid rgba(168, 85, 247, 0.06) !important;
  border-radius: 14px !important;
  transition: all 0.35s ease !important;
}
.testimonial:hover {
  border-color: rgba(168, 85, 247, 0.2) !important;
  transform: translateY(-3px) !important;
}

/* === MISC === */
a { color: #C084FC !important; transition: color 0.2s ease !important; }
a:hover { color: #E9D5FF !important; }
.text-primary { color: #A855F7 !important; }
.bg-image { opacity: 0.06 !important; filter: blur(2px) !important; }
::selection { background: rgba(168,85,247,0.3); color: #fff; }

/* Animated glow on component sections */
.component {
  animation: fadeInUp 0.6s ease both;
}
.component:nth-child(2) { animation-delay: 0.1s; }
.component:nth-child(3) { animation-delay: 0.2s; }
.component:nth-child(4) { animation-delay: 0.3s; }

/* Subtle ambient glow behind content */
body::before {
  content: '';
  position: fixed;
  top: 20%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(168,85,247,0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
  animation: float 8s ease-in-out infinite;
}
body::after {
  content: '';
  position: fixed;
  bottom: 10%;
  right: -5%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(139,92,246,0.04) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
  animation: float 10s ease-in-out infinite reverse;
}

/* === CRITICAL FIXES v3.1 === */

/* Fix hero - hide background image completely */
.hero {
  background-image: none !important;
  background: #050510 !important;
}
.hero::before {
  content: '' !important;
  position: absolute !important;
  inset: 0 !important;
  background: radial-gradient(ellipse at center, rgba(168, 85, 247, 0.08) 0%, transparent 60%) !important;
  z-index: 0 !important;
  pointer-events: none !important;
}
.hero .bg-overlay {
  background: transparent !important;
}
/* Hide hero side image completely */
.hero .image,
.hero .container > div:last-child:not(.content) {
  display: none !important;
  visibility: hidden !important;
  width: 0 !important;
  height: 0 !important;
  overflow: hidden !important;
}
/* Make hero content full width since side image is hidden */
.hero .container {
  display: flex !important;
  justify-content: center !important;
  text-align: center !important;
}
.hero .content {
  max-width: 700px !important;
  text-align: center !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
}
.hero .content h1 {
  text-align: center !important;
}
.hero .content p {
  text-align: center !important;
  margin: 0 auto !important;
}
.hero .fake-searchbar {
  width: 100% !important;
  max-width: 600px !important;
}

/* === Fix button SVG icons - CRITICAL === */
.btn svg,
.btn svg.size-5,
.btn svg.size-4,
.btn svg.size-6,
button svg,
a.btn svg {
  width: 1.15rem !important;
  height: 1.15rem !important;
  max-width: 1.15rem !important;
  max-height: 1.15rem !important;
  min-width: 1.15rem !important;
  min-height: 1.15rem !important;
  display: inline-block !important;
  vertical-align: -0.125em !important;
  flex-shrink: 0 !important;
}
/* Make product page buttons normal height */
.product-page .btn,
.product-form .btn,
main .btn.w-100,
.btn.w-100 {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.5rem !important;
  padding: 0.75rem 1.5rem !important;
  font-size: 0.95rem !important;
  min-height: auto !important;
  max-height: 52px !important;
}
/* Fix the icon class that's causing expansion */
.size-5 {
  width: 1.25rem !important;
  height: 1.25rem !important;
}
.size-4 {
  width: 1rem !important;
  height: 1rem !important;
}
.size-6 {
  width: 1.5rem !important;
  height: 1.5rem !important;
}

/* === Extra polish === */
/* Navbar icon sizing */
.navbar .btn svg,
.navbar svg.icon {
  width: 1.1rem !important;
  height: 1.1rem !important;
  max-width: 1.1rem !important;
  max-height: 1.1rem !important;
}
/* Cart badge */
.cart .count {
  background: #A855F7 !important;
  border-radius: 50% !important;
  font-size: 0.65rem !important;
  font-weight: 700 !important;
}
/* Product card image placeholder better styling */
.product-img-placeholder {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: linear-gradient(145deg, rgba(168,85,247,0.06) 0%, rgba(10,10,26,0.8) 100%) !important;
  min-height: 250px !important;
}
.product-img-placeholder svg {
  width: 3rem !important;
  height: 3rem !important;
  opacity: 0.35 !important;
}
/* Stats section improvements */
.hero .stats {
  display: flex !important;
  gap: 2rem !important;
}
.hero .stats > div {
  text-align: center !important;
}

/* === V4 ENHANCEMENTS: LESS PLAIN === */

/* Animated Ambient Grid */
body::before {
  content: '';
  position: fixed !important;
  inset: 0 !important;
  background-image: 
    linear-gradient(rgba(168, 85, 247, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(168, 85, 247, 0.04) 1px, transparent 1px) !important;
  background-size: 50px 50px !important;
  background-position: center top !important;
  z-index: -2 !important;
  pointer-events: none !important;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 80%) !important;
  -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 80%) !important;
  animation: bgPan 40s linear infinite !important;
}

@keyframes bgPan {
  0% { background-position: 0 0; }
  100% { background-position: 100px 100px; }
}

/* Deepen hero glow */
.hero::after {
  content: '' !important;
  position: absolute !important;
  bottom: -20% !important;
  left: 20% !important;
  width: 60% !important;
  height: 50% !important;
  background: radial-gradient(ellipse at center, rgba(168, 85, 247, 0.18) 0%, transparent 70%) !important;
  pointer-events: none !important;
  z-index: 1 !important;
  filter: blur(40px) !important;
}

/* Product Card Enhanced Glow */
.card {
  background: linear-gradient(145deg, rgba(16, 16, 30, 0.9), rgba(5, 5, 16, 0.95)) !important;
  border: 1px solid rgba(168, 85, 247, 0.15) !important;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.05) !important;
}
.card:hover {
  border-color: rgba(168, 85, 247, 0.6) !important;
  box-shadow: 
    0 20px 40px rgba(0,0,0,0.6),
    0 0 40px rgba(168, 85, 247, 0.2),
    inset 0 1px 0 rgba(255,255,255,0.1) !important;
}

/* Search Modal Aesthetics */
#searchModal .modal-content {
  background: rgba(10, 10, 26, 0.85) !important;
  backdrop-filter: blur(20px) !important;
  border: 1px solid rgba(168, 85, 247, 0.3) !important;
  box-shadow: 0 0 50px rgba(168, 85, 247, 0.25) !important;
}
#searchModal .form-control {
  font-size: 1.1rem !important;
  padding: 1rem !important;
  background: rgba(168, 85, 247, 0.05) !important;
  border: 1px solid rgba(168, 85, 247, 0.2) !important;
}
#searchModal .form-control:focus {
  background: rgba(168, 85, 247, 0.1) !important;
  border-color: #A855F7 !important;
  box-shadow: 0 0 20px rgba(168, 85, 247, 0.2) !important;
}

/* === ENHANCED BACKGROUND ANIMATIONS === */
/* Floating Particles Effect */
body::after {
  content: '';
  position: fixed !important;
  inset: 0 !important;
  background-image: 
    radial-gradient(circle at 15% 50%, rgba(168, 85, 247, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 85% 30%, rgba(139, 92, 246, 0.07) 0%, transparent 50%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23a855f7' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") !important;
  z-index: -3 !important;
  pointer-events: none !important;
  animation: dynamicPulse 15s ease-in-out infinite alternate, panBackground 100s linear infinite !important;
}

@keyframes dynamicPulse {
  0% { transform: scale(1) translate(0, 0); opacity: 0.8; }
  50% { transform: scale(1.05) translate(1%, 2%); opacity: 1; filter: brightness(1.2); }
  100% { transform: scale(1) translate(-1%, -1%); opacity: 0.8; }
}

@keyframes panBackground {
  0% { background-position: 0% 0%, 0% 0%, 0 0; }
  100% { background-position: 100% 100%, -50% -50%, 500px 500px; }
}

/* Make logo match theme */
.navbar-brand img.avatar {
  height: 48px !important;
  width: auto !important;
  filter: drop-shadow(0 0 10px rgba(168, 85, 247, 0.4)) !important;
  transition: all 0.3s ease !important;
}
.navbar-brand img.avatar:hover {
  filter: drop-shadow(0 0 20px rgba(168, 85, 247, 0.8)) !important;
  transform: scale(1.05) !important;
}
/* === CHOICES.JS DROPDOWN FIX === */
.choices__list--dropdown,
.choices__list[aria-expanded] {
  background-color: #050510 !important;
  border: 1px solid #C084FC !important;
}
.choices__list--dropdown .choices__item--selectable,
.choices__list--dropdown .choices__item {
  color: #fff !important;
}
.choices__list--dropdown .choices__item--selectable.is-highlighted {
  background-color: #C084FC !important;
  color: #fff !important;
}

/* === INJECT LOGO === */
/* Hide text logo and replace with background image logo */
.navbar .navbar-brand {
  font-size: 0 !important;
  color: transparent !important;
  background-image: url('https://files.catbox.moe/wqq4my.png') !important;
  background-size: contain !important;
  background-position: left center !important;
  background-repeat: no-repeat !important;
  height: 55px !important;
  width: 140px !important;
  display: inline-block !important;
  transition: all 0.3s ease !important;
}
.navbar .navbar-brand:hover {
  filter: drop-shadow(0 0 20px rgba(168, 85, 247, 0.8)) !important;
  transform: scale(1.05) !important;
}

/* === PRODUCT IMAGE OVERRIDES === */
/* Card Placeholder override */
.product-img-placeholder,
.card-img-top.placeholder,
.product-image-container .placeholder {
  background-image: url('https://files.catbox.moe/bqp8o7.jpg') !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}
.product-img-placeholder svg,
.card-img-top.placeholder svg,
.product-image-container .placeholder svg {
  display: none !important;
}

/* Product Page Image overrides */
.product-page img[src*="placeholder"],
.product-page .img-fluid[alt="Product Image"] {
  content: url('https://files.catbox.moe/bqp8o7.jpg') !important;
  object-fit: contain !important;
}

/* === ENHANCED BACKGROUND V2 === */
body {
  background-color: #030308 !important;
}
body::before {
  content: '' !important;
  position: fixed !important;
  inset: -50% !important;
  background-image: 
    radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 80% 20%, rgba(168, 85, 247, 0.06) 0%, transparent 30%),
    radial-gradient(circle at 20% 80%, rgba(192, 132, 252, 0.04) 0%, transparent 40%) !important;
  z-index: -4 !important;
  pointer-events: none !important;
  animation: bgAuroras 25s ease-in-out infinite alternate !important;
}

@keyframes bgAuroras {
  0% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(5deg) scale(1.1); }
  100% { transform: rotate(-5deg) scale(1); }
}

/* === CARD & IMAGE REFINEMENTS === */
.card, .product-card {
  background: rgba(12, 8, 24, 0.85) !important;
  backdrop-filter: blur(10px) !important;
  border: 1px solid rgba(168, 85, 247, 0.3) !important;
  border-radius: 14px !important;
  overflow: hidden !important;
}
.card-body, .product-card-inner {
  background: transparent !important;
  border-top: 1px solid rgba(168, 85, 247, 0.15) !important;
}

/* Fix product card placeholder image aspect ratio */
.product-img-placeholder,
.card-img-top.placeholder,
.product-image-container .placeholder {
  background-image: url('https://files.catbox.moe/bqp8o7.jpg') !important;
  background-size: contain !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-color: transparent !important;
}

/* Fix product page image */
.product-page img[src*="placeholder"],
.product-page .img-fluid[alt="Product Image"] {
  content: url('https://files.catbox.moe/bqp8o7.jpg') !important;
  object-fit: contain !important;
  max-height: 500px !important;
  background: transparent !important;
  padding: 10px !important;
}

/* Clamp all card images to fix giant floating products */
.card img, .product-card img {
  max-height: 200px !important;
  object-fit: contain !important;
  width: 100% !important;
  margin: 0 auto !important;
  display: block !important;
}

/* Final Grid Placeholder Fix */
.product-img-placeholder, 
.card-img-top.placeholder {
  content: url('https://files.catbox.moe/bqp8o7.jpg') !important;
  object-fit: contain !important;
  object-position: center center !important;
  width: 100% !important;
  height: 250px !important;
  border-radius: 14px 14px 0 0 !important;
  display: block !important;
}