/* OZIS Sports - Custom Styles */
:root {
  --ozis-orange: #FF5722;
  --ozis-blue: #003366;
  --ozis-teal: #0D6B6B;
  --ozis-dark: #0B0B1A;
  --ozis-light: #F2F4FF;
  --ozis-accent: #FFE440;
}

/* ===== ACCESSIBILITY ===== */

/* Screen-reader-only utility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Focus-visible: clear orange ring on all interactive elements */
*:focus-visible {
  outline: 3px solid var(--ozis-orange);
  outline-offset: 2px;
}

/* Focus ring override for elements with custom styling */
a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--ozis-orange);
  outline-offset: 2px;
}

/* Respect user motion preferences */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Custom smooth transitions */
html { scroll-behavior: smooth; }

/* Gradient text */
.gradient-text {
  background: linear-gradient(135deg, var(--ozis-orange), #FFA500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Card hover effects */
.card-hover {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.card-hover:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(255, 107, 53, 0.15);
}

/* Button pulse */
.btn-pulse {
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.4); }
  50% { box-shadow: 0 0 0 15px rgba(255, 107, 53, 0); }
}

/* Hero blob animation */
.hero-blob {
  animation: blob 8s ease-in-out infinite alternate;
}
@keyframes blob {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(30px, -30px) scale(1.1); }
}

/* Fade-in on scroll — always visible by default; JS adds .visible for animation */
.fade-in {
  opacity: 1;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile menu */
@media (max-width: 767px) {
  .mobile-menu { display: none; }
  .mobile-menu.open { display: block; }
}

/* Product card badge */
.product-badge {
  position: absolute;
  top: 12px;
  right: 12px;
}
