/** Shopify CDN: Minification failed

Line 33:0 Unexpected "}"

**/
#petals-container {
      position: fixed;
        top: 0;
          left: 0;
            width: 100%;
              height: 100%;
                pointer-events: none;
                  z-index: 9999;
                    overflow: hidden;
                    }

                    .petal {
                      position: absolute;
                        top: -20px;
                          width: 12px;
                            height: 12px;
                              background: #f9c6d0;
                                border-radius: 50% 0 50% 0;
                                  opacity: 0.8;
                                    animation: fall linear infinite;
                                    }

                                    @keyframes fall {
                                      0%   { transform: translateY(0) rotate(0deg); opacity: 0.8; }
                                        100% { transform: translateY(110vh) rotate(360deg); opacity: 0; }
                                        }
                                        
}