/** Shopify CDN: Minification failed

Line 9:12 Expected identifier but found whitespace
Line 9:14 Unexpected "{"
Line 9:20 Expected ":"

**/
.black-friday-product {
      width: {{width}};
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      padding: 20px 0;
      border-radius: 20px;

    }

    .product-cart {
      backdrop-filter: blur(5.449999809265137px);
      position: relative;

    }

  .product-sale {
    width: 52px;
    height: 52px;
    background: url(/cdn/shop/files/product-sale.png?v=1761619197) no-repeat
      center center/cover;
    position: absolute;
    top: 0;
    line-height: 20px;
    z-index:10;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    left: 20px;
  }

  .product-content {
    width: 90%;
    display: flex;
    flex-wrap: wrap;
    overflow:hidden;
    margin: auto;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 20px;
  }

  .product-info {
    width: 100%;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    color: #fff;
  }

  .product-info span {
    font-size: 18px;
    text-align: center;
    color: #fff;
    background-image: linear-gradient(90deg, #fff 0%, #fff 100%);
    background-position: 100% 100%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    transition: background-size 0.8s ease;
  }

  .product-info span:hover {
    background-size: 100% 2px;
    background-position: 0% 100%;
  }

  .product-price {
    display: flex;
    column-gap: 10px;
    font-size: 24px;
    align-items: center;
    color: #fff;
    font-weight: 800;
  }

  .product-price s {
    font-size: 18px;
    color: #999999;
    font-weight: 400;
  }

  .black-friday-product img {
    width: 100%;
    height: 280px;
    display:flex;
    justify-self: center;
  }


  .form-add-cart-btn{
    width: 100%;
  }

  .product-btn {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 10px;
    box-sizing: border-box;
    border-radius: 4px;
    background-color: #ed5e1f;
    font-size: 18px;
    color: #fff;
    background-size: 100% 50%;
    font-weight: 600;
    transition: background 3s ease-in-out;
  }

  .product-btn:hover {
    background: linear-gradient(90deg, #ff9337 0%, #d1380f 100%), #ed5f20;
    background-size: 200% 100%; /* ⚡ 保持动画空间 */
    animation: btnFlow 3s linear infinite;
  }
  .stock-out:hover{
    background:#999999 !important;
    cursor:not-allowed;
  }

      @media screen and (max-width: 769px) {
    .product-cart {
      width: 48%;
    }
    .product-info span {
      font-size: 14px;
    }
    .product-price {
      font-size: 13px;
    }
 
    .product-price s {
      font-size: 10px;
    }

    .product-cart img {
      width: 140px;
      height: 140px;
      border-radius:5px;
      object-fit:cover;
    }
    .product-filter img {
      width: 20px !important;
      height: 20px !important;
    }
    .product-sale {
      width: 36px;
      height: 36px;
      line-height: 15px;
      font-size: 10px;
    }
    .product-cart {
      border: 2px solid #403A34;
    }
    .product-btn {
      font-size: 12px;
    }
  }
  @media screen and (min-width:320px) and (max-width:365px){
    .product-cart img {
      width: 100px;
      height: 100px;
      object-fit:cover;
    }
  }
