/*
 * Velxo Shop Theme - Neon Red Edition
 * Custom CSS with animations and neon effects
 */

/* ============================================
   CSS VARIABLES & NEON EFFECTS
   ============================================ */

:root {
  --neon-red: #ff0000;
  --neon-red-glow: rgba(255, 0, 0, 0.5);
  --neon-red-bright: #ff3333;
  --dark-bg: #0a0a0a;
  --darker-bg: #050505;
  --card-bg: #111111;
  --border-subtle: rgba(255, 255, 255, 0.05);
  --text-muted: #888888;
}

/* ============================================
   ANIMATIONS & KEYFRAMES
   ============================================ */

@keyframes neonPulse {
  0%, 100% { box-shadow: 0 0 5px var(--neon-red), 0 0 10px var(--neon-red), 0 0 20px var(--neon-red-glow); }
  50% { box-shadow: 0 0 10px var(--neon-red), 0 0 20px var(--neon-red), 0 0 40px var(--neon-red-glow); }
}

@keyframes neonFlicker {
  0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
    text-shadow: 0 0 5px var(--neon-red), 0 0 10px var(--neon-red), 0 0 20px var(--neon-red-glow);
  }
  20%, 24%, 55% {
    text-shadow: none;
  }
}

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

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

@keyframes glow {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

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

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

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

@keyframes borderGlow {
  0%, 100% { border-color: rgba(255, 0, 0, 0.3); }
  50% { border-color: rgba(255, 0, 0, 0.8); }
}

/* ============================================
   GLOBAL STYLES
   ============================================ */

body {
  background-color: var(--dark-bg) !important;
  color: #ffffff;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Custom scrollbar with neon red */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
  background: var(--neon-red);
  border-radius: 4px;
  box-shadow: 0 0 10px var(--neon-red-glow);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--neon-red-bright);
}

/* Selection color */
::selection {
  background: rgba(255, 0, 0, 0.3);
  color: #ffffff;
}

/* ============================================
   ANNOUNCEMENT BAR - MARQUEE STYLE
   ============================================ */

.announcement {
  background: var(--neon-red) !important;
  color: #ffffff !important;
  padding: 0.6rem 0 !important;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  animation: neonPulse 3s ease-in-out infinite;
}

.announcement::before,
.announcement::after {
  content: "";
  position: absolute;
  top: 0;
  width: 80px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.announcement::before {
  left: 0;
  background: linear-gradient(to right, var(--neon-red), transparent);
}

.announcement::after {
  right: 0;
  background: linear-gradient(to left, var(--neon-red), transparent);
}

.announcement marquee,
.announcement span {
  display: inline-block;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* ============================================
   NAVBAR STYLES
   ============================================ */

.navbar {
  background: rgba(10, 10, 10, 0.95) !important;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-subtle) !important;
  padding: 0.75rem 0 !important;
  transition: all 0.3s ease;
}

.navbar .navbar-brand img {
  max-height: 2.5rem !important;
  transition: transform 0.3s ease;
}

.navbar .navbar-brand img:hover {
  transform: scale(1.05);
}

.navbar .navbar-toggler {
  border: none !important;
  padding: 0.5rem !important;
  transition: all 0.3s ease;
}

.navbar .navbar-toggler:hover {
  transform: scale(1.1);
}

.navbar .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.navbar .cart .btn {
  color: #ffffff !important;
  border-color: transparent !important;
  padding: 0.5rem !important;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.navbar .cart .btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 0, 0, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease;
}

.navbar .cart .btn:hover::before {
  width: 150%;
  height: 150%;
}

.navbar .cart .btn:hover {
  color: var(--neon-red) !important;
  transform: scale(1.1);
}

.navbar .cart .btn svg {
  width: 1.5rem !important;
  height: 1.5rem !important;
}

.navbar .cart .btn .count {
  background: var(--neon-red) !important;
  box-shadow: 0 0 10px var(--neon-red-glow);
  animation: pulse 2s ease-in-out infinite;
}

/* Currency selector styling */
.currency-selector .choices__inner {
  border-color: rgba(255, 255, 255, 0.2) !important;
  background: transparent !important;
  min-height: 38px !important;
  padding: 0.25rem 0.5rem !important;
  transition: all 0.3s ease;
}

.currency-selector .choices__inner:hover {
  border-color: var(--neon-red) !important;
  box-shadow: 0 0 10px var(--neon-red-glow);
}

.currency-selector .symbol {
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.1) !important;
}

