.partner-search {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 2px 0 15px;
  padding: 0 15px;
  min-height: 50px;
  border: 1px solid #d5e1dc;
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 8px 24px rgba(16, 79, 76, 0.045);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.partner-search:focus-within {
  border-color: #91b9ae;
  box-shadow: 0 9px 26px rgba(16, 79, 76, 0.09);
}

.partner-search svg {
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  fill: none;
  stroke: #176c66;
  stroke-width: 1.7;
  stroke-linecap: round;
}

.partner-search input {
  min-width: 0;
  flex: 1;
  border: 0;
  outline: 0;
  color: #173a38;
  background: transparent;
  font: 15px/1.2 Arial, sans-serif;
}

.partner-search input::placeholder {
  color: #7b8d88;
}

.partner-search > span {
  color: #bd9860;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.search-empty {
  padding: 28px 18px;
  border: 1px solid #dce6e1;
  border-radius: 20px;
  color: #647772;
  background: rgba(255, 255, 255, 0.75);
  text-align: center;
  font-size: 14px;
  line-height: 1.45;
}

.search-empty b {
  display: block;
  margin-bottom: 5px;
  color: #173a38;
  font: 22px Georgia, serif;
}

@media (max-width: 380px) {
  .partner-search > span {
    display: none;
  }
}
