/* Products Page - Tailwind-based Design */
/* Minimal custom styles - most styling is handled by Tailwind CSS */

/* Custom animations and utilities */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fadeIn {
  animation: fadeIn 0.3s ease-in-out;
}

/* Pagination styling (if using Laravel default pagination) */
.pagination {
  display: flex;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.pagination li a,
.pagination li span {
  padding: 0.5rem 0.75rem;
  border: 1px solid #E2E8F0;
  border-radius: 0.5rem;
  color: #64748B;
  text-decoration: none;
  transition: all 0.2s;
}

.pagination li a:hover {
  background: #F97316;
  color: white;
  border-color: #F97316;
}

.pagination li.active span {
  background: #F97316;
  color: white;
  border-color: #F97316;
}

.pagination li.disabled span {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Smooth transitions for interactive elements */
button, a, input, select {
  transition: all 0.2s ease;
}

/* Focus states for accessibility */
input:focus, select:focus, button:focus {
  outline: 2px solid #F97316;
  outline-offset: 2px;
}