/* ============================================
   HERO SECTION STYLES
   ============================================ */

.hero {
  background: var(--dark-bg) !important;
  min-height: auto !important;
  padding: 3rem 0 !important;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, rgba(255, 0, 0, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.hero .container {
  padding: 2rem 1rem !important;
  position: relative;
  z-index: 1;
}

.hero .content {
  text-align: center !important;
  max-width: 800px !important;
  animation: slideInUp 0.8s ease-out;
}

/* Badge styling */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 2rem;
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
  color: #ffffff;
  margin-bottom: 1.5rem;
  animation: fadeIn 1s ease-out 0.2s both;
}

.hero-badge i,
.hero-badge svg {
  color: var(--neon-red);
}

/* Hero title with neon effect */
.hero .content h1 {
  font-size: 2.5rem !important;
  font-weight: 700 !important;
  margin-bottom: 1rem !important;
  color: #ffffff !important;
  line-height: 1.2 !important;
  animation: fadeIn 1s ease-out 0.3s both;
}

@media (min-width: 768px) {
  .hero .content h1 {
    font-size: 3.5rem !important;
  }
}

/* Discord link */
.hero-discord-link {
  color: var(--text-muted) !important;
  font-size: 0.875rem !important;
  margin-bottom: 2rem !important;
  display: inline-block !important;
  text-decoration: none !important;
  word-break: break-all;
  transition: all 0.3s ease;
  animation: fadeIn 1s ease-out 0.4s both;
}

.hero-discord-link:hover {
  color: var(--neon-red) !important;
  text-shadow: 0 0 10px var(--neon-red-glow);
}

/* Search bar styling */
.hero .fake-searchbar {
  max-width: 500px !important;
  margin: 0 auto 2rem auto !important;
  animation: fadeIn 1s ease-out 0.5s both;
}

.hero .fake-searchbar input {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 0.5rem !important;
  padding: 1rem 1rem 1rem 3rem !important;
  color: #ffffff !important;
  font-size: 1rem !important;
  transition: all 0.3s ease;
}

.hero .fake-searchbar input:hover,
.hero .fake-searchbar input:focus {
  border-color: var(--neon-red) !important;
  box-shadow: 0 0 15px var(--neon-red-glow);
}

.hero .fake-searchbar input::placeholder {
  color: #666666 !important;
}

.hero .fake-searchbar svg {
  left: 1rem !important;
  fill: #666666 !important;
  width: 1.25rem !important;
  height: 1.25rem !important;
  transition: all 0.3s ease;
}

.hero .fake-searchbar:hover svg {
  fill: var(--neon-red) !important;
}

/* Hero buttons */
.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
  animation: fadeIn 1s ease-out 0.6s both;
}

@media (min-width: 576px) {
  .hero-buttons {
    flex-direction: row;
  }
}

.hero .btn-primary {
  background: var(--neon-red) !important;
  border-color: var(--neon-red) !important;
  color: #ffffff !important;
  padding: 0.875rem 2rem !important;
  font-weight: 600 !important;
  border-radius: 0.5rem !important;
  transition: all 0.3s ease !important;
  position: relative;
  overflow: hidden;
}

.hero .btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.hero .btn-primary:hover::before {
  left: 100%;
}

.hero .btn-primary:hover {
  background: #cc0000 !important;
  border-color: #cc0000 !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 5px 25px var(--neon-red-glow) !important;
}

.hero .btn-outline-light {
  background: transparent !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  color: #ffffff !important;
  padding: 0.875rem 2rem !important;
  font-weight: 600 !important;
  border-radius: 0.5rem !important;
  transition: all 0.3s ease !important;
}

.hero .btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.05) !important;
  border-color: var(--neon-red) !important;
  color: var(--neon-red) !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 5px 25px rgba(255, 0, 0, 0.2) !important;
}

/* Stats section */
.hero .stats-wrapper {
  margin-top: 2rem !important;
  animation: fadeIn 1s ease-out 0.7s both;
}

