.cart {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 300px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.cart h2 {
    text-align: center;
    margin-bottom: 10px;
    color: #01579b;
}

.cart-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}

.cart-item-image {
    width: 50px;
    height: 50px;
    margin-right: 10px;
    border-radius: 5px;
    object-fit: cover;
}

.cart-item-details {
    flex: 1;
}

.cart-item-details span {
    display: block;
    margin-bottom: 5px;
}

.remove-button {
    background-color: #dc3545;
    color: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 5px;
}

.remove-button:hover {
    background-color: #c82333;
}

.cart-total {
    text-align: center;
    font-weight: bold;
    color: #01579b;
    margin-top: 10px;
}

.buy-button {
    display: block;
    width: 100%;
    background-color: #25d366;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
    margin-top: 10px;
}

.buy-button:hover {
    background-color: #1ebe57;
}