.uss-search {
  position: relative;
}

.uss-search__panel {
  position: absolute;
  z-index: 9999;
  top: calc(100% + 6px);
  right: 0;
  left: 0;
  display: none;
  max-height: min(520px, 70vh);
  overflow-y: auto;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.16);
  color: #0f172a;
}

.uss-search__panel.is-open {
  display: block;
}

.uss-search__section-title {
  padding: 10px 14px 7px;
  color: #64748b;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.uss-search__item,
.uss-search__category {
  display: flex;
  min-height: 56px;
  align-items: center;
  gap: 12px;
  padding: 8px 14px;
  border-top: 1px solid #f1f5f9;
  color: #334155;
  text-decoration: none;
}

.uss-search__item:hover,
.uss-search__item:focus,
.uss-search__item.is-active,
.uss-search__category:hover,
.uss-search__category:focus,
.uss-search__category.is-active {
  outline: 0;
  background: #fff7f3;
  color: #0f172a;
  text-decoration: none;
}

.uss-search__image {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border-radius: 6px;
  background: #f8fafc;
  object-fit: cover;
}

.uss-search__name {
  min-width: 0;
  flex: 1;
  overflow: hidden;
  font-size: 13px;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.uss-search__price {
  flex: 0 0 auto;
  color: #f05a28;
  font-size: 13px;
  font-weight: 700;
}

.uss-search__notice {
  padding: 14px;
  color: #64748b;
  font-size: 13px;
}

.uss-search__correction {
  padding: 10px 14px;
  border-bottom: 1px solid #fed7c5;
  background: #fff7f3;
  color: #9a3412;
  font-size: 12px;
}

@media (max-width: 767px) {
  .uss-search__panel {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    max-height: none;
    padding-top: 12px;
    border: 0;
    border-radius: 0;
  }

  .uss-search__item,
  .uss-search__category {
    min-height: 60px;
  }
}
