.smart-search-wrapper {
  width: 100%;
  max-width: 450px;
  margin-right: 15px;
  position: relative;
  overflow: visible;
  z-index: 100;
}

/* Dropdown */
.smart-search-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  width: 100%;
  max-width: 420px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  display: none;
  z-index: 99999;
}

.smart-search-loader,
.smart-search-empty {
  padding: 10px;
}

/* Header */
.smart-search-header {
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 600;
  color: #3cb64a;
  border-bottom: 1px solid #eee;
}

/* Items */
.smart-search-item {
  display: flex;
  gap: 14px;
  padding: 12px 16px;
  cursor: pointer;
  transition: 0.25s ease;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.smart-search-item:hover {
  background: #f7f7f7;
  text-decoration: none;
}

/* Image */
.smart-search-image {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  overflow: hidden;
  background: #f3f3f3;
  position: relative;
}

.smart-search-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Discount badge */
.smart-search-discount-badge {
  position: absolute;
  top: 6px;
  left: 6px;
  background: #3cb64a;
  color: #fff;
  padding: 3px 7px;
  font-size: 12px;
  font-weight: 700;
  border-radius: 6px;
}

/* Content */
.smart-search-title {
  font-size: 15px;
  font-weight: 600;
  color: #222;
  margin-bottom: 4px;
}

.smart-search-category {
  font-size: 13px;
  color: #3cb64a;
  /* ПОДСВЕТКА КАТЕГОРИИ */
  font-weight: 600;
  margin-bottom: 6px;
}

.smart-search-status {
  font-size: 15px;
  font-weight: 600;
  color: #d9534f;
}

.smart-search-prices {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.smart-search-old-price {
  font-size: 14px;
  color: #999;
  text-decoration: line-through;
}

.smart-search-new-price {
  font-size: 18px;
  font-weight: 700;
  color: #3cb64a;
}

/* Highlight */
.smart-search-highlight {
  background: #fff2a8;
  border-radius: 4px;
  padding: 0 2px;
}

/* Footer */
.smart-search-footer {
  padding: 12px 16px;
  text-align: center;
  border-top: 1px solid #eee;
}

.smart-search-footer a {
  color: #3cb64a;
  font-weight: 600;
  text-decoration: none;
}

.smart-search-footer a:hover {
  text-decoration: underline;
}