/* Font smoothing and base transitions */
body {
  font-family: 'Inter', sans-serif;
  transition: background-color 0.3s ease, color 0.3s ease;
  -webkit-font-smoothing: antialiased;
}

/* Dark mode base */
.dark {
  background-color: #111827;
  color: #F9FAFB;
}

/* Toggle button */
.toggle-dark {
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* Button glow on hover */
button:hover {
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

/* Shop card hover animation */
.card-hover {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-hover:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.1);
}

/* Animate fade-in */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fadeIn {
  animation: fadeIn 0.6s ease-out both;
}

/* Bounce-in animation */
@keyframes bounceIn {
  0% {
    transform: scale(0.9);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.animate-bounceIn {
  animation: bounceIn 0.5s ease-out both;
}

/* Orange theme colors */
.bg-primary {
  background-color: #FF6B35;
}
.text-primary {
  color: #FF6B35;
}
.dark .bg-primary {
  background-color: #F7931E;
}
.dark .text-primary {
  color: #FFD23F;
}

/* Additional utility enhancements */
.rounded-xl {
  border-radius: 1.25rem;
}

.shadow-soft {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

.transition {
  transition: all 0.3s ease-in-out;
}

/* Frosted dark navbar suggestion */
.dark .frosted-dark {
  background-color: rgba(17, 24, 39, 0.7);
  backdrop-filter: blur(10px);
}

/* Accessibility: Focus ring for inputs/buttons */
:focus-visible {
  outline: 2px solid #FF6B35;
  outline-offset: 2px;
  border-radius: 0.375rem;
}

/* Modern Glassy Footer Styles */
.footer-glass {
  background: rgba(30, 41, 59, 0.85);
  backdrop-filter: blur(16px) saturate(180%);
  border-top: 1.5px solid rgba(255,255,255,0.08);
  box-shadow: 0 -4px 32px 0 rgba(0,0,0,0.12);
  position: relative;
  z-index: 10;
}
.footer-gradient {
  background: linear-gradient(90deg, #FF6B35 0%, #F7931E 50%, #FFD23F 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  animation: gradientShift 4s ease-in-out infinite;
}
.footer-social {
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 0 rgba(255,107,53,0.0);
}
.footer-social:hover {
  transform: translateY(-4px) scale(1.15) rotate(-6deg);
  box-shadow: 0 0 16px 2px #FF6B35, 0 0 32px 4px #FFD23F44;
  color: #FFD23F !important;
}
.footer-particle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.18;
  pointer-events: none;
  animation: footerParticle 8s linear infinite;
}
@keyframes footerParticle {
  0% { transform: translateY(0) scale(1); opacity: 0.18; }
  50% { transform: translateY(-24px) scale(1.2); opacity: 0.32; }
  100% { transform: translateY(0) scale(1); opacity: 0.18; }
}
@media (max-width: 640px) {
  .footer-glass { padding: 2rem 1rem; }
}
