/* ============================================
   STRONG FITNESS EQUIPMENT — Responsive Adjustments
   ============================================ */

/* --- Mobile (<= 360px) --- */
@media(max-width:360px) {
  .hero-title { font-size: 28px; }
  .hero-subtitle { font-size: 16px; }
  .stat-number { font-size: 36px; }
  .btn { padding: 12px 24px; font-size: 13px; }
  .btn-lg { padding: 14px 32px; font-size: 14px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* --- Tablet (768px) general adjustments already inline --- */

/* --- Desktop (>= 1200px) --- */
@media(min-width:1200px) {
  .home-product-showcase { grid-template-columns: repeat(5, 1fr); }
  .stats-grid { gap: 2rem; }
}

/* --- Print --- */
@media print {
  .navbar, .float-contact, .back-to-top, .mobile-menu { display: none !important; }
  body { background: #fff; color: #000; }
  .section { padding: 1rem 0; }
}

/* --- Reduced Motion --- */
@media(prefers-reduced-motion:reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}