/* public/search/css/search-name.css */
@media (max-width: 768px) {
  .search-name {
    padding: 0 16px;
    margin-top: 16px;
  }
  .search-name--head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding-bottom: 16px;
    border-bottom: 1px solid #F5F5F5;
  }
  .search-name--title {
    color: #04040C;
    font-size: 14px;
    line-height: normal;
    margin: 0;
  }
  .search-name--total {
    color: #808080;
    font-size: 12px;
    line-height: 102%;
    font-family: var(--font-family-regular);
    margin-left: 12px;
    white-space: nowrap;
  }
}
@media (min-width: 769px) {
  .search-name {
    padding: 0 64px;
    margin-bottom: 16px;
    margin-top: 40px;
  }
  .search-name--head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
  }
  .search-name--head > div:first-child {
    display: flex;
    align-items: flex-end;
  }
  .search-name--title {
    color: #04040C;
    font-size: 30px;
    line-height: normal;
    margin: 0;
    font-family: var(--font-family-regular);
  }
  .search-name--total {
    color: #808080;
    font-size: 16px;
    line-height: 102%;
    font-family: var(--font-family-regular);
    margin-left: 12px;
  }
  .search-viewmode {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
  }
  .search-viewmode > div {
    cursor: pointer;
  }
  .search-viewmode img {
    width: 18px;
    height: 18px;
  }
}

