.sgc-shopping-image *,
.sgc-shopping-image *::before,
.sgc-shopping-image *::after {
  box-sizing: border-box;
}

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

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

.sgc-shopping-image dl {
  margin-block: 0;
}

.sgc-shopping-image dd {
  margin-inline-start: 0;
}

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

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

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

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

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

.sgc-shopping-image p:first-child {
  margin-block-start: 0;
}

.sgc-shopping-image p:last-child {
  margin-block-end: 0;
}

.sgc-shopping-image {
  /**
   * 内容级的元素层级
   */
  --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-shopping-image .sgc-hidden {
  display: none !important;
}

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

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

.sgc-shopping-image .sgc-hidden-empty:empty {
  display: none;
}

.sgc-shopping-image .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-shopping-image .sgc-basic-style {
    font-size: var(
      --sgc-basic-mobile-font-size,
      var(--sgc-basic-font-size, revert)
    );
  }
}

.sgc-shopping-image .sgc-text-align-left {
  text-align: start;
}

.sgc-shopping-image .sgc-text-align-center {
  text-align: center;
}

.sgc-shopping-image .sgc-text-align-right {
  text-align: end;
}

.sgc-shopping-image .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-shopping-image .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-shopping-image .sgc-button:focus {
  outline: 0;
}

.sgc-shopping-image .sgc-button:disabled,
.sgc-shopping-image .sgc-button.disabled {
  cursor: not-allowed;
  opacity: 0.3;
}

.sgc-shopping-image .sgc-button.loading {
  position: relative;
  color: transparent !important;
}

.sgc-shopping-image .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-shopping-image .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-shopping-image .sgc-button--style-normal.sgc-button--effect-scan {
  overflow: hidden;
}

.sgc-shopping-image .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-shopping-image
  .sgc-button--style-normal.sgc-button--effect-scan:focus::after,
.sgc-shopping-image
  .sgc-button--style-normal.sgc-button--effect-scan:hover::after {
  transform: skew(-20deg) translateX(-150%);
}

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

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

.sgc-shopping-image .sgc-button--style-normal.sgc-button--effect-scale {
  position: relative;
}

.sgc-shopping-image .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-shopping-image
  .sgc-button--style-normal.sgc-button--effect-scale:focus::after,
.sgc-shopping-image
  .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-shopping-image .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-shopping-image .sgc-button--style-link:hover {
  text-decoration-thickness: 2px;
}

.sgc-shopping-image .sgc-button--style-arrow-button {
  --sgc-button-padding-block: 2px;
  --sgc-button-padding-inline: 4px;

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

.sgc-shopping-image .sgc-rte {
  overflow-wrap: break-word;
}

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

.sgc-shopping-image .sgc-rte::after {
  clear: both;
  display: block;
  content: "";
}

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

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

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

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

.sgc-shopping-image .sgc-rte iframe {
  max-width: 100%;
}

.sgc-shopping-image .sgc-rte p img {
  vertical-align: bottom;
}

.sgc-shopping-image .sgc-rte table {
  table-layout: fixed;
}

.sgc-shopping-image .sgc-theme-popover-content__text-click {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 280px;
  padding: 10px;
  margin: 0;
  background-color: rgb(
    var(--popover-background-color) / var(--popover-background-opacity)
  );
  border: var(--popover-border-width) solid rgb(var(--popover-border-color));
  border-radius: var(--popover-border-radius);
}

.sgc-shopping-image
  .sgc-theme-popover-content__text-click
  .sgc-theme-popover-content__text-title {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  font-family: var(--text-title-font-family);
  font-size: var(--text-title-desktop-font-size);
  font-style: var(--text-title-font-style);
  font-weight: var(--text-title-font-weight);
  line-height: var(--text-title-line-height);
  color: rgb(var(--text-title-color));
  letter-spacing: var(--text-title-letter-spacing);
  /* stylelint-disable-next-line property-no-deprecated */
  -webkit-box-orient: vertical;
}

.sgc-shopping-image
  .sgc-theme-popover-content__text-click
  .sgc-theme-popover-content__text-description {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  /* stylelint-disable-next-line property-no-deprecated */
  -webkit-box-orient: vertical;
}

.sgc-shopping-image
  .sgc-theme-popover-content__text-click
  .sgc-theme-popover-content__text-button {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  align-self: flex-start;
  padding: 0;
  font-size: 16px;
  line-height: 1.4;
  color: #000;
  text-decoration: none;
  cursor: pointer;
  background: transparent;
  border: none;
  transition: color 0.2s ease;
}

.sgc-shopping-image
  .sgc-theme-popover-content__text-click
  .sgc-theme-popover-content__text-button:hover {
  color: #111;
  text-decoration: underline;
}

.sgc-shopping-image
  .sgc-theme-popover-content__text-click
  .sgc-theme-popover-content__text-button:focus-visible {
  outline: 2px solid #000;
  outline-offset: 2px;
  border-radius: 2px;
}

.sgc-shopping-image
  .sgc-theme-popover-content__text-click
  .sgc-theme-popover-content__text-button
  .sgc-icon {
  width: 14px;
  height: 14px;
}

@media (max-width: 959px) {
  .sgc-shopping-image .sgc-theme-popover-content__text-click {
    max-width: 200px;
  }

  .sgc-shopping-image
    .sgc-theme-popover-content__text-click
    .sgc-theme-popover-content__text-title {
    font-size: var(--text-title-mobile-font-size);
  }
}

.sgc-shopping-image .sgc-theme-popover-content__text-fixed {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 280px;
  padding: 10px;
  background-color: rgb(
    var(--fixed-popover-background-color) /
      var(--fixed-popover-background-opacity)
  );
  border: var(--fixed-popover-border-width) solid
    rgb(var(--fixed-popover-border-color));
  border-radius: var(--fixed-popover-border-radius);
}

.sgc-shopping-image
  .sgc-theme-popover-content__text-fixed
  .sgc-theme-popover-content__text-info {
  display: flex;
  flex-direction: row;
  gap: 8px;
  justify-content: space-between;
  margin: 0;
  overflow: hidden;
  color: #fff;
}

.sgc-shopping-image
  .sgc-theme-popover-content__text-fixed
  .sgc-theme-popover-content__text-title {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  font-family: var(--text-title-font-family);
  font-size: var(--text-title-desktop-font-size);
  font-style: var(--text-title-font-style);
  font-weight: var(--text-title-font-weight);
  line-height: var(--text-title-line-height);
  color: rgb(var(--text-title-color));
  letter-spacing: var(--text-title-letter-spacing);
  /* stylelint-disable-next-line property-no-deprecated */
  -webkit-box-orient: vertical;
}

.sgc-shopping-image
  .sgc-theme-popover-content__text-fixed
  .sgc-theme-popover-content__text-description {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  /* stylelint-disable-next-line property-no-deprecated */
  -webkit-box-orient: vertical;
}

.sgc-shopping-image
  .sgc-theme-popover-content__text-fixed
  .sgc-theme-popover-content__text-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  padding: 0;
  color: #000;
  cursor: pointer;
  background-color: #fff;
  border: 1px solid rgb(0 0 0 / 30%);
  border-radius: 50%;
}

