/* 
  Modern UI Design for Shressence Biotech
  Professional, Clean, and Visually Stunning Interface
*/

/* CSS Reset & Modern Base */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', sans-serif;
  line-height: 1.6;
  color: #1f2937;
  background: #ffffff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Modern Color Palette */
:root {
  --primary: #1e40af;
  --primary-light: #3b82f6;
  --primary-dark: #1e3a8a;
  --secondary: #0ea5e9;
  --accent: #10b981;
  --warning: #f59e0b;
  --error: #ef4444;
  
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  
  --white: #ffffff;
  --black: #000000;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  --gradient-secondary: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
  --gradient-hero: linear-gradient(135deg, #3b82f6 0%, #60a5fa 25%, #93c5fd 50%, #dbeafe 75%, #eff6ff 100%);
  
  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  
  /* Border Radius */
  --radius-sm: 0.25rem;
  --radius: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-full: 9999px;
  
  /* Transitions */
  --transition-fast: 0.15s ease-out;
  --transition: 0.3s ease-out;
  --transition-slow: 0.5s ease-out;
}

/* Typography Scale */
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-5xl { font-size: 3rem; line-height: 1; }
.text-6xl { font-size: 3.75rem; line-height: 1; }

/* Font Weights */
.font-thin { font-weight: 100; }
.font-light { font-weight: 300; }
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }
.font-black { font-weight: 900; }

/* Modern Layout System */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.container-sm { max-width: 640px; }
.container-md { max-width: 768px; }
.container-lg { max-width: 1024px; }
.container-xl { max-width: 1280px; }

/* Override existing home-page styles with modern design */
.home-page {
  display: block !important;
  width: 100% !important;
  background: var(--white) !important;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', sans-serif !important;
}

.home-page .div {
  width: 100% !important;
  height: auto !important;
  position: static !important;
  overflow: visible !important;
  background: var(--white) !important;
}

/* Modern Header */
.modern-header {
  background: var(--white);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray-200);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: all var(--transition);
}

.modern-header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-lg);
}

.modern-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) var(--space-lg);
}

.modern-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.modern-logo img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.modern-logo-text {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}

/* Modern Navigation */
.modern-nav {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.modern-nav-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: var(--space-lg);
}

.modern-nav-link {
  text-decoration: none;
  color: var(--gray-600);
  font-weight: 500;
  font-size: var(--text-base);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius);
  transition: all var(--transition);
  position: relative;
}

.modern-nav-link:hover,
.modern-nav-link.active {
  color: var(--primary);
  background: var(--gray-50);
}

/* Modern Button System */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-xl);
  border: none;
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: var(--text-sm);
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left var(--transition-slow);
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

.btn-secondary {
  background: var(--white);
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-secondary:hover {
  background: var(--primary);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--gray-600);
  border: 2px solid var(--gray-300);
}

.btn-outline:hover {
  background: var(--gray-100);
  border-color: var(--gray-400);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: var(--space-sm);
  border-radius: var(--radius);
  transition: background var(--transition);
}

.mobile-menu-toggle:hover {
  background: var(--gray-100);
}

.mobile-menu-toggle span {
  width: 24px;
  height: 2px;
  background-color: var(--gray-700);
  margin: 2px 0;
  transition: all var(--transition);
  border-radius: var(--radius-full);
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-4px, 4px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(45deg) translate(-4px, -4px);
}

/* Modern Hero Section */
.modern-hero {
  background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 25%, #93c5fd 50%, #dbeafe 75%, #eff6ff 100%);
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.modern-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('./Images/Bannerimg.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.3;
  z-index: -1;
}

.modern-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
}

.modern-hero-title {
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 800;
  margin-bottom: var(--space-lg);
  line-height: 1.1;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.modern-hero-subtitle {
  font-size: clamp(1.125rem, 3vw, 1.5rem);
  margin-bottom: var(--space-2xl);
  opacity: 0.95;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.modern-hero-cta {
  display: flex;
  gap: var(--space-lg);
  justify-content: center;
  flex-wrap: wrap;
}

/* Modern Card System */
.card {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: all var(--transition);
  border: 1px solid var(--gray-100);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-2xl);
  border-color: var(--gray-200);
}

.card-header {
  padding: var(--space-xl);
  border-bottom: 1px solid var(--gray-100);
}

.card-body {
  padding: var(--space-xl);
}

.card-footer {
  padding: var(--space-xl);
  background: var(--gray-50);
  border-top: 1px solid var(--gray-100);
}

/* Modern Services Section */
.modern-services {
  padding: var(--space-3xl) 0;
  background: var(--gray-50);
}

.modern-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-2xl);
}

