/* Custom styles for Frontend */
.wp-site-blocks {
    overflow: clip;
}

.added_to_cart.wc-forward {
    display: none;
}

/* Floating Add to Cart Button */
.floating-add-to-cart {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
}

.floating-add-to-cart.visible {
    display: block;
}

.floating-add-to-cart-btn {
    width: 100%;
    padding: 20px 24px;
    font-size: 16px;
    font-weight: 600;
    background-color: #178240;
    border: 1px solid #178240;
}

/* Only show floating button on screens < 825px */
@media (min-width: 825px) {
    .floating-add-to-cart {
        display: none !important;
    }
}