/* Tùy chỉnh thanh cuộn cho giỏ hàng */
.cart-scroll::-webkit-scrollbar {
    width: 4px;
}

.cart-scroll::-webkit-scrollbar-track {
    background: #0a0a0a;
}

.cart-scroll::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 10px;
}

.cart-scroll::-webkit-scrollbar-thumb:hover {
    background: #ea580c;
}

.checkout-input {
    background-color: #0f0f0f;
    border: 1px solid #333;
    color: #fff;
    border-radius: 0.75rem;
    padding: 0.75rem 1rem;
    width: 100%;
    transition: all 0.3s;
    outline: none;
}

.checkout-input:focus {
    border-color: #ea580c;
    box-shadow: 0 0 0 4px rgba(234, 88, 12, 0.1);
}

body.modal-open {
    overflow: hidden;
}

/* Vô hiệu hóa autofill background mặc định của trình duyệt để giữ nguyên Theme Tối */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0px 1000px #0f0f0f inset !important;
    -webkit-text-fill-color: white !important;
    transition: background-color 5000s ease-in-out 0s;
}