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

/* ============================================
   MODERN ANIMATIONS & FLUID BACKGROUND
   ============================================ */

/* Fluid Bubble Background Effect */
.fluid-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
  background: #0a0a0a;
}

.fluid-background::before,
.fluid-background::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.25;
  animation: float 30s ease-in-out infinite;
}

.fluid-background::before {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(220, 20, 60, 0.35) 0%, rgba(200, 0, 0, 0.18) 50%, transparent 100%);
  top: -300px;
  left: -300px;
  animation: float 35s ease-in-out infinite;
  animation-delay: 0s;
}

.fluid-background::after {
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(220, 20, 60, 0.3) 0%, rgba(180, 0, 0, 0.15) 50%, transparent 100%);
  bottom: -400px;
  right: -400px;
  animation: float 40s ease-in-out infinite reverse;
  animation-delay: 15s;
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(50px, -50px) scale(1.1);
  }
  66% {
    transform: translate(-30px, 30px) scale(0.9);
  }
}

/* Additional floating bubbles */
.fluid-bubbles {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.fluid-bubble {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(220, 20, 60, 0.4) 0%, rgba(200, 0, 0, 0.2) 50%, transparent 70%);
  filter: blur(50px);
  animation: bubbleFloat 15s linear infinite;
  opacity: 0.6;
}

@keyframes bubbleFloat {
  0% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(150px, -200px);
  }
  50% {
    transform: translate(-120px, -250px);
  }
  75% {
    transform: translate(-200px, 150px);
  }
  100% {
    transform: translate(0, 0);
  }
}

/* ============================================
   MODERN NAVBAR WITH BLUR & ANIMATIONS
   ============================================ */

.navbar {
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  background: rgba(10, 10, 10, 0.7) !important;
  border-bottom: 1px solid rgba(220, 20, 60, 0.2) !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.85) !important;
  box-shadow: 0 8px 32px rgba(220, 20, 60, 0.1);
}

.navbar .nav-link {
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0.5rem 1rem !important;
  border-radius: 0.5rem;
}

.navbar .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #dc143c, transparent);
  transform: translateX(-50%);
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar .nav-link:hover {
  color: #dc143c !important;
  transform: translateY(-2px);
}

.navbar .nav-link:hover::before {
  width: 80%;
}

.navbar .nav-link.active {
  color: #dc143c !important;
}

.navbar .nav-link.active::before {
  width: 80%;
}

/* Navbar buttons with modern design */
.navbar .btn {
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(220, 20, 60, 0.3);
}

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

.navbar .btn:hover::before {
  width: 300px;
  height: 300px;
}

.navbar .btn:hover {
  border-color: #dc143c;
  box-shadow: 0 0 20px rgba(220, 20, 60, 0.4);
  transform: translateY(-2px);
}

.navbar .btn-outline-primary {
  background: transparent;
  color: #dc143c;
}

.navbar .btn-outline-primary:hover {
  background: rgba(220, 20, 60, 0.1);
  color: #ff1744;
}

/* ============================================
   MODERN BUTTONS WITH ANIMATIONS
   ============================================ */

.btn {
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 0.5rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}

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