.hero .content .stats {
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(255, 255, 255, 0.05) !important;
  border-radius: 1rem !important;
  padding: 1.5rem !important;
  display: inline-flex !important;
  gap: 2rem !important;
  transition: all 0.3s ease;
}

.hero .content .stats:hover {
  border-color: rgba(255, 0, 0, 0.3) !important;
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.1);
}

.hero .content .stats div {
  text-align: center !important;
  transition: transform 0.3s ease;
}

.hero .content .stats div:hover {
  transform: translateY(-5px);
}

.hero .content .stats div .value {
  font-size: 1.5rem !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  display: block !important;
  margin-bottom: 0.25rem !important;
  text-shadow: 0 0 10px var(--neon-red-glow);
}

.hero .content .stats div .label {
  font-size: 0.75rem !important;
  color: #666666 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
}

/* ============================================
   FEATURES SECTION STYLES
   ============================================ */

.features {
  background: var(--dark-bg) !important;
  padding: 4rem 0 !important;
}

.features .section-title {
  margin-bottom: 1rem !important;
}

.features .section-title h2 {
  font-size: 2rem !important;
  font-weight: 700 !important;
  color: #ffffff !important;
}

.features .section-subtitle {
  color: var(--text-muted) !important;
  font-size: 1rem !important;
  line-height: 1.7 !important;
  max-width: 800px !important;
  margin-bottom: 3rem !important;
}

.features .list {
  margin-top: 2rem !important;
}

.features .feature {
  background: rgba(255, 255, 255, 0.02) !important;
  border: 1px solid var(--border-subtle) !important;
  border-radius: 1rem !important;
  padding: 2rem !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
  height: 100% !important;
  position: relative;
  overflow: hidden;
}

.features .feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--neon-red), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.features .feature:hover {
  background: rgba(255, 255, 255, 0.04) !important;
  border-color: rgba(255, 0, 0, 0.3) !important;
  transform: translateY(-8px) scale(1.02) !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(255, 0, 0, 0.1) !important;
}

.features .feature:hover::before {
  opacity: 1;
}

.features .feature i {
  font-size: 2.5rem !important;
  color: var(--neon-red) !important;
  background: rgba(255, 0, 0, 0.1) !important;
  width: 4rem !important;
  height: 4rem !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 1rem !important;
  margin-bottom: 1.5rem !important;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.2);
}

.features .feature:hover i {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 0 30px var(--neon-red-glow);
}

.features .feature .title {
  font-size: 1.125rem !important;
  font-weight: 600 !important;
  color: #ffffff !important;
  margin-bottom: 0.75rem !important;
}

.features .feature .description {
  font-size: 0.875rem !important;
  color: var(--text-muted) !important;
  line-height: 1.6 !important;
  padding: 0 !important;
}

/* ============================================
   PRODUCTS SECTION STYLES
   ============================================ */

.products-section {
  background: var(--dark-bg) !important;
  padding: 4rem 0 !important;
}

.products .section-title h2 {
  font-size: 1.75rem !important;
  font-weight: 700 !important;
  color: #ffffff !important;
}

/* Product cards with neon effects */
.products .card {
  background: var(--card-bg) !important;
  border: 1px solid var(--border-subtle) !important;
  border-radius: 1rem !important;
  overflow: hidden !important;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
  position: relative;
}

.products .card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 0, 0, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
}

.products .card:hover {
  transform: translateY(-12px) scale(1.02) !important;
  border-color: rgba(255, 0, 0, 0.4) !important;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), 0 0 40px rgba(255, 0, 0, 0.15) !important;
}

.products .card:hover::before {
  opacity: 1;
}

.products .card .card-img-top {
  background: rgba(255, 255, 255, 0.02) !important;
  border-bottom: 1px solid var(--border-subtle) !important;
  position: relative;
  overflow: hidden;
}

.products .card .card-img-top img {
  transition: transform 0.5s ease;
}

.products .card:hover .card-img-top img {
  transform: scale(1.05);
}

/* Product badges with neon glow */
.products .card .card-img-top .badges {
  top: 0.75rem !important;
  left: 0.75rem !important;
  right: auto !important;
  z-index: 2;
}

.products .card .card-img-top .badges div {
  background: var(--neon-red) !important;
  color: #ffffff !important;
  font-size: 0.625rem !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  padding: 0.25rem 0.5rem !important;
  border-radius: 0.25rem !important;
  box-shadow: 0 0 15px var(--neon-red-glow);
  animation: glow 2s ease-in-out infinite;
}

