#bloque_buscador {
  font-family: Arial, sans-serif;
  background: #fff;
  padding: 25px 30px;
  border-radius: 10px;
  max-width: 1050px;
  margin: 0px auto;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  font-size: 18px; /* tamaño base aumentado */
  color: #222;
}

.gem-clone-search {
  display: flex;
  flex-wrap: wrap;
  gap: 25px 25px;
  margin-bottom: 30px;
}

.search-group {
  flex: 1 1 230px;
  display: flex;
  flex-direction: column;
  min-width: 230px;
}

.search-group label {
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 1em; /* texto más grande */
  color: #444;
}

.search-group select,
.search-group input[type="text"],
.search-group input[type="number"] {
  height: 30px !important;
  font-size: 1em;
  border: 1.5px solid #ccc;
  border-radius: 6px;
  transition: border-color 0.3s ease;
  color: #222;
}

.search-group select:hover,
.search-group input[type="text"]:hover,
.search-group input[type="number"]:hover {
  border-color: #007acc;
}

.search-group select:focus,
.search-group input[type="text"]:focus,
.search-group input[type="number"]:focus {
  outline: none;
  border-color: #005ea3;
  box-shadow: 0 0 5px #005ea3aa;
}

.fake-dropdown {
  height: 30px;
  border: 1.5px solid #ccc;
  border-radius: 6px;
  padding: 10px 15px;
  line-height: 25px;
  font-size: 1em;
  cursor: pointer;
  user-select: none;
  display: flex;
  align-items: center;
  background: #fafafa;
  color: #222;
  transition: border-color 0.3s ease;
}

.fake-dropdown:hover {
  border-color: #007acc;
}

.range-panel {
  background: #f9f9f9;
  padding: 20px 15px;
  margin-top: 10px;
  border-radius: 8px;
  box-shadow: inset 0 0 6px #ddd;
}

.range-output {
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 1em;
  color: #333;
}

.range-wrapper {
  position: relative;
  height: 40px;
}

.range-track {
  position: absolute;
  top: 18px;
  left: 0;
  right: 0;
  height: 6px;
  background: #ddd;
  border-radius: 6px;
}

.range-selected {
  position: absolute;
  top: 18px;
  height: 6px;
  background: #007acc;
  border-radius: 6px;
  z-index: 2;
}

input[type="range"] {
  position: absolute;
  top: 10px;
  width: 100%;
  height: 25px;
  background: transparent;
  -webkit-appearance: none;
  pointer-events: all;
  z-index: 3;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  background: #007acc;
  cursor: pointer;
  border-radius: 50%;
  border: 2px solid #005ea3;
  transition: background-color 0.3s ease;
}

input[type="range"]::-webkit-slider-thumb:hover {
  background: #005ea3;
}

