.cart-popup {
    display: none;
    position: fixed;
    top: 80px;
    right: 20px;
    background: var(--primary-color);
    width: 460px;
    max-width: 90vw;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    color: #fff;
}

.cart-popup-content {
    padding: 20px;
}

.cart-items {
    max-height: 300px;
    overflow-y: auto;
}

.cart-item {
    display: flex;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.cart-item img {
    width: auto;
    height: 50px;
    object-fit: cover;
    margin-right: 10px;
    padding: 5px;
}

.cart-item-details {
    flex: 1;
}

.cart-item-price {
    font-weight: bold;
}

.cart-total {
    margin: 15px 0;
    font-weight: bold;
    text-align: right;
}

.cart-buttons {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.close-popup {
    float: right;
    cursor: pointer;
    font-size: 24px;
}

.delete-item {
    color: white;
    right: 10px;
    top: 5px;
    font-size: 24px;
    cursor: pointer;
    margin-left: 22px;
}

@media (max-width: 768px) {
    .cart-popup {
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
        max-width: 100%;
    }
}