/*
Theme Name: 3D Printer Catalog AR
Theme URI: https://example.com
Description: Arabic RTL catalog for industrial 3D printers with dark/light mode
Author: Developer
Version: 1.0.0
Text Domain: td-printers
*/

@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+Arabic:wght@300;400;500;600;700&display=swap');

/* Base RTL + transitions (Tailwind CDN handles utilities) */
body {
  font-family: 'IBM Plex Sans Arabic', sans-serif;
  direction: rtl;
}

html {
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
}

/* Smooth transitions on theme change */
* {
  transition-property: background-color, border-color, color;
  transition-duration: 150ms;
  transition-timing-function: ease-in-out;
}

/* Exclude transforms and opacity from transition to avoid layout jank */
svg, img, button svg {
  transition: none;
}
