/*
Theme Name: Sanjana Enterprises Medical Store
Description: Modern medical equipment e-commerce theme for WordPress with WooCommerce support
Version: 1.0
Author: Your Name
*/

/* Import Tailwind CSS - you'll need to compile this */
@import url('https://cdn.jsdelivr.net/npm/tailwindcss@3.4.1/dist/tailwind.min.css');

/* Custom CSS for WordPress theme */
:root {
  --primary-50: #f0fdf4;
  --primary-100: #dcfce7;
  --primary-200: #bbf7d0;
  --primary-300: #86efac;
  --primary-400: #4ade80;
  --primary-500: #22c55e;
  --primary-600: #059669;
  --primary-700: #047857;
  --primary-800: #065f46;
  --primary-900: #064e3b;
}

/* WordPress specific styles */
.wp-block-group {
  margin: 0;
}

.entry-content {
  margin: 0;
}

/* Ensure WordPress admin bar doesn't interfere */
body.admin-bar {
  padding-top: 32px;
}

/* Custom animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes bounceSubtle {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.animate-fade-in {
  animation: fadeIn 0.5s ease-in-out;
}

.animate-slide-up {
  animation: slideUp 0.5s ease-out;
}

.animate-bounce-subtle {
  animation: bounceSubtle 0.6s ease-in-out;
}