/* Base page styling */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
}

.font-serif {
  font-family: Georgia, ui-serif, serif;
}

.font-sans {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
}

/* Smooth transitions for repeated interactive elements */
.transition-all-300 {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-track {
  transform: translateX(0%);
}

.bot-field {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

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

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

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

::-webkit-scrollbar-thumb:hover {
  background: #b45309;
}
