/*.v-hero__search {
  background: rgba(255, 255, 255, .75);
  border: 1px solid rgba(0, 0, 0, 0.23);
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, .19);
  backdrop-filter: blur(8px);
  height: 24ch;
  align-content: center;
}
.v-search__label {
display: block;
  font-size: 14px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: rgba(17, 24, 39, .70);
  margin-left: 10px;
  margin-bottom: 0px;
	margin-top: 10px;
}
.v-search__field {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}
.v-search input {
  width: 100%;
  min-height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.23);
  padding: 12px 14px;
  font-size: 16px;
  outline: none;
  background: #fff;
}
.v-search input:focus {
  border-color: rgba(59, 130, 246, .55);
  box-shadow: 0 0 0 4px rgba(59, 130, 246, .15);
}
/*.v-search__btn {
  min-height: 48px;
  padding: 0 16px;
  border-radius: 14px;
  border: 0;
  font-weight: 700;
  cursor: pointer;
  background: #007bff;
  color: #fff;
}*/
.v-search__field {
  display: flex;
  align-items: stretch;
  gap: 0;
}

.v-search__field input {
  flex: 1 1 auto;
  min-width: 0;
  height: 3.25rem;
  padding: 0 1rem;
  border: .09rem solid rgba(7, 129, 237, 0.58);
  border-right: 0;
  border-radius: 0.9rem 0 0 0.9rem;
  box-shadow: inset 2px 2px 2px rgba(0,0,0,0.2);
	background: rgba(218, 229, 250, 0.92);
}

.v-search__btn {
  height: 3.25rem;
  padding: 0 1.25rem;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-left: 0;
  border-radius: 0 0.9rem 0.9rem 0;
  background: #1677f2;
  color: #fff;
  font-weight: 600;
  white-space: nowrap;
	border-left: 1px solid rgba(0,0,0,0.08);
}
.v-search__meta {
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
}
.v-search__geo {
  border: 0;
  background: transparent;
  padding: 6px 0;
  font-weight: 600;
  color: rgba(59, 130, 246, 1);
  cursor: pointer;
}
.v-search__hint {
  font-size: 13px;
  color: rgba(17, 24, 39, .65);
}
.v-search__suggest {
  margin-top: 10px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, .10);
  background: #fff;
  display: none; /* toggle when results exist */
}
.v-suggest__item {
  padding: 10px 12px;
  cursor: pointer;
  font-size: 14px;
  border-top: 1px solid rgba(0, 0, 0, .06);
}
.v-suggest__item:first-child {
  border-top: 0;
}
.v-suggest__item:hover, .v-suggest__item[aria-selected="true"] {
  background: rgba(59, 130, 246, .10);
}


.v-hero__search {
  position: relative;
  z-index: 50;
  display: flex;
  flex-direction: column;
  gap: 14px;
	background: rgba(255, 255, 255, .75);
  border: 1px solid rgba(0, 0, 0, 0.23);
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, .19);
  backdrop-filter: blur(8px);
  height: 24ch;
  align-content: center;

}

.v-search {
  width: 100%;
}

.v-search__label {
  display: block;
  margin-bottom: 8px;
}

.v-search__field {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 0;
  width: 100%;
  max-width: 520px;
  background: #fff;
  border: 2px solid #1677ff;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(20, 30, 60, 0.10);
}

.v-search__input {
  min-width: 0;
  height: 56px;
  padding: 0 18px;
  border: 0;
  outline: 0;
  font-size: 1.125rem;
  color: #1e2251;
  background: transparent;
}

.v-search__input::placeholder {
  color: #8d93a6;
}

.v-search__btn {
  height: 56px;
  padding: 0 24px;
  border: 0;
  border-left: 1px solid rgba(22, 119, 255, 0.18);
  background: #1677ff;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.2s ease;
}

.v-search__btn:hover:not(:disabled) {
  background: #0f68e8;
}

.v-search__btn:disabled {
  background: #8cbcff;
  cursor: not-allowed;
}

.v-search__meta {
  margin-top: 10px;
}

.v-search__geo {
  border: 0;
  background: transparent;
  color: #1e2251;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
}

.v-search__geo-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.v-search__suggest {
  display: none !important;
}