/* Card body */
.products .card .card-body {
  padding: 1.25rem !important;
  position: relative;
  z-index: 2;
}

.products .card .info {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  margin-bottom: 0.75rem !important;
}

.products .card .info .price {
  font-size: 0.875rem !important;
  font-weight: 600 !important;
  color: #ffffff !important;
  margin: 0;
}

.products .card .info .price s {
  color: #666666 !important;
  font-weight: 400 !important;
  margin-left: 0.5rem !important;
}

.products .card .info .text-primary {
  color: #00c853 !important;
  font-size: 0.75rem !important;
  font-weight: 500 !important;
}

.products .card .card-title {
  font-size: 1rem !important;
  font-weight: 600 !important;
  color: #ffffff !important;
  margin: 0 !important;
  line-height: 1.4 !important;
  transition: color 0.3s ease;
}

.products .card:hover .card-title {
  color: var(--neon-red-bright) !important;
}

/* View Details overlay with animation */
.products .card .card-img-top .overlay {
  background: rgba(0, 0, 0, 0.8) !important;
  backdrop-filter: blur(8px) !important;
  opacity: 0;
  transition: all 0.4s ease;
}

.products .card:hover .card-img-top .overlay {
  opacity: 1;
}

.products .card .card-img-top .overlay .btn {
  background: var(--neon-red) !important;
  border-color: var(--neon-red) !important;
  color: #ffffff !important;
  font-weight: 600 !important;
  padding: 0.75rem 1.5rem !important;
  border-radius: 0.5rem !important;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.3s ease 0.1s;
  box-shadow: 0 0 20px var(--neon-red-glow);
}

.products .card:hover .card-img-top .overlay .btn {
  transform: translateY(0);
  opacity: 1;
}

.products .card .card-img-top .overlay .btn:hover {
  background: #cc0000 !important;
  border-color: #cc0000 !important;
  transform: scale(1.05);
}

/* ============================================
   SOCIALS SECTION STYLES
   ============================================ */

.socials {
  background: var(--dark-bg) !important;
  padding: 4rem 0 !important;
  border-top: 1px solid var(--border-subtle) !important;
}

.socials .section-title h2 {
  font-size: 1.5rem !important;
  font-weight: 700 !important;
  color: #ffffff !important;
}

.socials .list .social {
  background: var(--card-bg) !important;
  border: 1px solid var(--border-subtle) !important;
  border-radius: 1rem !important;
  padding: 1.25rem !important;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
  position: relative;
  overflow: hidden;
}

.socials .list .social::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--neon-red);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.socials .list .social:hover {
  background: rgba(255, 255, 255, 0.04) !important;
  border-color: rgba(255, 0, 0, 0.3) !important;
  transform: translateX(10px) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 0, 0, 0.1) !important;
}

.socials .list .social:hover::before {
  opacity: 1;
}

.socials .list .social .left svg {
  background: var(--neon-red) !important;
  padding: 0.75rem !important;
  width: 2.5rem !important;
  height: 2.5rem !important;
  border-radius: 0.75rem !important;
  box-shadow: 0 0 15px var(--neon-red-glow);
  transition: all 0.3s ease;
}

.socials .list .social:hover .left svg {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 0 25px var(--neon-red-glow);
}

.socials .list .social .left span {
  font-weight: 600 !important;
  color: #ffffff !important;
}

/* ============================================
   FEEDBACKS/REVIEWS SECTION STYLES
   ============================================ */

.feedbacks {
  background: var(--dark-bg) !important;
  padding: 4rem 0 !important;
  border-top: 1px solid var(--border-subtle) !important;
}

.feedbacks .section-title h2 {
  font-size: 1.75rem !important;
  font-weight: 700 !important;
  color: #ffffff !important;
}

.testimonial {
  background: var(--card-bg) !important;
  border: 1px solid var(--border-subtle) !important;
  border-radius: 1rem !important;
  overflow: hidden !important;
  transition: all 0.3s ease;
}

.testimonial:hover {
  border-color: rgba(255, 0, 0, 0.2) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2), 0 0 20px rgba(255, 0, 0, 0.05) !important;
}

