.search-hero {
  background: #F8F2EE;
}
.search-hero .content {
  padding-inline: 20px;
  padding-top: 115px;
  padding-bottom: 30px;
  text-align: center;
}
.search-hero .content h1 {
  font-size: 22px;
  color: #1F1F1F;
  margin-bottom: 20px;
}

.search-page-form {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 520px;
  margin-inline: auto;
  background: white;
  border-radius: 99px;
  padding: 6px 6px 6px 18px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}
.search-page-form i {
  font-size: 15px !important;
  color: #aaa !important;
  padding: 0 !important;
  width: auto !important;
  height: auto !important;
  background: none !important;
  border-radius: 0 !important;
  margin: 0 !important;
}
.search-page-form input {
  flex: 1;
  border: none;
  outline: none;
  height: 44px;
  font-size: 15px;
  color: #1F1F1F;
  background: transparent;
  min-width: 0;
}
.search-page-form button {
  width: auto !important;
  height: 40px !important;
  padding-inline: 20px;
  border: none;
  border-radius: 99px;
  background: #e18d5e;
  color: white;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  white-space: nowrap;
  margin: 0 !important;
}
.search-page-form button:hover {
  background: rgb(218.5916230366, 116.6481675393, 59.6083769634);
}

.search-result-count {
  margin-top: 16px;
  font-size: 14px;
  color: #888;
}

.search-results-section {
  padding-block: 50px;
}
.search-results-section .content {
  padding-inline: 20px;
}

.search-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 60px 20px;
  text-align: center;
}
.search-empty-state i {
  font-size: 34px !important;
  color: #ddd !important;
  padding: 0 !important;
  width: auto !important;
  height: auto !important;
  background: none !important;
  border-radius: 0 !important;
  margin: 0 !important;
}
.search-empty-state p {
  font-size: 16px;
  color: #1F1F1F;
  font-weight: 600;
  margin: 0;
}
.search-empty-state span {
  font-size: 14px;
  color: #888;
}
.search-empty-state span a {
  display: inline;
  color: #e18d5e;
  text-decoration: underline;
}

.search-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.search-grid .product {
  position: relative;
  height: -moz-max-content;
  height: max-content;
  border-radius: 6px;
  cursor: pointer;
}
.search-grid .product .image {
  border: 2px solid #F8F2EE;
  background: white;
  padding: 20px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.search-grid .product .image img {
  width: 100%;
  height: 170px;
  -o-object-fit: contain;
     object-fit: contain;
}
.search-grid .product h4 {
  font-size: 15px;
  color: #1F1F1F;
  font-weight: 600;
  margin-top: 14px;
}
.search-grid .product a {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-top: 12px;
  color: #e18d5e;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid #e18d5e;
  padding-bottom: 3px;
  width: -moz-max-content;
  width: max-content;
}
.search-grid .product .search-card-price {
  color: rgba(44, 44, 44, 0.7);
  font-size: 12px;
  border: none;
}
.search-grid .product .color-options {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
}
.search-grid .product .color-options p {
  color: #1F1F1F;
  font-size: 13px;
  margin: 0;
  margin-right: 8px;
}
.search-grid .product .color-dot {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  display: inline-block;
  border: 2px solid rgba(0, 0, 0, 0.1);
}
.search-grid .product .color-more {
  font-size: 12px;
  color: #888;
}

@media only screen and (min-device-width: 1140px) {
  .search-hero .content {
    padding-top: 150px;
    padding-inline: 50px;
    max-width: 1390px;
    margin-inline: auto;
  }
  .search-results-section .content {
    padding-inline: 50px;
    max-width: 1390px;
    margin-inline: auto;
  }
  .search-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
  }
}/*# sourceMappingURL=search.css.map */