/* Shared mobile product result card. */
.ll-product-result-wrap {
  position: relative;
  width: 100%;
}

.ll-product-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ll-product-card {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
  min-width: 0;
  padding: 14px;
  border: 1px solid rgba(0, 0, 0, .1);
  border-radius: 10px;
  background: #fff;
}

.ll-product-card.is-selected {
  border-color: #d0fd6b;
  box-shadow: inset 0 0 0 1px #d0fd6b;
}

.ll-product-pick {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  flex: 1 1 auto;
  min-width: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
}

button.ll-product-pick {
  cursor: pointer;
}

.ll-product-card .img_box {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  width: 64px;
  height: 64px;
}

.ll-product-card .img_box img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  object-fit: cover;
}

.ll-product-card .ll-search-image-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  width: 64px;
  height: 64px;
  border-radius: 8px;
  background: #f4f4f5;
  color: rgba(46, 47, 51, .7);
  font-size: 20px;
  font-weight: 700;
}

.ll-product-card .title_box {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.ll-product-card .title_box .keyword {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 26px;
  padding: 0 12px;
  border: 1px solid rgba(0, 0, 0, .2);
  border-radius: 20px;
  background: #fff;
  color: rgba(46, 47, 51, .88);
  font-size: 12px;
  font-weight: 500;
}

.ll-product-card .title_box h4 {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: #353639;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.ll-product-card .ll-product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 12px;
  margin: 0;
  color: rgba(112, 115, 124, .9);
  font-size: 12px;
  line-height: 1.4;
}

.ll-product-card .ll-search-brand {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.ll-product-card .ll-search-brand.has-brand-image {
  min-height: 22px;
}

.ll-product-card .ll-search-brand.has-brand-image img {
  display: block;
  max-width: 96px;
  max-height: 22px;
  object-fit: contain;
}

.ll-product-card .ll-search-brand.has-brand-image .ll-search-brand-text {
  display: none;
}

.ll-product-card .ll-product-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.ll-product-card .ll-product-keywords span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 9px;
  border-radius: 14px;
  background: #f4f4f5;
  color: rgba(46, 47, 51, .8);
  font-size: 12px;
  font-weight: 500;
}

.ll-product-card .btn_link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 10px;
  background: #f4f4f5 url(/assets/images/common/ico_link.svg) no-repeat center center;
  background-size: 14px auto;
  cursor: pointer;
  text-decoration: none;
}

.ll-product-card .btn_link.ll-search-denied {
  opacity: .55;
}

.ll-product-card.is-empty {
  align-items: center;
  justify-content: center;
  min-height: 88px;
  color: rgba(112, 115, 124, .9);
  font-size: 13px;
  text-align: center;
}

.ll-product-card.ll-search-skeleton {
  pointer-events: none;
}

.ll-product-card.ll-search-skeleton .img_box,
.ll-product-card.ll-search-skeleton .ll-skel-bar {
  display: block;
  border-radius: 8px;
  background: #ececed;
}

.ll-product-card.ll-search-skeleton .ll-skel-chip {
  width: 54px;
  height: 18px;
  border-radius: 18px;
}

.ll-product-card.ll-search-skeleton .ll-skel-line {
  width: 90%;
  height: 13px;
}

.ll-product-card.ll-search-skeleton .ll-skel-line.short {
  width: 55%;
}

.ll-product-card.ll-search-skeleton .ll-skel-icon {
  flex: none;
  width: 36px;
  height: 36px;
  border-radius: 10px;
}

.ll-product-result-wrap .page_button_wrap.b_floating {
  position: absolute;
  top: 53%;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, .1);
  backdrop-filter: blur(4px) saturate(180%);
  -webkit-backdrop-filter: blur(4px) saturate(180%);
}