.testimonial .header {
  padding: 1.25rem 1.25rem 0.5rem 1.25rem !important;
}

.testimonial .stars svg {
  color: #ffc107 !important;
  width: 1rem !important;
  height: 1rem !important;
  filter: drop-shadow(0 0 5px rgba(255, 193, 7, 0.5));
}

.testimonial .content {
  padding: 0 1.25rem !important;
}

.testimonial .content .message {
  color: #cccccc !important;
  font-size: 0.875rem !important;
  line-height: 1.6 !important;
}

.testimonial .footer {
  background: rgba(255, 255, 255, 0.02) !important;
  border-top: 1px solid var(--border-subtle) !important;
  padding: 0.75rem 1.25rem !important;
  font-size: 0.75rem !important;
  color: #666666 !important;
}

/* ============================================
   FOOTER STYLES
   ============================================ */

.footer {
  background: var(--darker-bg) !important;
  border-top: 1px solid var(--border-subtle) !important;
  padding: 3rem 0 2rem 0 !important;
}

.footer .logo p {
  color: #ffffff !important;
  font-weight: 700 !important;
  font-size: 1.25rem !important;
}

.footer h5 {
  color: #ffffff !important;
  font-size: 0.875rem !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  margin-bottom: 1.25rem !important;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer h5::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--neon-red);
  box-shadow: 0 0 10px var(--neon-red-glow);
}

.footer .nav li a {
  color: var(--text-muted) !important;
  font-size: 0.875rem !important;
  transition: all 0.3s ease !important;
  padding: 0.25rem 0 !important;
  position: relative;
}

.footer .nav li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--neon-red);
  transition: width 0.3s ease;
}

.footer .nav li a:hover {
  color: var(--neon-red) !important;
  padding-left: 5px !important;
}

.footer .nav li a:hover::after {
  width: 20px;
}

/* ============================================
   PRODUCT PAGE STYLES
   ============================================ */

.product-wrapper {
  background: var(--dark-bg) !important;
}

.product-wrapper .badges div,
.product-wrapper .badges a {
  background: var(--neon-red) !important;
  color: #ffffff !important;
  font-size: 0.75rem !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  padding: 0.375rem 0.75rem !important;
  border-radius: 0.25rem !important;
  box-shadow: 0 0 15px var(--neon-red-glow);
}

.product-wrapper .buy-buttons .btn-primary {
  background: var(--neon-red) !important;
  border-color: var(--neon-red) !important;
  color: #ffffff !important;
  font-weight: 600 !important;
  padding: 0.875rem 2rem !important;
  border-radius: 0.5rem !important;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px var(--neon-red-glow);
}

.product-wrapper .buy-buttons .btn-primary:hover {
  background: #cc0000 !important;
  border-color: #cc0000 !important;
  transform: translateY(-3px);
  box-shadow: 0 5px 30px var(--neon-red-glow) !important;
}

.variants .variant.active {
  border-color: var(--neon-red) !important;
  box-shadow: 0 0 15px rgba(255, 0, 0, 0.2);
}

.variants .variant .active-indicator svg {
  color: var(--neon-red) !important;
  filter: drop-shadow(0 0 5px var(--neon-red-glow));
}

/* ============================================
   CART PAGE STYLES
   ============================================ */

.cart {
  background: var(--dark-bg) !important;
}

.cart .product {
  background: var(--card-bg) !important;
  border: 1px solid var(--border-subtle) !important;
  border-radius: 1rem !important;
  transition: all 0.3s ease;
}

