@media (max-width: 767px) {
    body.type-product.tg-sticky-cart-active {
        padding-bottom: 86px;
    }

    .tg-sticky-cart {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 9999;
        display: none;
        align-items: center;
        gap: 10px;
        padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
        background: #fff;
        box-shadow: 0 -4px 18px rgba(0, 0, 0, .16);
        border-top: 1px solid rgba(0, 0, 0, .08);
    }

    .tg-sticky-cart.is-visible {
        display: flex;
    }

    .tg-sticky-cart__qty {
        width: 74px;
        height: 48px;
        border: 1px solid #ddd;
        border-radius: 4px;
        text-align: center;
        font-size: 16px;
        background: #fff;
    }

    .tg-sticky-cart__btn {
        flex: 1;
        height: 48px;
        border: 0;
        border-radius: 20px;
        background: #624b3a;
        color: #fff;
        font-size: 16px;
        font-weight: 700;
        text-align: center;
        cursor: pointer;
    }

    .tg-sticky-cart__btn:disabled {
        opacity: .55;
        cursor: not-allowed;
    }
}