.sgc-shopping-image
  .sgc-theme-popover-content__text-fixed
  .sgc-theme-popover-content__text-icon
  svg {
  display: block;
  width: 10px;
  height: 10px;
  margin: 0;
  color: currentcolor;
}

.sgc-shopping-image
  .sgc-theme-popover-content__text-fixed
  .sgc-theme-popover-content__text-icon
  svg
  path {
  fill: none;
  stroke: currentcolor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 959px) {
  .sgc-shopping-image .sgc-theme-popover-content__text-fixed {
    min-width: 200px;
    max-width: 280px;
  }

  .sgc-shopping-image
    .sgc-theme-popover-content__text-fixed
    .sgc-theme-popover-content__text-title {
    font-size: var(--text-title-mobile-font-size);
  }
}

.sgc-shopping-image .sgc-theme-popover-product-card {
  display: flex;
  align-items: stretch;
  width: max-content;
  max-width: min(90vw, 320px);
  max-height: inherit;
  overflow: auto;
  background-color: rgb(
    var(--popover-background-color) / var(--popover-background-opacity)
  );
  border: var(--popover-border-width) solid rgb(var(--popover-border-color));
  border-radius: var(--popover-border-radius);
}

@media (max-width: 959px) {
  .sgc-shopping-image .sgc-theme-popover-product-card {
    max-width: min(90vw, 280px);
  }
}

.sgc-shopping-image .sgc-theme-popover-product-card--layout-row {
  flex-direction: row;
}

.sgc-shopping-image .sgc-theme-popover-product-card--layout-column {
  flex-direction: column;
  width: min(90vw, 200px);
  max-width: min(90vw, 200px);
  min-height: auto;
  max-height: inherit;
  overflow-y: auto;
}

.sgc-shopping-image .sgc-theme-popover-product-card--fixed {
  overflow: auto;
  background-color: rgb(
    var(--fixed-popover-background-color) /
      var(--fixed-popover-background-opacity)
  );
  border: var(--fixed-popover-border-width) solid
    rgb(var(--fixed-popover-border-color));
  border-radius: var(--fixed-popover-border-radius);
}

.sgc-shopping-image .sgc-theme-popover-product-card__media {
  position: relative;
  display: flex;
  flex-shrink: 0;
  align-self: stretch;
  overflow: hidden;
}

.sgc-shopping-image .sgc-theme-popover-product-card__media .default-image {
  background: #f3f3f3;
}

.sgc-shopping-image
  .sgc-theme-popover-product-card--layout-row
  .sgc-theme-popover-product-card__media {
  width: auto;
  min-width: 90px;
  max-width: 150px;
  min-height: auto;
  aspect-ratio: var(--product-card-image-ratio);
}

.sgc-shopping-image
  .sgc-theme-popover-product-card--layout-column
  .sgc-theme-popover-product-card__media {
  width: 100%;
  height: auto;
  min-height: auto;
  aspect-ratio: var(--product-card-image-ratio);
}

.sgc-shopping-image .sgc-theme-popover-product-card__media-link,
.sgc-shopping-image .sgc-theme-popover-product-card__placeholder {
  display: block;
  width: 100%;
  height: 100%;
}

.sgc-shopping-image .sgc-theme-popover-product-card__image,
.sgc-shopping-image .sgc-theme-popover-product-card__placeholder svg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sgc-shopping-image .sgc-theme-popover-product-card__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ececec;
}

