/* Header live search dropdown */
.fp-header-search-form{
  position: relative;
}
.fp-header-search-results{
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 6px);
  background: #fff;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(0,0,0,.12);
  overflow: hidden;
  z-index: 9999;
}
.fp-hsr-list{
  max-height: 360px;
  overflow: auto;
}
.fp-hsr-row{
  display: flex;
  gap: 12px;
  padding: 10px 12px;
  text-decoration: none;
  color: inherit;
}
.fp-hsr-row:hover{
  background: rgba(0,0,0,.04);
}
.fp-hsr-img{
  width: 48px;
  height: 48px;
  border-radius: 10px;
  overflow: hidden;
  background: rgba(0,0,0,.06);
  flex: 0 0 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fp-hsr-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.fp-hsr-meta{
  min-width: 0;
  flex: 1 1 auto;
}
.fp-hsr-title{
  font-weight: 700;
  font-size: 13px;
  line-height: 1.2;
  margin: 0 0 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.fp-hsr-sku{
  font-size: 11px;
  opacity: .75;
  margin: 0 0 2px;
}
.fp-hsr-price{
  font-size: 12px;
}
.fp-hsr-viewall{
  display: block;
  padding: 10px 12px;
  border-top: 1px solid rgba(0,0,0,.08);
  text-decoration: none;
  font-weight: 700;
}
.fp-hsr-viewall:hover{
  background: rgba(0,0,0,.04);
}
.fp-hsr-empty{
  padding: 12px;
  opacity: .8;
}