.btn:hover::after {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: linear-gradient(135deg, #dc143c 0%, #8b0000 100%);
  border: none;
  box-shadow: 0 4px 15px rgba(220, 20, 60, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #ff1744 0%, #dc143c 100%);
  box-shadow: 0 6px 25px rgba(220, 20, 60, 0.5);
  transform: translateY(-2px);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-outline-primary {
  border: 2px solid #dc143c;
  color: #dc143c;
  background: transparent;
}

.btn-outline-primary:hover {
  background: rgba(220, 20, 60, 0.1);
  border-color: #ff1744;
  color: #ff1744;
  box-shadow: 0 0 20px rgba(220, 20, 60, 0.3);
  transform: translateY(-2px);
}

/* ============================================
   PRODUCT CARDS WITH STATUS & ANIMATIONS
   ============================================ */

.products .card {
  position: relative;
  background: rgba(20, 20, 20, 0.6) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(220, 20, 60, 0.1);
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.products .card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #dc143c, transparent);
  transform: scaleX(0);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.products .card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(220, 20, 60, 0.4);
  box-shadow: 0 20px 40px rgba(220, 20, 60, 0.2);
}

.products .card:hover::before {
  transform: scaleX(1);
}

/* Product Status Badge */
.product-status {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 10;
  padding: 0.375rem 0.75rem;
  border-radius: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  animation: pulse 2s ease-in-out infinite;
}

.product-status.status-available {
  background: rgba(34, 197, 94, 0.2);
  color: #22c55e;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.product-status.status-low-stock {
  background: rgba(251, 191, 36, 0.2);
  color: #fbbf24;
  border: 1px solid rgba(251, 191, 36, 0.3);
}

.product-status.status-out-of-stock {
  background: rgba(239, 68, 68, 0.2);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.product-status.status-on-hold {
  background: rgba(156, 163, 175, 0.2);
  color: #9ca3af;
  border: 1px solid rgba(156, 163, 175, 0.3);
}

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

/* ============================================
   SMOOTH SCROLL & PAGE TRANSITIONS
   ============================================ */

html {
  scroll-behavior: smooth;
}

* {
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

/* ============================================
   HERO SECTION ENHANCEMENTS
   ============================================ */

.hero {
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(220, 20, 60, 0.1) 0%, transparent 70%);
  animation: heroPulse 4s ease-in-out infinite;
}

@keyframes heroPulse {
  0%, 100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.1);
  }
}

/* ============================================
   LOADING ANIMATIONS
   ============================================ */

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

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* ============================================
   GLOW EFFECTS
   ============================================ */

.glow-red {
  box-shadow: 0 0 20px rgba(220, 20, 60, 0.3);
}

.glow-red:hover {
  box-shadow: 0 0 30px rgba(220, 20, 60, 0.5);
}

/* ============================================
   PRODUCT CARDS STAGGER ANIMATION
   ============================================ */

.products .card {
  animation: fadeInUp 0.6s ease-out backwards;
}

.products .card:nth-child(1) { animation-delay: 0.1s; }
.products .card:nth-child(2) { animation-delay: 0.2s; }
.products .card:nth-child(3) { animation-delay: 0.3s; }
.products .card:nth-child(4) { animation-delay: 0.4s; }
.products .card:nth-child(5) { animation-delay: 0.5s; }
.products .card:nth-child(6) { animation-delay: 0.6s; }
.products .card:nth-child(7) { animation-delay: 0.7s; }
.products .card:nth-child(8) { animation-delay: 0.8s; }
.products .card:nth-child(n+9) { animation-delay: 0.9s; }

/* ============================================
   ENHANCED CARD IMAGE OVERLAY
   ============================================ */

.products .card .card-img-top {
  position: relative;
  overflow: hidden;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 10, 10, 0.5);
}

.products .card .card-img-top img {
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
  height: auto;
  object-fit: cover;
}

.products .card .card-img-top .product-img-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 200px;
  padding: 2rem;
}

.products .card .card-img-top .product-img-placeholder svg {
  width: 96px;
  height: 96px;
  opacity: 0.8;
}

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

.products .card .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  padding: 2rem 1rem 1rem;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.products .card:hover .overlay {
  transform: translateY(0);
}

/* ============================================
   SECTION TITLE ANIMATIONS
   ============================================ */

.section-title {
  animation: fadeInUp 0.6s ease-out;
}

.section-subtitle {
  animation: fadeInUp 0.6s ease-out 0.2s backwards;
}

/* ============================================
   NAVBAR BRAND ENHANCEMENT
   ============================================ */

.navbar-brand {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.navbar-brand::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #dc143c, #ff1744);
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-brand:hover::after {
  width: 100%;
}

.navbar-brand:hover {
  transform: translateY(-2px);
}

/* ============================================
   SHOP NAME HIGHLIGHT IN HERO
   ============================================ */

.shop-name-highlight {
  font-family: 'Orbitron', 'Arial Black', sans-serif;
  font-weight: 900;
  background: linear-gradient(135deg, #ff1744 0%, #dc143c 50%, #ff1744 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(255, 0, 0, 0.5);
  letter-spacing: 2px;
  display: inline-block;
  animation: shopNameGlow 3s ease-in-out infinite;
}

@keyframes shopNameGlow {
  0%, 100% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(1.3);
  }
}

/* ============================================
   BLUR SEARCHBAR
   ============================================ */

.blur-searchbar {
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  background: rgba(20, 20, 20, 0.6) !important;
  border: 1px solid rgba(255, 0, 0, 0.2) !important;
  border-radius: 1rem !important;
  padding: 0.5rem 1rem !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.blur-searchbar::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 0, 0, 0.1), transparent);
  transition: left 0.6s;
}

.blur-searchbar:hover::before {
  left: 100%;
}

.blur-searchbar:hover {
  background: rgba(30, 30, 30, 0.8) !important;
  border-color: rgba(255, 0, 0, 0.5) !important;
  box-shadow: 0 0 30px rgba(255, 0, 0, 0.3);
  transform: translateY(-2px) scale(1.02);
}

