/* Main CSS File - Pure Tailwind CSS */

/* Smooth Scrolling für bessere UX */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px; /* Für fixed header */
}

/* Optimierte Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f9fafb;
}

::-webkit-scrollbar-thumb {
  background: #e5e7eb;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #6b7280;
}

/* Optimierte Selection */
::selection {
  background-color: #3b82f6;
  color: white;
}

/* Fix für weiße Titel auf weißem Hintergrund - nur für Produkttitel */
.bg-white h1,
.bg-white h2,
.bg-white h3,
.bg-white h4,
.bg-white h5,
.bg-white h6 {
  color: #1f2937 !important;
}

/* Spezifische Regeln für Produktkarten */
.product-card h1,
.product-card h2,
.product-card h3,
.product-card h4,
.product-card h5,
.product-card h6 {
  color: #1f2937 !important;
}