.sgc-shopping-image .sgc-theme-popover-product-card__body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 4px;
  justify-content: space-around;
  min-width: 0;
  padding: 10px;
}

.sgc-shopping-image
  .sgc-theme-popover-product-card--layout-column
  .sgc-theme-popover-product-card__body {
  gap: 4px;
  padding: 10px;
}

.sgc-shopping-image .sgc-theme-popover-product-card__title,
.sgc-shopping-image .sgc-theme-popover-content__product-title {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  /* stylelint-disable-next-line property-no-deprecated */
  -webkit-box-orient: vertical;
  font-size: 16px;
  white-space: normal;
}

.sgc-shopping-image .sgc-theme-popover-product-card__meta,
.sgc-shopping-image .sgc-theme-popover-content__product-info {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: flex-end;
  justify-content: space-between;
  width: 100%;
  margin: 0;
}

.sgc-shopping-image .sgc-theme-popover-product-card__price,
.sgc-shopping-image .sgc-theme-popover-content__product-price {
  display: flex;
  flex: 1 1 auto;
  flex-flow: column nowrap;
  gap: 2px;
  align-items: flex-start;
  min-width: 0;
  margin: 0;
  font-size: 16px;
}

.sgc-shopping-image .sgc-theme-popover-product-card__price .compare,
.sgc-shopping-image .sgc-theme-popover-content__product-price .compare {
  font-size: 14px;
  text-decoration: line-through;
}

.sgc-shopping-image .sgc-theme-popover-content__product-quick-add-icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  padding: 0;
  color: #fff;
  cursor: pointer;
  background-color: #000;
  border: none;
  border-radius: 50%;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease;
}

.sgc-shopping-image .sgc-theme-popover-content__product-quick-add-icon:hover {
  transform: scale(1.05);
}

.sgc-shopping-image
  .sgc-theme-popover-content__product-quick-add-icon:disabled {
  cursor: not-allowed;
  opacity: 0.6;
  transform: none;
}

.sgc-shopping-image .sgc-theme-popover-content__product-quick-add-icon svg {
  width: 12px;
  height: 12px;
  color: currentcolor;
}

.sgc-shopping-image
  .sgc-theme-popover-content__product-quick-add-icon:focus-visible {
  outline: 2px solid currentcolor;
  outline-offset: 2px;
}

.sgc-shopping-image
  .sgc-theme-popover-product-card--fixed
  .sgc-theme-popover-content__product-title,
.sgc-shopping-image
  .sgc-theme-popover-product-card--fixed
  .sgc-theme-popover-product-card__price,
.sgc-shopping-image
  .sgc-theme-popover-product-card--fixed
  .sgc-theme-popover-content__product-price {
  color: #fff;
}

.sgc-shopping-image
  .sgc-theme-popover-product-card--fixed
  .sgc-theme-popover-content__product-price
  .compare,
.sgc-shopping-image
  .sgc-theme-popover-product-card--fixed
  .sgc-theme-popover-product-card__price
  .compare {
  color: rgb(255 255 255 / 70%);
}

.sgc-shopping-image
  .sgc-theme-popover-product-card--fixed
  .sgc-theme-popover-content__product-quick-add-icon {
  color: #000;
  background-color: #fff;
}

.sgc-shopping-image
  .sgc-theme-popover-product-card--fixed
  .sgc-theme-popover-content__product-quick-add-icon:focus-visible {
  outline-color: #fff;
}

.sgc-shopping-image
  .sgc-theme-popover-product-card[style*="flex-direction: column"]
  .sgc-theme-popover-content__product-quick-add-icon,
.sgc-shopping-image
  .sgc-theme-popover-product-card[style*="flex-direction:column"]
  .sgc-theme-popover-content__product-quick-add-icon {
  align-self: flex-end;
}

.sgc-shopping-image
  .sgc-theme-popover-product-card[style*="flex-direction: column"]
  .sgc-theme-popover-product-card__meta,
.sgc-shopping-image
  .sgc-theme-popover-product-card[style*="flex-direction:column"]
  .sgc-theme-popover-product-card__meta {
  align-items: flex-end;
}

