/* Custom styles - extend as needed */
* {
  transition: all 0.2s ease;
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

body {
  font-family: "Work Sans", ui-sans-serif, system-ui, sans-serif;
  color: #1e293b;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Merriweather", ui-serif, Georgia, serif;
  font-weight: 700;
  color: #0f172a;
}

/* Custom styles - extend as needed */
* {
  transition: all 0.2s ease;
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

.text-balance {
  text-wrap: balance;
}

.text-pretty {
  text-wrap: pretty;
}

.glass-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.supplement-facts-table {
  font-family: "Work Sans", sans-serif;
  border: 1px solid black;
  padding: 4px;
}

.supplement-facts-table th, 
.supplement-facts-table td {
  border-bottom: 1px solid black;
}

.supplement-facts-table .thick-border {
  border-bottom-width: 8px;
}

.supplement-facts-table .medium-border {
  border-bottom-width: 4px;
}

.gradient-text-orange {
  background: linear-gradient(to right, #ea580c, #f97316);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.mask-fade-bottom {
  mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
}

.shadow-soft {
  box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.05), 0 2px 10px -2px rgba(0, 0, 0, 0.03);
}

.quote-mark::before {
  content: '"';
  font-family: "Merriweather", serif;
  opacity: 0.1;
  font-size: 4rem;
  position: absolute;
  top: -1rem;
  left: 1rem;
}