.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

.product-card {
  transition: transform .18s ease, box-shadow .18s ease;
}
.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px -8px rgba(240,80,15,0.25);
}

.badge-discount {
  background: linear-gradient(135deg, #F0500F, #FFB100);
}

.flash-strip {
  background: repeating-linear-gradient(135deg, #F0500F, #F0500F 10px, #C63D07 10px, #C63D07 20px);
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; }
  50% { opacity: .35; }
}
.pulse-dot { animation: pulseDot 1.4s infinite; }

@media (prefers-reduced-motion: reduce) {
  .product-card, .pulse-dot { transition: none; animation: none; }
}

input:focus-visible, button:focus-visible, a:focus-visible {
  outline: 2px solid #F0500F;
  outline-offset: 2px;
}
