/** Shopify CDN: Minification failed

Line 22:22 Expected identifier but found whitespace
Line 22:23 Unexpected "200%"
Line 33:5 Unexpected "0%"
Line 34:4 Unexpected "50%"
Line 35:5 Unexpected "100%"

**/

/* .black-friday-allproducts {

    display: inline-block;
    font-weight: 900;
    position: relative;
 
        text-transform: uppercase;
 
     background: linear-gradient(90deg, #b3001b,  #2a9d8f, #b3001b);
    
    /* background: linear-gradient(90deg, #00d9ff,rgb(209, 27, 255), #00d9ff); */
      background-size: 200% auto;
    -webkit-background-clip: text;
       background-clip: text;
    color: transparent;

       animation: bfColorShift 4s ease-in-out infinite,
               bfLightSwipe 2.4s ease-in-out infinite;
} */


@keyframes bfColorShift {
     0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
     100% { background-position: 0% 50%; }
}


.black-friday-allproducts::before {
     content: "";
    position: absolute;
      top: 0;
    left: -50%;
     width: 50%;
    height: 100%;

  
    background: linear-gradient(
         90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.8) 50%,
        rgba(255, 255, 255, 0) 100%
    );

      filter: blur(6px);
    z-index: -1; 
    animation: bfSwipeMotion 2.4s ease-in-out infinite;
}


@keyframes bfSwipeMotion {
    0%   { left: -40%; }
     50%  { left: 90%; }
    100% { left: 90%; }
}


@keyframes bfLightSwipe {
      0%,100% {}
    50% {}
}



