/* ================================================================
   fabric-stock24 – COMPONENTS
   Buttons · Badges · Alerts · Forms · Cards · Pagination · Upload
   Abhängig von: tokens.css, base.css
================================================================ */

/* ══════════════════════════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════════════════════════ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: 11px 22px;
  font-family: var(--font-body);
  font-size: .9375rem;
  font-weight: 600;
  line-height: 1;
  border-radius: var(--r);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition:
    background var(--t-fast),
    border-color var(--t-fast),
    box-shadow var(--t-fast),
    transform var(--t-fast),
    color var(--t-fast);
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: scale(.97); }
.btn:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; }
.btn:disabled { opacity: .55; pointer-events: none; }

/* Varianten */
.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--primary-h);
  border-color: var(--primary-h);
  box-shadow: var(--shadow-green);
  color: var(--white);
}

.btn-success {
  background: var(--success);
  color: var(--white);
  border-color: var(--success);
}
.btn-success:hover {
  background: var(--success-h);
  border-color: var(--success-h);
  color: var(--white);
}

.btn-danger {
  background: var(--danger);
  color: var(--white);
  border-color: var(--danger);
}
.btn-danger:hover {
  background: var(--danger-h);
  border-color: var(--danger-h);
  color: var(--white);
}

.btn-warning {
  background: var(--warning);
  color: var(--white);
  border-color: var(--warning);
}
.btn-warning:hover {
  background: var(--warning-h);
  color: var(--white);
  box-shadow: var(--shadow-gold);
}

.btn-ghost {
  background: var(--white);
  color: var(--ink-3);
  border-color: var(--border-2);
}
.btn-ghost:hover {
  background: var(--surface);
  border-color: var(--border-2);
  color: var(--ink);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline:hover {
  background: var(--primary-l);
  color: var(--primary);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.55);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
  color: var(--white);
}

.btn-premium {
  background: var(--premium-grad);
  color: var(--white);
  border-color: transparent;
}
.btn-premium:hover {
  box-shadow: var(--shadow-gold);
  color: var(--white);
}

/* Größen */
.btn-xs  { padding: 5px 12px; font-size: .8rem; border-radius: var(--r-sm); }
.btn-sm  { padding: 7px 16px; font-size: .875rem; border-radius: var(--r-sm); }
.btn-lg  { padding: 14px 30px; font-size: 1.0625rem; border-radius: var(--r-md); }
.btn-xl  { padding: 16px 36px; font-size: 1.125rem; border-radius: var(--r-md); }
.btn-full{ width: 100%; }
.btn-icon{ padding: 10px; aspect-ratio: 1; }
.btn-icon.btn-sm { padding: 7px; }

/* Loading */
.btn.loading {
  pointer-events: none;
  opacity: .7;
}
.btn.loading::after {
  content: '';
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255,255,255,.4);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin .6s linear infinite;
  margin-left: var(--sp-2);
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ══════════════════════════════════════════════════════════════
   BADGES
══════════════════════════════════════════════════════════════ */

.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: var(--r-full);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .02em;
  white-space: nowrap;
  line-height: 1.4;
}

.badge-success   { background: var(--success-l); color: var(--success); }
.badge-warning   { background: var(--warning-l); color: var(--warning); }
.badge-danger    { background: var(--danger-l);  color: var(--danger);  }
.badge-info      { background: var(--info-l);    color: var(--info);    }
.badge-muted     { background: var(--surface);   color: var(--muted); border: 1px solid var(--border); }
.badge-primary   { background: var(--primary-l); color: var(--primary); }
.badge-premium   { background: var(--gold-l);    color: var(--amber-600); }

