/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: #0f1115;
}
::-webkit-scrollbar-thumb {
  background: #272a34;
  border-radius: 9999px;
}
::-webkit-scrollbar-thumb:hover {
  background: #3b82f6;
}

/* Category Tab Styles */
.category-tab {
  background-color: rgba(30, 41, 59, 0.5);
  border-color: rgba(51, 65, 85, 0.6);
  color: #94a3b8;
}
.category-tab:hover {
  background-color: rgba(30, 41, 59, 0.9);
  color: #f8fafc;
}
.category-tab.active {
  background: linear-gradient(135deg, #0284c7 0%, #2563eb 100%);
  border-color: #38bdf8;
  color: #ffffff;
  box-shadow: 0 10px 20px -5px rgba(2, 132, 199, 0.4);
}

/* Filter Chips */
.filter-chip {
  background-color: rgba(30, 41, 59, 0.6);
  color: #94a3b8;
  transition: all 0.2s ease;
}
.filter-chip:hover {
  color: #ffffff;
}
.filter-chip.active-chip {
  background-color: #38bdf8;
  color: #0f172a;
}

/* Product Card Styling */
.product-card {
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.25s ease, border-color 0.25s ease;
}
.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(56, 189, 248, 0.4);
  box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.5), 0 0 15px 0 rgba(56, 189, 248, 0.15);
}

/* Utility Animations */
@keyframes pulseGlow {
  0%, 100% { opacity: 0.8; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.03); }
}

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

/* User Selection Disable for Native App Feel */
button, nav, .category-tab {
  user-select: none;
  -webkit-user-select: none;
}