/* Existing styles remain the same ... */

/* Cart modal */
#cart-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.9);
    color: white;
    padding: 50px 20px;
    box-sizing: border-box;
    justify-content: center;
    align-items: flex-start;
    overflow-y: auto;
    text-align: center;
}

#cart-modal h2 { margin-bottom: 20px; }
#cart-items p { margin: 10px 0; }

#cart-modal button {
    margin-top: 15px;
    padding: 10px 20px;
    font-size: 16px;
}

/* Reuse close button style */
#cart-modal .close-btn {
    position: absolute;
    top: 20px;
    right: 35px;
    font-size: 30px;
    cursor: pointer;
    color: white;
}

