/* ═══════════════════════════════════════════════════════════════
   Brands filter widget — page /marques
   ═══════════════════════════════════════════════════════════════ */

.brands-filter-wrap {
  margin-bottom: 32px;
}

.brands-filter {
  display: flex;
  align-items: stretch;
  background: #fff;
  border: 1px solid #D9D9D9;
  border-radius: 14px;
  overflow: visible;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 15%);
}

/* ── Colonnes ─────────────────────────────────────────────────── */
.brands-filter__col {
  flex: 1;
  padding: 20px;
  border-right: 2px solid #D9D9D9;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}


/* ── Labels ───────────────────────────────────────────────────── */
.brands-filter__label {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #000;
}

/* ── Input texte ──────────────────────────────────────────────── */
.brands-filter__select,
.brands-filter__input {
  border: none;
  outline: none;
  background: transparent;
  font-size: 18px;
  color: #7C7C7C;
  width: 100%;
  padding: 0;
  box-shadow: none !important;
}

.brands-filter__input::placeholder {
  color: #bbb;
}

/* ── Select ───────────────────────────────────────────────────── */
.brands-filter__select {
  background: url(../img/select.svg) no-repeat center right;
}

/* ── Bouton recherche ─────────────────────────────────────────── */
.brands_filter_button {
  width: 150px;
}
.brands-filter__submit {
  flex-shrink: 0;
  width: 55px;
  height: 55px;
  margin: auto 12px;
  border-radius: 50%;
  border: none;
  background: #000;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.1s;
}

.brands-filter__submit:hover {
  background: #C8A84B;
}

.brands-filter__submit:active {
  transform: scale(0.94);
}

.brands-filter__submit .material-icons {
  font-size: 22px;
}

/* ── Responsive ───────────────────────────────────────────────── */
@media (max-width: 768px) {
  .brands-filter {
    flex-direction: column;
    border-radius: 12px;
  }

  .brands-filter__col {
    border-right: none;
    border-bottom: 1.5px solid #e8e8e8;
    padding: 12px 16px;
  }

  .brands-filter__col:last-of-type {
    border-bottom: none;
  }

  .brands-filter__submit {
    width: 100%;
    border-radius: 8px;
    height: 44px;
    margin: 12px 16px;
    width: calc(100% - 32px);
  }
	.brands_filter_button {
	  width: 100%;
	}
}