@media (max-width: 959px) {
  .sgc-shopping-image .sgc-theme-popover-product-card {
    box-shadow: 0 12px 30px rgb(15 23 42 / 16%);
  }

  .sgc-shopping-image .sgc-theme-popover-product-card--layout-column {
    width: min(90vw, 160px);
    max-width: min(90vw, 160px);
    max-height: none;
    overflow: visible;
  }

  .sgc-shopping-image
    .sgc-theme-popover-product-card--layout-column
    .sgc-theme-popover-product-card__media {
    width: 100%;
    height: auto;
    min-height: auto;
    aspect-ratio: var(--product-card-image-ratio);
  }

  .sgc-shopping-image .sgc-theme-popover-product-card--layout-row {
    max-width: min(85vw, 240px);
    min-height: auto;
  }

  .sgc-shopping-image
    .sgc-theme-popover-product-card--layout-row
    .sgc-theme-popover-product-card__media {
    width: auto;
    min-width: 60px;
    max-width: 100px;
    min-height: auto;
    aspect-ratio: var(--product-card-image-ratio);
  }

  .sgc-shopping-image
    .sgc-theme-popover-product-card--layout-row
    .sgc-theme-popover-product-card__body {
    gap: 6px;
    padding: 8px;
  }

  .sgc-shopping-image
    .sgc-theme-popover-product-card--layout-row
    .sgc-theme-popover-product-card__title,
  .sgc-shopping-image
    .sgc-theme-popover-product-card--layout-row
    .sgc-theme-popover-content__product-title {
    -webkit-line-clamp: 1;
    font-size: 14px;
  }

  .sgc-shopping-image
    .sgc-theme-popover-product-card--layout-row
    .sgc-theme-popover-product-card__meta,
  .sgc-shopping-image
    .sgc-theme-popover-product-card--layout-row
    .sgc-theme-popover-content__product-info {
    gap: 6px;
    align-items: center;
  }

  .sgc-shopping-image
    .sgc-theme-popover-product-card--layout-row
    .sgc-theme-popover-product-card__price,
  .sgc-shopping-image
    .sgc-theme-popover-product-card--layout-row
    .sgc-theme-popover-content__product-price {
    font-size: 13px;
  }

  .sgc-shopping-image
    .sgc-theme-popover-product-card--layout-row
    .sgc-theme-popover-product-card__price
    .compare,
  .sgc-shopping-image
    .sgc-theme-popover-product-card--layout-row
    .sgc-theme-popover-content__product-price
    .compare {
    font-size: 11px;
  }

  .sgc-shopping-image
    .sgc-theme-popover-product-card--layout-row
    .sgc-theme-popover-product-card__price
    .current {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .sgc-shopping-image
    .sgc-theme-popover-product-card--layout-row
    .sgc-theme-popover-content__product-quick-add-icon {
    width: 22px;
    height: 22px;
  }

  .sgc-shopping-image
    .sgc-theme-popover-product-card--layout-row
    .sgc-theme-popover-content__product-quick-add-icon
    svg {
    width: 11px;
    height: 11px;
  }
}

.sgc-shopping-image .sgc-theme-popover-image-card {
  display: flex;
  flex-direction: row;
  gap: 0;
  align-items: stretch;
  width: max-content;
  max-width: min(90vw, 330px);
  min-height: 92px;
  max-height: inherit;
  background-color: rgb(
    var(--popover-background-color) / var(--popover-background-opacity)
  );
  border: var(--popover-border-width) solid rgb(var(--popover-border-color));
  border-radius: var(--popover-border-radius);
}

@media (max-width: 959px) {
  .sgc-shopping-image .sgc-theme-popover-image-card {
    max-width: min(90vw, 280px);
  }
}

/* layout modifiers */

.sgc-shopping-image .sgc-theme-popover-image-card--layout-row {
  flex-direction: row;
}

.sgc-shopping-image .sgc-theme-popover-image-card--layout-column {
  flex-direction: column;
  width: min(90vw, 200px);
  max-width: min(90vw, 200px);
  min-height: auto;
  max-height: inherit;
  overflow-y: auto;
}

.sgc-shopping-image .sgc-theme-popover-image-card--fixed {
  --image-card-surface-color: rgb(12 12 12 / 68%);
  --image-card-text-color: #fff;
  --image-card-subtext-color: rgb(255 255 255 / 75%);
  --image-card-shadow: none;

  overflow: auto;
  background-color: rgb(
    var(--fixed-popover-background-color) /
      var(--fixed-popover-background-opacity)
  );
  border: var(--fixed-popover-border-width) solid
    rgb(var(--fixed-popover-border-color));
  border-radius: var(--fixed-popover-border-radius);
  backdrop-filter: blur(12px);
}

.sgc-shopping-image .sgc-theme-popover-image-card__media {
  position: relative;
  display: flex;
  flex-shrink: 0;
  align-self: stretch;
  overflow: hidden;
  background: #f4f4f4;
}

.sgc-shopping-image
  .sgc-theme-popover-image-card--layout-row
  .sgc-theme-popover-image-card__media {
  width: auto;
  min-width: 80px;
  max-width: 150px;
  min-height: auto;
  aspect-ratio: var(--image-card-media-ratio);
}

.sgc-shopping-image
  .sgc-theme-popover-image-card--layout-column
  .sgc-theme-popover-image-card__media {
  width: 100%;
  height: auto;
  min-height: auto;
  aspect-ratio: var(--image-card-media-ratio);
}

.sgc-shopping-image
  .sgc-theme-popover-image-card--fixed
  .sgc-theme-popover-image-card__media {
  background: rgb(255 255 255 / 14%);
}

.sgc-shopping-image .sgc-theme-popover-image-card__image,
.sgc-shopping-image .sgc-theme-popover-image-card__placeholder {
  display: block;
  width: 100%;
  height: 100%;
}

.sgc-shopping-image .sgc-theme-popover-image-card__image {
  object-fit: cover;
}

.sgc-shopping-image .sgc-theme-popover-image-card__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ececec;
}

.sgc-shopping-image .sgc-theme-popover-image-card__placeholder svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sgc-shopping-image .sgc-theme-popover-image-card__body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
  padding: 10px;
}

.sgc-shopping-image
  .sgc-theme-popover-image-card--layout-column
  .sgc-theme-popover-image-card__body {
  gap: 4px;
  padding: 10px;
}

