.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--color-accent);
  color: #fff;
  font-size: 14px;
  font-weight: 650;
  transition: transform var(--transition), background var(--transition), border-color var(--transition);
  cursor: pointer;
}
.button:hover { transform: translateY(-1px); background: #2a2a2a; }
.button--secondary { background: transparent; border-color: var(--color-border); color: var(--color-text); }
.button--secondary:hover { background: var(--color-surface); }
.button--text { min-height: auto; padding: 4px 0; border-radius: 0; background: transparent; color: var(--color-accent); border-bottom: 1px solid currentColor; }
.button--text:hover { transform: none; background: transparent; }
.card {
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  box-shadow: var(--shadow-card);
}
.card__media { position: relative; overflow: hidden; aspect-ratio: 4 / 3; background: var(--color-stone); }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 420ms ease; }
.card:hover .card__media img { transform: scale(1.025); }
.card__body { padding: 24px; }
.card__meta { display: flex; justify-content: space-between; gap: 16px; margin-bottom: 8px; font-size: 12px; color: var(--color-muted); text-transform: uppercase; letter-spacing: .08em; }
.card h3 { font-size: 24px; }
.card p { margin-top: 10px; }
.card__footer { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-top: 20px; }
.status-badge { display: inline-flex; align-items: center; min-height: 28px; padding: 0 10px; border-radius: 999px; background: var(--color-accent-pale); color: var(--color-accent); font-size: 12px; font-weight: 700; }
.status-badge--preview { background: #eee8dc; color: #765f38; }
.status-badge--coming { background: #ececeb; color: #6f716d; }
.icon-button { display: inline-grid; place-items: center; width: 42px; height: 42px; border: 1px solid var(--color-border); border-radius: 999px; cursor: pointer; }
.icon-button:hover { background: var(--color-surface-soft); }
.icon-button img { width: 19px; height: 19px; }
.price { color: var(--color-text); font-weight: 650; }
.list-checks { display: grid; gap: 12px; }
.list-checks li { display: flex; align-items: flex-start; gap: 12px; color: var(--color-muted); }
.list-checks li::before { content: "✓"; display: grid; place-items: center; width: 22px; height: 22px; flex: 0 0 auto; border-radius: 50%; background: var(--color-accent-pale); color: var(--color-accent); font-size: 12px; font-weight: 800; }
.preview-panel { padding: clamp(32px, 5vw, 64px); border-radius: var(--radius-xl); background: var(--color-surface); border: 1px solid var(--color-border); }
.preview-panel__actions { margin-top: 30px; }
.callout { padding: 28px; border-radius: var(--radius-md); background: var(--color-accent); color: white; }
.callout p { color: rgba(255,255,255,.7); }
.input, .select { width: 100%; min-height: 48px; padding: 0 16px; border: 1px solid var(--color-border); border-radius: 12px; background: var(--color-surface); color: var(--color-text); }
.search-overlay { position: fixed; inset: 0; z-index: 200; display: grid; place-items: start center; padding: 110px 24px 24px; background: rgba(0,0,0,.44); backdrop-filter: blur(8px); }
.search-dialog { width: min(760px, 100%); padding: 28px; border-radius: 24px; background: white; box-shadow: 0 40px 120px rgba(0,0,0,.28); }
.search-dialog__top { display: flex; gap: 12px; }
.search-dialog__top .input { flex: 1; }
.search-suggestions { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 18px; }
.search-suggestions a { padding: 16px; border-radius: 14px; background: var(--color-surface-soft); font-size: 14px; }
