.franchise-filters {
  margin: 24px 0 32px;
}

.filters-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  padding: 16px;
  background: #ffffff;
  border: 1px solid #eee;
  border-radius: 12px;
}

.filter-item select {
  height: 44px;
  padding: 0 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  background: #fff;
  min-width: 150px;
}

.filter-check {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  cursor: pointer;
  padding: 0 8px;
}

.filter-check input {
  accent-color: #f4b223; /* брендовый */
}

.filter-submit {
  height: 44px;
  padding: 0 20px;
  border: none;
  border-radius: 10px;
  background: #f4b223;
  color: #000;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s ease;
}

.filter-submit:hover {
  background: #e6a91f;
}

.filter-check {
  border: 1px solid #ddd;
  border-radius: 20px;
  padding: 8px 14px;
}
.filter-check input + span {
  padding: 6px;
  border-radius: 16px;
}
.filter-check input:checked + span {
  background: #f4b223;
  color: #000;
}

.franchise-filters {
  max-width: 1200px;
  margin: 0 auto 32px;
}
.filter-submit[type=submit] {
  margin-left: 12px;
  background: #2b2b2b;
  color: #fff;
  border-radius: 10px;
  border: none;
}
.filter-submit[type=submit]:hover {
  background: #3a3a3a;
}
.filters-bar {
  padding: 15px;
  justify-content: center;
}
.filters-bar select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #fff;
}
/* Убираем системный стиль select */
.filters-bar select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 0 36px 0 14px;
  height: 44px;
  font-size: 14px;
  cursor: pointer;
}
.filter-item {
  position: relative;
  flex: 0 0 150px;
}

.filter-item::after {
  content: "▾";
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: #999;
  font-size: 14px;
}
