

html, body {
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}

input, textarea, [contenteditable] {
    -webkit-user-select: text;
    user-select: text;
    touch-action: manipulation;
}

.cart-overlay,
.checkout-overlay,
.product-modal .modal-overlay,
.paypal-modal-custom > div:first-child {
    pointer-events: none;
}

.cart-overlay.active,
.checkout-modal.active .checkout-overlay,
.product-modal.active .modal-overlay,
.paypal-modal-custom.active > div:first-child {
    pointer-events: all;
}

.paypal-modal-custom {
    pointer-events: none;
}
.paypal-modal-custom * {
    pointer-events: auto;
}

button, input, select, textarea {
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    touch-action: manipulation;
}

@media (max-width: 768px) {
    
    .cart-actions {
        display: flex !important;
        flex-direction: column !important;
        gap: 10px !important;
    }

    .cart-actions .btn {
        width: 100% !important;
        padding: 14px 16px !important;
        font-size: 16px !important;
    }

    
    footer, .footer, .footer-bottom {
        z-index: 1;
        position: relative;
    }

    
    .nav-menu {
        z-index: 1001 !important;
    }
}