/* public/search/css/search-filter.css */
.search-filter-entry {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 0;
}
body:has(#js-search-wrap[data-mode=default]) .search-viewmode > div[data-mode=pure],
body:has(#js-search-wrap[data-mode=pure]) .search-viewmode > div[data-mode=default] {
  opacity: 0.3;
}
.search-localsale-icon {
  margin-right: 4px;
}
.search-condition {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  font-family: var(--font-family-regular);
  background-color: #f5f5f5;
}
.search-condition:hover {
  background-color: #e3e3e3;
}
.search-condition .c-icon--close {
  font-size: 12px;
  margin-left: 8px;
  cursor: pointer;
  color: #808080;
  line-height: normal;
}
.search-condition-clean {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-family-regular);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
  margin-left: 8px;
}
.search-conditions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  display: none;
}
.search-conditions:has(.search-condition) {
  display: flex;
}
@media (max-width: 768px) {
  .search-filter-container {
    padding: 0 16px 16px;
  }
  .search-viewmode {
    display: flex;
    align-items: center;
    gap: 16px;
  }
  .search-filter-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 0;
  }
  .search-filter-btns {
    display: flex;
    align-items: center;
    flex-shrink: 1;
    overflow-x: scroll;
  }
  .search-filter-btns:has(.search-filters) {
    box-shadow: -5px 0 4px -5px rgba(0, 0, 0, 0.25) inset;
  }
  .search-sort {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 0;
    user-select: none;
  }
  .search-sort span,
  .search-filter-entry span {
    font-size: 14px;
    font-family: var(--font-family-regular);
    letter-spacing: -0.28px;
    white-space: nowrap;
  }
  .search-sort img,
  .search-filter-entry img {
    width: 20px;
    height: 20px;
    margin-right: 8px;
  }
  .search-filter-entry::after {
    content: " ";
    width: 1px;
    height: 15px;
    margin: 0 12px;
    background-color: #e3e3e3;
  }
  .search-filters {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    margin-left: 16px;
  }
  .search-quick-filter {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e3e3e3;
    padding: 0 16px;
    font-family: var(--font-family-regular);
    cursor: pointer;
    white-space: nowrap;
    height: 36px;
    font-size: 13px;
  }
  .search-quick-filter[data-selected=true] {
    border-color: #04040c;
  }
  .search-conditions {
    margin-top: 12px;
    gap: 8px;
  }
  .search-condition {
    height: 28px;
    font-size: 13px;
  }
  .search-condition-clean {
    height: 30px;
    font-size: 13px;
  }
  .search-viewmode {
    height: 36px;
    padding-left: 16px;
  }
  .search-viewmode img {
    width: 18px;
    height: 18px;
  }
}
@media (min-width: 769px) {
  .search-filter-container {
    margin-bottom: 32px;
  }
  .search-filter-top {
    display: flex;
    align-items: center;
    padding: 0 64px;
    min-width: 0;
  }
  .search-filters {
    display: flex;
    gap: 12px;
    flex-shrink: 1;
    min-width: 0;
    margin-right: 20px;
    align-items: center;
    white-space: nowrap;
    overflow-x: auto;
    overflow-y: visible;
    scrollbar-width: none;
  }
  .search-filter-btns {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 1;
    flex-shrink: 0;
  }
  .search-filter-entry img {
    width: 24px;
    height: 24px;
    margin-right: 2px;
  }
  .search-filter-entry span {
    font-size: 14px;
    text-decoration: underline;
    text-underline-offset: 2px;
    font-family: var(--font-family-regular);
  }
  .search-filter-category,
  .search-quick-filter {
    height: 40px;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    position: relative;
    border: 1px solid #e3e3e3;
    padding: 0 16px;
    background-color: #fff;
    font-family: var(--font-family-regular);
    cursor: pointer;
    white-space: nowrap;
  }
  .search-filter-category-count:not([data-count="0"])::before {
    content: "("attr(data-count)")";
    margin-left: 3px;
  }
  .search-quick-filter[data-selected=true] {
    border-color: #04040c;
  }
  .search-conditions {
    padding: 0 64px;
    margin-top: 24px;
    gap: 8px;
  }
  .search-condition {
    height: 30px;
    font-size: 13px;
  }
  .search-condition-clean {
    height: 30px;
    font-size: 13px;
  }
  .search-sort {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e3e3e3;
    padding: 0 16px;
    font-family: var(--font-family-regular);
    cursor: pointer;
    white-space: nowrap;
    position: relative;
    color: #808080;
    margin-left: 20px;
    height: 40px;
    font-size: 14px;
  }
  .search-sort[data-open] .search-sort-popup {
    display: block;
  }
  .search-sort[data-open] > i {
    transform: rotate(180deg);
  }
  .search-sort-popup {
    display: none;
    position: absolute;
    width: 100%;
    left: 0;
    top: 42px;
    border: 1px solid #e4e4e4;
    background: #fff;
    box-sizing: content-box;
    box-shadow: 0 7px 17px 0 rgba(0, 0, 0, 0.05);
    padding: 8px 0;
    z-index: 20;
  }
  .search-sort-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 40px;
    padding: 0 12px 0 16px;
    font-size: #404040;
    font-family: var(--font-family-regular);
    cursor: pointer;
  }
  .search-sort-item .c-icon--tick {
    display: none;
    font-size: 16px;
  }
  .search-sort-item:hover {
    background-color: #f5f5f5;
  }
  .search-sort-item[data-selected=true] {
    color: #04040c;
  }
  .search-sort-item[data-selected=true] .c-icon--tick {
    display: inline-block;
  }
  .search-sort .c-icon--arrow_down {
    margin-left: 8px;
    color: #04040c;
    font-size: 16px;
  }
  .search-sort-current {
    color: #04040c;
    margin-left: 6px;
  }
}