.sgc-shopping-image .sgc-theme-popover-image-card__title,
.sgc-shopping-image .sgc-theme-popover-content__image-with-text-title {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  font-family: var(--image-with-text-title-font-family);
  font-size: var(--image-with-text-title-desktop-font-size);
  font-style: var(--image-with-text-title-font-style);
  font-weight: var(--image-with-text-title-font-weight);
  line-height: var(--image-with-text-title-line-height);
  color: rgb(var(--image-with-text-title-color));
  letter-spacing: var(--image-with-text-title-letter-spacing);
  /* stylelint-disable-next-line property-no-deprecated */
  -webkit-box-orient: vertical;
}

.sgc-shopping-image
  .sgc-theme-popover-image-card--layout-column
  .sgc-theme-popover-image-card__title,
.sgc-shopping-image
  .sgc-theme-popover-image-card--layout-column
  .sgc-theme-popover-content__image-with-text-title {
  -webkit-line-clamp: 2;
  font-size: 15px;
  white-space: normal;
}

.sgc-shopping-image .sgc-theme-popover-image-card__description,
.sgc-shopping-image .sgc-theme-popover-content__image-with-text-description {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  color: #5c5c5c;
  /* stylelint-disable-next-line property-no-deprecated */
  -webkit-box-orient: vertical;
}

.sgc-shopping-image
  .sgc-theme-popover-image-card--layout-column
  .sgc-theme-popover-image-card__description,
.sgc-shopping-image
  .sgc-theme-popover-image-card--layout-column
  .sgc-theme-popover-content__image-with-text-description {
  -webkit-line-clamp: 2;
  font-size: 14px;
}

.sgc-shopping-image
  .sgc-theme-popover-image-card--fixed
  .sgc-theme-popover-image-card__title,
.sgc-shopping-image
  .sgc-theme-popover-image-card--fixed
  .sgc-theme-popover-content__image-with-text-title {
  color: #fff;
}

.sgc-shopping-image
  .sgc-theme-popover-image-card--fixed
  .sgc-theme-popover-image-card__description,
.sgc-shopping-image
  .sgc-theme-popover-image-card--fixed
  .sgc-theme-popover-content__image-with-text-description {
  color: rgb(255 255 255 / 75%);
}