.v-search__suggest--floating {
  position: absolute;
  background: #fff;
  border: 1px solid rgba(30, 34, 81, 0.12);
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(20, 30, 60, 0.14);
  overflow: hidden;
  z-index: 2147483000;
}

.v-search__suggest--floating[hidden] {
  display: none !important;
}

.v-search__suggest--floating:not([hidden]) {
  display: block !important;
}

.v-search__suggestions {
  display: flex;
  flex-direction: column;
}

.v-search__suggestion {
  display: block;
  width: 100%;
  padding: 14px 16px;
  border: 0;
  border-bottom: 1px solid rgba(30, 34, 81, 0.08);
  background: #fff;
  text-align: left;
  font-size: 0.98rem;
  color: #1e2251;
  cursor: pointer;
}

.v-search__suggestion:last-child {
  border-bottom: 0;
}

.v-search__suggestion:hover,
.v-search__suggestion.is-active {
  background: #f6f8ff;
}

.v-search__status {
  margin-top: 10px;
  font-size: 0.92rem;
  color: #5e6478;
}

.vot-ac-item {
  display: inline;
}

.vot-ac-street {
  font-weight: 600;
}

.vot-ac-rest {
  color: #5e6478;
}

@media (max-width: 900px) {
  .v-search__field {
    grid-template-columns: 1fr;
    max-width: none;
  }

  .v-search__input,
  .v-search__btn {
    width: 100%;
    border-left: 0;
    border-top: 1px solid rgba(22, 119, 255, 0.12);
  }

  .v-search__input {
    border-top: 0;
  }
}*/

.v-hero__search {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(0, 0, 0, 0.23);
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.19);
  backdrop-filter: blur(8px);
  min-height: 24ch;
  align-content: center;
  position: relative;
  z-index: 50;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.v-search {
  width: 100%;
}

.v-search__label {
  display: block;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(17, 24, 39, 0.7);
  margin: 10px 0 8px 10px;
}

.v-search__field {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 0;
  width: 100%;
  max-width: 100%;
  background: transparent;
  border: 0;
  border-radius: 14px;
  box-shadow: none;
}

.v-search__input {
  width: 100%;
  min-width: 0;
  height: 3.25rem;
  padding: 0 1rem;
  border: 0.09rem solid rgba(7, 129, 237, 0.58);
  border-right: 0;
  border-radius: 0.9rem 0 0 0.9rem;
  box-shadow: inset 2px 2px 2px rgba(0, 0, 0, 0.2);
  background: rgba(218, 229, 250, 0.92);
  font-size: 1rem;
  color: #1e2251;
  outline: none;
}

.v-search__input::placeholder {
  color: #8d93a6;
}

.v-search__input:focus {
  border-color: rgba(59, 130, 246, 0.55);
  box-shadow:
    inset 2px 2px 2px rgba(0, 0, 0, 0.2),
    0 0 0 4px rgba(59, 130, 246, 0.15);
}

.v-search__btn {
  height: 3.25rem;
  padding: 0 0.9rem;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-left: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 0 0.9rem 0.9rem 0;
  background: #1677f2;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.2s ease;
}

.v-search__btn:hover:not(:disabled) {
  background: #0f68e8;
}

.v-search__btn:disabled {
  background: #8cbcff;
  cursor: not-allowed;
}

.v-search__meta {
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
}