/* Rollen-Badges */
.badge-haendler    { background: var(--primary-l); color: var(--primary); }
.badge-hersteller  { background: var(--green-100); color: var(--green-700); }
.badge-interessent { background: #f3e8ff; color: #7c3aed; }
.badge-admin       { background: var(--ink-2); color: var(--white); }

/* Status-Badges (semantische Klassen) */
.status-active   { background: var(--success-l); color: var(--success); }
.status-pending  { background: var(--warning-l); color: var(--warning); }
.status-inactive { background: var(--surface);   color: var(--muted); border: 1px solid var(--border); }
.status-rejected { background: var(--danger-l);  color: var(--danger); }
.status-draft    { background: var(--surface);   color: var(--subtle); border: 1px solid var(--border); }
.status-new      { background: var(--primary-l); color: var(--primary); }
.status-read     { background: var(--surface);   color: var(--muted); border: 1px solid var(--border); }
.status-answered { background: var(--success-l); color: var(--success); }
.status-paid     { background: var(--success-l); color: var(--success); }
.status-open     { background: var(--warning-l); color: var(--warning); }

/* Featured-Dot */
.badge-dot {
  background: var(--danger);
  color: var(--white);
  font-size: .7rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: var(--r-full);
  min-width: 20px;
  text-align: center;
  line-height: 1.4;
}

/* ══════════════════════════════════════════════════════════════
   ALERTS
══════════════════════════════════════════════════════════════ */

.alert {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  padding: 14px 18px;
  border-radius: var(--r);
  font-size: .9375rem;
  margin-bottom: var(--sp-5);
  border: 1px solid transparent;
  animation: alertIn .2s var(--ease);
}

@keyframes alertIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.alert-icon {
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.alert > span:nth-child(2) { flex: 1; }

.alert-close {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  color: currentColor;
  opacity: .6;
  padding: 0;
  line-height: 1;
  margin-left: auto;
  flex-shrink: 0;
  transition: opacity var(--t-fast);
}
.alert-close:hover { opacity: 1; }

.alert-success {
  background: var(--success-l);
  color: var(--success-h);
  border-color: #a7f3d0;
}
.alert-error {
  background: var(--danger-l);
  color: var(--danger-h);
  border-color: #fca5a5;
}
.alert-warning {
  background: var(--warning-l);
  color: var(--warning-h);
  border-color: #fcd34d;
}
.alert-info {
  background: var(--info-l);
  color: var(--info);
  border-color: #bae6fd;
}

/* ══════════════════════════════════════════════════════════════
   FORMS
══════════════════════════════════════════════════════════════ */

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: var(--sp-4);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
}

.form-row-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--sp-4);
}

.form-group.full { grid-column: 1 / -1; }
.form-actions    { display: flex; gap: var(--sp-3); flex-wrap: wrap; }

label {
  font-size: .875rem;
  font-weight: 600;
  color: var(--ink-3);
}

label .required {
  color: var(--danger);
  margin-left: 2px;
}

/* Input-Felder */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
input[type="number"],
input[type="date"],
input[type="search"],
input[type="url"],
select,
textarea {
  width: 100%;
  padding: 11px 14px;
  font-size: .9375rem;
  font-family: var(--font-body);
  border: 1.5px solid var(--border-2);
  border-radius: var(--r);
  background: var(--white);
  color: var(--ink-3);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

input::placeholder,
textarea::placeholder { color: var(--subtle); }

input:focus,
select:focus,
textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(5,150,105,.12);
}

input.is-invalid,
select.is-invalid,
textarea.is-invalid {
  border-color: var(--danger);
}
input.is-invalid:focus {
  box-shadow: 0 0 0 3px rgba(220,38,38,.12);
}

.field-error {
  font-size: .8125rem;
  color: var(--danger);
  margin-top: 2px;
}

.field-hint {
  font-size: .8125rem;
  color: var(--muted);
  margin-top: 2px;
}

textarea  { min-height: 120px; resize: vertical; line-height: 1.6; }

/* Select-Pfeil */
select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 40px;
  cursor: pointer;
}

/* Input mit Icon */
.input-icon-wrap {
  position: relative;
}
.input-icon-wrap input { padding-left: 40px; }
.input-icon-wrap .input-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  font-size: 1rem;
  pointer-events: none;
}

/* Passwort-Toggle */
.input-pw { position: relative; }
.input-pw input { padding-right: 44px; }
.pw-toggle {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: var(--muted);
  font-size: 1.125rem;
  padding: 4px;
  border-radius: var(--r-sm);
  transition: color var(--t-fast);
}
.pw-toggle:hover { color: var(--ink-3); }

/* Input-Addon */
.input-group { display: flex; }
.input-group input {
  border-right: none;
  border-radius: var(--r) 0 0 var(--r);
}
.input-addon {
  background: var(--surface);
  border: 1.5px solid var(--border-2);
  border-left: none;
  border-radius: 0 var(--r) var(--r) 0;
  padding: 0 14px;
  display: flex;
  align-items: center;
  color: var(--muted);
  font-size: .9375rem;
  white-space: nowrap;
}

/* Checkbox / Radio */
.checkbox-label,
.radio-label {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: .9375rem;
  cursor: pointer;
  user-select: none;
}
.checkbox-label input[type="checkbox"],
.radio-label    input[type="radio"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  cursor: pointer;
  accent-color: var(--primary);
}

/* Sprach-Tabs (für mehrsprachige Felder) */
.lang-tabs { display: flex; gap: var(--sp-2); flex-wrap: wrap; margin-bottom: var(--sp-3); }
.ltab {
  padding: 6px 16px;
  border-radius: var(--r-sm);
  border: 1.5px solid var(--border-2);
  background: var(--white);
  font-size: .8125rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color var(--t-fast), background var(--t-fast), color var(--t-fast);
}
.ltab:hover  { border-color: var(--primary); color: var(--primary); }
.ltab.active { border-color: var(--primary); background: var(--primary-l); color: var(--primary); }
.ltab-pane          { display: none; }
.ltab-pane.active   { display: block; }

