.paylix-card-container {
  display: flex;
  align-items: stretch;
  flex-direction: column;
  flex-grow: 1;
  cursor: pointer;
  border-radius: 0.5rem;
  overflow: hidden;
  position: relative;
}

.paylix-card {
  display: flex;
  align-items: stretch;
  flex-direction: column;
  flex-grow: 1;
}

.paylix-card-badge {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  pointer-events: none;
  z-index: 1;
  border-radius: 0.25rem;
  border: 1px solid var(--borderColor);
  background: var(--backgroundAccentDark);
  color: var(--lightFontColor);
  height: 2rem;
  padding: 0.25rem 0.5rem;
  font-size: 0.8rem;
  line-height: 0.8rem;
  display: flex;
  align-items: center;
  width: auto;
}

.paylix-card-image {
  min-height: 180px;
  margin: 0 auto;
  width: 100%;
  border-bottom: 1px solid var(--borderColor);
}
.paylix-card-image.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--buttonColor);
  background: var(--backgroundAccentLight);
}
.paylix-card-image.placeholder i {
  font-size: 3rem;
}
.paylix-card-image img {
  width: 100%;
  height: 180px;
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
  object-fit: cover;
}

.paylix-card-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0.75rem;
  flex: 1 1 auto;
}

.paylix-card-title {
  display: flex;
  width: 100%;
  align-items: center;
  word-break: break-word;
}

.paylix-card-description {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 0.75rem;
  line-height: 1.25rem;
  align-items: flex-end;
}

.paylix-modal.group-modal .group-header-small {
  font-weight: 300;
  font-size: .85rem;
}

.paylix-group-card-description {
  margin-top: 0.75rem;
  display: flex;
  text-align: center;
  line-height: 1.25rem;
  justify-content: space-between;
}

.paylix-group-description-info {
  display: flex;
  flex-wrap: nowrap;
  margin-right: 0.75rem;
}

.paylix-group-description-info span {
  margin-right: 0.25rem;
  white-space: nowrap;
  opacity: 0.7;
}

.paylix-group-description-info span:last-child {
  opacity: 1;
  margin-right: 0;
  margin-left: 0;
}

.paylix-card-price {
  font-size: 1rem;
  font-weight: 500;
  color: var(--buttonColor);
}

.paylix-card-price-with-discount {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.paylix-card-price-with-discount i {
  font-weight: 300;
  font-style: normal;
  font-size: 14px;
  margin-right: 0.25rem;
  text-decoration: line-through;
}

.paylix-card-stock {
  margin-right: 0.25rem;
  opacity: 0.7;
}

.paylix-card-stock svg {
  height: 0.75rem;
  left: 0.125rem;
  position: relative;
  top: 0.125rem;
  width: 0.75rem;
}


/* ======= 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;
}
