.topppa-search-box__wrapper {
  margin-bottom: 30px;
  transition: all 0.3s ease;
}
.topppa-search-box__title-text {
  margin-bottom: 15px;
}
.topppa-search-box__form {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  border-radius: 6px;
  transition: all 0.3s ease;
  background-color: var(--topppa-color-white);
  overflow: hidden;
  border: 1px solid #e0e0e0;
}
.topppa-search-box__form:focus-within {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-color: #d0d0d0;
}
.topppa-search-box__form .topppa-search-box__input-group {
  display: flex;
  width: 100%;
  align-items: stretch;
}
.topppa-search-box__form .topppa-search-box__category {
  width: auto;
  min-width: 150px;
  max-width: 40%;
  border-right: 1px solid #e0e0e0;
}
.topppa-search-box__form .topppa-search-box__category select {
  width: 100%;
  height: 100%;
  padding: 0 15px;
  appearance: none;
  background-color: transparent;
  border: none;
  outline: none;
  color: #333;
  font-size: 15px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%23666' d='M0 0l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  cursor: pointer;
  padding-right: 30px;
}
.topppa-search-box__form .topppa-search-box__input-wrap {
  flex: 1;
  width: auto;
  position: relative;
}
.topppa-search-box__form .topppa-search-box__input-wrap .topppa-search-input {
  width: 100%;
  height: 54px;
  padding: 14px 18px;
  font-size: 15px;
  color: #333;
  background-color: transparent;
  border: none;
  outline: none;
}
.topppa-search-box__form .topppa-search-box__input-wrap .topppa-search-input::placeholder {
  color: #999;
}
.topppa-search-box__form .topppa-search-box__input-wrap .topppa-search-clear-button {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #999;
  cursor: pointer;
  padding: 5px;
  font-size: 12px;
  line-height: 1;
  display: none;
}
.topppa-search-box__form .topppa-search-box__input-wrap .topppa-search-clear-button:hover {
  color: #555;
}
.topppa-search-box__form .topppa-search-box__button {
  min-width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--topppa-color-primary);
  color: var(--topppa-color-white);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0 20px;
  font-size: 15px;
  font-weight: 500;
}
.topppa-search-box__form .topppa-search-box__button:hover {
  background-color: var(--topppa-color-secondary);
  color: var(--topppa-color-white);
}
.topppa-search-box__form .topppa-search-box__button i {
  font-size: 18px;
}
.topppa-search-box--style-1 .topppa-search-box__form {
  border-radius: 30px;
}
.topppa-search-box--style-1 .topppa-search-box__form .topppa-search-box__category select {
  border-radius: 30px 0 0 30px;
}
.topppa-search-box--style-1 .topppa-search-box__form .topppa-search-box__button {
  border-radius: 0 30px 30px 0;
}
.topppa-search-box--style-2 .topppa-search-box__form {
  border-radius: 0;
}
.topppa-search-box--style-2 .topppa-search-box__form .topppa-search-box__category select,
.topppa-search-box--style-2 .topppa-search-box__form .topppa-search-box__button {
  border-radius: 0;
}
.topppa-search-box--style-3 .topppa-search-box__form {
  border-radius: 4px;
  background-color: #f5f5f5;
}
.topppa-search-box--style-3 .topppa-search-box__form .topppa-search-box__category select {
  background-color: #f5f5f5;
}
.topppa-search-box--style-3 .topppa-search-box__form .topppa-search-input {
  background-color: #f5f5f5;
}
.topppa-search-box--style-4 .topppa-search-box__form {
  border-radius: 0;
  border-width: 0 0 2px 0;
  box-shadow: none;
}
.topppa-search-box--style-4 .topppa-search-box__form .topppa-search-box__category {
  border-right: 1px solid #e0e0e0;
}
.topppa-search-box--style-4 .topppa-search-box__form .topppa-search-box__button {
  background-color: transparent;
  color: var(--topppa-color-primary);
}
.topppa-search-box--style-4 .topppa-search-box__form .topppa-search-box__button:hover {
  background-color: transparent;
  opacity: 0.85;
}
@media (max-width: 767px) {
  .topppa-search-box__form .topppa-search-box__input-group {
    flex-direction: column;
  }
  .topppa-search-box__form .topppa-search-box__category {
    width: 100%;
    max-width: 100%;
    border-right: none;
    border-bottom: 1px solid #e0e0e0;
  }
  .topppa-search-box__form .topppa-search-box__category select {
    height: 50px;
  }
  .topppa-search-box__form .topppa-search-box__input-wrap {
    width: 100%;
  }
  .topppa-search-box__form .topppa-search-box__input-wrap .topppa-search-input {
    height: 50px;
  }
  .topppa-search-box__form .topppa-search-box__button {
    width: 100%;
    border-radius: 0 0 6px 6px;
  }
  .topppa-search-box--style-1 .topppa-search-box__form .topppa-search-box__category select {
    border-radius: 30px 30px 0 0;
  }
  .topppa-search-box--style-1 .topppa-search-box__form .topppa-search-box__button {
    border-radius: 0 0 30px 30px;
  }
}