/* Upload-Zone */
.upload-zone {
  border: 2px dashed var(--border-2);
  border-radius: var(--r-lg);
  padding: var(--sp-10) var(--sp-6);
  text-align: center;
  background: var(--surface);
  cursor: pointer;
  transition: border-color var(--t-fast), background var(--t-fast);
}
.upload-zone:hover,
.upload-zone.drag-over {
  border-color: var(--primary);
  background: var(--primary-l);
}
.upload-icon  { font-size: 2.5rem; color: var(--border-2); margin-bottom: var(--sp-3); }
.upload-zone p { font-size: .9rem; }

.image-preview-grid { display: flex; flex-wrap: wrap; gap: var(--sp-3); margin-top: var(--sp-4); }
.preview-img {
  position: relative;
  width: 100px;
  height: 100px;
  border-radius: var(--r);
  overflow: hidden;
  border: 2px solid var(--border);
}
.preview-img img { width: 100%; height: 100%; object-fit: cover; }
.preview-img .main-label {
  position: absolute;
  top: 4px; left: 4px;
  font-size: .6875rem;
  background: var(--primary);
  color: var(--white);
  padding: 1px 6px;
  border-radius: 4px;
}
.preview-img .remove-img {
  position: absolute;
  top: 4px; right: 4px;
  background: rgba(0,0,0,.6);
  color: var(--white);
  border: none;
  width: 20px; height: 20px;
  border-radius: 50%;
  cursor: pointer;
  font-size: .75rem;
  display: flex; align-items: center; justify-content: center;
}

/* ══════════════════════════════════════════════════════════════
   CARDS (General)
══════════════════════════════════════════════════════════════ */

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: box-shadow var(--t-base), transform var(--t-base);
}

.card:hover {
  box-shadow: var(--shadow-md);
}

.card-body    { padding: var(--sp-6); }
.card-header  { padding: var(--sp-4) var(--sp-6); border-bottom: 1px solid var(--border); }
.card-footer  { padding: var(--sp-4) var(--sp-6); border-top: 1px solid var(--border); background: var(--surface); }

/* ── Inserat-Card ────────────────────────────────────────── */
.inserat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: box-shadow var(--t-base), transform var(--t-base);
  position: relative;
}

.inserat-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.inserat-card.featured {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(5,150,105,.12);
}

.inserat-card .card-featured-badge {
  position: absolute;
  top: 12px; left: 12px;
  z-index: 1;
  background: var(--primary);
  color: var(--white);
  font-size: .6875rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--r-full);
  letter-spacing: .04em;
  text-transform: uppercase;
}

.inserat-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: var(--surface);
  position: relative;
}

.inserat-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}

.inserat-card:hover .inserat-img img {
  transform: scale(1.05);
}

.inserat-img .img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--border-2);
}

.inserat-body {
  padding: var(--sp-4) var(--sp-5);
}

.inserat-cat {
  font-size: .6875rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: var(--sp-1);
}

.inserat-title {
  font-family: var(--font-head);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: var(--sp-2);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.inserat-meta {
  display: flex;
  gap: var(--sp-2);
  flex-wrap: wrap;
  margin-bottom: var(--sp-3);
}

.inserat-meta span {
  font-size: .75rem;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--muted);
  padding: 2px 9px;
  border-radius: var(--r-full);
}

.inserat-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--sp-3);
  border-top: 1px solid var(--border);
  gap: var(--sp-2);
}

.inserat-price {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--success);
}

.inserat-price-unit {
  font-size: .75rem;
  color: var(--muted);
  font-weight: 500;
}

.inserat-price-hidden {
  font-size: .8125rem;
  color: var(--muted);
  font-style: italic;
}

/* Favorit-Button */
.fav-btn {
  background: var(--white);
  border: 1.5px solid var(--border-2);
  border-radius: var(--r-full);
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  transition: border-color var(--t-fast), background var(--t-fast);
  color: var(--muted);
  flex-shrink: 0;
}
.fav-btn:hover,
.fav-btn.active {
  border-color: #f43f5e;
  color: #f43f5e;
  background: #fff1f2;
}

/* ── Stat-Box ─────────────────────────────────────────────── */
.stat-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-5) var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
  transition: box-shadow var(--t-fast);
}

.stat-box:hover { box-shadow: var(--shadow-sm); }

.stat-val {
  font-family: var(--font-head);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
}

.stat-lbl {
  font-size: .8125rem;
  color: var(--muted);
  font-weight: 500;
}

.stat-change {
  font-size: .8125rem;
  font-weight: 600;
  margin-top: var(--sp-1);
}

