/* 
 * Persada Mandiri Store - Custom Styles
 * Custom CSS untuk melengkapi Tailwind CSS
 */

/* CSS Custom Properties for Colors */
:root {
  --color-primary: #f47521;
  --color-primary-hover: #d65d10;
  --color-secondary: #ffc20e;
  --color-secondary-hover: #eab308;
  --color-dark: #111827;
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* No custom scrollbar - use browser default (same as products/about/contact pages) */

/* Loading Animation (if needed) */
.loading {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(244, 117, 33, 0.3);
  border-radius: 50%;
  border-top-color: var(--color-primary);
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Image Lazy Loading Placeholder */
img[loading="lazy"] {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
}

@keyframes loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

/* Focus Visible for Accessibility */
*:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

/* Print Styles */
@media print {
  header,
  footer,
  .no-print {
    display: none !important;
  }
}
