.nhw-search { position: relative; width: 100%; }
.nhw-search__input {
  width: 100%;
  box-sizing: border-box;
  padding: 10px 12px;
  font-size: 14px; /* -2px */
  line-height: 1.4;
}

.nhw-results {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  width: 100%;
  background: #ffffff;
  border: 1px solid #eee;
  box-shadow: 0 8px 18px rgba(0,0,0,0.06);
  border-radius: 8px;
  z-index: 9999;
}
.nhw-results__close {
  position: absolute;
  top: 6px;
  right: 6px;
  border: none;
  background: transparent;
  font-size: 14px; /* -2px */
  line-height: 1;
  cursor: pointer;
  padding: 4px;
}
.nhw-results__inner { padding: 16px 16px 10px 16px; }
.nhw-results__header {
  font-weight: 700;
  font-size: 14px; /* -2px */
  text-transform: uppercase;
  margin-bottom: 8px;
}
.nhw-results__cols {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 14px; /* -2px */
}
.nhw-results__colleft { text-align: left; }
.nhw-results__colright { text-align: right; }
.nhw-list { display: block; }

.nhw-row {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 12px;
  padding: 10px 8px;
  text-decoration: none;
  color: inherit;
}
.nhw-row + .nhw-row { border-top: 1px solid #fafafa; } /* separación #fafafa 1px */
.nhw-row:hover { background: #f0f0f0; } /* hover */

.nhw-row__img {
  width: 100px;
  height: 75px;
  overflow: hidden;
  border-radius: 6px;
  background: #fafafa;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nhw-row__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.nhw-row__body { display: block; }
.nhw-row__title {
  font-weight: 700;
  font-size: 14px; /* -2px base (mobile) */
  margin: 0 0 4px 0;
  line-height: 1.2;
}
.nhw-row__desc {
  font-size: 12px; /* -2px base (mobile) */
  color: #555;
  line-height: 1.3;
}
.nhw-row__price {
  font-weight: 700;
  align-self: center;
  text-align: right;
  white-space: nowrap;
  font-size: 14px; /* -2px */
}

.nhw-results__more {
  padding: 10px 8px 0 8px;
  text-align: center;
  font-weight: 700;
}
.nhw-results__more a { color: #d00; text-decoration: none; }
.nhw-results__more a:hover { text-decoration: underline; }

.nhw-noresults { padding: 6px 0 2px 0; color: #666; font-size: 12px; }

/* Responsive (móvil) */
@media (max-width: 600px) {
  .nhw-row {
    grid-template-columns: 100px 1fr;
  }
  .nhw-row__price {
    grid-column: 2 / 3;
    justify-self: end;
  }
}

/* Desktop bump: +2px en escritorio para título y descripción */
@media (min-width: 601px) {
  .nhw-row__title { font-size: 16px; }
  .nhw-row__desc  { font-size: 14px; }
}
