/* custom smooth transitions & unique modern touches */
* {
  scroll-behavior: smooth;
}
body {
  background: #f9fafc;
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    sans-serif;
}
/* glassmorphism card effect */
.glass-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.glass-card:hover {
  transform: scale(1.01) translateY(-4px);
  box-shadow: 0 30px 50px -16px rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 215, 0, 0.3);
}
/* slider image overlay gradient */
.slide-gradient {
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.2) 0%,
    rgba(0, 0, 0, 0.05) 80%
  );
}
/* product card hover */
.product-card {
  transition: all 0.25s ease-in-out;
}
.product-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 20px 40px -12px rgba(0, 20, 40, 0.25);
}
/* animated underline for nav links */
.nav-link {
  position: relative;
  font-weight: 500;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: #fbbf24;
  transition: width 0.3s ease;
}
.nav-link:hover::after {
  width: 100%;
}
/* button pulse */
.btn-pulse {
  animation: pulse-soft 2s infinite;
}
@keyframes pulse-soft {
  0% {
    box-shadow: 0 0 0 0 rgba(251, 191, 36, 0.3);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(251, 191, 36, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(251, 191, 36, 0);
  }
}
/* slider dots custom */
.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 20px;
  background: #d1d5db;
  transition: all 0.3s ease;
  cursor: pointer;
}
.slider-dot.active {
  background: #fbbf24;
  width: 32px;
}
/* footer link hover */
.footer-link {
  transition:
    color 0.2s,
    transform 0.2s;
  display: inline-block;
}
.footer-link:hover {
  color: #fbbf24;
  transform: translateX(4px);
}
/* toaster (notyf) override */
.notyf__toast {
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}
/* mobile two-column product grid override */
@media (max-width: 640px) {
  .product-grid-mobile {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
