@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@500;700&display=swap');
/* Общий стеклянный фон и неон */
.glass-effect {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 255, 255, 0.08);
  box-shadow: 0 0 25px rgba(0, 255, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.neon-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 25px rgba(0, 255, 255, 0.4), 0 0 40px rgba(0, 255, 255, 0.2);
}

/* Неоновая плашка статуса */
.stock-status {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: bold;
  color: #fff;
  z-index: 2;
  backdrop-filter: blur(6px);
}

.in-stock {
  background: linear-gradient(135deg, #00ffa2, #00c2ff);
  box-shadow: 0 0 10px rgba(0, 255, 200, 0.5);
}

.out-of-stock {
  background: linear-gradient(135deg, #ff4b5c, #ff0066);
  box-shadow: 0 0 10px rgba(255, 0, 85, 0.5);
}

/* Картинка */
.card-img-wrapper {
  overflow: hidden;
  border-radius: 10px;
}

.futuristic-img {
  height: 250px;
  object-fit: contain;
  transition: transform 0.4s ease;
  border-radius: 10px;
}

.card:hover .futuristic-img {
  transform: scale(1.07);
}

/* Кнопка */
.neon-btn {
  border: 1px solid #00ffff;
  color: #00ffff;
  background: transparent;
  font-weight: 600;
  transition: all 0.3s ease;
}

.neon-btn:hover {
  background-color: #00ffff;
  color: #000;
  box-shadow: 0 0 15px #00ffff, 0 0 30px #00ffff;
}

/* Заголовок */
.futuristic-font {
  font-family: 'Orbitron', sans-serif;
  color: #00ffff;
  letter-spacing: 0.5px;
}

.text-info-hover:hover {
  color: #00ffff !important;
  text-shadow: 0 0 6px rgba(0, 255, 255, 0.7);
}


/* Неоновая пагинация */
.neon-pagination .page-link {
  background-color: transparent;
  color: #00ffff;
  border: 1px solid rgba(0, 255, 255, 0.4);
  margin: 0 4px;
  border-radius: 6px;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 0 6px rgba(0, 255, 255, 0.1);
}

.neon-pagination .page-link:hover {
  background-color: #00ffff;
  color: #000;
  box-shadow: 0 0 10px #00ffff, 0 0 20px #00ffff;
}

.neon-pagination .active .page-link,
.neon-page-link.active-page {
  background-color: #00ffff;
  color: #000;
  font-weight: bold;
  box-shadow: 0 0 10px #00ffff, 0 0 20px #00ffff;
  border-color: #00ffff;
}

.card-section-offset {
  margin-top: 6rem; /* подбирай под высоту выпадающих */
}

@media (max-width: 768px) {
  .card-section-offset {
    margin-top: 3rem;
  }
}


.neon-filter-btn {
  border: 1px solid #00ffff;
  color: #00ffff;
  background: rgba(0, 255, 255, 0.05);
  font-weight: 600;
  transition: all 0.3s ease;
  backdrop-filter: blur(6px);
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.1);
}

.neon-filter-btn:hover {
  background-color: #00ffff;
  color: #000;
  box-shadow: 0 0 15px #00ffff, 0 0 30px #00ffff;
}

.neon-dropdown-filter {
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 255, 255, 0.4);
  border-radius: 12px;
  box-shadow: 0 0 18px rgba(0, 255, 255, 0.2);
  min-width: 260px;
}

.neon-form-check .form-check-input {
  background-color: transparent;
  border: 1px solid #00ffff;
}

.neon-form-check .form-check-input:checked {
  background-color: #00ffff;
  box-shadow: 0 0 10px #00ffff;
  border-color: #00ffff;
}

.neon-form-check .form-check-label {
  color: #e4faff;
  font-weight: 500;
  text-shadow: 0 0 4px rgba(0, 255, 255, 0.2);
}

.text-neon-label {
  color: #00f2ff;
  font-weight: 600;
  font-size: 0.9rem;
  text-shadow: 0 0 4px rgba(0, 255, 255, 0.4);
}