/* public/search/css/trending.css */
.search-trending-container {
  background: #F3F3F3;
}
.search-trending-nav {
  box-sizing: border-box;
  padding: 16px 20px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  color: var(--Primary-Black, #04040c);
  font-size: 12px;
  gap: 16px 24px;
}
.search-trending-nav a {
  text-decoration: underline;
  text-underline-offset: 3px;
  color: var(--Primary-Black, #04040c);
}
.search-trending-nav a:hover {
  color: var(--Primary-Black, #04040c);
}
@media screen and (max-width: 768px) {
  .search-trending-nav {
    padding: 16px 32px;
  }
}

/* public/search/css/top-picks.css */
#search-topPicks {
  margin: 60px auto;
}
#search-topPicks h2 {
  color: var(--Primary-Black, #04040c);
  font-size: 28px;
  font-family: Muli-semiBold;
  line-height: normal;
  letter-spacing: -0.84px;
  text-transform: uppercase;
  max-width: 1280px;
  margin: 0 auto 24px;
}
#search-topPicks .searc-product-grid {
  display: flex;
  gap: 8px;
  max-width: 1280px;
  margin: auto;
  overflow-x: auto;
}
#search-topPicks .search-product-card {
  width: calc((100% - 120px) / 6);
  max-width: 193px;
}
#search-topPicks .search-product-card .bag-btn {
  height: 43px;
  line-height: 43px;
  font-size: 16px;
}
#search-topPicks .search-product-card .product-price {
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  #search-topPicks {
    margin: 36px auto;
  }
  #search-topPicks h2 {
    margin-left: 16px;
    font-size: 18px;
  }
  #search-topPicks .search-product-card .product-info {
    padding: 8px 8px 0 8px;
  }
  #search-topPicks .search-product-card {
    width: 45%;
    flex-shrink: 0;
    max-width: unset;
  }
  #search-topPicks .search-product-card:first-child {
    margin-left: 0;
  }
  #search-topPicks .searc-product-grid {
    gap: 4px;
  }
}