.modern-service-card {
  background: var(--white);
  padding: var(--space-2xl);
  border-radius: var(--radius-xl);
  text-align: center;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  border: 1px solid var(--gray-100);
  position: relative;
  overflow: hidden;
}

.modern-service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
}

.modern-service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-2xl);
}

.modern-service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-lg);
  background: var(--gradient-primary);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
}

.modern-service-icon img {
  width: 40px;
  height: 40px;
  filter: brightness(0) invert(1);
}

.modern-service-title {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: var(--space-md);
}

.modern-service-description {
  color: var(--gray-600);
  line-height: 1.6;
}

/* Modern Section Headers */
.modern-section {
  padding: var(--space-3xl) 0;
}

.modern-section-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.modern-section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--gray-800);
  margin-bottom: var(--space-lg);
  line-height: 1.2;
}

.modern-section-subtitle {
  font-size: var(--text-lg);
  color: var(--gray-600);
  line-height: 1.7;
}

/* Modern Features Grid */
.modern-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-2xl);
}

.modern-feature-card {
  background: var(--white);
  padding: var(--space-2xl);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  transition: all var(--transition);
  border-left: 4px solid var(--primary);
}

.modern-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-2xl);
}

.modern-feature-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-secondary);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
}

.modern-feature-icon img {
  width: 30px;
  height: 30px;
  filter: brightness(0) invert(1);
}

.modern-feature-title {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: var(--space-md);
}

.modern-feature-description {
  color: var(--gray-600);
  line-height: 1.6;
}

/* Modern Products Section */
.modern-products {
  background: var(--white);
}

.modern-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-2xl);
}

.modern-product-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition);
  border: 1px solid var(--gray-100);
}

.modern-product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-2xl);
}

.modern-product-image {
  height: 240px;
  overflow: hidden;
  position: relative;
}

.modern-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.modern-product-card:hover .modern-product-image img {
  transform: scale(1.05);
}

.modern-product-content {
  padding: var(--space-xl);
}

.modern-product-title {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: var(--space-md);
}

.modern-product-description {
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: var(--space-lg);
}

/* Modern Footer */
.modern-footer {
  background: var(--gray-900);
  color: var(--gray-300);
  position: relative;
  overflow: hidden;
}

.modern-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('./Images/bg_01_1.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  z-index: 0;
}

.modern-footer-content {
  position: relative;
  z-index: 1;
  padding: var(--space-3xl) 0 var(--space-xl);
}

.modern-footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-2xl);
}

.modern-footer-section h4 {
  color: var(--white);
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--space-lg);
}

.modern-footer-section p,
.modern-footer-section li {
  color: var(--gray-400);
  line-height: 1.6;
  margin-bottom: var(--space-sm);
}

.modern-footer-section ul {
  list-style: none;
  padding: 0;
}

.modern-footer-section a {
  color: var(--gray-400);
  text-decoration: none;
  transition: color var(--transition);
}

.modern-footer-section a:hover {
  color: var(--white);
}

.modern-social-icons {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.modern-social-icon {
  width: 40px;
  height: 40px;
  background: var(--gray-800);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  border: 1px solid var(--gray-700);
}

.modern-social-icon:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-2px);
}

.modern-social-icon img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}

/* Modern CTA Section */
.modern-cta {
  background: var(--gradient-primary);
  color: var(--white);
  text-align: center;
  padding: var(--space-3xl) 0;
}

.modern-cta-title {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: var(--space-md);
}

