﻿.cart-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    display: flex;
    justify-content: center;
    align-items: center;
}

.cart-popup {
    background: white;
    padding: 1rem;
    border-radius: 10px;
    width: 400px;
    max-height: 80%;
    overflow-y: auto;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-items {
    list-style: none;
    padding: 0;
}

    .cart-items li {
        display: flex;
        gap: 10px;
        margin-bottom: 10px;
    }

    .cart-items img {
        width: 50px;
        height: 50px;
        object-fit: cover;
    }

.view-full-cart {
    width: 100%;
    padding: 8px;
    background: #0070f3;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 6px;
}
