.search-section {
  padding: 10px;
}

.search-section h1 {
  font-size: 24px;
  margin-bottom: 10px;
}

.search-section p {
  font-size: 19px;
  color: #666;
  margin-bottom: 20px;
}

.search-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
}

.location-input {
  position: relative;
  display: flex;
  align-items: center;
  border: 1px solid #ccc;
  border-radius: 10px;
  background: #fff;
}

.location-input input::placeholder {
  font-weight: bolder;
  color: #333;
}

.icon-container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  height: 39.5px;
  background: var(--main-bg-color);
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

.location-input i {
  color: #333;
  transition: transform 0.3s ease;
}

.location-input i:hover {
  transform: scale(1.3);
}

.location-input input {
  border: none;
  outline: none;
  font-size: 16px;
  background: #fff;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  padding: 5px 10px;
  width: 100%;
}

.search-button {
  padding: 10px 20px;
  background: var(--main-color);
  color: var(--filter-bg-color);
  border: none;
  border-left: 1px solid #ccc;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  cursor: pointer;
  font-weight: bolder;
  font-size: 16px;
  transition: background 0.3s ease;
}

.search-button:hover {
  background: #deebff;
  color: #333;
}

.search-button .search-icon {
  display: none;
  width: 24px;
  height: 24px;
  filter: invert(100%);
}

.filters {
  display: flex;
  align-items: center;
  gap: 15px;
  width: 100%;
  margin: 50px 0 50px 0;
}

.filters span {
  font-weight: bolder;
  white-space: nowrap;
  font-size: 18px;
}

.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-button {
  background: #fff;
  border: 2px solid #ddd;
  border-radius: 20px;
  padding: 10px 10px;
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: background 0.3s ease;
}

.filter-button img {
  width: 16px;
  height: 16px;
  filter: invert(42%) sepia(93%) saturate(4483%) hue-rotate(220deg);
}

.filter-button.active,
.filter-button:hover {
  background: #deebff;
  font-weight: bolder;
}

.info-text {
  font-size: 14px;
  color: #666;
  display: flex;
  align-items: center;
}

.info-text img {
  width: 16px;
  height: 16px;
  filter: invert(42%) sepia(93%) saturate(4483%) hue-rotate(220deg)
    brightness(90%) contrast(95%);
  margin-right: 10px;
}

@media (max-width: 720px) {
  .search-section {
    padding: 0 25px;
    margin: 0 auto;
  }

  .search-section h1 {
    font-size: 22px;
    margin-top: 30px;
    text-align: center;
  }

  .search-section p {
    font-size: 16px;
    text-align: center;
  }

  .location-input {
    margin: 0 2% -25px 2%;
    width: 100%;
  }

  .search-button {
    width: 40px;
    height: 40px;
    padding: 20px;
    background: var(--main-color);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px 10px 10px 10px;
    box-shadow: 0px 4px 2px #c7c7c7;
  }

  .search-button img {
    width: 24px;
    height: 24px;
    filter: invert(100%);
  }

  .search-button span {
    display: none !important;
  }

  .search-button .search-icon {
    display: block !important;
  }

  .filters {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin: 40px auto;
  }

  .filters span {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 10px 0 10px 0;
    width: 100%;
  }

  .filter-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    width: 100%;
  }

  .filter-button {
    width: 100%;
    padding: 8px 0;
    text-align: center;
    box-sizing: border-box;
  }

  .filter-button img {
    margin-left: 10px;
  }

  .info-text {
    margin-top: -20px;
    font-size: 15px !important;
  }
}