/* Bottom Right Drawer */
.drawer {
    position: fixed;
    bottom: 0;
    right: 20px;
    width: 350px;
    max-height: 400px;
    background-color: #fff;
    box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    transition: transform 0.3s ease-in-out;
    transform: translateY(100%);
    border-radius: 10px 10px 0 0;
    overflow: hidden;
}
.drawer.open {
    transform: translateY(0);
}
.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.2rem;
    padding: 10px;
    background-color: #f8f9fa;
    border-bottom: 1px solid #ddd;
}
.toggle-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}
.drawer-body {
    padding: 10px;
    max-height: 250px;
    overflow-y: auto;
}
.selected-product {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px;
    border-bottom: 1px solid #ddd;
}
.remove-btn {
    background: none;
    border: none;
    color: red;
    font-size: 14px;
    cursor: pointer;
}
.drawer-footer {
    padding: 10px;
    display: flex;
    justify-content: space-between;
}
#selected-product-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 30px;
}
.drawer.open + #selected-product-btn {
    display: none;
}