/* public/search/css/no-search.css */
.no-search-result p {
  margin: 0;
}
.no-search-result__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px 0;
}
.no-search-result-title {
  margin-bottom: 16px;
  color: var(--Primary-Black, #04040C);
  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-family: var(--font-family-semibold);
  line-height: normal;
  letter-spacing: -0.72px;
  text-transform: uppercase;
}
.no-search-result-desc {
  color: var(--Neutral-1F1F1F, #1F1F1F);
  text-align: center;
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}
.no-search-result-desc strong {
  font-family: var(--font-family-semibold);
  font-weight: unset;
}
@media screen and (max-width: 768px) {
  #search-topPicks h2 {
    margin-bottom: 16px;
  }
  .no-search-result__content {
    padding: 24px 16px;
    align-items: flex-start;
  }
  .no-search-result-title {
    font-size: 14px;
    margin-bottom: 8px;
  }
  .no-search-result-desc,
  .no-search-result-title {
    text-align: left;
  }
}

/* public/search/css/product-card.css */
.search-product-card {
  position: relative;
  width: 100%;
  min-width: 0;
}
.search-product-card .text-E00000 {
  color: #E00000;
}
.search-product-card .text-253492 {
  color: #253492;
}
.search-product-card .font-15px {
  font-family: var(--font-family-regular);
  font-size: 15px;
}
.search-product-card .mt-16px {
  margin-top: 16px;
}
.search-product-card .mt-12px {
  margin-top: 12px;
}
.search-product-card ul {
  margin: 0;
}
.search-product-card .product-image {
  background-color: #F7F9FA;
}
.search-product-card .product-image .arrow-btn {
  width: 40px;
  height: 40px;
  border: 1px solid #f0f0f0;
  background-color: #fff;
  cursor: pointer;
  z-index: 2;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: none;
}
.search-product-card img {
  width: 100%;
  height: 100%;
}
.search-product-card img[src=""],
.search-product-card img:not([src]) {
  opacity: 0;
}
.search-product-card .product-image {
  position: relative;
  padding-bottom: 150%;
  height: 0;
}
.search-product-card .product-image .image-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  visibility: hidden;
}
.search-product-card .product-image .image-wrap.image-1 {
  visibility: visible;
}
.search-product-card .product-image .image-wrap.image-1 img {
  display: block;
}
.search-product-card .product-image .image-wrap.image-2 {
  visibility: hidden;
}
.search-product-card .product-image .image-wrap.image-2 img {
  display: none;
}
.search-product-card .product-image .video-wrap {
  height: 100%;
  width: 100%;
}
.search-product-card .product-image > a,
.search-product-card .wish-icon {
  display: flex;
}
.search-product-card .product-image .bag-btn {
  position: absolute;
  justify-content: center;
  height: 48px;
  line-height: 48px;
  width: 100%;
  cursor: pointer;
  bottom: 0;
  background: var(--Primary-Black, #04040c);
  font-size: 16px;
  color: var(--Text-White, #fff);
  display: none;
  z-index: 2;
  text-transform: uppercase;
  border: none;
}
.search-product-card .product-image .bag-btn:hover {
  background: var(--Secodry-Black, #404040);
}
.search-product-card .product-image:hover .bag-btn,
.search-product-card .product-image:hover .arrow-btn {
  display: flex;
}
.search-product-card .product-image:hover .product-tag_attribute {
  display: none;
}
.search-product-card .product-image .img-prev {
  left: 10px;
  transform: rotate(90deg);
}
.search-product-card .product-image .img-next {
  right: 10px;
  transform: rotate(270deg);
}
.search-product-card .product-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  padding: 8px 12px;
  justify-content: center;
  align-items: center;
  color: var(--Text-White,#fff);
  background: var(--Primary-Black, #04040c);
  z-index: 2;
}
.search-product-card .product-info {
  padding: 12px 12px 0 12px;
}
.search-product-card .product-footer {
  padding: 0 12px;
}
.search-product-card .product-skcs {
  display: flex;
  overflow-x: auto;
  gap: 12px;
  margin-top: 8px;
}
.search-product-card .product-skcs li {
  flex-shrink: 0;
  height: 28px;
  width: 28px;
  overflow: hidden;
  border-radius: 50%;
  cursor: pointer;
  padding: 3px;
  gap: 8px;
  cursor: pointer;
  box-sizing: border-box;
}
.search-product-card .product-skcs li.product-skcs__icon {
  border: 1.2px solid #E3E3E3;
  list-style: none;
}
.search-product-card .product-skcs li a {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.search-product-card .product-skcs li.active {
  border: 1.2px solid #404040;
}
.search-product-card .product-skcs_num {
  color: var(--Primary-Black, #04040C);
  font-size: 14px;
  font-style: normal;
  font-family: var(--font-family-regular);
  line-height: normal;
}
.search-product-card .product-title {
  display: flex;
  justify-content: space-between;
  margin-bottom: 4px;
}
.search-product-card .product-title h3,
.search-product-card .product-title p {
  overflow: hidden;
  color: var(--Primary-Black,#04040C);
  text-overflow: ellipsis;
  font-size: 16px;
  font-style: normal;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  word-break: break-word;
  line-height: normal;
  margin: 0;
  font-weight: unset;
}
.search-product-card .wish-icon {
  width: 22px;
  height: 22px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  aspect-ratio: 1/1;
  flex-shrink: 0;
  cursor: pointer;
}
.search-product-card .product-price {
  display: flex;
  align-items: center;
  color: var(--Primary-Black,#04040c);
  font-size: 18px;
  font-style: normal;
  font-family: var(--font-family-semibold);
  gap: 6px;
  font-weight: unset;
}
.search-product-card .origin-price {
  color: #808080;
  font-size: 14px;
  font-style: normal;
  font-family: var(--font-family-regular);
  text-decoration-line: line-through;
  vertical-align: middle;
}
.search-product-card .product-sale-tag {
  color: #e00000;
  font-family: var(--font-family-regular);
  font-size: 12px;
  font-style: normal;
  margin-left: 4px;
}
.search-product-card .product-price-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.search-product-card .product-price-section .product-price-wrapper {
  display: flex;
  align-items: center;
  height: 24px;
}
.search-product-card .product-activity__first-buyer {
  margin-top: 10px;
  color: #1a237e;
  line-height: 1.5;
}
.search-product-card .product-activity__quick-ship {
  display: inline-flex;
  padding: 0 8px;
  justify-content: center;
  align-items: center;
  gap: 4px;
  border: 1px solid #5AA8AD;
  background: #E5F7F7;
  color: var(--Primary-Black, #04040C);
  font-size: 14px;
  font-family: var(--font-family-semibold);
  line-height: normal;
  margin-top: 12px;
  max-width: 100%;
  box-sizing: border-box;
  height: 30px;
}
.product-activity__quick-ship svg {
  flex-shrink: 0;
  width: 12px;
  height: 12px;
}
.product-activity__quick-ship .quick-ship__text {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding-right: 2px;
}
.search-product-card .text-dot {
  position: relative;
  padding-left: 10px;
}
.search-product-card .text-dot::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 6px;
  height: 6px;
  background-color: currentColor;
  border-radius: 50%;
  transform: translateY(-50%);
}
.search-product-card .product-tag__left {
  display: flex;
  position: absolute;
  top: 16px;
  left: 16px;
  gap: 8px;
  z-index: 2;
}
.search-product-card .product-label {
  background: var(--Primary-Black, #04040C);
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-box-orient: vertical;
  color: #fff;
  text-transform: uppercase;
}
.search-product-card .product-activity-tag {
  margin-top: 12px;
}
.search-product-card .product-tag_attribute img {
  width: 100%;
  position: absolute;
  bottom: 0;
  z-index: 5;
  left: 0;
  height: auto;
  max-height: 50%;
}
.search-product-card .product-tag__scroll {
  height: 24px;
  overflow: hidden;
  position: relative;
  margin-top: 8px;
}
.search-product-card .product-tag__scroll-item {
  height: 24px;
  line-height: 24px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: opacity 0.3s ease-in-out;
}
.search-product-card .product-soldout {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(4, 4, 12, 0.50);
  color: #fff;
  font-family: var(--font-family-semibold);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}
.search-product-card .bag-icon {
  width: 20px;
  height: 20px;
  display: inline-block;
}
@media screen and (min-width: 769px) {
  .search-product-card .product-label {
    padding: 4px 8px;
    font-size: 14px;
    line-height: 18px;
  }
  .search-product-card .product-image:hover .flipping-image.image-1 {
    visibility: hidden;
  }
  .search-product-card .product-image:hover .flipping-image.image-1 img {
    display: none;
  }
  .search-product-card .product-image:hover .flipping-image.image-2 {
    visibility: visible;
  }
  .search-product-card .product-image:hover .flipping-image.image-2 img {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .search-product-card .product-image > a {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
  }
  .search-product-card .product-info {
    padding: 12px 8px 0 8px;
  }
  .search-product-card .product-title {
    margin-bottom: 6px;
  }
  .search-product-card .product-title h3,
  .search-product-card .product-title p {
    font-size: 12px;
    line-height: normal;
  }
  .search-product-card .product-price {
    font-size: 13px;
  }
  .search-product-card .product-price strong {
    line-height: 25px;
  }
  .search-product-card .bag-icon {
    width: 20px;
    height: 20px;
    display: inline-block;
  }
  .search-product-card .origin-price {
    font-size: 12px;
    vertical-align: middle;
  }
  .search-product-card .product-label {
    padding: 8px;
    font-size: 12px;
    height: 28px;
    box-sizing: border-box;
  }
  .search-product-card .font-15px {
    font-size: 12px;
  }
  .search-product-card .product-skcs {
    margin-top: 12px;
    gap: 8px;
  }
  .search-product-card .product-tag__scroll {
    margin-top: 6px;
  }
  .search-product-card .product-skcs li {
    width: 26px;
    height: 26px;
  }
  .search-product-card .product-activity__quick-ship {
    margin-top: 12px;
    font-size: 12px;
  }
  .search-product-card .product-footer {
    padding: 0 8px;
  }
  .search-product-card .product-tag__left {
    left: 8px;
    top: 8px;
  }
}
.search-product-card.is-sold-out .product-footer > *:not(.product-skcs),
.search-product-card.is-sold-out .product-title,
.search-product-card.is-sold-out .bag-btn,
.search-product-card.is-sold-out .product-tag_attribute,
.search-product-card.is-sold-out .product-tag__left,
.search-product-card.is-sold-out .origin-price {
  display: none !important;
}

/* public/search/css/pagination.css */
.search-pagination {
  margin-bottom: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #404040;
  font-family: var(--font-family-regular);
}
.pagination-show-info {
  font-size: 16px;
  margin-bottom: 16px;
}
.pagination-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.search-pagination .pagination {
  display: inline-block;
}
.pagination-list {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 8px;
}
.pagination-item {
  display: flex;
  align-items: center;
}
.pagination-item.disabled {
  display: none;
}
.pagination-item.disabled > * {
  cursor: default;
  color: #04040C;
  opacity: 0.2;
}
.pagination-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-size: 14px;
  color: #04040C;
  text-decoration: none;
  border: 1px solid #E3E3E3;
  background-color: #ffffff;
  transition: all 0.2s ease;
  cursor: pointer;
}
.pagination-link:hover {
  color: #04040C;
}
.pagination-current:hover {
  color: #fff;
}
.pagination-link:active {
  transform: translateY(1px);
}
.pagination-current {
  background-color: #000;
  color: #fff;
  border-color: #04040C;
  cursor: default;
}
.pagination-prev,
.pagination-next {
  min-width: 40px;
  padding: 0;
}
@media screen and (max-width:768px) {
  .search-pagination-mobile {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    justify-content: center;
  }
  .pagination-mobile-buttons {
    display: flex;
    gap: 12px;
  }
  .pagination-mobile-btn {
    display: flex;
    padding: 0 16px;
    height: 38px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border: 1px solid #E3E3E3;
    color: #04040C;
    font-family: var(--font-family-regular);
    background-color: #fff;
  }
  .pagination-mobile-prev {
    padding-right: 20px;
  }
  .pagination-mobile-next {
    padding-left: 20px;
  }
  .pagination-mobile-btn.disabled {
    color: #808080;
  }
  .pagination-mobile-btn span {
    height: 100%;
    font-size: 12px;
    text-transform: uppercase;
    line-height: normal;
    overflow: hidden;
    display: -webkit-box;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
}

/* public/search/css/nps.css */
#nps-banner {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
}
#nps-banner img {
  height: 100%;
}
.nps-outer {
  display: flex;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  box-sizing: border-box;
  padding: 16px 40px;
  bottom: 0;
}
@media screen and (max-width: 769px) {
  .nps-outer {
    padding: 12px;
  }
  .nps-label-left,
  .nps-label-right {
    color: #999;
  }
  .nps-btn {
    color: #1f1f1f !important;
  }
}
.nps-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.nps-title {
  text-align: center;
  font-weight: 700;
}
.nps-title.nps-pc {
  font-size: 32px;
  line-height: 44px;
  margin-bottom: 56px;
  color: #fff;
}
.nps-title.nps-m {
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 8px;
}
.nps-subtitle {
  text-align: center;
  cursor: pointer;
  font-weight: 600;
}
.nps-subtitle.nps-pc {
  font-size: 18px;
  line-height: 30px;
  color: #fff;
}
.nps-subtitle.nps-m {
  font-size: 12px;
  line-height: 16px;
}
.nps-stars-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.nps-stars-row.nps-pc {
  margin-top: 24px;
}
.nps-stars-row.nps-m {
  margin-top: 8px;
}
.nps-star {
  width: 14%;
  cursor: pointer;
  touch-action: manipulation;
}
.nps-star svg {
  transition: fill 0.15s ease;
  fill: #fff;
}
.nps-star.selected svg {
  fill: #ffc107;
}
.nps-star.hovered svg {
  fill: #ffd54f;
}
.nps-labels {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  font-weight: 600;
}
.nps-labels.nps-pc {
  margin-top: 16px;
  font-size: 14px;
  color: #fff;
}
.nps-labels.nps-m {
  margin-top: 6px;
  font-size: 10px;
}
.nps-label-left {
  flex: 1;
  text-align: left;
}
.nps-label-right {
  flex: 1;
  text-align: right;
}
.nps-icon {
  margin-bottom: 16px;
}
.nps-icon.nps-m {
  height: 32px;
  margin-bottom: 8px !important;
}
.nps-thank {
  text-align: center;
}
.nps-thank.nps-pc {
  font-size: 32px;
  line-height: 44px;
  color: #fff;
}
.nps-thank.nps-m {
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 16px;
}
.nps-tip {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
}
.nps-title.also-search {
  color: #fff !important;
}
.nps-search-link.also-search {
  color: #fff !important;
}
.nps-tip.nps-m {
  margin-bottom: 8px;
  line-height: normal;
}
.nps-tip.nps-pc {
  margin-top: 40px;
  line-height: normal;
  margin-bottom: 24px;
  color: #fff;
}
.nps-btn {
  color: #fff;
  text-decoration: underline;
  cursor: pointer;
}
.nps-btn.nps-pc {
  font-size: 16px;
}
.nps-btn.nps-m {
  font-size: 12px;
}
.advertise {
  position: relative;
  overflow: hidden;
}
.card {
  display: flex;
  flex-direction: column;
}
.card-img {
  flex: 1;
  border-radius: 4px;
  background: #f2f2f2;
  position: relative;
}
.card-img.nps-card {
  background: linear-gradient(90deg, rgba(190, 190, 190, 0.2) 25%, rgba(129, 129, 129, 0.24) 37%, rgba(190, 190, 190, 0.2) 63%);
  background-size: 400% 100%;
  animation: skeleton-loading 1.4s ease infinite;
}
.card-img.nps-card img {
  width: 100%;
  height: auto;
  display: block;
}
@keyframes skeleton-loading {
  0% {
    background-position: 100% 50%;
  }
  50% {
    background-position: 0 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}
#nps-search-link {
  border-radius: 4px;
  text-decoration: underline;
  font-weight: 600;
  text-align: center;
  font-size: 24px;
}
@media (max-width: 768px) {
  #nps-search-link {
    font-size: 12px;
  }
}

/* public/search/css/search.css */
.search-container img {
  width: 100%;
  height: 100%;
}
.search-container {
  background-color: #fff;
}
.search-container .product-grid {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.search-container .search-product-card {
  flex-shrink: 0;
  margin-bottom: 32px;
}
.no-products {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 80px 0;
}
.no-products p {
  padding: 0;
  margin: 0 0 24px 0;
  color: var(--Primary-Black, #04040C);
  text-align: center;
  font-size: 16px;
  font-family: var(--font-family-semibold);
  line-height: 102%;
}
.no-products__reset-btn {
  display: inline-flex;
  height: 44px;
  justify-content: center;
  align-items: center;
  padding: 0 32px;
  gap: 0;
  border: 1px solid #E3E3E3;
  text-transform: uppercase;
  font-family: var(--font-family-semibold);
}
@media screen and (max-width: 768px) {
  .search-container .product-grid {
    gap: 4px;
  }
  .search-container .search-product-card {
    width: calc(50% - 2px);
    margin-bottom: 20px;
  }
  .search-container[data-mode=pure] .search-product-card {
    width: calc((100% - 8px) / 3);
  }
  .no-products {
    height: 264px;
  }
}
@media screen and (min-width: 769px) {
  .search-container[data-mode=default] .search-product-card {
    width: calc(25% - 6px);
  }
  .search-container[data-mode=pure] .search-product-card {
    width: calc((100% - 40px) / 6);
  }
}
.search-container[data-mode=pure] .is-ad,
.search-container[data-mode=pure] .nps-card,
.search-container[data-mode=pure] .product-footer,
.search-container[data-mode=pure] .product-title,
.search-container[data-mode=pure] .product-tag_attribute,
.search-container[data-mode=pure] .origin-price,
.search-container[data-mode=pure] .text-is-sold-out,
.search-container[data-mode=pure] .product-sale-tag {
  display: none !important;
}
.search-product-card[data-loading=true] .product-image a,
.search-product-card[data-loading=true] .product-tag_attribute {
  display: none;
}
.search-product-card[data-loading=true] .product-title {
  height: 24px;
  visibility: hidden;
}
.search-product-card[data-loading=true] .product-footer > *:not(.product-skcs) {
  display: none;
}