input[type="range"]::-moz-range-thumb {
  width: 22px;
  height: 22px;
  background: #007acc;
  border-radius: 50%;
  border: 2px solid #005ea3;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

input[type="range"]::-moz-range-thumb:hover {
  background: #005ea3;
}

/* Botones grandes */
.more-filters-wrapper {
  margin: 0 15px;
}

.more-filters-button {
  background: #007acc;
  color: white;
  border: none;
  padding: 15px 38px;
  font-size: 1em;
  font-weight: 700;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.more-filters-button:hover {
  background: #005ea3;
}

/* Modal */
.modal-filtros {
  display: none; /* oculto por defecto */
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  overflow-y: auto;
}

.modal-contenido {
  background: #fff;
  border-radius: 10px;
  max-width: 700px;
  margin: 60px auto 80px;
  padding: 35px 40px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  font-size: 1.15em;
  color: #222;
}

.modal-cerrar {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2.5em;
  font-weight: 700;
  color: #aaa;
  cursor: pointer;
  transition: color 0.3s ease;
}

.modal-cerrar:hover {
  color: #444;
}

.modal-grid {
  margin-top: 25px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.features-list {
  flex: 1 1 45%;
}

.control {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 18px;
  cursor: pointer;
  font-size: 1em;
  user-select: none;
  color: #333;
}

.control input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.control__indicator {
  position: absolute;
  top: 2px;
  left: 0;
  height: 25px;
  width: 25px;
  background: #eee;
  border-radius: 5px;
  border: 1.5px solid #ccc;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.control:hover input ~ .control__indicator {
  background-color: #ddd;
}

.control input:checked ~ .control__indicator {
  background-color: #007acc;
  border-color: #005ea3;
}

.control__indicator:after {
  content: "";
  position: absolute;
  display: none;
}

.control input:checked ~ .control__indicator:after {
  display: block;
}

.control__indicator:after {
  left: 7px;
  top: 3px;
  width: 8px;
  height: 14px;
  border: solid white;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

/* Botón modal aplicar filtros */
.modal-boton-wrap {
  margin-top: 35px;
  text-align: center;
}

.modal-boton {
  background: #007acc;
  color: #fff;
  padding: 14px 50px;
  font-size: 1em;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.modal-boton:hover {
  background: #005ea3;
}

.search-group input[name="Referencia"] {
  height: 30px;
  border: 1.5px solid #ccc;
  border-radius: 6px;
  padding: 10px 15px;
  line-height: 25px;
  font-size: 1em;
  cursor: pointer;
  user-select: none;
  display: flex;
}

.gem-clone-search {
  display: flex;
  justify-content: center;
  gap: 10px; /* espacio entre botones */
}

.more-filters-button {
  width: 100%; /* el botón ocupa todo el ancho de su contenedor */
  padding: 10px 0; /* padding vertical para que tengan altura similar */
  font-size: 16px;
  cursor: pointer;
  box-sizing: border-box; /* para que padding no aumente ancho */
  min-height: 50px;
  text-transform: uppercase;
  font-size: 1rem;
}

/* Botones Buscar , Filtros, Cerrar Filtros
    .......................................... */

.boton-estandar {
  all: unset !important; /* Elimina TODOS los estilos por defecto del navegador */
  box-sizing: border-box !important;
  display: inline-block !important;
  width: 100% !important;
  min-width: 150px !important;
  max-width: 400px !important;
  width: 100% !important;
  text-align: center !important;
  display: inline-block !important;
  min-height: 41px !important;
  padding: 0.5rem 1rem !important;
  border: none !important;
  background-color: #0698a7 !important;
  /* ajusta a tu color */
  color: white !important;
  cursor: pointer !important;
  border-radius: 5px;
  font-size: 1.5rem !important;
  text-transform: capitalize !important;
  font-weight: 100 !important;
  line-height: 1.2 !important;
  box-sizing: border-box !important;
  flex: 1 !important; /* opcional: reparte espacio si es necesario */
}

.boton-estandar:hover {
  border: 1px solid #0698a7 !important;
  color: #0698a7 !important;
  background-color: #fff !important;
}

.more-filters-wrapper {
  display: flex;
  justify-content: center; /* centra horizontalmente */
  gap: 1rem; /* espacio entre los botones */
  flex-wrap: wrap; /* para que se adapten si no hay espacio */
}

/* Botones QUIERO VENDER y QUIERO COMPRAR 
    .......................................... */

.ekit-btn-wraper {
  margin: 1rem;
  display: flex;
  justify-content: center;
  /* centra horizontalmente */
  gap: 1rem;
  /* separación entre botones si hay más de uno */
}

.ekit-btn-wraper a {
  min-width: 150px;
  max-width: 400px;
  width: 100%;
  text-align: center;
  display: inline-block;
}

.gem-clone-search {
  display: flex;
  justify-content: center;
  gap: 1rem;
  /* espacio entre botones */
  flex-wrap: wrap;
  /* para adaptarse en pantallas pequeñas */
}

.more-filters-wrapper {
  flex: 0 0 auto;
}

.more-filters-button {
  min-height: 41px !important;
  min-width: 140px !important;
  text-align: center;
  padding: 0.5rem 1rem;
}

.elementskit-btn:hover {
  color: #005ea3 !important;
}

/* Filtros (Centrados al medio)
    .......................................... */

.features-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center; /* centra horizontalmente los items */
}
.features-list h2,
.features-list label.control {
  flex: 0 0 auto;
  min-width: 120px; /* o el ancho que prefieras */
  cursor: pointer;
}

#modal-filtros h2 {
  text-align: center;
  margin-bottom: 1rem; /* opcional para separar un poco del contenido */
}


/* Arreglo menu nav (elimina borde azul) */

.mobile-menu:focus,
.mobile-menu:active {
  outline: none !important;
  box-shadow: none !important; /* Por si usa sombra en lugar de outline */
  border: none !important; /* Si tiene border que provoca el efecto */
}

/* Elimina linea discontinua que cubre el boton '+' y '-' */

.dropdown-toggle {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  background-image: none !important; /* por si fuera un patrón de fondo */
}


form input[type=text],form input[type=password],form input[type=email],form input[type=url],form input[type=date],form input[type=month],form input[type=time],form input[type=datetime],form input[type=datetime-local],form input[type=week],form input[type=number],form input[type=search],form input[type=tel],form input[type=color],form select,form textarea {
    min-height:30px;
    max-height:30px;
}
