.button {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  user-select: none;
  line-height: 1.5;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 14px;
  font-weight: 400 !important;
  font-family: 'Inter', sans-serif !important;
  padding: 0 20px;
  min-height: 48px;
  white-space: nowrap;
  background-color: var(--buttonColor);
  outline: none;
  border-radius: 0.25rem;
  border: 1px solid var(--gridLine);
}

.button:hover {
  opacity: 0.9;
}

.button:disabled {
  opacity: 0.7;
  cursor: default;
}

.button.thin {
  min-height: 30px;
  font-size: 12px;
  padding: 0 10px;
  border-radius: 6px;
}

.button:focus {
  box-shadow: none !important;
  outline: none;
}

.button .ripple-effect {
  position: absolute;
  height: 10px;
  width: 10px;
  border-radius: 50%;
  transform: translate3d(-50%, -50%, 0);
}

.button.small {
  min-height: 2rem;
  font-weight: 500;
}

.button-ghost {
  background: #0000;
  border-color: var(--borderColor);
  border-radius: 0.5rem;
  color: var(--darkFontColor);
}

.button-ghost:hover {
  background: var(--menuBackgroundHover);
}

.button-secondary {
  background-color: var(--backgroundAccentLight);
  border: 2px solid var(--borderColor);
  color: var(--buttonColor);
}

.button-secondary:hover {
  background-color: #e6e6e6 !important;
}


/* ======= Injected: Futuristic Dark Theme ======= */
body, html {
  background-color: #0a0a0a !important;
  color: #f0f0f0 !important;
  font-family: 'Orbitron', 'Rajdhani', sans-serif;
}

a, a:visited {
  color: #00ffee !important;
}

a:hover {
  color: #00ffff !important;
  text-shadow: 0 0 6px #00ffee;
}

button, .btn {
  background: #0a0a0a;
  color: #00ffee;
  border: 1px solid #00ffee;
  border-radius: 6px;
  transition: all 0.25s ease;
}

button:hover, .btn:hover {
  background: #00ffee;
  color: #000;
}

input, textarea, select {
  background-color: #121212;
  color: #f0f0f0;
  border: 1px solid #1f1f1f;
  border-radius: 6px;
}

.navbar, header {
  background-color: #000 !important;
  border-bottom: 1px solid #1f1f1f;
}

footer {
  background-color: #000 !important;
  color: #888 !important;
  border-top: 1px solid #1f1f1f;
}

.glow {
  text-shadow: 0 0 8px #00ffee;
  color: #00ffee !important;
}


/* ======= Extra Futuristic Animations & Effects ======= */

/* Pulse Glow Effect */
@keyframes pulse-glow {
  0% { text-shadow: 0 0 4px #00ffee; }
  50% { text-shadow: 0 0 12px #00ffee, 0 0 24px #00ffee; }
  100% { text-shadow: 0 0 4px #00ffee; }
}

.glow-pulse {
  animation: pulse-glow 2.5s infinite ease-in-out;
}

/* Neon Slide-in Fade */
@keyframes fade-slide {
  0% {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.fade-in-up {
  animation: fade-slide 0.6s ease forwards;
}

/* Futuristic Button Shine Effect */
@keyframes shine {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}

.btn-shine {
  background: linear-gradient(120deg, #00ffee 10%, #00ffff 50%, #00ffee 90%);
  background-size: 200% auto;
  color: #000;
  border: none;
  text-shadow: none;
  animation: shine 2s linear infinite;
}

/* Card Hover Elevation */
.product-card, .card, .snippet-product {
  transition: all 0.3s ease-in-out;
}

.product-card:hover, .card:hover, .snippet-product:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 0 24px rgba(0, 255, 238, 0.2);
}

/* Input Focus Glow */
input:focus, textarea:focus, select:focus {
  border-color: #00ffee;
  box-shadow: 0 0 8px #00ffee66;
  outline: none;
}


/* ======= Injected: Black + Purple Futuristic Theme ======= */
body, html {
  background-color: #000000 !important;
  color: #e5e5f7 !important;
  font-family: 'Orbitron', 'Rajdhani', sans-serif;
}

a, a:visited {
  color: #9d4edd !important;
}

a:hover {
  color: #c77dff !important;
  text-shadow: 0 0 6px #9d4edd;
}

button, .btn {
  background: #000000;
  color: #9d4edd;
  border: 1px solid #9d4edd;
  border-radius: 6px;
  transition: all 0.25s ease;
}

button:hover, .btn:hover {
  background: #9d4edd;
  color: #000;
}

input, textarea, select {
  background-color: #1a1a1a;
  color: #e5e5f7;
  border: 1px solid #2e003e;
  border-radius: 6px;
}

.navbar, header {
  background-color: #000 !important;
  border-bottom: 1px solid #2e003e;
}

footer {
  background-color: #000 !important;
  color: #888 !important;
  border-top: 1px solid #2e003e;
}

.glow {
  text-shadow: 0 0 8px #9d4edd;
  color: #9d4edd !important;
}

/* Glass card panel */
.card, .product-card, .snippet-product {
  background: rgba(20, 0, 40, 0.2);
  border: 1px solid #9d4edd55;
  backdrop-filter: blur(8px);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.card:hover, .product-card:hover {
  box-shadow: 0 0 18px #9d4edd66;
  transform: translateY(-4px) scale(1.01);
}

/* Placeholder / Empty state */
.empty-state, .empty-products, .no-products {
  color: #c77dff;
  text-shadow: 0 0 4px #9d4edd;
  opacity: 0.9;
}