.blur-searchbar:active {
  transform: translateY(0) scale(0.98);
}

.blur-searchbar input {
  background: transparent !important;
  border: none !important;
  color: #ffffff !important;
  transition: all 0.3s;
  position: relative;
  z-index: 1;
}

.blur-searchbar:hover input {
  color: #ff1744 !important;
}

.blur-searchbar svg {
  fill: rgba(255, 0, 0, 0.6) !important;
  transition: all 0.3s;
  position: relative;
  z-index: 1;
}

.blur-searchbar:hover svg {
  fill: #ff1744 !important;
  transform: scale(1.1) rotate(5deg);
}


/* ============================================
   SECTION TITLE BLUR BOX
   ============================================ */

.section-title-blur-box {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 2rem 0;
  padding: 1.5rem 3rem;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  background: rgba(20, 20, 20, 0.6);
  border: 1px solid rgba(255, 0, 0, 0.2);
  border-radius: 1rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.section-title-blur-box h2 {
  margin: 0;
  font-size: 1.75rem;
  background: linear-gradient(135deg, #ffffff 0%, #ff1744 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================
   SOCIAL BOX WITH HOVER EFFECT
   ============================================ */

.social-box {
  backdrop-filter: blur(15px) saturate(180%);
  -webkit-backdrop-filter: blur(15px) saturate(180%);
  background: rgba(20, 20, 20, 0.5) !important;
  border: 1px solid rgba(255, 0, 0, 0.2) !important;
  border-radius: 1rem !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

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

.social-box:hover::before {
  left: 100%;
}

.social-box:hover {
  background: rgba(30, 30, 30, 0.7) !important;
  border-color: rgba(255, 0, 0, 0.5) !important;
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 30px rgba(255, 0, 0, 0.3);
}

.social-box .left svg {
  transition: transform 0.3s;
}

.social-box:hover .left svg {
  transform: scale(1.2) rotate(5deg);
}

/* ============================================
   HERO BACKGROUND REMOVAL
   ============================================ */

.hero {
  background-image: none !important;
  background: transparent !important;
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

/* ============================================
   SMOOTH TRANSITIONS BETWEEN SECTIONS
   ============================================ */

.component {
  transition: opacity 0.3s ease-in-out;
}

.hero + .component {
  margin-top: 0;
  padding-top: 0;
}

.products.component {
  margin-top: 0;
  padding-top: 3rem;
  position: relative;
  z-index: 1;
  background: transparent;
}

/* Ensure smooth transition from hero to products */
.hero {
  position: relative;
  z-index: 2;
}

.hero + .products.component {
  margin-top: 0;
  padding-top: 3rem;
}

/* ============================================
   CUSTOM CROSSHAIR CURSOR
   ============================================ */

body {
  cursor: crosshair;
}

a, button, input, select, textarea, [role="button"], .btn, .nav-link, .card {
  cursor: crosshair !important;
}

/* ============================================
   FEEDBACK HOVER EFFECT (LIKE SOCIALS)
   ============================================ */

.feedback-card-hover .testimonial {
  backdrop-filter: blur(15px) saturate(180%);
  -webkit-backdrop-filter: blur(15px) saturate(180%);
  background: rgba(20, 20, 20, 0.5) !important;
  border: 1px solid rgba(255, 0, 0, 0.2) !important;
  border-radius: 1rem !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

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

.feedback-card-hover:hover .testimonial::before {
  left: 100%;
}

.feedback-card-hover:hover .testimonial {
  background: rgba(30, 30, 30, 0.7) !important;
  border-color: rgba(255, 0, 0, 0.5) !important;
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 30px rgba(255, 0, 0, 0.3);
}

/* ============================================
   STATS HOVER EFFECT (LIKE SOCIALS)
   ============================================ */

.stats-hover {
  backdrop-filter: blur(15px) saturate(180%);
  -webkit-backdrop-filter: blur(15px) saturate(180%);
  background: rgba(20, 20, 20, 0.5) !important;
  border: 1px solid rgba(255, 0, 0, 0.2) !important;
  border-radius: 1rem !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

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

.stats-hover:hover::before {
  left: 100%;
}

.stats-hover:hover {
  background: rgba(30, 30, 30, 0.7) !important;
  border-color: rgba(255, 0, 0, 0.5) !important;
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 30px rgba(255, 0, 0, 0.3);
}

/* ============================================
   FLUID RIPPLE TO FLUID EFFECT
   ============================================ */

.btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 0, 0, 0.3) 0%, rgba(200, 0, 0, 0.2) 50%, transparent 100%);
  transform: translate(-50%, -50%);
  transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1), height 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.btn:hover::after {
  width: 400px;
  height: 400px;
  animation: fluidMerge 1.5s ease-in-out infinite;
}

@keyframes fluidMerge {
  0%, 100% {
    background: radial-gradient(circle, rgba(255, 0, 0, 0.3) 0%, rgba(200, 0, 0, 0.2) 50%, transparent 100%);
    transform: translate(-50%, -50%) scale(1);
  }
  33% {
    background: radial-gradient(circle, rgba(255, 50, 0, 0.4) 0%, rgba(255, 0, 0, 0.3) 50%, rgba(200, 0, 0, 0.2) 100%);
    transform: translate(-50%, -50%) scale(1.1);
  }
  66% {
    background: radial-gradient(circle, rgba(200, 0, 0, 0.3) 0%, rgba(255, 0, 0, 0.4) 50%, rgba(255, 50, 0, 0.3) 100%);
    transform: translate(-50%, -50%) scale(0.9);
  }
}

/* ============================================
   PAYMENT METHODS SECTION
   ============================================ */

.payment-methods {
  background: rgba(20, 20, 20, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.faq.bg-block-primary,
.faq.bg-block-secondary {
  background: rgba(20, 20, 20, 0.4) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.payment-method-item {
  margin: 0.5rem;
}

.payment-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1.5rem;
  backdrop-filter: blur(15px) saturate(180%);
  -webkit-backdrop-filter: blur(15px) saturate(180%);
  background: rgba(20, 20, 20, 0.6);
  border: 1px solid rgba(255, 0, 0, 0.2);
  border-radius: 1rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  min-width: 120px;
}

.payment-icon:hover {
  background: rgba(30, 30, 30, 0.8);
  border-color: rgba(255, 0, 0, 0.5);
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 30px rgba(255, 0, 0, 0.3);
}

.payment-icon svg {
  color: #ff1744;
  transition: transform 0.3s;
}

.payment-icon:hover svg {
  transform: scale(1.2) rotate(5deg);
}

.payment-icon span {
  font-size: 0.875rem;
  font-weight: 500;
  color: #ffffff;
}

.payment-link {
  text-decoration: none;
  color: inherit;
}

.payment-link:hover {
  text-decoration: none;
}

/* ============================================
   FAKE NOTIFICATIONS
   ============================================ */

.fake-notifications {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9998;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 350px;
}

.fake-notification {
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  background: rgba(20, 20, 20, 0.8);
  border: 1px solid rgba(255, 0, 0, 0.3);
  border-radius: 1rem;
  padding: 1rem 1.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  animation: slideInRight 0.5s ease-out, fadeOut 0.5s ease-in 4.5s forwards;
  transform: translateX(400px);
  opacity: 0;
}

.fake-notification.show {
  animation: slideInRight 0.5s ease-out forwards;
  opacity: 1;
}

.fake-notification.hide {
  animation: slideOutRight 0.5s ease-in forwards;
}

@keyframes slideInRight {
  from {
    transform: translateX(400px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideOutRight {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(400px);
    opacity: 0;
  }
}

@keyframes fadeOut {
  to {
    opacity: 0;
  }
}

.fake-notification-content {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.fake-notification-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff1744 0%, #dc143c 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.fake-notification-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: #ffffff;
}

.fake-notification-text {
  flex: 1;
}

.fake-notification-text p {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 500;
  color: #ffffff;
}

/* ============================================
   PRODUCT PAGE ENHANCED ANIMATIONS
   ============================================ */

.product-wrapper {
  animation: fadeInUp 0.8s ease-out;
  position: relative;
  z-index: 1;
}

.product-wrapper .carousel-item {
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-wrapper .carousel-item img {
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-wrapper .carousel:hover .carousel-item img {
  transform: scale(1.05);
}

.product-wrapper .thumbnails button {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-wrapper .thumbnails button:hover {
  transform: scale(1.1);
  border: 2px solid #ff1744;
}

.product-wrapper .badges div {
  animation: fadeInUp 0.6s ease-out backwards;
}

.product-wrapper .badges div:nth-child(1) { animation-delay: 0.1s; }
.product-wrapper .badges div:nth-child(2) { animation-delay: 0.2s; }
.product-wrapper .badges div:nth-child(3) { animation-delay: 0.3s; }

.product-tabs button {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

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

.product-tabs button:hover::before {
  left: 100%;
}

.product-tabs button:hover {
  transform: translateY(-2px);
}

/* ============================================
   DISCORD BUTTON IN NAVBAR
   ============================================ */

.discord-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.discord-btn svg {
  transition: transform 0.3s;
}

.discord-btn:hover svg {
  transform: scale(1.2) rotate(5deg);
}

/* ============================================
   HERO DESCRIPTION STYLING
   ============================================ */

.hero-description {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 700px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

/* ============================================
   FEEDBACK PAGE HOVER EFFECT
   ============================================ */

.feedback-page .testimonial {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.feedback-page .testimonial::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 0, 0, 0.1), transparent);
  transition: left 0.5s;
}

.feedback-page .testimonial:hover::before {
  left: 100%;
}

.feedback-page .testimonial:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 0, 0, 0.2);
  border-color: rgba(255, 0, 0, 0.3) !important;
}

/* ============================================
   SEARCH SUGGESTIONS
   ============================================ */

.search-suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(20, 20, 20, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 0, 0, 0.3);
  border-radius: 0.5rem;
  margin-top: 0.5rem;
  max-height: 300px;
  overflow-y: auto;
  z-index: 1000;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.suggestion-item {
  padding: 0.75rem 1rem;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  color: #ffffff;
}

.suggestion-item:hover,
.suggestion-item.selected {
  background: rgba(255, 0, 0, 0.2);
  color: #ff1744;
}

.suggestion-item:first-child {
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
}

.suggestion-item:last-child {
  border-bottom-left-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}

/* ============================================
   LOADING SCREEN
   ============================================ */

.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #000000 0%, #1a0000 100%);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease-out, visibility 0.5s;
}

.loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
}

.loading-logo {
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(135deg, #ff1744 0%, #dc143c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 2rem;
  animation: pulse 2s ease-in-out infinite;
}

.loading-spinner {
  width: 60px;
  height: 60px;
  border: 4px solid rgba(255, 0, 0, 0.2);
  border-top-color: #ff1744;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ============================================
   SCROLL PROGRESS BAR
   ============================================ */

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, #ff1744 0%, #dc143c 100%);
  z-index: 9999;
  transition: width 0.1s ease-out;
  box-shadow: 0 0 10px rgba(255, 23, 68, 0.5);
}

/* ============================================
   SCROLL TO TOP BUTTON
   ============================================ */

.scroll-to-top {
  position: fixed;
  left: 2rem;
  bottom: 2rem;
  width: 50px;
  height: 50px;
  background: rgba(20, 20, 20, 0.8);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 0, 0, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 9997;
  color: #ff1744;
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top:hover {
  background: rgba(30, 30, 30, 0.9);
  border-color: rgba(255, 0, 0, 0.5);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 0, 0, 0.3);
}

.scroll-to-top svg {
  width: 24px;
  height: 24px;
}

/* ============================================
   CART SLIDE-IN PANEL
   ============================================ */

.cart-panel {
  position: fixed;
  top: 0;
  right: -450px;
  width: 450px;
  height: 100vh;
  background: rgba(20, 20, 20, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-left: 1px solid rgba(255, 0, 0, 0.3);
  z-index: 9998;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
}

.cart-panel.open {
  right: 0;
}

.cart-panel-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9997;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

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

.cart-panel-header {
  padding: 1.5rem;
  border-bottom: 1px solid rgba(255, 0, 0, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-panel-header h3 {
  margin: 0;
  color: #ffffff;
  font-size: 1.5rem;
}

.cart-panel-close {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  transition: color 0.2s;
}

.cart-panel-close:hover {
  color: #ff1744;
}

.cart-panel-body {
  padding: 1.5rem;
}

.cart-panel-empty {
  text-align: center;
  padding: 3rem 1rem;
  color: rgba(255, 255, 255, 0.6);
}

.cart-panel-item {
  padding: 1rem;
  margin-bottom: 1rem;
  background: rgba(30, 30, 30, 0.5);
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 0, 0, 0.2);
}

.cart-panel-item p {
  margin: 0.25rem 0;
  color: #ffffff;
}

.cart-panel-footer {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 0, 0, 0.2);
}

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

.scroll-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-animate.animated {
  opacity: 1;
  transform: translateY(0);
}

.scroll-animate-delay-1 { transition-delay: 0.1s; }
.scroll-animate-delay-2 { transition-delay: 0.2s; }
.scroll-animate-delay-3 { transition-delay: 0.3s; }
.scroll-animate-delay-4 { transition-delay: 0.4s; }

/* ============================================
   PARTICLE EFFECTS ON HOVER
   ============================================ */

.particle-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  border-radius: inherit;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #ff1744;
  border-radius: 50%;
  pointer-events: none;
  animation: particleFloat 1s ease-out forwards;
}

@keyframes particleFloat {
  0% {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate(var(--tx), var(--ty)) scale(0);
  }
}