/** Shopify CDN: Minification failed

Line 437:0 Expected "}" to go with "{"

**/
/* START_SECTION:tapo-upsell-product-showcase1 (INDEX:80) */
.tapo-product-list {
    padding-block: var(--tapo-section-padding-top) var(--tapo-section-padding-bottom);
    background: var(--tapo-section-background);
    font-family: Poppins, sans-serif;
  }

  .tapo-product-list__inner {
    width: min(calc(100% - 32px), var(--tapo-section-width));
    margin-inline: auto;
  }

  .tapo-product-list__header {
    margin-bottom: 28px;
    text-align: center;
  }

  .tapo-product-list__heading {
    margin: 0;
    font-size: var(--tapo-heading-size);
    font-weight: var(--tapo-heading-weight);
    line-height: 1.1;
  }

  .tapo-product-list__subheading {
    max-width: 720px;
    margin: 12px auto 0;
    color: rgb(var(--text-color) / 0.68);
    font-size: var(--tapo-subheading-size);
    font-weight: var(--tapo-subheading-weight);
    line-height: 1.5;
  }

  .tapo-product-list__subheading > * {
    margin: 0;
  }

  .tapo-product-list__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--tapo-card-gap);
  }

  .tapo-product-card {
    position: relative;
    display: grid;
    width: 100%;
    min-width: 0;
    grid-template-columns: clamp(260px, 48%, 340px) minmax(0, 1fr);
    min-height: 420px;
    max-height: 520px;
    overflow: hidden;
    border-radius: var(--tapo-card-radius);
    background: var(--tapo-card-background);
    box-shadow: none;
    container-type: inline-size;
  }

  .tapo-product-card__media {
    position: relative;
    min-width: 0;
    min-height: 100%;
    background: #e9edf2;
  }

  .tapo-product-card__image-link,
  .tapo-product-card__image-link picture,
  .tapo-product-card__image,
  .tapo-product-card__placeholder {
    display: block;
    width: 100%;
    height: 100%;
  }

  .tapo-product-card__image {
    object-fit: var(--tapo-image-fit, cover);
    transition: transform 280ms ease;
  }

  .tapo-product-card:hover .tapo-product-card__image {
    transform: scale(1.012);
  }

  .tapo-product-card__badge {
    position: absolute;
    z-index: 1;
    top: 16px;
    left: 16px;
    max-width: calc(100% - 32px);
    padding: 8px 11px;
    border-radius: 999px;
    background: var(--tapo-badge-background, #ffd887);
    color: var(--tapo-badge-color, #111);
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 1.1;
  }

  .tapo-product-card__content {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 14px;
    padding: clamp(20px, 3vw, 28px);
  }

  .tapo-product-card__title {
    display: -webkit-box;
    overflow: hidden;
    margin: 0;
    font-size: clamp(1.15rem, 2.1vw, 1.45rem);
    font-weight: 600;
    line-height: 1.15;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .tapo-product-card__title a {
    color: inherit;
    text-decoration: none;
  }

  .tapo-product-card__gift-label,
  .tapo-product-card__gift-title,
  .tapo-product-card__gift-value {
    margin: 0;
  }

  .tapo-product-card__gift-header {
    display: flex;
    min-height: 32px;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 7px;
  }

  .tapo-product-card__gift-label {
    font-size: 0.82rem;
    font-weight: 650;
  }

  .tapo-product-card__gift-track-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--tapo-gift-radius, 12px);
  background: var(--tapo-gift-background, #fff);
}

/* 唯一的固定边框 */
.tapo-product-card__gift-track-wrap::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  box-sizing: border-box;
  pointer-events: none;
  border: var(--tapo-gift-border-width, 0)
    solid var(--tapo-gift-border-color, transparent);
  border-radius: inherit;
}

  .tapo-product-card__gift-arrow {
    display: inline-flex;
    position: absolute;
    z-index: 2;
    top: 50%;
    right: 15px;
    width: 30px;
    height: 30px;
    transform: translateY(-50%);
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid var(--tapo-gift-border-color, #d9dfe6);
    border-radius: 999px;
    background: var(--tapo-gift-background, #fff);
    color: var(--tapo-accent);
    font: inherit;
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
  }

  .tapo-product-card__gift-arrow:focus-visible,
  .tapo-product-card__gift-track:focus-visible {
    outline: 3px solid var(--tapo-accent);
    outline-offset: 2px;
  }

  .tapo-product-card__gift-track {
    display: flex;
    width: 100%;
    overflow-x: auto;
    border-radius: var(--tapo-gift-radius, 12px);
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  

  .tapo-product-card__gift-track::-webkit-scrollbar {
    display: none;
  }

  .tapo-product-card__gift-row {
  display: flex;
  box-sizing: border-box;
  width: 100%;
  min-width: 100%;
  min-height: 62px;
  flex: 0 0 100%;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border: var(--tapo-gift-border-width, 0) solid var(--tapo-gift-border-color, transparent);
  border-radius: var(--tapo-gift-radius, 12px);
  background: var(--tapo-gift-background, #fff);
  scroll-snap-align: start;
  scroll-snap-stop: always;
}
.tapo-product-card__gift-track-wrap--has-arrow .tapo-product-card__gift-row {
    padding-right: 60px;
  }
  .tapo-product-card__gift-image {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    border-radius: 8px;
    object-fit: contain;
  }

  .tapo-product-card__gift-title {
    display: -webkit-box;
    overflow: hidden;
    font-size: 0.85rem;
    font-weight: 600;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .tapo-product-card__gift-value {
    margin-top: 2px;
    color: #666;
    font-size: 0.78rem;
  }

  .tapo-product-card__highlights {
    min-height: 62px;
    max-height: 86px;
    overflow: hidden;
    color: var(--tapo-accent);
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.35;
  }

  .tapo-product-card__highlights ul {
    display: grid;
    gap: 4px;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .tapo-product-card__highlights > div,
  .tapo-product-card__highlights > div > ul {
    margin: 0;
    padding: 0;
  }

  .tapo-product-card__highlights li:nth-child(n + 4) {
    display: none;
  }

  .tapo-product-card__highlights li {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
  }

  .tapo-product-card__highlights p {
    margin: 0;
  }

  .tapo-product-card__footer {
    display: grid;
    gap: 12px;
    margin-top: auto;
  }

  .tapo-product-card__price {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 8px;
  }

  .tapo-product-card__current-price {
    font-size: 1.28rem;
    font-weight: 700;
  }

  .tapo-product-card__compare-price {
    color: #a4a6aa;
    font-size: 1rem;
    font-weight: 600;
  }

  .tapo-product-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .tapo-product-card__form {
    display: contents;
  }

  .tapo-product-card__button {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    padding: 10px 17px;
    border: 1px solid var(--tapo-accent);
    border-radius: 999px;
    font: inherit;
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
  }

  .tapo-product-card__button:active {
    transform: translateY(1px);
  }

  .tapo-product-card__button--secondary {
    background: #fff;
    color: #111;
  }

  .tapo-product-card__button--primary {
    background: var(--tapo-accent);
    color: #fff;
  }

  .tapo-product-card__button:disabled {
    cursor: not-allowed;
    opacity: 0.5;
  }

  .tapo-product-card__empty {
    display: grid;
    min-height: 360px;
    place-items: center;
    padding: 32px;
    text-align: center;
  }

  @container (max-width: 620px) {
    .tapo-product-card {
      grid-template-columns: 1fr;
    }

    .tapo-product-card__media {
      min-height: 280px;
    }
  }

  @media screen and (max-width: 1199px) {
  @media screen and (max-width: 1099px) {
    .tapo-product-list__grid {
      grid-template-columns: 1fr;
    }
  }

  @media screen and (min-width: 1100px) and (max-width: 2000px) {
    .tapo-product-list__grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }

  @media screen and (max-width: 749px) {
    .tapo-product-list__inner {
      width: min(calc(100% - 24px), var(--tapo-section-width));
    }

    .tapo-product-card {
      grid-template-columns: 1fr;
      max-height: none;
    }

    .tapo-product-card__media {
      position: relative;
      min-height: 0;
      aspect-ratio: 5 / 3;
      overflow: hidden;
    }

    .tapo-product-card__image-link {
      position: absolute;
      inset: 0;
    }

    .tapo-product-card__content {
      padding: 20px;
    }

    .tapo-product-card__title {
      -webkit-line-clamp: 2;
    }

    .tapo-product-card__actions {
      display: grid;
      grid-template-columns: 1fr 1fr;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .tapo-product-card__image,
    .tapo-product-card__button {
      transition: none;
    }
  }
/* END_SECTION:tapo-upsell-product-showcase1 */
