/* Custom Styling & Enhancements for SECOTECH Modern Web */

@layer utilities {
  /* Hide scrollbar for Chrome, Safari and Opera */
  .scrollbar-none::-webkit-scrollbar {
    display: none;
  }
  /* Hide scrollbar for IE, Edge and Firefox */
  .scrollbar-none {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
  }
}

/* Smooth fade in animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fadeIn 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Custom Nav link active state */
.nav-link.active {
  color: #0284c7;
  background-color: #f0f9ff;
}

/* Category Pill Active State */
.cat-pill {
  transition: all 0.2s ease-in-out;
}

.cat-pill.active {
  background-color: #0284c7 !important;
  color: #ffffff !important;
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.25);
}

.cat-pill:not(.active) {
  background-color: #ffffff;
  color: #475569;
  border: 1px solid #e2e8f0;
}

.cat-pill:not(.active):hover {
  background-color: #f8fafc;
  color: #0284c7;
  border-color: #cbd5e1;
}

/* Product Card Styling */
.product-card {
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
}