.sgc-shopping-image .sgc-theme-popover-image-card__button,
.sgc-shopping-image .sgc-theme-popover-content__image-with-text-button {
  display: inline-flex;
  gap: 4px;
  align-items: center;
  justify-content: flex-start;
  width: fit-content;
  padding: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  background: transparent;
  border: none;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.sgc-shopping-image .sgc-theme-popover-image-card__button:hover,
.sgc-shopping-image .sgc-theme-popover-content__image-with-text-button:hover {
  color: var(--image-card-text-color);
  text-decoration: underline;
}

.sgc-shopping-image .sgc-theme-popover-image-card__button .sgc-icon,
.sgc-shopping-image
  .sgc-theme-popover-content__image-with-text-button
  .sgc-icon {
  width: 10px;
  height: 10px;
}

.sgc-shopping-image .sgc-theme-popover-image-card__button:focus-visible,
.sgc-shopping-image
  .sgc-theme-popover-content__image-with-text-button:focus-visible {
  outline: 2px solid currentcolor;
  outline-offset: 2px;
  border-radius: 2px;
}

.sgc-shopping-image
  .sgc-theme-popover-image-card--fixed
  .sgc-theme-popover-image-card__button,
.sgc-shopping-image
  .sgc-theme-popover-image-card--fixed
  .sgc-theme-popover-content__image-with-text-button {
  color: #fff;
}

.sgc-shopping-image
  .sgc-theme-popover-image-card--fixed
  .sgc-theme-popover-image-card__button
  path,
.sgc-shopping-image
  .sgc-theme-popover-image-card--fixed
  .sgc-theme-popover-content__image-with-text-button
  path {
  stroke: #fff;
}

.sgc-shopping-image .sgc-theme-popover-image-card__body a {
  text-decoration: none;
}

@media (max-width: 959px) {
  .sgc-shopping-image .sgc-theme-popover-image-card {
    min-height: auto;
  }

  .sgc-shopping-image .sgc-theme-popover-image-card--layout-column {
    width: min(90vw, 180px);
    max-width: min(90vw, 180px);
    overflow: visible;
  }

  .sgc-shopping-image
    .sgc-theme-popover-image-card--layout-column
    .sgc-theme-popover-image-card__media {
    width: 100%;
    height: auto;
    aspect-ratio: var(--image-card-media-ratio);
  }

  .sgc-shopping-image .sgc-theme-popover-image-card--layout-row {
    max-width: min(90vw, 200px);
    min-height: auto;
  }

  .sgc-shopping-image
    .sgc-theme-popover-image-card--layout-row
    .sgc-theme-popover-image-card__media {
    width: auto;
    min-width: 60px;
    max-width: 100px;
    min-height: auto;
    aspect-ratio: var(--image-card-media-ratio);
  }

  .sgc-shopping-image .sgc-theme-popover-image-card__image,
  .sgc-shopping-image .sgc-theme-popover-image-card__placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .sgc-shopping-image .sgc-theme-popover-image-card__title,
  .sgc-shopping-image .sgc-theme-popover-content__image-with-text-title {
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
  }

  .sgc-shopping-image
    .sgc-theme-popover-image-card--layout-column
    .sgc-theme-popover-image-card__title,
  .sgc-shopping-image
    .sgc-theme-popover-image-card--layout-column
    .sgc-theme-popover-content__image-with-text-title {
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
  }

  .sgc-shopping-image
    .sgc-theme-popover-image-card--layout-column
    .sgc-theme-popover-image-card__description,
  .sgc-shopping-image
    .sgc-theme-popover-image-card--layout-column
    .sgc-theme-popover-content__image-with-text-description {
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
  }
}

@keyframes sgc-shopping-image-progressbar-animation {
  0% {
    transform: translateX(-100%);
  }

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

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

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

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

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

@keyframes sgc-shopping-image-close-wrapper {
  to {
    clip-path: rect(auto auto auto auto);
  }
}

.sgc-shopping-image {
  display: block;
  width: 100%;
  margin: 0 auto;
  background-color: rgb(var(--sgc-shopping-images-background-color));
}

.sgc-shopping-image .sgc-shopping-image__header {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  padding-block-start: 60px;
  padding-inline: 40px;
  color: rgb(var(--sgc-shopping-images-title-color));
}

.sgc-shopping-image .sgc-shopping-image__title {
  font-family: var(--sgc-shopping-images-title-font-family, revert);
  font-size: var(--sgc-shopping-images-title-font-size);
  font-weight: var(--sgc-shopping-images-title-font-weight);
  line-height: var(--sgc-shopping-images-title-line-height);
  color: rgb(var(--sgc-shopping-images-title-color));
  letter-spacing: var(--sgc-shopping-images-title-letter-spacing);
}

@media (max-width: 959px) {
  .sgc-shopping-image .sgc-shopping-image__header {
    padding-block-start: 40px;
    padding-inline: 20px;
  }

  .sgc-shopping-image .sgc-shopping-image__title {
    font-size: var(--sgc-shopping-images-title-mobile-font-size);
  }
}

.sgc-shopping-image .sgc-shopping-image-list {
  display: flex;
  flex-direction: column;
}

@media (max-width: 959px) {
  .sgc-shopping-image
    .sgc-shopping-image-list:has(
      .sgc-shopping-image-list__carousel[data-carousel-enabled="true"]
    ) {
    padding-inline: 0;
  }
}

.sgc-shopping-image .sgc-shopping-image-list__wrapper {
  position: relative;
}

.sgc-shopping-image .sgc-shopping-image-list__carousel {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
}

@media (min-width: 960px) {
  .sgc-shopping-image
    .sgc-shopping-image-list__carousel[data-carousel-enabled="true"][data-desktop-pagination-type="left-right-arrow"]
    ~ .sgc-shopping-image-list__left-right-arrows {
    display: flex;
  }
  .sgc-shopping-image
    .sgc-shopping-image-list__carousel[data-carousel-enabled="true"][data-desktop-pagination-type="bottom-arrow"]
    ~ .sgc-shopping-image-list__bottom-arrow {
    display: flex;
  }
  .sgc-shopping-image
    .sgc-shopping-image-list__carousel[data-carousel-enabled="true"][data-desktop-pagination-type="progressbar"]
    ~ .sgc-shopping-image-list__progressbar {
    display: flex;
  }
  .sgc-shopping-image
    .sgc-shopping-image-list__carousel[data-carousel-enabled="true"][data-desktop-pagination-type="simple"]
    ~ .sgc-shopping-image-list__pagination {
    display: flex;
  }
}

@media (max-width: 959px) {
  .sgc-shopping-image
    .sgc-shopping-image-list__carousel[data-carousel-enabled="true"][data-mobile-pagination-type="touch"] {
    /* 手势滚动不显示任何翻页组件 */
  }
  .sgc-shopping-image
    .sgc-shopping-image-list__carousel[data-carousel-enabled="true"][data-mobile-pagination-type="left-right-arrow"]
    ~ .sgc-shopping-image-list__left-right-arrows {
    display: flex;
  }
  .sgc-shopping-image
    .sgc-shopping-image-list__carousel[data-carousel-enabled="true"][data-mobile-pagination-type="progressbar"]
    ~ .sgc-shopping-image-list__progressbar {
    display: flex;
  }
  .sgc-shopping-image
    .sgc-shopping-image-list__carousel[data-carousel-enabled="true"][data-mobile-pagination-type="simple"]
    ~ .sgc-shopping-image-list__pagination {
    display: flex;
  }
}

.sgc-shopping-image .sgc-shopping-image-list__slides {
  display: flex;
  flex-direction: row;
  gap: 0;
  align-items: center;
  width: 100%;
  height: var(--sgc-slide-desktop-height, auto);
  aspect-ratio: var(--sgc-slide-desktop-aspect-ratio, auto);
}

@media (max-width: 959px) {
  .sgc-shopping-image .sgc-shopping-image-list__slides {
    height: var(--sgc-slide-mobile-height, auto);
    aspect-ratio: var(--sgc-slide-mobile-aspect-ratio, auto);
  }
}

.sgc-shopping-image .sgc-shopping-image-list__slide {
  position: relative;
  box-sizing: border-box;
  flex: 0 0 auto;
  align-self: stretch;
  overflow: hidden;
  transform: translate3d(0, 0, 0);
}

.sgc-shopping-image
  .sgc-shopping-image-list__carousel[data-carousel-enabled="false"]
  .sgc-shopping-image-list__slides {
  gap: 40px;
}

@media (max-width: 959px) {
  .sgc-shopping-image
    .sgc-shopping-image-list__carousel[data-carousel-enabled="false"]
    .sgc-shopping-image-list__slides {
    gap: 0;
  }
}

.sgc-shopping-image
  .sgc-shopping-image-list__carousel[data-carousel-enabled="false"]
  .sgc-shopping-image-list__slide {
  flex: 0 0 100%;
}

@media (max-width: 959px) {
  .sgc-shopping-image
    .sgc-shopping-image-list__carousel[data-carousel-enabled="false"]
    .sgc-shopping-image-list__slide {
    flex: 0 0 100%;
  }
}

.sgc-shopping-image
  .sgc-shopping-image-list__carousel[data-carousel-enabled="false"][data-slide-column="2"]
  .sgc-shopping-image-list__slide {
  flex: 0 0 calc((100% - 40px) / 2);
}

@media (max-width: 959px) {
  .sgc-shopping-image
    .sgc-shopping-image-list__carousel[data-carousel-enabled="false"][data-slide-column="2"]
    .sgc-shopping-image-list__slide {
    flex: 0 0 100%;
  }
}

.sgc-shopping-image
  .sgc-shopping-image-list__carousel[data-carousel-enabled="false"][data-slide-column="3"]
  .sgc-shopping-image-list__slide {
  flex: 0 0 calc((100% - 80px) / 3);
}

@media (max-width: 959px) {
  .sgc-shopping-image
    .sgc-shopping-image-list__carousel[data-carousel-enabled="false"][data-slide-column="3"]
    .sgc-shopping-image-list__slide {
    flex: 0 0 100%;
  }
}

.sgc-shopping-image .sgc-shopping-image-list__image-wrapper {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.sgc-shopping-image .sgc-shopping-image-list__image-wrapper > img,
.sgc-shopping-image .sgc-shopping-image-list__image-wrapper > svg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--sgc-slide-desktop-image-object-position);
}

@media (max-width: 959px) {
  .sgc-shopping-image .sgc-shopping-image-list__image-wrapper > img,
  .sgc-shopping-image .sgc-shopping-image-list__image-wrapper > svg {
    object-position: var(--sgc-slide-mobile-image-object-position);
  }
}

.sgc-shopping-image .sgc-shopping-image-list__image-wrapper::after {
  position: absolute;
  inset-block-start: 0;
  inset-inline-start: 0;
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgb(0, 0, 0, var(--sgc-slide-image-mask-opacity));
}

.sgc-shopping-image .sgc-shopping-image-list__image-wrapper .default-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-color: #f3f3f3;
}

