.product-row {
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.product-row.removing {
    opacity: 0;
    transform: translateX(20px);
}
/* Tùy chỉnh thanh cuộn */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: #d1d5db;
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: #9ca3af;
}