.v-search__geo {
  border: 0;
  background: transparent;
  padding: 6px 0;
  font-weight: 600;
  color: rgba(59, 130, 246, 1);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.v-search__geo-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.v-search__status {
  margin-top: 10px;
  font-size: 0.92rem;
  color: #5e6478;
}

.v-search__suggest {
  display: none !important;
}

.v-search__suggest--floating {
  position: absolute;
  background: #fff;
  border: 1px solid rgba(30, 34, 81, 0.12);
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(20, 30, 60, 0.14);
  overflow: hidden;
  z-index: 2147483000;
}

.v-search__suggest--floating[hidden] {
  display: none !important;
}

.v-search__suggest--floating:not([hidden]) {
  display: block !important;
}

.v-search__suggestions {
  display: flex;
  flex-direction: column;
}

.v-search__suggestion {
  display: block;
  width: 100%;
  padding: 14px 16px;
  border: 0;
  border-bottom: 1px solid rgba(30, 34, 81, 0.08);
  background: #fff;
  text-align: left;
  font-size: 0.98rem;
  color: #1e2251;
  cursor: pointer;
}

.v-search__suggestion:last-child {
  border-bottom: 0;
}

.v-search__suggestion:hover,
.v-search__suggestion.is-active {
  background: #f6f8ff;
}

.vot-ac-item {
  display: inline;
}

.vot-ac-street {
  font-weight: 600;
}

.vot-ac-rest {
  color: #5e6478;
}

@media (max-width: 900px) {
  .v-search__field {
    grid-template-columns: 1fr;
    max-width: none;
  }

  .v-search__input,
  .v-search__btn {
    width: 100%;
    border-left: 0;
    border-top: 1px solid rgba(22, 119, 255, 0.12);
  }

  .v-search__input {
    border-top: 0;
    border-radius: 0.9rem 0.9rem 0 0;
  }

  .v-search__btn {
    border-radius: 0.9rem;
  }
@media (max-width: 700px) {
  .v-hero {
    padding-bottom: 32px;
  }

  .v-hero__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 0 10px;
  }

  .v-hero__copy {
    max-width: none;
  }

  .v-hero__title {
    font-size: clamp(1rem, 8vw, 3rem);
    line-height: 0.98;
    margin-bottom: 14px;
  }

  .v-hero__lead {
    font-size: 1rem;
    line-height: 1.55;
    max-width: none;
  }

  .v-hero__search {
    min-height: auto;
    height: auto;
    padding: 18px 18px 16px;
    gap: 12px;
  }

  .v-search__label {
    margin: 0 0 10px;
    font-size: 0.92rem;
  }

  .v-search__field {
    grid-template-columns: 1fr;
    max-width: none;
  }

  .v-search__input {
    border-right: 0.09rem solid rgba(7, 129, 237, 0.58);
    border-radius: 0.9rem 0.9rem 0 0;
    height: 3.5rem;
  }

  .v-search__btn {
    width: 100%;
    border-left: 1px solid rgba(0, 0, 0, 0.08);
    border-top: 0;
    height: 3.5rem;
    justify-content: center;
  }

  .v-search__meta {
    margin-top: 12px;
    justify-content: flex-start;
  }

  .v-search__geo {
    font-size: 0.98rem;
  }

  .v-trust {
    margin-top: 8px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px 8px;
    line-height: 1.45;
  }

  .v-trust__label {
    width: 100%;
  }

  .v-trust__dot {
    display: none;
  }

  .v-hero__value {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 4px;
  }

  .v-pill {
    font-size: 0.8rem;
    line-height: 1.2;
    padding: 10px 14px;
  }

  .v-trust-strip__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .v-search__field {
    display: grid ;
    grid-template-columns: 1fr ;
    gap: 12px ;
    max-width: none ;
    background: transparent ;
    border: 0 ;
    box-shadow: none ;
    overflow: visible ;
    border-radius: 0 ;
  }

  .v-search__input {
    display: block ;
    width: 100% ;
    max-width: 100% ;
    height: 3.25rem ;
    padding: 0 1rem ;
    margin: 0 ;
    border: 0.09rem solid rgba(7, 129, 237, 0.58)!important;
    border-right: 0.09rem solid rgba(7, 129, 237, 0.58)!important;
    border-radius: 0.9rem !important;
    box-shadow: inset 2px 2px 2px rgba(0,0,0,0.2!important;
    background: rgba(218, 229, 250, 0.92)!important;
    font-size: 1rem ;
  }

  .v-search__btn {
    display: flex ;
    align-items: center ;
    justify-content: center ;
    width: 100% ;
    max-width: 100% ;
    min-height: 3.25rem ;
    height: 3.25rem ;
    margin: 0 ;
    padding: 0 1.25rem ;
    border: 1px solid rgba(0, 0, 0, 0.12) ;
    border-left: 1px solid rgba(0, 0, 0, 0.08) ;
    border-top: 1px solid rgba(0, 0, 0, 0.12) ;
    border-radius: 0.9rem !important;
    background: #1677f2 ;
    color: #fff ;
    font-weight: 600 ;
    font-size: 1rem ;
    white-space: nowrap ;
    text-align: center ;
  }
}
	
	