.sgc-shopping-image .sgc-shopping-image-list__content-wrapper {
  position: absolute;
  inset-block-start: 0;
  inset-inline-start: 0;
  display: flex;
  width: 100%;
  height: 100%;
  user-select: none;
}

.sgc-shopping-image .sgc-shopping-image-list__progressbar {
  position: absolute;
  inset-block-end: 20px;
  inset-inline: 0;
  z-index: var(--sgc-z-index-active);
  display: none;
  gap: 8px;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0 10%;
}

.sgc-shopping-image .sgc-shopping-image-list__progressbar button[name="pager"] {
  position: relative;
  display: block;
  flex: 1 0 0;
  max-width: 120px;
  height: 6px;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  outline: none;
  background-color: hsl(0deg 0% 75% / 30%);
  border: none;
  border-radius: 0;
}

.sgc-shopping-image
  .sgc-shopping-image-list__progressbar
  button[name="pager"].is-active::after {
  position: absolute;
  inset-block-start: 0;
  inset-inline-start: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: #fff;
  transform: translateX(-100%);
  animation: sgc-shopping-image-progressbar-animation
    var(--sgc-transition-animation-time) linear forwards;
}

@media (max-width: 959px) {
  .sgc-shopping-image .sgc-shopping-image-list__progressbar {
    inset-block-end: 10px;
  }

  .sgc-shopping-image
    .sgc-shopping-image-list__progressbar
    button[name="pager"] {
    max-width: 60px;
  }
}

.sgc-shopping-image .sgc-shopping-image-list__pagination {
  position: absolute;
  inset-block-end: 20px;
  inset-inline: 0;
  z-index: var(--sgc-z-index-active);
  display: none;
  gap: 6px;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 10px;
}

@media (max-width: 959px) {
  .sgc-shopping-image .sgc-shopping-image-list__pagination {
    inset-block-end: 10px;
  }
}

