.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem 1.35rem;
  border-radius: 10px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-weight: 700;
  min-height: 46px;
  line-height: 1.5;
}
.primary {
  background: var(--brand);
  color: white;
}
.primary:hover {
  background: var(--brand-dark);
  color: white;
}
.secondary {
  background: white;
  border-color: var(--line);
  color: var(--ink);
}
.secondary:hover {
  border-color: var(--brand);
}
.subtle {
  background: transparent;
  color: var(--muted);
}
.full {
  width: 100%;
  margin-block: 0.4rem;
}
.surface {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-block-end: 1.5rem;
}
.notice {
  padding: 1rem 1.25rem;
  background: #e4f2f5;
  border: 1px solid #c0dee4;
  border-radius: 10px;
  margin-block: 1rem;
  color: #174451;
}
.eyebrow {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 0.5rem;
}
.empty {
  grid-column: 1/-1;
  text-align: center;
  padding: 3.5rem 1.5rem;
  background: var(--surface);
  border: 1px dashed var(--line);
  border-radius: var(--radius);
}
.empty p {
  color: var(--muted);
  margin-bottom: 1.5rem;
}
.badge {
  position: absolute;
  inset-inline-start: 1rem;
  top: 1rem;
  background: var(--surface);
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  color: var(--brand);
}
.badge.static {
  position: static;
  display: inline-block;
  background: #e5f3f4;
}
.listing-card {
  overflow: hidden;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.card-image {
  position: relative;
  display: block;
  aspect-ratio: 4/3;
  background: #e7eef2;
}
.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.no-image {
  display: grid;
  height: 100%;
  place-items: center;
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--muted);
}
.card-body {
  padding: 1.2rem;
}
.card-body h3 {
  margin-bottom: 0.65rem;
}
.price {
  font-weight: 800;
  font-size: 1.4rem;
  margin: 0;
}
.price span {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--muted);
}
.price.large {
  font-size: 2rem;
}
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}
.link-button {
  padding: 0;
  background: none;
  border: 0;
  color: var(--brand);
}
.form-links {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.5rem;
  color: var(--brand);
}
.recovery-code {
  display: block;
  padding: 1.5rem;
  background: var(--paper);
  border: 1px dashed var(--brand);
  margin-block: 1.5rem;
  font-size: 1.15rem;
  user-select: all;
}
.errorlist {
  color: var(--error);
  font-size: 0.9rem;
  padding-inline-start: 1.2rem;
}
.safety-note {
  font-size: 0.875rem;
  background: var(--paper);
  padding: 1rem;
  border-radius: 10px;
  margin-top: 1.5rem;
}
