/* Contenedor general */
.yamarco-buscador {
  margin: 20px 0;
  max-width:100%;
}



/* GRID HORIZONTAL */
.yamarco-buscador__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: flex-end;
}

/* CAMPOS */
.yamarco-field {
  display: flex;
  flex-direction: column;
  min-width: 160px;
  flex: 1;
}

/* LABELS */
.yamarco-field label {
  font-size:  18px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #555;
}

/* SELECT ESTILIZADO */
.yamarco-field select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  background: #f8f9fa;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 10px 12px;
   font-size:  20px;
  transition: all 0.2s ease;
  cursor: pointer;
}

/* Hover / Focus */
.yamarco-field select:hover {
  border-color: #999;
}

.yamarco-field select:focus {
  outline: none;
  border-color: #111;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(0,0,0,0.05);
}

/* FLECHA PERSONALIZADA */
.yamarco-field {
  position: relative;
}

.yamarco-field::after {
  content: "▾";
  position: absolute;
  right: 12px;
  bottom: 12px;
   font-size:  16px;
  color: #666;
  pointer-events: none;
}

/* STATUS */
.yamarco-buscador__status {
  margin-top: 12px;
  font-size:  18px;
  color: #777;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .yamarco-buscador__grid {
    flex-direction: column;
  }

  .yamarco-field {
    width: 100%;
  }
}



/* Grid de resultados */
.yamarco-results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

/* Tarjeta */
.yamarco-card {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.2s ease;
  height: 100%;
}

.yamarco-card:hover {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

/* Imagen */
.yamarco-card__img {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #f7f7f7;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.yamarco-card__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
}

/* Contenido */
.yamarco-card__title {
   font-size:  22px;
  font-weight: 600;
  padding: 12px 14px 6px;
  line-height: 1.3;
}

.yamarco-card__meta {
  font-size:  18px;
  color: #555;
  padding: 0 14px 10px;
}

.yamarco-card__meta div {
  margin-bottom: 3px;
}

/* Acciones */
.yamarco-card__actions {
  margin-top: auto;
  padding: 12px 14px 16px;
}

/* Botón */
.yamarco-btn {
  display: inline-block;
  width: 100%;
  text-align: center;
  padding: 10px 12px;
  border-radius: 6px;
  text-decoration: none;
   font-size:  20px;
  font-weight: 600;
  transition: all 0.2s ease;
}

.yamarco-btn--primary {
  background: #111;
  color: #fff;
}

.yamarco-btn--primary:hover {
  background: #333;
  color: #fff;
}

/* Mensaje sin resultados */
.yamarco-empty {
  padding: 20px;
  text-align: center;
  color: #777;
   font-size:  20px;
}
