:root {
  --brand: #2f855a;
}
html, body {
  font-family: 'DM Serif Display', serif;
  font-size: 18px;
  line-height: 1.6;
}
.chip {
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  border: 1px solid #e5e7eb;
  font-size: 0.875rem;
  line-height: 1.25rem;
  cursor: pointer;
  user-select: none;
}
.shadow-soft {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}
.card {
  background-color: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  border: 1px solid #f5f5f5;
  overflow: hidden;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  padding: 0.5rem 0.75rem;
  font-weight: 500;
  border: 1px solid #e5e7eb;
  transition: border-color 0.2s, transform 0.1s;
}
.btn:hover {
  border-color: #d1d5db;
}
.btn:active {
  transform: scale(0.98);
}
.btn-primary {
  background-color: #059669;
  color: #ffffff;
  border-color: #047857;
}
.btn-primary:hover {
  background-color: #047857;
}
.btn-ghost {
  background-color: transparent;
}
.input {
  width: 100%;
  border-radius: 0.75rem;
  border: 1px solid #e5e7eb;
  padding: 0.5rem 0.75rem;
  outline: none;
}
.input:focus {
  box-shadow: 0 0 0 2px #10b981;
}
.grid-products {
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
}
.pill {
  font-size: 11px;
  padding: 0.125rem 0.625rem;
  border-radius: 9999px;
  background-color: #ecfdf5;
  color: #047857;
  border: 1px solid #a7f3d0;
}
.badge {
  font-size: 11px;
  padding: 0.125rem 0.375rem;
  border-radius: 0.25rem;
  border: 1px solid #e5e7eb;
  color: #4b5563;
}
.link {
  color: #047857;
  text-decoration: none;
}
.link:hover {
  text-decoration: underline;
}
.hidden-scroll {
  scrollbar-width: none;
}
.hidden-scroll::-webkit-scrollbar {
  display: none;
}
.sr-only {
  position: absolute;
  left: -9999px;
}
