.search-page {
  background-color: #f8f8f8;
  width: 100%;
  height: 100vh;
  /* padding-top: 120px; */
  z-index: 2600;
  position: fixed;
  top: 0;
}

.search-page-inner {
  position: relative;
  padding: 2% 0;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.search-page-close {
  position: absolute;
  right: 0;
  top: 45px;
  cursor: pointer;
}

.search-input-container {
  margin-top: 50px;
  width: 732px;
  height: 73px;
  border: 1px solid #dadcd1;
  /* -moz-box-shadow: 1px 1px 1px #dadcd1;
  -webkit-box-shadow: 1px 1px 1px #dadcd1;
  box-shadow: 1px 1px 1px #dadcd1; */
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}

.search-page-input {
  width: 100%;
  height: 100%;
  border: none;
  background: none;
  outline: none;
  font-size: 26px;
  font-family: "h-reg";
  color: #b7b7b7;
}

.search-page-input::placeholder {
  color: #b7b7b7;
}

.search-page-results {
  /* background-color: #000; */
  width: 100%;
  overflow-y: auto;
  height: calc(100vh - 200px);
  margin-top: 50px;
  /* padding: 2% 0 5% 0; */
  padding: 2% 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.search-product-card {
  width: 400px !important;
  height: 600px !important;
}

.search-product-card .image-container {
  width: 100%;
  height: 428px;
}

@media only screen and (max-width: 1600px) {
  .search-input-container {
    width: 600px;
    height: 60px;
  }
  .search-input-container svg {
    width: 20px;
    height: 20px;
  }

  .search-page-input {
    font-size: 18px;
  }

  .search-page-input::placeholder {
    color: #b7b7b7;
  }

  .search-product-card {
    width: 350px !important;
    height: 600px !important;
  }

  .search-product-card .image-container {
    width: 100%;
    height: 360px;
  }
}

@media only screen and (min-width: 601px) and (max-width: 1024px) {
  .search-input-container {
    width: 400px;
    height: 50px;
  }
  .search-input-container svg {
    width: 20px;
    height: 20px;
  }

  .search-page-input {
    font-size: 18px;
  }

  .search-page-input::placeholder {
    color: #b7b7b7;
  }

  .search-product-card {
    width: 300px !important;
    /* height: 450px !important; */
  }

  .search-product-card .image-container {
    width: 100%;
    height: 310px;
  }
}

@media only screen and (min-width: 320px) and (max-width: 600px) {
  .search-page-close {
    position: absolute;
    right: 10px;
    top: 15px;
  }

  .search-page-close svg {
    width: 18px;
    height: 18px;
  }
  .search-input-container {
    width: 315px;
    height: 40px;
    
  }
  .search-input-container svg {
    width: 20px;
    height: 20px;
  }

  .search-page-input {
    font-size: 18px;
  }

  .search-page-input::placeholder {
    color: #b7b7b7;
  }

  .search-page-results {
    margin-top: 30px;
    justify-content: space-evenly;
    height: calc(100vh - 130px);
  }

  .search-product-card {
    width: 150px !important;
    height: 300px !important;
    margin-bottom: 20px;
  }

  .search-product-card .image-container {
    width: 100%;
    height: 150px;
  }
}
