.sgc-product-list *,
.sgc-product-list *::before,
.sgc-product-list *::after {
  box-sizing: border-box;
}

@media (max-width: 959px) {
  .sgc-product-list * {
    -webkit-tap-highlight-color: transparent;
  }
}

.sgc-product-list ol,
.sgc-product-list ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.sgc-product-list dl {
  margin-block: 0;
}

.sgc-product-list dd {
  margin-inline-start: 0;
}

.sgc-product-list h1,
.sgc-product-list h2,
.sgc-product-list h3,
.sgc-product-list h4,
.sgc-product-list h5,
.sgc-product-list h6 {
  margin-block: 0;
  word-break: break-all;
}

.sgc-product-list h1:empty,
.sgc-product-list h2:empty,
.sgc-product-list h3:empty,
.sgc-product-list h4:empty,
.sgc-product-list h5:empty,
.sgc-product-list h6:empty,
.sgc-product-list section:empty,
.sgc-product-list article:empty,
.sgc-product-list p:empty,
.sgc-product-list a:empty,
.sgc-product-list ol:empty,
.sgc-product-list ul:empty,
.sgc-product-list dl:empty,
.sgc-product-list summary:empty {
  display: none;
}

.sgc-product-list a:not([href]) {
  cursor: not-allowed;
}

.sgc-product-list a:not(.sgc-button),
.sgc-product-list a:not(.sgc-button):hover {
  text-decoration: none;
}

.sgc-product-list svg.sgc-icon circle,
.sgc-product-list svg.sgc-icon path {
  vector-effect: non-scaling-stroke;
}

.sgc-product-list p:first-child {
  margin-block-start: 0;
}

.sgc-product-list p:last-child {
  margin-block-end: 0;
}

.sgc-product-list {
  /**
   * 内容级的元素层级
   */
  --sgc-z-index-hover: 1;
  --sgc-z-index-active: 2;
  --sgc-z-index-focus: 3;

  /**
   * 覆盖级的元素层级
   */
  --sgc-z-index-sticky: 1000;
  --sgc-z-index-dropdown: 1010;
  --sgc-z-index-fixed: 1020;
  --sgc-z-index-modal: 1030;
  --sgc-z-index-popover: 1040;
  --sgc-z-index-tooltip: 1050;
  --sgc-z-index-toast: 1060;
}

@keyframes sgc-loading-spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.sgc-product-list .sgc-hidden {
  display: none !important;
}

@media (max-width: 959px) {
  .sgc-product-list .sgc-hidden-mobile {
    display: none !important;
  }
}

@media (min-width: 960px) {
  .sgc-product-list .sgc-hidden-desktop {
    display: none !important;
  }
}

.sgc-product-list .sgc-hidden-empty:empty {
  display: none;
}

.sgc-product-list .sgc-basic-style {
  font-family: var(--sgc-basic-font-family, revert);
  font-size: var(--sgc-basic-font-size, revert);
  font-style: var(--sgc-basic-font-style, revert);
  font-weight: var(--sgc-basic-font-weight, revert);
  line-height: var(--sgc-basic-line-height, revert);
  color: rgb(var(--sgc-basic-color, revert));
  letter-spacing: var(--sgc-basic-letter-spacing, revert);
  overflow-wrap: break-word;
}

@media (max-width: 959px) {
  .sgc-product-list .sgc-basic-style {
    font-size: var(
      --sgc-basic-mobile-font-size,
      var(--sgc-basic-font-size, revert)
    );
  }
}

.sgc-product-list .sgc-text-align-left {
  text-align: start;
}

.sgc-product-list .sgc-text-align-center {
  text-align: center;
}

.sgc-product-list .sgc-text-align-right {
  text-align: end;
}