.cart .product:hover {
  border-color: rgba(255, 0, 0, 0.2) !important;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.cart .form {
  background: var(--card-bg) !important;
  border: 1px solid var(--border-subtle) !important;
  border-radius: 1rem !important;
}

.cart-qty-btn {
  transition: all 0.3s ease;
}

.cart-qty-btn:hover:not(:disabled) {
  background: var(--neon-red) !important;
  box-shadow: 0 0 15px var(--neon-red-glow);
}

/* ============================================
   BUTTON STYLES
   ============================================ */

.btn-primary {
  background: var(--neon-red) !important;
  border-color: var(--neon-red) !important;
  color: #ffffff !important;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: #cc0000 !important;
  border-color: #cc0000 !important;
  transform: translateY(-2px);
  box-shadow: 0 5px 20px var(--neon-red-glow);
}

.btn-outline-primary {
  color: var(--neon-red) !important;
  border-color: var(--neon-red) !important;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background: var(--neon-red) !important;
  color: #ffffff !important;
  box-shadow: 0 5px 20px var(--neon-red-glow);
}

/* ============================================
   FORM STYLES
   ============================================ */

.form-control,
.form-select {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  color: #ffffff !important;
  border-radius: 0.5rem !important;
  transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: var(--neon-red) !important;
  box-shadow: 0 0 20px var(--neon-red-glow) !important;
}

.form-control::placeholder {
  color: #666666 !important;
}

/* ============================================
   MODAL STYLES
   ============================================ */

.modal-content {
  background: var(--card-bg) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 1rem !important;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.modal-header {
  border-bottom: 1px solid var(--border-subtle) !important;
}

.modal-footer {
  border-top: 1px solid var(--border-subtle) !important;
}

.btn-close {
  filter: invert(1) !important;
  transition: all 0.3s ease;
}

.btn-close:hover {
  transform: rotate(90deg);
  filter: invert(1) drop-shadow(0 0 5px var(--neon-red)) !important;
}

/* ============================================
   ACCORDION/FAQ STYLES
   ============================================ */

.accordion-item {
  background: var(--card-bg) !important;
  border: 1px solid var(--border-subtle) !important;
  border-radius: 0.75rem !important;
  margin-bottom: 1rem !important;
  overflow: hidden !important;
  transition: all 0.3s ease;
}

.accordion-item:hover {
  border-color: rgba(255, 0, 0, 0.2) !important;
}

.accordion-button {
  background: transparent !important;
  color: #ffffff !important;
  font-weight: 600 !important;
  padding: 1.25rem !important;
  transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
  color: var(--neon-red) !important;
  background: rgba(255, 0, 0, 0.05) !important;
  box-shadow: inset 0 -1px 0 var(--border-subtle);
}

.accordion-button:focus {
  box-shadow: none !important;
  border-color: rgba(255, 0, 0, 0.3) !important;
}

.accordion-button::after {
  filter: invert(1) !important;
  transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
  filter: invert(1) drop-shadow(0 0 5px var(--neon-red)) !important;
}

.accordion-body {
  color: var(--text-muted) !important;
  padding: 1.25rem !important;
}

/* ============================================
   PAGINATION STYLES
   ============================================ */

.pagination .page-item.active .page-link {
  background: var(--neon-red) !important;
  border-color: var(--neon-red) !important;
  color: #ffffff !important;
  box-shadow: 0 0 15px var(--neon-red-glow);
}

.pagination .page-link {
  background: rgba(255, 255, 255, 0.05) !important;
  border-color: var(--border-subtle) !important;
  color: #ffffff !important;
  transition: all 0.3s ease;
}

.pagination .page-link:hover {
  background: rgba(255, 255, 255, 0.1) !important;
  color: var(--neon-red) !important;
  border-color: var(--neon-red) !important;
}

/* ============================================
   STATUS PAGE STYLES
   ============================================ */

.status-card {
  background: var(--card-bg) !important;
  border: 1px solid var(--border-subtle) !important;
  border-radius: 1rem !important;
  transition: all 0.3s ease;
}

.status-card:hover {
  border-color: rgba(255, 0, 0, 0.2) !important;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.status-card h3 {
  color: #ffffff !important;
}

/* ============================================
   LOADING & SPECIAL EFFECTS
   ============================================ */

.loading-shimmer {
  background: linear-gradient(90deg, var(--card-bg) 25%, rgba(255, 255, 255, 0.05) 50%, var(--card-bg) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

.glow-effect {
  animation: neonPulse 2s ease-in-out infinite;
}

.float-animation {
  animation: float 3s ease-in-out infinite;
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */

@media (max-width: 768px) {
  .hero .content h1 {
    font-size: 2rem !important;
  }
  
  .features .feature {
    padding: 1.5rem !important;
  }
  
  .hero .content .stats {
    flex-direction: column !important;
    gap: 1rem !important;
  }
  
  .products .card:hover {
    transform: translateY(-8px) scale(1.01) !important;
  }
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */

.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

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