:root {
  --bodyFont: "DM Sans", sans-serif;
  --titleFont: "Outfit", sans-serif;
  --transition: all 0.3s ease;
  --body_bg: #ffffff;
  --globalColor: #FFFCF4;
  --softColor: #F8F7FC;
  --borderColor: #E8E3EE;
  --bodyColor: #404A60;
  --titleColor: #222E48;
  --primaryColor: #200B56;
  --secondaryColor: #FBC91A;
  --secondaryColor1: #7061CC;
  --whiteColor: #ffffff;
  --blackColor: #000000;
  --linkColor: #200B56;
  --hoverColor: var(--primaryColor);
  --boxBorderRadius: 12px;
  --imageBorderRadius: 4px;
  --btnBorderRadius: 5px;
  --btnBgColor: #200B56;
  --btnHoverBgColor: #FBC91A;
  --btnColor: #ffffff;
  --btnHoverColor: #ffffff;
  --btnBgColor2: transparent;
  --btnHoverBgColor2: #200B56;
  --btnColor2: #200B56;
  --btnHoverColor2: #ffffff;
}

/* Coupon Search */
#product-search-results {
  position: absolute;
  width: 100%;
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 4px;
  max-height: 200px;
  overflow-y: auto;
  top: 100%;
  padding: 0px 20px;
  z-index: 2;
}

#product-search-results ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

#product-search-results li {
  padding: 8px 0;
  border-bottom: 1px solid #eee;
}

#product-search-results li a {
  text-decoration: none;
  color: var(--titleColor);
}

#product-search-results li a:hover {
  color: var(--secondaryColor);
}

button.tp-product-search-btn {
  position: absolute;
  height: 100%;
  line-height: 100%;
  min-width: 40px;
  padding: 0;
  border-radius: 30px;
  right: 8px;
  height: calc(100% - 10px);
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--secondaryColor);
  padding: 0 25px;
  color: var(--titleColor);
}

input#product-search-input {
  margin-bottom: 0;
  border-radius: 30px;
  padding-right: 60px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  background-color: transparent;
  border: none;
}

.tp-product-search-style1 button.tp-product-search-btn {
  padding: 0 10px;
}

/* style 2 */
.tp-product-search {
  display: flex;
}

.tp-product-search-input-wrapper {
  flex: 1;
}

.tp-product-category {
  position: relative;
  width: -moz-max-content;
  width: max-content;
  background-color: transparent;
  border-color: transparent !important;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  margin-bottom: 0;
}
.tp-product-category::before {
  content: "";
  position: absolute;
  top: 8px;
  right: -10px;
  height: 34px;
  width: 1px !important;
  background: var(--borderColor);
}
.tp-product-category .list {
  padding: 0 0 !important;
}

.tp-product-search {
  background: var(--whiteColor);
  border-radius: 100px;
  border: 1px solid var(--borderColor);
}

.tp-product-search-area {
  width: 100%;
}

.tp-product-search {
  display: flex;
  gap: 10px;
}

#product-category-select {
  width: 200px;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.tp-product-search-input-wrapper {
  flex: 1;
  position: relative;
}

.tp-product-search-input {
  width: 100%;
  padding: 10px 50px 10px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-sizing: border-box;
}

.tp-product-search-btn {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  padding: 0 20px;
  background: var(--primaryColor);
  color: white;
  border: none;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
}

.tp-product-search-btn:hover {
  background: var(--primaryColor);
}

#product-search-results {
  position: absolute;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  max-height: 400px;
  overflow-y: auto;
  z-index: 9999;
  width: 100%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  margin-top: 5px;
  left: 0;
  top: 100%;
}

#product-search-results.d-none {
  display: none !important;
}

.search-result-item {
  padding: 12px 15px;
  border-bottom: 1px solid #eee;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: background-color 0.2s;
}

.search-result-item:last-child {
  border-bottom: none;
}

.search-result-item:hover {
  background-color: #f8f8f8;
}

.search-result-item img {
  width: 60px;
  height: 60px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
}

.search-result-info {
  flex: 1;
  min-width: 0;
}

.search-result-title {
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--titleColor);
  font-size: 14px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.search-result-price {
  color: var(--bodyColor);
  font-size: 14px;
  font-weight: 500;
}

.search-result-price .amount {
  color: var(--titleColor);
}

.no-results,
.searching-message {
  padding: 20px;
  text-align: center;
  color: #999;
  font-size: 14px;
}

.searching-message {
  color: #3498db;
}

.searching-message .fa-spinner {
  margin-right: 8px;
}/*# sourceMappingURL=search.css.map */