#search-mobile {
  display: table;
  width: 100%;
  position: relative;
}

#search-mobile .navigation__search__input {
  background-color: #fff;
  border: 1px solid #ff8b00;
  border-radius: 15px;
  color: #7b7b7b;
  font-size: 14px;
  height: 42px;
  line-height: 40px;
  margin: 0;
  padding: 8px 30px 8px 30px;
  width: 100%;
  max-height: 100%;
  max-width: 100%;
  transition: all 0.3s ease;
  box-sizing: border-box;
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
}

#search-mobile .navigation__search__input:focus {
  outline: none;
  border-color: #ff6600;
  box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.1);
  height: 48px;
  line-height: 46px;
  font-size: 15px;
}

#search_form_mobile {
  position: relative;
  display: flex;
  align-items: center;
}

#search-mobile .searchbt {
  color: #fff;
  cursor: pointer;
  height: 100%;
  position: absolute;
  right: 0;
  text-align: center;
  top: 0;
  width: 40px;
  border: none;
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
#search-mobile .searchbt i {
  color: #EF6837;
}

.autocomplete-suggestions {
  border: 1px solid #ff8b00;
  background: #fff;
  cursor: default;
  overflow: auto;
  top: 165px;
  left: 10px;
  right: 10px;
}

.autocomplete-suggestions div {
  cursor: pointer;
  width: 100%;
  display: inline-block;
  clear: both;
  padding: 0;
  margin: 0;
  margin-bottom: -5px;
}

.autocomplete-suggestions .autocomplete-group {
  padding: 8px 3%;
  width: 100%;
  background: #f1f1f1;
}

.autocomplete-suggestions div a,
.autocomplete-suggestions div a:link,
.autocomplete-suggestions div a:visited {
  display: flex;
  margin: 0;
  padding: 6px 3%;
  width: 100%;
  color: #333;
  background: #fff;
  clear: both;
  border-bottom: 1px solid #eee;
}

.autocomplete-suggestions div a:hover {
  background: #fff0d9;
}

.autocomplete-suggestions div a img {
  width: 50px;
  float: left;
}

.autocomplete-suggestions div a label {
  cursor: pointer;
  margin: 0;
  padding: 0;
}

.autocomplete-suggestions div a span {
  display: block;
  clear: both;
  cursor: pointer;
  margin: 0;
  padding: 0;
}

.autocomplete-suggestions div a span.price {
  color: #fd0000;
  padding-top: 10px;
}

.autocomplete-suggestions div.last {
  border: none;
}

.autocomplete-suggestions strong {
  font-weight: bold;
  color: #ff8b00;
}

@media (max-width: 960px) {
  #search-mobile .navigation__search__input {
    font-size: 16px;
  }
  .dropdown-menu {
    position: absolute;
    z-index: 1000 !important;
  }
}

.search-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  z-index: 10000;
  display: none;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding-top: 20px;
}

.search-modal-overlay.active {
  display: flex;
  opacity: 1;
  visibility: visible;
}

.search-modal-container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.search-modal-header {
  padding: 15px 15px;
  display: flex;
  justify-content: flex-end;
}

.search-modal-close {
  background: #ff8b00;
  border: none;
  font-size: 28px;
  color: #fff;
  cursor: pointer;
  padding: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.search-modal-close:active {
  opacity: 0.7;
}

.search-modal-body {
  flex: 1;
  display: flex;
  align-items: flex-start;
  padding: 20px 15px;
}

.search-modal-input-wrapper {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
}

.search-modal-input {
  width: 100%;
  height: 56px;
  border: 2px solid #ff8b00;
  border-radius: 15px;
  padding: 12px 50px 12px 20px;
  font-size: 18px;
  color: #7b7b7b;
  box-sizing: border-box;
  background-color: #fff;
  outline: none;
  transition: all 0.3s ease;
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
}

.search-modal-input:focus {
  border-color: #ff6600;
  box-shadow: 0 0 0 5px rgba(255, 107, 0, 0.1);
}

.search-modal-submit {
  position: absolute;
  right: 15px;
  background: #ff8b00;
  border: none;
  font-size: 24px;
  color: #fff;
  cursor: pointer;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  right: 1%;
}

.search-modal-submit:active {
  opacity: 0.7;
}