@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --dark-blue: #0F172A;
  --navy-blue: #0B1221;
  --cyan-accent: #06B6D4;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Poppins', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #ffffff;
  color: #0f172a;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Poppins', sans-serif;
}

p,
span,
div {
  font-family: 'Inter', sans-serif;
}

html {
  scroll-behavior: smooth;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #06B6D4;
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: #0891b2;
}

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-up {
  animation: fade-in-up 0.6s ease-out both;
}

@keyframes slide-in-from-top {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-slide-in-from-top {
  animation: slide-in-from-top 0.3s ease-out both;
}

@media (max-width: 768px) {
  button,
  a[role="button"] {
    min-height: 44px;
    min-width: 44px;
  }
}

input,
textarea,
select {
  color: #111827;
}

input::placeholder,
textarea::placeholder {
  color: #9ca3af;
}

button:focus,
a:focus,
input:focus,
textarea:focus,
select:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(6, 182, 212, 0.8), 0 0 0 4px rgba(255, 255, 255, 0.9);
}

body.is-scrolling #products .group,
body.is-scrolling #products .group * {
  transition: none !important;
}

body.is-scrolling #products .group,
body.is-scrolling #products .group img {
  transform: none !important;
}

body.is-scrolling #products .group {
  pointer-events: none;
}
