.custom-live-search-wrapper {
  position: relative;
  width: 100%;
  max-width: 900px;
}

.custom-live-search-wrapper .form-item {
  margin: 0;
}

.custom-live-search-input {
  width: 100%;
  height: 58px;
  border: 3px solid #4e257d;
  border-radius: 35px;
  padding: 0 24px;
  font-size: 24px;
  outline: none;
  box-sizing: border-box;
  background: #ffffff;
  color: #241533;
}

.custom-live-search-input:focus {
  border-color: #54bebc;
  box-shadow: 0 0 0 4px rgba(84, 190, 188, 0.16);
}

.custom-live-search-results {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: min(980px, calc(100vw - 24px));
  max-height: 500px;
  background: #ffffff;
  border: 1px solid rgba(78, 37, 125, 0.14);
  border-radius: 18px;
  box-shadow: 0 18px 50px rgba(36, 21, 51, 0.18);
  z-index: 9999;
  overflow: hidden;
}

.custom-live-search-results.is-open {
  display: block;
}

.cls-dropdown-grid {
  display: grid;
  grid-template-columns: minmax(320px, 58%) minmax(260px, 42%);
  max-height: 500px;
}

.cls-column {
  padding: 24px 28px;
  min-width: 0;
  max-height: 500px;
  overflow-y: auto;
}

.cls-column-left {
  background: linear-gradient(180deg, #ffffff 0%, #fbfbff 100%);
}

.cls-column-right {
  background: #f4fbfb;
  border-left: 1px solid rgba(84, 190, 188, 0.24);
}

.cls-column::-webkit-scrollbar {
  width: 8px;
}

.cls-column::-webkit-scrollbar-thumb {
  background: rgba(78, 37, 125, 0.22);
  border-radius: 8px;
}

.cls-section-title {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 12px;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(78, 37, 125, 0.12);
  color: #241533;
  padding-bottom: 10px;
  letter-spacing: 0.04em;
}

.cls-products-title {
  margin-top: 24px;
}

.cls-category-item {
  display: block;
  padding: 10px 0;
  color: #4e257d;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
}

.cls-category-item:hover {
  color: #54bebc;
  text-decoration: underline;
}

.cls-product-item,
.cls-featured-item {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: #241533;
  padding: 12px 0;
}

.cls-product-item:hover,
.cls-featured-item:hover {
  background: rgba(84, 190, 188, 0.08);
}

.cls-product-thumb,
.cls-featured-thumb {
  width: 60px;
  min-width: 60px;
  height: 60px;
  border: 1px solid rgba(78, 37, 125, 0.12);
  border-radius: 10px;
  overflow: hidden;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cls-product-thumb img,
.cls-featured-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cls-no-image {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #ede7f5 0%, #e6f8f8 100%);
}

.cls-product-info,
.cls-featured-info {
  min-width: 0;
}

.cls-product-name,
.cls-featured-name {
  font-size: 16px;
  line-height: 1.25;
  font-weight: 700;
  color: #241533;
}

.cls-right-category {
  font-size: 16px;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px dashed rgba(78, 37, 125, 0.2);
  color: #241533;
}

.cls-right-category strong {
  color: #4e257d;
}

.cls-view-all {
  display: block;
  text-align: center;
  background: #4e257d;
  color: #ffffff;
  text-decoration: none;
  padding: 14px 20px;
  margin-top: 18px;
  font-weight: 800;
  text-transform: uppercase;
  border-radius: 14px;
}

.cls-view-all:hover {
  color: #ffffff;
  background: #54bebc;
}

.cls-empty {
  color: #736680;
  font-size: 14px;
  padding: 10px 0;
}

@media (max-width: 991px) {
  .custom-live-search-input {
    font-size: 18px;
    height: 50px;
  }

  .custom-live-search-results {
    width: calc(100vw - 16px);
    max-height: 500px;
  }

  .cls-dropdown-grid {
    grid-template-columns: 1fr;
  }

  .cls-column {
    max-height: 250px;
  }

  .cls-column-right {
    border-left: 0;
    border-top: 1px solid rgba(84, 190, 188, 0.24);
  }
}