.modern-cta-description {
  font-size: var(--text-lg);
  opacity: 0.9;
  margin-bottom: var(--space-2xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Additional Utility Classes */
.bg-white { background-color: var(--white); }
.bg-gray-50 { background-color: var(--gray-50); }
.bg-gray-100 { background-color: var(--gray-100); }
.bg-gray-900 { background-color: var(--gray-900); }

.text-white { color: var(--white); }
.text-gray-400 { color: var(--gray-400); }
.text-gray-500 { color: var(--gray-500); }
.text-gray-600 { color: var(--gray-600); }
.text-gray-800 { color: var(--gray-800); }
.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }

.py-2 { padding-top: var(--space-sm); padding-bottom: var(--space-sm); }
.py-6 { padding-top: var(--space-xl); padding-bottom: var(--space-xl); }
.mb-4 { margin-bottom: var(--space-md); }
.mb-6 { margin-bottom: var(--space-xl); }
.mb-8 { margin-bottom: var(--space-2xl); }
.mb-12 { margin-bottom: var(--space-3xl); }
.mt-12 { margin-top: var(--space-3xl); }

.space-y-2 > * + * { margin-top: var(--space-sm); }
.space-y-4 > * + * { margin-top: var(--space-md); }

.border-t { border-top: 1px solid var(--gray-200); }
.border-gray-800 { border-color: var(--gray-800); }

.w-5 { width: 1.25rem; }
.h-5 { height: 1.25rem; }
.w-8 { width: 2rem; }
.h-8 { height: 2rem; }
.w-16 { width: 4rem; }
.h-16 { height: 4rem; }
.h-64 { height: 16rem; }

.object-cover { object-fit: cover; }
.filter { filter: none; }
.invert { filter: invert(1); }
.opacity-70 { opacity: 0.7; }

.shadow-lg { box-shadow: var(--shadow-lg); }
.shadow-xl { box-shadow: var(--shadow-xl); }

.transition-shadow { transition: box-shadow var(--transition); }
.hover\:shadow-xl:hover { box-shadow: var(--shadow-xl); }

.leading-relaxed { line-height: 1.625; }

.btn-lg {
  padding: var(--space-lg) var(--space-2xl);
  font-size: var(--text-lg);
}

.grid {
  display: grid;
}

.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-12 { gap: 3rem; }

.flex-wrap { flex-wrap: wrap; }
.items-start { align-items: flex-start; }

.bg-opacity-20 { background-color: rgba(255, 255, 255, 0.2); }

/* Grid System */
@media (min-width: 768px) {
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

/* Notification Styles */
.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: var(--space-md) var(--space-lg);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  z-index: 1000;
  transform: translateX(400px);
  opacity: 0;
  transition: all var(--transition);
  max-width: 400px;
}

.notification.show {
  transform: translateX(0);
  opacity: 1;
}

.notification.success {
  border-left: 4px solid var(--accent);
}

.notification.error {
  border-left: 4px solid var(--error);
}

.notification.warning {
  border-left: 4px solid var(--warning);
}

.notification-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--gray-500);
  padding: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.notification-close:hover {
  color: var(--gray-700);
}

/* Top Contact Bar */
.bg-gray-900 {
  background-color: var(--gray-900);
}

/* Responsive Design */
@media (max-width: 768px) {
  .modern-nav-links {
    position: fixed;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: var(--space-xl);
    box-shadow: var(--shadow-xl);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
    z-index: 999;
  }
  
  .modern-nav-links.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .modern-nav-links li {
    width: 100%;
  }
  
  .modern-nav-link {
    display: block;
    padding: var(--space-md);
    border-bottom: 1px solid var(--gray-100);
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .modern-hero-cta {
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
  }
  
  .modern-services-grid,
  .modern-features-grid,
  .modern-products-grid {
    grid-template-columns: 1fr;
  }
  
  .container {
    padding: 0 var(--space-md);
  }
  
  .modern-hero {
    min-height: 70vh;
    text-align: center;
  }
  
  .modern-hero-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }
  
  .modern-cta .container .flex {
    flex-direction: column;
    text-align: center;
    gap: var(--space-lg);
  }
  
  .modern-footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  
  .grid.md\:grid-cols-2,
  .grid.md\:grid-cols-3 {
    grid-template-columns: 1fr;
  }
  
  .notification {
    right: 10px;
    left: 10px;
    max-width: none;
    transform: translateY(-100px);
  }
  
  .notification.show {
    transform: translateY(0);
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 var(--space-sm);
  }
  
  .modern-section {
    padding: var(--space-2xl) 0;
  }
  
  .modern-services,
  .modern-products {
    padding: var(--space-2xl) 0;
  }
  
  .modern-hero {
    min-height: 60vh;
  }
  
  .btn {
    padding: var(--space-md) var(--space-lg);
    font-size: var(--text-sm);
  }
  
  .btn-lg {
    padding: var(--space-md) var(--space-xl);
    font-size: var(--text-base);
  }
}

/* Animation Classes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

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

.animate-slide-in-left {
  animation: slideInLeft 0.6s ease-out;
}

/* Utility Classes */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.flex { display: flex; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }
.gap-lg { gap: var(--space-lg); }

.hidden { display: none; }
.block { display: block; }
.inline-block { display: inline-block; }

.w-full { width: 100%; }
.h-full { height: 100%; }

.rounded { border-radius: var(--radius); }
.rounded-lg { border-radius: var(--radius-lg); }
.rounded-xl { border-radius: var(--radius-xl); }
.rounded-full { border-radius: var(--radius-full); }