.category-card-overlay {
  background: linear-gradient(0deg, rgba(22,22,22,0.85) 0%, rgba(22,22,22,0.2) 60%, transparent 100%);
}

/* Hero slider */
.hero-slider {
  position: relative;
  overflow: hidden;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}
.hero-slider.dragging {
  cursor: grabbing;
}
.hero-slider img {
  -webkit-user-drag: none;
  user-drag: none;
}
.hero-slider-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.hero-slide {
  flex: 0 0 100%;
  min-width: 0;
  position: relative;
  background-size: cover;
  background-position: center;
}
.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(22,22,22,0.82) 0%, rgba(22,22,22,0.65) 50%, rgba(157,31,28,0.55) 100%);
}
.hero-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background 0.15s, transform 0.15s;
  color: #fff;
}
.hero-slider-btn:hover {
  background: rgba(255,255,255,0.25);
  transform: translateY(-50%) scale(1.05);
}
.hero-slider-btn--prev { left: 20px; }
.hero-slider-btn--next { right: 20px; }
@media (max-width: 639px) {
  .hero-slider-btn { width: 36px; height: 36px; transform: translateY(calc(-50% - 20px)); }
  .hero-slider-btn:hover { transform: translateY(calc(-50% - 20px)) scale(1.05); }
  .hero-slider-btn--prev { left: 2px; }
  .hero-slider-btn--next { right: 2px; }
}
.hero-slider-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 2;
}
.hero-slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: 2px solid rgba(255,255,255,0.6);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  padding: 0;
}
.hero-slider-dot.active {
  background: #fff;
  border-color: #fff;
  transform: scale(1.2);
}
.grid-fade-in > * {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.5s ease forwards;
}
.grid-fade-in > *:nth-child(1) { animation-delay: 0.05s; }
.grid-fade-in > *:nth-child(2) { animation-delay: 0.1s; }
.grid-fade-in > *:nth-child(3) { animation-delay: 0.15s; }
.grid-fade-in > *:nth-child(4) { animation-delay: 0.2s; }
.grid-fade-in > *:nth-child(5) { animation-delay: 0.25s; }
.grid-fade-in > *:nth-child(6) { animation-delay: 0.3s; }
.grid-fade-in > *:nth-child(7) { animation-delay: 0.35s; }
.grid-fade-in > *:nth-child(8) { animation-delay: 0.4s; }
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-slide-down { animation: slideDown 0.4s ease; }
