/* ===========================================================================
   fastkart — cart/index.html
   ===========================================================================

   تا فاز ۶۶ این قاعده‌ها داخلِ خودِ قالب بودند، در یک `<style>`.

   سه هزینه داشت و هیچ‌کدام دیده نمی‌شد: مرورگر نمی‌توانست کشش کند
   (هر بار باز شدنِ صفحه، دوباره)، هیچ قالبِ دیگری نمی‌توانست
   بازنویسی‌اش کند، و یک Content-Security-Policyِ سخت‌گیر که
   `style-src 'unsafe-inline'` نداشته باشد کلِ صفحه را بی‌شکل
   می‌کرد.
   =========================================================================== */

        input.disabled {
            pointer-events: none;
            opacity: 0.6;
        }

        button.disabled {
            pointer-events: none;
            opacity: 0.6;
        }

        .product-cart-name {
            width: 50%;
        }

        .quantity-button.quantity-up {
            background: #3dcfff;
            color: white;
        }

        .quantity-button.quantity-down {
            background: #3dcfff;
            color: white;
        }

        @media only screen and (max-width: 768px) {
            .product-cart-name {
                width: 100%;
            }

            .post-item-cart .content-page .cart-form .table tbody tr {
                padding: 20px 0px;
            }

            .table th, .table td {
                padding: 0;
            }
        }
    