.sgc-shopping-image .sgc-shopping-image-list__pagination button[name="pager"] {
  position: relative;
  display: block;
  width: 6px;
  height: 6px;
  padding: 0;
  cursor: pointer;
  background: #5c5a57;
  border: none;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.sgc-shopping-image
  .sgc-shopping-image-list__pagination
  button[name="pager"]:hover {
  opacity: 0.8;
}

.sgc-shopping-image
  .sgc-shopping-image-list__pagination
  button[name="pager"].is-active {
  width: 10px;
  height: 10px;
  background: #fdf9ee;
}

.sgc-shopping-image .sgc-shopping-image-list__bottom-arrow {
  position: absolute;
  inset-block-end: 20px;
  inset-inline: 0;
  z-index: var(--sgc-z-index-active);
  display: none;
  gap: 10px;
  justify-content: center;
  width: 100%;
}

.sgc-shopping-image .sgc-shopping-image-list__bottom-arrow button[name="prev"],
.sgc-shopping-image .sgc-shopping-image-list__bottom-arrow button[name="next"] {
  position: relative;
  display: flex;
  place-items: center;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: #000;
  cursor: pointer;
  background-color: #fff;
  border: none;
  border-radius: 50%;
}

.sgc-shopping-image
  .sgc-shopping-image-list__bottom-arrow
  button[name="prev"]
  .sgc-icon,
.sgc-shopping-image
  .sgc-shopping-image-list__bottom-arrow
  button[name="next"]
  .sgc-icon {
  position: absolute;
  inset-block-start: 50%;
  inset-inline-start: 50%;
  width: 12px;
  height: 12px;
  overflow: visible;
  transform: translate(-50%, -50%);
  transition: all 0.2s ease-in-out;
}

.sgc-shopping-image
  .sgc-shopping-image-list__bottom-arrow
  button[name="prev"]::after,
.sgc-shopping-image
  .sgc-shopping-image-list__bottom-arrow
  button[name="next"]::after {
  box-sizing: border-box;
  display: block;
  width: 24px;
  height: 2px;
  content: "";
  background-color: #fff;
  opacity: 0;
  transform: scaleX(0.5);
  transform-origin: center;
  transition: all 0.2s ease-in-out;
}

@media (max-width: 959px) {
  .sgc-shopping-image .sgc-shopping-image-list__bottom-arrow {
    inset-block-end: 10px;
  }
}

.sgc-shopping-image .sgc-shopping-image-list__left-right-arrows {
  position: absolute;
  inset-block-start: 0;
  inset-inline-start: 0;
  z-index: var(--sgc-z-index-active);
  display: none;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.sgc-shopping-image
  .sgc-shopping-image-list__left-right-arrows
  button[name="prev"] {
  position: absolute;
  inset-block-start: 50%;
  inset-inline-start: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  pointer-events: auto;
  cursor: pointer;
  outline: none;
  background-color: transparent;
  border: 1.5px solid #fdf9ee;
  border-radius: 90px;
  opacity: 0.8;
  transform: translateY(-50%);
  transition: all 0.2s ease-in-out;
}

.sgc-shopping-image
  .sgc-shopping-image-list__left-right-arrows
  button[name="prev"]
  svg {
  width: 23px;
  height: 18px;
  pointer-events: auto;
  transition: all 0.2s ease-in-out;
}

.sgc-shopping-image
  .sgc-shopping-image-list__left-right-arrows
  button[name="prev"]:hover {
  border-color: #fdf9ee;
  opacity: 1;
}

.sgc-shopping-image
  .sgc-shopping-image-list__left-right-arrows
  button[name="next"] {
  position: absolute;
  inset-block-start: 50%;
  inset-inline-end: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  pointer-events: auto;
  cursor: pointer;
  outline: none;
  background-color: transparent;
  border: 1.5px solid #fdf9ee;
  border-radius: 90px;
  opacity: 0.8;
  transform: translateY(-50%);
  transition: all 0.2s ease-in-out;
}

.sgc-shopping-image
  .sgc-shopping-image-list__left-right-arrows
  button[name="next"]
  svg {
  width: 23px;
  height: 18px;
  pointer-events: auto;
  transition: all 0.2s ease-in-out;
}

.sgc-shopping-image
  .sgc-shopping-image-list__left-right-arrows
  button[name="next"]:hover {
  border-color: #fdf9ee;
  opacity: 1;
}

@media (max-width: 959px) {
  .sgc-shopping-image
    .sgc-shopping-image-list__left-right-arrows
    button[name="prev"],
  .sgc-shopping-image
    .sgc-shopping-image-list__left-right-arrows
    button[name="next"] {
    width: 32px;
    height: 32px;
  }

  .sgc-shopping-image
    .sgc-shopping-image-list__left-right-arrows
    button[name="prev"]
    svg,
  .sgc-shopping-image
    .sgc-shopping-image-list__left-right-arrows
    button[name="next"]
    svg {
    width: 18px;
    height: 14px;
  }

  .sgc-shopping-image
    .sgc-shopping-image-list__left-right-arrows
    button[name="prev"] {
    inset-inline-start: 0;
  }

  .sgc-shopping-image
    .sgc-shopping-image-list__left-right-arrows
    button[name="next"] {
    inset-inline-end: 0;
  }
}

.sgc-shopping-image .sgc-custom-group {
  position: relative;
  z-index: var(--sgc-z-index-hover);
  background-color: rgb(
    var(--custom-group-background-color) /
      var(--custom-group-background-opacity)
  );
}

.sgc-shopping-image .sgc-custom-group .sgc-block-title {
  width: 100%;
}

.sgc-shopping-image .sgc-custom-group .sgc-block-subtitle {
  width: 100%;
}

.sgc-shopping-image .sgc-custom-group .sgc-block-description {
  width: 100%;
}