.stat-change.up   { color: var(--success); }
.stat-change.down { color: var(--danger); }

/* Farb-Varianten stat-box */
.stat-box.green  .stat-val { color: var(--success); }
.stat-box.blue   .stat-val { color: #0284c7; }
.stat-box.purple .stat-val { color: #7c3aed; }
.stat-box.amber  .stat-val { color: var(--warning); }
.stat-box.teal   .stat-val { color: #0891b2; }

/* ══════════════════════════════════════════════════════════════
   PAGINATION
══════════════════════════════════════════════════════════════ */

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-1);
  margin-top: var(--sp-8);
}

.page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 var(--sp-2);
  border-radius: var(--r);
  border: 1.5px solid var(--border-2);
  background: var(--white);
  color: var(--ink-3);
  font-size: .875rem;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--t-fast);
}
.page-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-l);
  text-decoration: none;
}
.page-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}
.page-dots {
  color: var(--muted);
  font-size: .875rem;
  padding: 0 var(--sp-1);
}

/* ══════════════════════════════════════════════════════════════
   EMPTY STATE
══════════════════════════════════════════════════════════════ */

.empty-state {
  text-align: center;
  padding: var(--sp-12) var(--sp-6);
  color: var(--muted);
}

.empty-state-icon {
  font-size: 3rem;
  margin-bottom: var(--sp-4);
  opacity: .5;
}

.empty-state h3 {
  color: var(--ink-3);
  margin-bottom: var(--sp-2);
  font-size: 1.125rem;
}

.empty-state p {
  font-size: .9375rem;
  margin-bottom: var(--sp-5);
}

/* ══════════════════════════════════════════════════════════════
   FILTER STRIP (Suche / Filter Leiste)
══════════════════════════════════════════════════════════════ */

.filter-strip {
  display: flex;
  gap: var(--sp-3);
  flex-wrap: wrap;
  align-items: flex-end;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-5) var(--sp-6);
  margin-bottom: var(--sp-6);
}

.filter-strip .form-group {
  margin-bottom: 0;
  min-width: 160px;
  flex: 1;
}

.filter-strip .btn {
  flex-shrink: 0;
  align-self: flex-end;
}

/* ══════════════════════════════════════════════════════════════
   TRUST BAR
══════════════════════════════════════════════════════════════ */

.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: var(--sp-3) 0;
  display: flex;
  justify-content: center;
  gap: var(--sp-8);
  flex-wrap: wrap;
}

.trust-bar span {
  font-size: .8125rem;
  color: var(--success);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}

/* ══════════════════════════════════════════════════════════════
   TEASER (für nicht eingeloggte User)
══════════════════════════════════════════════════════════════ */

.teaser-overlay-wrapper { position: relative; }

.teaser-blur {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 340px;
  background: linear-gradient(to bottom, transparent, var(--surface) 60%);
  display: flex;
  align-items: flex-end;
  padding-bottom: var(--sp-8);
}

.teaser-cta {
  width: 100%;
  text-align: center;
}

.teaser-cta h3 {
  font-family: var(--font-head);
  font-size: 1.625rem;
  margin-bottom: var(--sp-3);
}

.teaser-cta p { margin-bottom: var(--sp-5); }

.teaser-btns {
  display: flex;
  justify-content: center;
  gap: var(--sp-3);
  flex-wrap: wrap;
}

/* ══════════════════════════════════════════════════════════════
   TOOLTIP
══════════════════════════════════════════════════════════════ */

[data-tooltip] {
  position: relative;
  cursor: help;
}

[data-tooltip]::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--ink);
  color: var(--white);
  font-size: .75rem;
  padding: 5px 10px;
  border-radius: var(--r-sm);
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--t-fast);
  z-index: 100;
}

[data-tooltip]:hover::after { opacity: 1; }

/* ══════════════════════════════════════════════════════════════
   MODAL (Light)
══════════════════════════════════════════════════════════════ */

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15,23,42,.55);
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-4);
  animation: fadeIn .15s var(--ease);
}

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.modal {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: var(--sp-8);
  max-width: 520px;
  width: 100%;
  box-shadow: var(--shadow-xl);
  animation: slideUp .2s var(--ease);
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--sp-5);
}

.modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--muted);
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--r-sm);
  transition: background var(--t-fast), color var(--t-fast);
}
.modal-close:hover { background: var(--surface); color: var(--ink); }

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE (Komponenten)
══════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {
  .form-row,
  .form-row-3 { grid-template-columns: 1fr; }

  .filter-strip { flex-direction: column; }
  .filter-strip .form-group { min-width: 100%; }

  .trust-bar { gap: var(--sp-4); }

  .teaser-btns { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .btn-lg { padding: 12px 22px; font-size: 1rem; }
  .modal  { padding: var(--sp-5); }
}
