/* Hintergrund-Video / -Pattern (bestehen lassen, wird genutzt) */
#interklicks_video_back {
  position: fixed;
  top: 0;
  right: 0;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -1000;
  overflow: hidden;
}
#interklicks_video_pat {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

/* ---------- Inputs & Selects ---------- */
.ik-input,
.ik-select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #cfd6e4;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 1px 0 rgba(0,0,0,0.02) inset;
  transition: border-color .15s ease, box-shadow .15s ease, background-color .15s ease;
  font: inherit;
  color: inherit;
}
.ik-input:hover,
.ik-select:hover { border-color: #b8c2d6; }
.ik-input:focus,
.ik-select:focus {
  outline: none;
  border-color: #0b63f6;
  box-shadow: 0 0 0 4px rgba(11,99,246,0.12);
}
.ik-input::placeholder { color: #8690a6; }

/* Select: Chevron */
.ik-select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #667 50%),
    linear-gradient(135deg, #667 50%, transparent 50%),
    linear-gradient(#fff, #fff);
  background-position:
    calc(100% - 20px) 50%,
    calc(100% - 15px) 50%,
    100% 0;
  background-size: 6px 6px, 6px 6px, 2.6em 100%;
  background-repeat: no-repeat;
  padding-right: 2.8em; /* Platz für Chevron */
}

/* ---------- Input mit Clear-Button (×) ---------- */
.ik-input-wrapper { position: relative; width: 100%; }
.ik-input { padding: 12px 36px 12px 14px; } /* rechts Platz für × */
.ik-input-clear {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  color: #999;
  cursor: pointer;
  display: none; /* nur zeigen, wenn Text drin */
  user-select: none;
}
.ik-input-wrapper.has-value .ik-input-clear { display: block; }

/* ---------- Tag-Chips ---------- */
.chips { display: flex; gap: 8px; flex-wrap: wrap; }
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 10px;
  border: 1px solid #cfd6e4;
  border-radius: 999px;
  background: #fff;
  color: inherit;
  text-decoration: none;
  transition: border-color .15s ease, background-color .15s ease, color .15s ease;
}
.chip:hover { border-color: #b8c2d6; background: #f8fafc; }
.chip.active { background: #0b63f6; border-color: #0b63f6; color: #fff; }
.chip.active .smallmuted { color: #e8f0ff; opacity: .9; }

/* Kleinere Hinweise */
.smallmuted { opacity: .7; font-size: .9em; }

/* ---------- Filter-Layout ---------- */
.filterbar { padding: 0; margin: 0; display: grid; gap: 10px; } /* Basislayout des Formulars */

.filter-row {
  display: grid;
  grid-template-columns: 1fr 1fr; /* Suchfeld & Dropdown gleich breit */
  gap: 60px;                      /* Abstand zwischen den Spalten */
  align-items: end;
}
.filter-col label { display: block; margin-bottom: 6px; font-weight: 600; }

.filter-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.filter-actions--right { justify-content: flex-end; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;

  padding: 10px 16px;
  border: 1px solid #bbb;
  border-radius: 10px;
  background: #f6f6f6;
  color: #000;

  font: inherit;
  line-height: 1.4;
  text-decoration: none;
  cursor: pointer;

  transition: background-color .15s ease, border-color .15s ease;
}
.btn:hover { background: #eee; border-color: #aaa; }
.btn:active { background: #e2e2e2; transform: translateY(1px); }

/* Primäre Variante: Blau */
.btn-primary {
  background: #0b63f6;
  border-color: #0b63f6;
  color: #fff;
}
.btn-primary:hover { background: #1a74ff; border-color: #1a74ff; }
.btn-primary:active { background: #0954d4; border-color: #0954d4; }

/* ---------- Pagination ---------- */
.pagination {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 16px 0;
}
.pagination a,
.pagination span {
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 10px;
  text-decoration: none;
  color: inherit;
  background: url(https://www.holiday-cars.net/test/media/interklicks-back/tw30.png) repeat; /* gewünschter Hintergrund */
}
.pagination .active {
  background: #0b63f6;
  border-color: #0b63f6;
  color: #fff;
}
.pagination .disabled { opacity: .5; pointer-events: none; }

/* ---------- Responsiv ---------- */
@media (max-width: 820px) {
  .filter-row { grid-template-columns: 1fr; }
  .filter-actions--right { justify-content: flex-start; }
}