.sgc-product-list .sgc-hidden-scrollbar {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.sgc-product-list .sgc-hidden-scrollbar::-webkit-scrollbar {
  display: none;
}

.sgc-product-list .sgc-button {
  --sgc-button-padding-block: 10px;
  --sgc-button-padding-inline: 20px;

  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-block: var(--sgc-button-padding-block);
  padding-inline: var(--sgc-button-padding-inline);
  font-family: var(--sgc-button-font-family, revert);
  font-size: var(--sgc-button-font-size, revert);
  font-style: var(--sgc-button-font-style, revert);
  font-weight: var(--sgc-button-font-weight, revert);
  line-height: var(--sgc-button-line-height, revert);
  vertical-align: middle;
  color: rgb(var(--sgc-button-text-color, revert));
  text-align: center;
  letter-spacing: var(--sgc-button-letter-spacing, revert);
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
  user-select: none;
}

@media (max-width: 959px) {
  .sgc-product-list .sgc-button {
    --sgc-button-padding-block: 8px;
    --sgc-button-padding-inline: 16px;

    font-size: var(
      --sgc-button-mobile-font-size,
      var(--sgc-button-font-size, revert)
    );
  }
}

.sgc-product-list .sgc-button:focus {
  outline: 0;
}

.sgc-product-list .sgc-button:disabled,
.sgc-product-list .sgc-button.disabled {
  cursor: not-allowed;
  opacity: 0.3;
}

.sgc-product-list .sgc-button.loading {
  position: relative;
  color: transparent !important;
}

.sgc-product-list .sgc-button.loading::before {
  position: absolute;
  inset-block-start: 50%;
  inset-inline-start: 50%;
  display: block;
  width: 16px;
  height: 16px;
  margin-block-start: -8px;
  margin-inline-start: -8px;
  content: "";
  border: 2px solid rgb(var(--sgc-button-text-color, revert));
  border-block-start-color: transparent;
  border-radius: 50%;
  animation: sgc-loading-spin 1s linear infinite;
}

.sgc-product-list .sgc-button--style-normal {
  background-color: rgb(var(--sgc-button-background-color, revert));
  border: var(--sgc-button-border-thickness) solid
    rgb(var(--sgc-button-border-color), var(--sgc-button-border-opacity));
  border-radius: var(--sgc-button-border-radius);
  box-shadow: var(--sgc-button-shadow-offset-x)
    var(--sgc-button-shadow-offset-y) var(--sgc-button-shadow-blur)
    rgb(var(--sgc-button-shadow-color), var(--sgc-button-shadow-opacity));
}

.sgc-product-list .sgc-button--style-normal.sgc-button--effect-scan {
  overflow: hidden;
}

.sgc-product-list .sgc-button--style-normal.sgc-button--effect-scan::after {
  position: absolute;
  inset-block-start: 0;
  inset-inline-start: 0;
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(
    90deg,
    transparent,
    hsl(0deg 0% 100% / 25%),
    transparent
  );
  transform: skew(-20deg) translateX(200%);
  transition: transform 0.5s cubic-bezier(0.01, 0.56, 1, 1);
}

.sgc-product-list
  .sgc-button--style-normal.sgc-button--effect-scan:focus::after,
.sgc-product-list
  .sgc-button--style-normal.sgc-button--effect-scan:hover::after {
  transform: skew(-20deg) translateX(-150%);
}

.sgc-product-list .sgc-button--style-normal.sgc-button--effect-shadow {
  transition: box-shadow 0.2s;
}

.sgc-product-list .sgc-button--style-normal.sgc-button--effect-shadow:hover {
  box-shadow: 0 10px 20px rgb(0 0 0 / 10%);
}

.sgc-product-list .sgc-button--style-normal.sgc-button--effect-scale {
  position: relative;
}

.sgc-product-list .sgc-button--style-normal.sgc-button--effect-scale::after {
  position: absolute;
  inset-block-start: calc(-1 * var(--sgc-button-border-thickness));
  inset-inline-start: calc(-1 * var(--sgc-button-border-thickness));
  display: block;
  width: calc(100% + var(--sgc-button-border-thickness) * 2);
  height: calc(100% + var(--sgc-button-border-thickness) * 2);
  pointer-events: none;
  content: "";
  border-radius: calc(var(--sgc-button-border-radius) + 1px);
  box-shadow: none;
  transition: box-shadow 0.2s;
}

.sgc-product-list
  .sgc-button--style-normal.sgc-button--effect-scale:focus::after,
.sgc-product-list
  .sgc-button--style-normal.sgc-button--effect-scale:hover::after {
  box-shadow: 0 0 0 1px
    rgb(var(--sgc-button-border-color), var(--sgc-button-border-opacity));
}

.sgc-product-list .sgc-button--style-link {
  --sgc-button-padding-block: 2px;
  --sgc-button-padding-inline: 4px;

  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 6px;
  background-color: transparent;
  border: none;
}

.sgc-product-list .sgc-button--style-link:hover {
  text-decoration-thickness: 2px;
}

.sgc-product-list .sgc-button--style-arrow-button {
  --sgc-button-padding-block: 2px;
  --sgc-button-padding-inline: 4px;

  gap: 4px;
  background-color: transparent;
  border: none;
}

.sgc-product-list .sgc-rte {
  overflow-wrap: break-word;
}

.sgc-product-list .sgc-rte img,
.sgc-product-list .sgc-rte video {
  max-width: 100%;
  height: auto;
}

.sgc-product-list .sgc-rte::after {
  clear: both;
  display: block;
  content: "";
}

.sgc-product-list .sgc-rte a,
.sgc-product-list .sgc-rte a:hover {
  position: relative;
  padding: 0 1px;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 6px;
}

.sgc-product-list .sgc-rte ul,
.sgc-product-list .sgc-rte ol {
  padding: revert;
  margin: revert;
  list-style: revert;
}

.sgc-product-list .sgc-rte > p:first-child {
  margin-block-start: 0;
}

.sgc-product-list .sgc-rte > p:last-child {
  margin-block-end: 0;
}

.sgc-product-list .sgc-rte iframe {
  max-width: 100%;
}

.sgc-product-list .sgc-rte p img {
  vertical-align: bottom;
}

.sgc-product-list .sgc-rte table {
  table-layout: fixed;
}

@keyframes sgc-spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.sgc-product-list section {
  display: block;
  background-color: rgb(var(--sgc-product-list-background-color));
}

.sgc-product-list sgc-product-list {
  display: block;
  max-width: var(--sgc-product-list-max-width-in-desktop);
  margin: 0 auto;
  background-color: rgb(var(--sgc-product-list-background-color));
}

.sgc-product-list .sgc-product-list__empty {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  padding: 3rem 2rem;
  background-color: #fafafa;
  border: 2px dashed #e0e0e0;
  border-radius: 8px;
}

@media (max-width: 959px) {
  .sgc-product-list .sgc-product-list__empty {
    min-height: 300px;
    padding: 2rem 1rem;
  }
}

.sgc-product-list .sgc-product-list__tabs {
  position: relative;
  width: 100%;
  margin-block-end: 2rem;
  letter-spacing: var(--tab-letter-spacing);
}

.sgc-product-list .sgc-product-list__tabs--sticky {
  position: sticky;
  inset-block-start: 0;
  z-index: 100;
  padding-block: 1rem;
  margin-block-start: -1rem;
  background-color: rgb(var(--sgc-product-list-background-color));
  transition: box-shadow 0.3s ease;
}

.sgc-product-list .sgc-product-list__item {
  min-width: 0;
}

.sgc-product-list
  .sgc-product-list__grid[data-horizontal-scrolling="true"]
  .sgc-product-list__item {
  scroll-snap-align: start;
}

.sgc-product-list
  .sgc-product-list__carousel-desktop
  .splide__slide
  .sgc-product-list__item {
  width: 100%;
  min-width: 0;
}

.sgc-product-list
  .sgc-product-list__grid[data-enable-card-style="true"]
  .sgc-product-list__item {
  padding: 16px;
  background: var(--card-color);
  border: var(--card-border-width) solid
    rgb(var(--card-border-color) / var(--card-border-opacity));
  border-radius: var(--card-border-radius);
  box-shadow: var(--card-shadow-offset-x) var(--card-shadow-offset-y)
    var(--card-shadow-blur)
    rgb(var(--card-shadow-color) / var(--card-shadow-opacity));
}

.sgc-product-list .sgc-product-list__tab {
  position: relative;
  min-height: 3rem;
  padding: 15px 0;
  margin-inline-end: 2.5rem;
  font-family: var(--tab-font-family);
  font-size: var(--tab-desktop-font-size);
  font-style: var(--tab-font-style);
  font-weight: var(--tab-font-weight);
  line-height: var(--tab-line-height);
  color: rgb(var(--tab-color));
  cursor: pointer;
  background: none;
  border: none;
  opacity: 1;
  transition: all 0.3s ease;
}

.sgc-product-list .sgc-product-list__tab:hover {
  color: #666;
}

.sgc-product-list .sgc-product-list__tab--active {
  color: #000;
}

.sgc-product-list .sgc-product-list__tab--active::after {
  position: absolute;
  inset-block-end: 0;
  inset-inline-start: 0;
  width: 100%;
  height: 4px;
  content: "";
  background-color: rgb(var(--divider-line-color-and-button-tag-border-color));
  transform: scaleX(1);
  transition: transform 0.3s ease;
}

.sgc-product-list .sgc-product-list__tab--loading {
  pointer-events: none;
  opacity: 0.6;
}

.sgc-product-list
  .sgc-product-list__tab:not(.sgc-product-list__tab--active)::after {
  position: absolute;
  inset-block-end: 0;
  inset-inline-start: 0;
  width: 100%;
  height: 4px;
  content: "";
  background-color: #000;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.sgc-product-list .sgc-product-list__tab--button-style {
  padding: 15px 0;
  margin-inline-end: 2.5rem;
  color: rgb(var(--tab-color));
  background-color: transparent;
  border: none;
  border-radius: 0;
  transition: all 0.3s ease;
}

.sgc-product-list .sgc-product-list__tab--button-style::after {
  display: block;
}

.sgc-product-list .sgc-product-list__tab--button-style:hover {
  color: #666;
}

.sgc-product-list
  .sgc-product-list__tab--button-style.sgc-product-list__tab--active {
  padding: 12px 20px;
  margin-inline-end: 16px;
  color: rgb(var(--button-tag-text-color));
  background-color: rgb(var(--button-tag-background-color));
  border: 2px solid rgb(var(--divider-line-color-and-button-tag-border-color));
  border-radius: 8px;
}

.sgc-product-list
  .sgc-product-list__tab--button-style.sgc-product-list__tab--active::after {
  display: none;
}

.sgc-product-list
  .sgc-product-list__tab--button-style:not(
    .sgc-product-list__tab--active
  )::after {
  position: absolute;
  inset-block-end: 0;
  inset-inline-start: 0;
  width: 100%;
  height: 4px;
  content: "";
  background-color: rgb(var(--divider-line-color-and-button-tag-border-color));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.sgc-product-list .sgc-product-list__grid {
  padding: 0;
  margin-block-end: 50px;
  overflow: visible;
  list-style: none;
}

.sgc-product-list .sgc-product-list__grid:not(.splide) {
  display: grid;
  grid-template-columns: repeat(var(--desktop-columns, 4), 1fr);
  gap: var(--sgc-product-list-vertical-spacing)
    var(--sgc-product-list-horizontal-spacing);
}

.sgc-product-list .sgc-product-list__grid.splide {
  display: block;
}

.sgc-product-list .sgc-product-list__grid.splide .splide__track {
  overflow: hidden;
}

.sgc-product-list .sgc-product-list__grid.splide .splide__list {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.sgc-product-list .sgc-product-list__grid.splide .splide__slide {
  flex-shrink: 0;
  list-style: none;
}

.sgc-product-list
  .sgc-product-list__grid.splide
  .splide__slide
  .sgc-product-list__item {
  width: 100%;
  min-width: 0;
}

.sgc-product-list .sgc-product-list__content {
  position: relative;
  min-height: 500px;
  overflow: visible;
}

.sgc-product-list .sgc-product-list__content-inner {
  overflow: visible;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.sgc-product-list .sgc-product-list__content-inner.hidden {
  opacity: 0.3;
}

.sgc-product-list .sgc-product-list__skeleton {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  width: 100%;
  height: 100%;
  padding: 0;
  contain: layout style paint;
}

.sgc-product-list .sgc-product-list__skeleton .skeleton-item {
  display: flex;
  flex-direction: column;
  gap: 15px;
  height: fit-content;
  min-height: 400px;
}

@media (max-width: 959px) {
  .sgc-product-list .sgc-product-list__skeleton .skeleton-item {
    gap: 10px;
    min-height: 320px;
  }
}

.sgc-product-list .sgc-product-list__skeleton .skeleton-image {
  position: relative;
  display: flex;
  flex-shrink: 0;
  width: 100%;
  height: 400px;
  overflow: hidden;
  background: #f5f8fc;
  border-radius: 4px;
}

.sgc-product-list .sgc-product-list__skeleton .skeleton-image::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(
    90deg,
    transparent,
    rgb(255 255 255 / 60%),
    transparent
  );
  transform: translateX(-100%);
  animation: skeleton-shimmer 2s infinite;
}

@media (max-width: 959px) {
  .sgc-product-list .sgc-product-list__skeleton .skeleton-image {
    height: 250px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sgc-product-list .sgc-product-list__skeleton .skeleton-image::after {
    animation: none;
  }
}

.sgc-product-list .sgc-product-list__skeleton .skeleton-text {
  display: flex;
  flex-shrink: 0;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  padding: 0 8px;
}

.sgc-product-list .sgc-product-list__skeleton .skeleton-line {
  position: relative;
  flex-shrink: 0;
  height: 16px;
  overflow: hidden;
  background: #f5f8fc;
  border-radius: 4px;
}

.sgc-product-list .sgc-product-list__skeleton .skeleton-line::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(
    90deg,
    transparent,
    rgb(255 255 255 / 60%),
    transparent
  );
  transform: translateX(-100%);
  animation: skeleton-shimmer 2s infinite;
}

@media (prefers-reduced-motion: reduce) {
  .sgc-product-list .sgc-product-list__skeleton .skeleton-line::after {
    animation: none;
  }
}

.sgc-product-list .sgc-product-list__skeleton .skeleton-line.skeleton-line-1 {
  width: 100%;
  height: 20px;
}

.sgc-product-list .sgc-product-list__skeleton .skeleton-line.skeleton-line-2 {
  width: 80px;
  height: 20px;
}

@keyframes skeleton-shimmer {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

.sgc-product-list .sgc-product-list__loading {
  position: absolute;
  inset: 0;
  z-index: 10;
  pointer-events: none;
  background: #fff;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.sgc-product-list .sgc-product-list__loading:not(.hidden) {
  pointer-events: auto;
  opacity: 1;
}

.sgc-product-list .sgc-product-list__loading .sgc-product-list__skeleton {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  width: 100%;
  height: 100%;
  padding: 0;
}

@media (max-width: 959px) {
  .sgc-product-list .sgc-product-list__loading .sgc-product-list__skeleton {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 959px) {
  .sgc-product-list .sgc-product-list__spinner {
    position: absolute;
    inset-block-start: 50%;
    inset-inline-start: 50%;
    width: 40px;
    height: 40px;
    transform: translate(-50%, -50%);
  }
}

.sgc-product-list .sgc-product-list__spinner-inner {
  width: 100%;
  height: 100%;
  border: 3px solid #f3f3f3;
  border-block-start: 3px solid #333;
  border-radius: 50%;
  animation: sgc-spin 1s linear infinite;
}

.sgc-product-list .sgc-product-list__arrows .splide__arrow {
  position: absolute;
  inset-block-start: 50%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  color: #333;
  cursor: pointer;
  background: rgb(255 255 255 / 95%);
  border: 1px solid #ddd;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgb(0 0 0 / 10%);
  transform: translateY(-50%);
  transition: all 0.3s ease;
}

.sgc-product-list .sgc-product-list__arrows .splide__arrow:hover {
  background: #fff;
  border-color: #999;
  box-shadow: 0 4px 12px rgb(0 0 0 / 15%);
}

.sgc-product-list .sgc-product-list__arrows .splide__arrow:active {
  transform: translateY(-50%) scale(0.95);
}

.sgc-product-list .sgc-product-list__arrows .splide__arrow--prev {
  inset-inline-start: 20px;
}

.sgc-product-list .sgc-product-list__arrows .splide__arrow--next {
  inset-inline-end: 20px;
}

.sgc-product-list .sgc-product-list__arrows .splide__arrow:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.sgc-product-list .sgc-product-list__arrows .splide__arrow:disabled:hover {
  background: rgb(255 255 255 / 95%);
  border-color: #ddd;
  box-shadow: 0 2px 8px rgb(0 0 0 / 10%);
}

.sgc-product-list .sgc-product-list__wrapper > svg {
  width: 100%;
  height: 100%;
}

.sgc-product-list .sgc-product-list__placeholder-image svg {
  width: 80px;
  height: 80px;
  opacity: 0.6;
}

@media (max-width: 959px) {
  .sgc-product-list .sgc-product-list__placeholder-image svg {
    width: 60px;
    height: 60px;
  }
}

.sgc-product-list .sgc-product-list__arrows .splide__arrow svg {
  width: 20px;
  height: 20px;
}

.sgc-product-list .sgc-product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  contain: layout style;
  cursor: pointer;
  transform-origin: center;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.sgc-product-list .sgc-product-card__image-wrapper {
  position: relative;
  margin-block-end: 15px;
  overflow: hidden;
  background-color: #f5f5f5;
}

.sgc-product-list .sgc-product-card__image {
  display: block;
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.sgc-product-list .sgc-product-card__image--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #999;
  background-color: #f5f5f5;
}

.sgc-product-list .sgc-product-card__badge {
  position: absolute;
  inset-block-start: 10px;
  inset-inline-end: 10px;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 600;
  color: white;
  border-radius: 4px;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.sgc-product-list .sgc-product-card__badge--save {
  background-color: rgb(227 38 25 / 100%);
}

@media (max-width: 959px) {
  .sgc-product-list .sgc-product-card__badge {
    padding: 4px 8px;
    font-size: 11px;
  }
}

.sgc-product-list .sgc-product-card__info {
  text-align: center;
}

.sgc-product-list .sgc-product-card__description {
  font-size: 14px;
  line-height: 1.4;
  color: var(--secondary-color);
}

.sgc-product-list .sgc-product-card__price--current {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-color);
}

.sgc-product-list .sgc-product-card__price--original {
  margin-inline-start: 8px;
  font-size: 16px;
  color: var(--dark-gray);
  text-decoration: line-through;
}

.sgc-product-list .sgc-product-card__rating {
  display: flex;
  gap: 2px;
  justify-content: flex-start;
}

.sgc-product-list .sgc-product-card__rating .sgc-product-card__star {
  font-size: 1rem;
  color: #000;
  opacity: 0.6;
}

.sgc-product-list .sgc-product-card:hover {
  transform: scale(1.02);
}

.sgc-product-list .sgc-product-card:not(:hover) .sgc-product-card__badge {
  transition-delay: 0s;
}

.sgc-product-list .view-more-button {
  display: block;
  width: fit-content;
  min-height: 44px;
  padding: 12px 24px;
  margin: 2rem auto 0;
  font-family: var(--view-more-button-font-family);
  font-size: var(--view-more-button-desktop-font-size);
  font-style: var(--view-more-button-font-style);
  font-weight: var(--view-more-button-font-weight);
  line-height: var(--view-more-button-line-height);
  color: rgb(var(--view-more-button-text-color));
  text-align: center;
  letter-spacing: var(--view-more-button-letter-spacing);
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
  background-color: rgb(var(--view-more-button-background-color));
  border: var(--view-more-button-border-width) solid
    rgb(var(--view-more-button-border-color));
  border-radius: var(--view-more-button-border-radius, 4px);
  box-shadow: var(--view-more-button-shadow-offset-x, 0)
    var(--view-more-button-shadow-offset-y, 0)
    var(--view-more-button-shadow-blur, 0)
    rgb(
      var(--view-more-button-shadow-color, 0 0 0) /
        var(--view-more-button-shadow-opacity, 0)
    );
  transition: all 0.3s ease;
}

@media (max-width: 959px) {
  .sgc-product-list .view-more-button {
    min-height: 40px;
    padding: 10px 20px;
    margin: 1.5rem auto 0;
    font-size: var(--view-more-button-mobile-font-size, 13px);
  }
}

.sgc-product-list .view-more-button--style-secondary {
  color: rgb(var(--view-more-button-border-color));
  background-color: transparent;
  border: var(--view-more-button-border-width) solid
    rgb(var(--view-more-button-border-color));
}

.sgc-product-list .view-more-button--style-secondary:hover {
  color: rgb(var(--view-more-button-text-color));
  background-color: rgb(var(--view-more-button-border-color));
}

.sgc-product-list .view-more-button--style-arrow-button {
  display: block;
  color: var(--text-color, #333);
  background-color: transparent;
  border: none;
  box-shadow: none;
}

.sgc-product-list .view-more-button--effect-scan {
  position: relative;
  overflow: hidden;
}

.sgc-product-list .view-more-button--effect-scan::after {
  position: absolute;
  inset-block-start: 0;
  inset-inline-start: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(
    90deg,
    transparent,
    rgb(255 255 255 / 25%),
    transparent
  );
  transform: skew(-20deg) translateX(200%);
  transition: transform 0.5s cubic-bezier(0.01, 0.56, 1, 1);
}

.sgc-product-list .view-more-button--effect-scan:hover::after {
  transform: skew(-20deg) translateX(-150%);
}

.sgc-product-list .view-more-button--effect-shadow:hover {
  box-shadow: 0 10px 20px rgb(0 0 0 / 10%);
}

.sgc-product-list .view-more-button--effect-scale:hover {
  transform: scale(1.05);
}

.sgc-product-list .view-more-button.view-more-button--style-link {
  padding: 4px 8px;
  color: var(--text-color, #333);
  text-decoration: underline;
  text-underline-offset: 4px;
  background-color: transparent;
  border: none;
  box-shadow: none;
}

.sgc-product-list .view-more-button.view-more-button--style-link:hover {
  text-decoration: underline;
  text-decoration-thickness: 2px;
}

@media (max-width: 959px) {
  .sgc-product-list .sgc-product-list__tabs {
    display: block;
    margin-block-end: 1rem;
    overflow: auto visible;
    white-space: nowrap;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
  }

  .sgc-product-list .sgc-product-list__tabs::-webkit-scrollbar {
    display: none;
  }

  .sgc-product-list .sgc-product-list__tabs--sticky {
    padding-block: 0.75rem;
    margin-block-start: -0.75rem;
  }

  .sgc-product-list .sgc-product-list__tab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 0;
    margin-inline-end: 20px;
    font-family: var(--tab-font-family);
    font-size: var(--tab-mobile-font-size);
    font-style: var(--tab-font-style);
    font-weight: var(--tab-font-weight);
    white-space: nowrap;
  }

  .sgc-product-list .sgc-product-list__tab:first-child {
    margin-inline-start: 0;
  }

  .sgc-product-list .sgc-product-list__tab:last-child {
    margin-inline-end: 0;
  }

  .sgc-product-list .sgc-product-list__tab--button-style {
    padding: 12px 0;
    margin-inline-end: 20px;
    color: rgb(var(--tab-color));
    background-color: transparent;
    border: none;
    border-radius: 0;
    transition: all 0.3s ease;
  }

  .sgc-product-list .sgc-product-list__tab--button-style::after {
    display: block;
  }

  .sgc-product-list .sgc-product-list__tab--button-style:hover {
    color: #666;
  }

  .sgc-product-list
    .sgc-product-list__tab--button-style.sgc-product-list__tab--active {
    padding: 10px 16px;
    margin-inline-end: 12px;
    color: rgb(var(--button-tag-text-color));
    background-color: rgb(var(--button-tag-background-color));
    border: 2px solid rgb(var(--divider-line-color-and-button-tag-border-color));
    border-radius: 6px;
  }

  .sgc-product-list
    .sgc-product-list__tab--button-style.sgc-product-list__tab--active::after {
    display: none;
  }

  .sgc-product-list
    .sgc-product-list__tab--button-style:not(
      .sgc-product-list__tab--active
    )::after {
    position: absolute;
    inset-block-end: 0;
    inset-inline-start: 0;
    width: 100%;
    height: 4px;
    content: "";
    background-color: rgb(
      var(--divider-line-color-and-button-tag-border-color)
    );
    transform: scaleX(0);
    transition: transform 0.3s ease;
  }
  .sgc-product-list .sgc-product-list__grid:not(.splide) {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-block-end: 30px;
  }

  .sgc-product-list .sgc-product-list__grid.sgc-product-list__carousel-mobile {
    margin-block-end: 30px;
  }

  .sgc-product-list
    .sgc-product-list__grid.sgc-product-list__carousel-mobile
    .splide__track {
    overflow: hidden;
  }

  .sgc-product-list
    .sgc-product-list__grid.sgc-product-list__carousel-mobile
    .splide__list {
    display: flex;
  }

  .sgc-product-list
    .sgc-product-list__grid.sgc-product-list__carousel-mobile
    .splide__slide {
    flex-shrink: 0;
  }

  .sgc-product-list
    .sgc-product-list__grid.sgc-product-list__carousel-mobile
    .splide__slide
    .sgc-product-list__item {
    width: 100%;
  }
  .sgc-product-list .sgc-product-card__image {
    height: 320px;
  }

  .sgc-product-list .sgc-product-card__quick-buy {
    inset-block-end: 10px;
    inset-inline: 10px;
  }
}

.sgc-product-list .sgc-product-image__image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: var(--fit-type);
  transition: opacity 1s ease;
}

.sgc-product-list .sgc-product-image__image:nth-of-type(1) {
  opacity: 1;
}

.sgc-product-list .sgc-product-image__image:nth-of-type(2) {
  opacity: 0;
}

.sgc-product-list .sgc-product-image__layer-wrapper {
  position: relative;
  display: flex;
  width: 100%;
  aspect-ratio: var(--aspect-ratio);
  overflow: hidden;
}

.sgc-product-list
  .sgc-product-image__layer-wrapper.sgc-product-image--hover-enabled
  .sgc-product-image__image:nth-of-type(1) {
  opacity: 1;
  transition: opacity 1s ease;
}

.sgc-product-list
  .sgc-product-image__layer-wrapper.sgc-product-image--hover-enabled
  .sgc-product-image__image:nth-of-type(2) {
  opacity: 0;
  transition: opacity 1s ease;
}

.sgc-product-list
  .sgc-product-image__layer-wrapper.sgc-product-image--hover-enabled:hover
  .sgc-product-image__image:nth-of-type(1) {
  opacity: 0;
}

.sgc-product-list
  .sgc-product-image__layer-wrapper.sgc-product-image--hover-enabled:hover
  .sgc-product-image__image:nth-of-type(2) {
  opacity: 1;
}

.sgc-product-list .sgc-product-image__wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: rgb(243 243 243 / 100%);
}

.sgc-product-list .sgc-product-image__layer {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.sgc-product-list .sgc-product-image__layer * {
  pointer-events: auto;
}

.sgc-product-list .sgc-product-image__placeholder-image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 400px;
  background-color: rgb(243 243 243 / 100%);
}

@media (max-width: 959px) {
  .sgc-product-list .sgc-product-image__placeholder-image {
    min-height: 280px;
  }
}

.sgc-product-list .sgc-product-layer {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.sgc-product-list .sgc-product-layer * {
  pointer-events: auto;
}

.sgc-product-list .sgc-product-tag {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.sgc-product-list .sgc-product-tag__badges {
  position: absolute;
  inset-block-start: 10px;
  inset-inline-end: 10px;
  pointer-events: auto;
}

.sgc-product-list
  .sgc-product-tag[data-tag-position="top_left"]
  .sgc-product-tag__badges {
  inset-block: 10px auto;
  inset-inline: 10px auto;
}

.sgc-product-list
  .sgc-product-tag[data-tag-position="top_right"]
  .sgc-product-tag__badges {
  inset-block: 10px auto;
  inset-inline: auto 10px;
}

.sgc-product-list
  .sgc-product-tag[data-tag-position="bottom_left"]
  .sgc-product-tag__badges {
  inset-block: auto 10px;
  inset-inline: 10px auto;
}

.sgc-product-list
  .sgc-product-tag[data-tag-position="bottom_right"]
  .sgc-product-tag__badges {
  inset-block: auto 10px;
  inset-inline: auto 10px;
}

.sgc-product-list .sgc-product-tag__quick-buy {
  position: absolute;
  inset-block-end: 10px;
  inset-inline: 10px;
  min-height: 36px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  pointer-events: auto;
  cursor: pointer;
  background-color: #333;
  border: none;
  border-radius: 4px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.sgc-product-list .sgc-product-tag__quick-buy:hover {
  background-color: #222;
}

@media (max-width: 959px) {
  .sgc-product-list .sgc-product-tag__quick-buy {
    min-height: 32px;
    padding: 6px 12px;
    font-size: 12px;
  }
}

.sgc-product-list .sgc-product-tag__quick-buy.sgc-product-tag__placeholder {
  opacity: 0.7;
}

.sgc-product-list .sgc-product-card:hover .sgc-product-tag__quick-buy {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.1s;
}

.sgc-product-list .sgc-product-card:not(:hover) .sgc-product-tag__quick-buy {
  transition-delay: 0s;
}

.sgc-product-list .sgc-product-tag__discount {
  padding: 4px 8px;
  font-size: 12px;
  font-weight: 600;
  color: rgb(var(--discount-tag-color));
  white-space: nowrap;
  background-color: rgb(var(--discount-tag-background));
  border-radius: var(--discount-tag-border-radius);
}

@media (max-width: 959px) {
  .sgc-product-list .sgc-product-tag__discount {
    padding: 3px 6px;
    font-size: 11px;
  }
}

.sgc-product-list .sgc-product-tag__discount.sgc-product-tag__placeholder {
  opacity: 0.7;
}

.sgc-product-list .sgc-product-tag__sold-out {
  padding: 4px 8px;
  font-size: 12px;
  font-weight: 600;
  color: rgb(var(--sold-out-color));
  white-space: nowrap;
  background-color: rgb(var(--sold-out-background));
  border-radius: var(--discount-tag-border-radius);
}

@media (max-width: 959px) {
  .sgc-product-list .sgc-product-tag__sold-out {
    padding: 3px 6px;
    font-size: 11px;
  }
}

.sgc-product-list .sgc-product-title__link {
  display: block;
  font-family: var(--product-title-font-family);
  font-size: var(--desktop-font-size);
  font-style: var(--product-title-font-style);
  font-weight: var(--product-title-font-weight);
  line-height: var(--desktop-line-height);
  color: rgb(var(--product-title-font-color));
  text-decoration: none;
  transition: color 0.3s ease;
}

@media (max-width: 959px) {
  .sgc-product-list .sgc-product-title__link {
    font-size: var(--mobile-font-size);
    line-height: var(--mobile-line-height);
  }
}

.sgc-product-list .sgc-product-title__placeholder {
  font-family: var(--product-title-font-family);
  font-size: var(--desktop-font-size);
  font-style: var(--product-title-font-style);
  font-weight: var(--product-title-font-weight);
  line-height: var(--desktop-line-height);
  color: rgb(var(--product-title-font-color));
  opacity: 0.8;
}

@media (max-width: 959px) {
  .sgc-product-list .sgc-product-title__placeholder {
    font-size: var(--mobile-font-size);
    line-height: var(--mobile-line-height);
  }
}

.sgc-product-list
  .sgc-product-title[data-display-type="max_1"]
  .sgc-product-title__link,
.sgc-product-list
  .sgc-product-title[data-display-type="max_1"]
  .sgc-product-title__placeholder {
  display: -webkit-box;
  /* stylelint-disable-next-line property-no-deprecated */
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 1;
  /* stylelint-disable-next-line declaration-property-value-keyword-no-deprecated */
  word-break: break-word;
}

.sgc-product-list
  .sgc-product-title[data-display-type="max_2"]
  .sgc-product-title__link,
.sgc-product-list
  .sgc-product-title[data-display-type="max_2"]
  .sgc-product-title__placeholder {
  display: -webkit-box;
  /* stylelint-disable-next-line property-no-deprecated */
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 2;
  /* stylelint-disable-next-line declaration-property-value-keyword-no-deprecated */
  word-break: break-word;
}

.sgc-product-list .product-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: flex-start;
}

.sgc-product-list .product-price__sale {
  margin-inline-end: 8px;
  font-family: var(--sale-desktop-font-family);
  font-size: var(--sale-desktop-font-size);
  font-style: var(--sale-desktop-font-style);
  font-weight: var(--sale-desktop-font-weight);
  line-height: var(--sale-desktop-line-height);
  color: rgb(var(--sale-color));
}

.sgc-product-list .sgc-product-card .product-price .product-price__sale {
  opacity: 0.8;
}

@media (max-width: 959px) {
  .sgc-product-list .product-price__sale {
    font-family: var(--sale-mobile-font-family);
    font-size: var(--sale-mobile-font-size);
    font-style: var(--sale-mobile-font-style);
    font-weight: var(--sale-mobile-font-weight);
    line-height: var(--sale-mobile-line-height);
  }
}

.sgc-product-list .product-price__origin {
  margin-inline-end: 8px;
  font-family: var(--origin-desktop-font-family);
  font-size: var(--origin-desktop-font-size);
  font-style: var(--origin-desktop-font-style);
  font-weight: var(--origin-desktop-font-weight);
  line-height: var(--origin-desktop-line-height);
  color: rgb(var(--origin-color));
  text-decoration: line-through;
}

@media (max-width: 959px) {
  .sgc-product-list .product-price__origin {
    font-family: var(--origin-mobile-font-family);
    font-size: var(--origin-mobile-font-size);
    font-style: var(--origin-mobile-font-style);
    font-weight: var(--origin-mobile-font-weight);
    line-height: var(--origin-mobile-line-height);
  }
}

.sgc-product-list .product-price__save {
  font-weight: 600;
  color: rgb(227 38 25 / 100%);
}

.sgc-product-list .product-price__save--text-style {
  padding: 2px 6px;
  font-size: 12px;
  background-color: rgb(227 38 25 / 10%);
  border-radius: 3px;
}

.sgc-product-list .sgc-product-buy-icon {
  position: absolute;
  inset-block-start: 10px;
  inset-inline-end: 10px;
  pointer-events: auto;
}

.sgc-product-list .sgc-product-buy-icon__button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  padding: 0;
  color: rgb(var(--icon-color));
  cursor: pointer;
  background: rgb(var(--icon-background-color));
  border: none;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgb(0 0 0 / 15%);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.sgc-product-list .sgc-product-buy-icon__button:hover {
  box-shadow: 0 4px 12px rgb(0 0 0 / 20%);
  transform: scale(1.1);
}

.sgc-product-list .sgc-product-buy-icon__button:active {
  transform: scale(0.95);
}

.sgc-product-list
  .sgc-product-buy-icon__button
  .sgc-product-buy-icon__cart-icon {
  width: 18px;
  height: 18px;
}

.sgc-product-list .sgc-product-buy-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 44px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  color: rgb(var(--buy-button-text-color));
  cursor: pointer;
  background-color: rgb(var(--buy-button-background-color));
  border: none;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.sgc-product-list .sgc-product-buy-button:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.sgc-product-list .sgc-product-buy-button:active {
  transform: translateY(0);
}

.sgc-product-list .sgc-product-buy-button:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

.sgc-product-list .sgc-product-buy-button:disabled:hover {
  transform: none;
}

@media (min-width: 960px) {
  .sgc-product-list .sgc-product-buy-button {
    min-height: 40px;
    padding: 10px 16px;
    font-size: 13px;
  }
}

@media (max-width: 959px) {
  .sgc-product-list .sgc-product-buy-button {
    width: 100%;
    min-height: 36px;
    padding: 8px 16px;
    font-size: 12px;
  }
}

.sgc-product-list .sgc-product-buy-button-text {
  white-space: nowrap;
}

@media (min-width: 960px) {
  .sgc-product-list .sgc-product-card__price-button-row .product-price {
    margin-block-end: 12px;
  }
}

@media (max-width: 959px) {
  .sgc-product-list
    .sgc-product-card__price-button-row[data-mobile-layout="compact"] {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: flex-start;
  }

  .sgc-product-list
    .sgc-product-card__price-button-row[data-mobile-layout="compact"]
    .product-price {
    flex: 1 1 auto;
    min-width: 0;
    margin-block-end: 0;
  }

  .sgc-product-list
    .sgc-product-card__price-button-row[data-mobile-layout="compact"]
    .sgc-product-buy-button-wrapper {
    flex: 0 0 auto;
    min-width: fit-content;
  }

  .sgc-product-list
    .sgc-product-card__price-button-row[data-mobile-layout="compact"]
    .sgc-product-buy-button {
    width: 100%;
    min-height: 28px;
    padding: 4px 12px;
    font-size: 11px;
    white-space: nowrap;
    border-radius: 4px;
  }
}
