/* Chat Interface Styling */
body {
    overflow: hidden; /* Ngăn cuộn trang bên ngoài container */
}
.chat-wrapper {
    height: 100vh;
    max-height: 100vh;
}
.chat-body::-webkit-scrollbar {
    width: 6px;
}
.chat-body::-webkit-scrollbar-thumb {
    background-color: #dee2e6;
    border-radius: 10px;
}
.product-card-chat {
    width: 200px;
    min-width: 200px;
    transition: transform 0.2s, box-shadow 0.2s;
}
.product-card-chat:hover {
    transform: translateY(-3px);
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,.15) !important;
}
.horizontal-scroll-container {
    display: flex;
    overflow-x: auto;
    gap: 1rem;
    padding-bottom: 0.5rem;
    padding-top: 0.5rem;
}
.horizontal-scroll-container::-webkit-scrollbar {
    height: 6px;
}
.horizontal-scroll-container::-webkit-scrollbar-thumb {
    background-color: #dee2e6;
    border-radius: 10px;
}

/* Nút checkbox/radio mode */
#searchModeTabs .btn-check:checked + label {
    background-color: #4a80ce !important;
    color: #ffffff !important;
    box-shadow: 0 4px 10px rgba(74, 128, 206, 0.3) !important;
}
#searchModeTabs label {
    transition: all 0.2s ease-in-out;
}
#floating-cart-bar { display: none !important; }  