/* Styles for Cart Section */
#cart-section {
    max-width: 80%;
    margin: 0 auto;
    padding: 20px;
    background-color: #6f8ad6;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

#cart-section h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
}

/*fixed cart button*/
#view-cart {
    position: fixed;
    bottom: 20px;
    right: 20px;  
    padding: 10px 20px; 
    border-radius: 100px;
    cursor: pointer;
    font-size: 16px;
    z-index: 1000; 
    }

#cartItems {
    list-style-type: none;
    padding: 0;
}

#cartItems li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    margin-bottom: 10px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

#cartItems li:hover {
    background-color: #9cbde4;

}

#cartItems li span {
    font-size: 1.2rem;
    color: #333;
}

/* Buttons for Adding/Removing Items */
#cartItems button {
    background-color: #2d3bbb;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    font-size: 1.2rem;
    cursor: pointer;
    margin-left: 10px;
    transition: background-color 0.3s ease;
    
}

#cartItems button:hover {
    background-color: #6aa2e2;
}

/* Style for Total */
#cartTotal {
    font-size: 1.5rem;
    margin-top: 20px;
    color: #333;
    font-weight: bold;
}


.modal-content {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
    text-align: center;
}

.modal-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.modal-content p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}












