:root {
  --indigo-50: #eef2ff;
  --indigo-100: #e0e7ff;
  --indigo-500: #6366f1;
  --indigo-600: #4f46e5;
  --indigo-700: #4338ca;
  --indigo-800: #3730a3;
  --purple-50: #faf5ff;
  --purple-100: #f3e8ff;
  --purple-700: #7e22ce;
  --purple-800: #6b21a8;
  --pink-50: #fdf2f8;
  --pink-100: #fce7f3;
  --pink-700: #be185d;
  --pink-800: #9f1239;
  --blue-50: #eff6ff;
  --blue-100: #dbeafe;
  --blue-700: #1d4ed8;
  --blue-800: #1e40af;
  --green-50: #f0fdf4;
  --green-100: #dcfce7;
  --green-700: #15803d;
  --green-800: #166534;
  --orange-50: #fff7ed;
  --orange-100: #ffedd5;
  --orange-700: #c2410c;
  --orange-800: #9a3412;
  --yellow-500: #eab308;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

.container {
  max-width: 1280px;
}

details summary::-webkit-details-marker {
  display: none;
}

details[open] summary ~ * {
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s ease-out;
}

#cookie-banner.show {
  transform: translateY(0);
}

#cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  background-color: rgba(0, 0, 0, 0.75);
  padding: 1rem;
  overflow-y: auto;
}

#cookie-modal.show {
  display: flex;
}

@media (max-width: 1023px) {
  #mobile-menu.show {
    display: block;
  }
}

.spinner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.group:hover img {
  transform: scale(1.1);
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
}

input[type="checkbox"]:focus {
  outline: 2px solid var(--indigo-500);
  outline-offset: 2px;
}

@media print {
  header,
  footer,
  #cookie-banner,
  #cookie-modal {
    display: none;
  }
}