/* Add custom CSS styles below */ 
      .swiper-container {
    margin-top: 100px;
}


        .fullscreen-loader {
            width: 100%;
            height: 100%;
            position: fixed;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            transition-property: all;
            transition-duration: 700ms;
            transition-timing-function: cubic-bezier(.4,0,1,1);
            opacity: 100;
            z-index: 9999999;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            background-color: rgb(31 31 44);
        }
        .fullscreen-loader img {
            height: 12rem;
            margin-top: -3rem;
        }
        .fullscreen-loader span {
            font-size: 1.875rem;
            line-height: 2.25rem;
            --tw-text-opacity: 1;
            color: #fff;
            color: rgba(255, 255, 255, var(--tw-text-opacity));
            font-weight: 600;
            
        }
        @media screen and (min-width: 768px) {
            .fullscreen-loader span {
                font-size: 2.25rem !important;
                line-height: 2.5rem !important;
            }
        }
        .loader-init {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgb(31 31 44);
            transition: opacity 0.75s, visibility 0.75s;
            z-index: 9999;
        }

        .loader-init--hidden {
            opacity: 0;
            visibility: hidden;
        }

        .loader-init::after {
            content: "";
            width: 36px;
            height: 36px;
            border: 3px solid #eeeeeea3;
            border-top-color: #7529d1;
            border-radius: 50%;
            animation: loading 0.75s ease infinite;
        }

        @keyframes loading {
            from {
            transform: rotate(0turn);
            }
            to {
            transform: rotate(1turn);
            }
        }

.product-card-actions-add-to-cart {
  border-radius: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  box-shadow: rgba(3, 140, 182, 0.3) 0px 10px 15px -3px, rgba(3, 140, 182, 0.1) 0px 4px 6px -2px;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateY(0px);
  gap: 0.3rem;
}