.trendy-destinations-index-search {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 128px;
  gap: 8px;
  max-width: 520px;
  margin-top: 28px;
  min-height: 68px;
  padding: 8px;
  border: 1px solid #dbe8f8;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 14px 32px rgba(20, 84, 160, 0.12);
}

.trendy-destinations-index-search label {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: 12px;
  min-height: 52px;
  padding: 0 16px;
  color: #155db9;
}

.trendy-destinations-index-search label > svg {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
}

.trendy-destinations-index-search input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  color: #0f2b52;
  background: transparent;
  font: inherit;
  font-size: 15px;
}

.trendy-destinations-index-search > button[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 0 18px;
  border: 0;
  border-radius: 10px;
  background: #155db9;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

.trendy-destinations-index-search > button[type="submit"] svg {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
}

.trendy-destinations-index-search-panel {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  left: 0;
  overflow: hidden;
  border: 1px solid rgba(16, 79, 161, 0.12);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(15, 43, 82, 0.18);
}

.trendy-destinations-index-search-panel[hidden] {
  display: none;
}

.trendy-destinations-index-search-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(16, 79, 161, 0.1);
}

.trendy-destinations-index-search-panel__head strong {
  color: #0f2b52;
  font-size: 15px;
}

.trendy-destinations-index-search-panel__head span {
  color: #5d708c;
  font-size: 13px;
  font-weight: 700;
}

.trendy-destinations-index-search-panel__list {
  display: grid;
  gap: 3px;
  max-height: 320px;
  overflow: auto;
  padding: 8px;
}

.trendy-destinations-index-search-option {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 54px;
  padding: 9px 12px;
  border: 0;
  border-radius: 12px;
  background: #fff;
  color: #0f2b52;
  text-align: left;
  cursor: pointer;
}

.trendy-destinations-index-search-option.is-child {
  padding-left: 32px;
}

.trendy-destinations-index-search-option:hover,
.trendy-destinations-index-search-option.is-active,
.trendy-destinations-index-search-option.is-selected {
  background: #eef6ff;
}

.trendy-destinations-index-search-option__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: #e9f5ff;
  color: #155db9;
}

.trendy-destinations-index-search-option__icon svg {
  width: 19px;
  height: 19px;
}

.trendy-destinations-index-search-option.is-child .trendy-destinations-index-search-option__icon {
  background: #e6fbff;
  color: #087ea4;
}

.trendy-destinations-index-search-option__body {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.trendy-destinations-index-search-option__body strong,
.trendy-destinations-index-search-option__body small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.trendy-destinations-index-search-option__body strong {
  font-size: 15px;
  font-weight: 800;
}

.trendy-destinations-index-search-option__body small {
  color: #6b7f9d;
  font-size: 12px;
  font-weight: 700;
}

.trendy-destinations-index-search-option__arrow {
  color: #155db9;
  font-weight: 800;
}

.trendy-destinations-index-search-empty {
  margin: 8px;
  padding: 14px;
  border-radius: 12px;
  background: #f7fbff;
  color: #5d708c;
}

@media (max-width: 600px) {
  .trendy-destinations-index-search {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .trendy-destinations-index-search-panel {
    position: fixed;
    top: auto;
    right: 16px;
    bottom: 16px;
    left: 16px;
  }

  .trendy-destinations-index-search-panel__head {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .trendy-destinations-index-search-panel__list {
    max-height: 360px;
  }

  .trendy-destinations-index-search-option {
    grid-template-columns: 34px minmax(0, 1fr) auto;
    gap: 10px;
  }

  .trendy-destinations-index-search-option.is-child {
    padding-left: 18px;
  }
}
