/*
Theme Name: Random Apparel
Theme URI: https://example.com/
Author: Your Name
Author URI: https://example.com/
Description: A minimalist WooCommerce-ready WordPress theme converted from a React project.
Version: 1.1
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: random-apparel
*/

body {
  font-family: 'Inter', sans-serif;
}

:root {
  --brand-brown: #5d3a00;
  --brand-cream: #f5f5dc;
}



/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fadeInUp {
  animation: fadeInUp 0.8s ease-out both;
}

/* Utility classes */
.transition {
  transition: all 0.3s ease-in-out;
}

.hover\:scale-105:hover {
  transform: scale(1.05);
}
