.cart-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.cart-items {
    flex: 2 1 600px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cart-item {
    display: flex;
    gap: 1rem;
    background: #fff;
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    align-items: center;
}

.cart-item-img img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
}

.cart-item-details h3 {
    margin: 0 0 0.5rem 0;
}

.cart-item-details p {
    margin: 0.2rem 0;
}

.remove-btn {
    margin-top: 0.5rem;
    padding: 6px 12px;
    background: #ff4d4f;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.2s;
}

.remove-btn:hover {
    background: #ff7875;
}

.cart-summary {
    flex: 1 1 300px;
    background: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    height: fit-content;
}

.cart-summary h2 {
    margin-top: 0;
}

.guest-warning {
    color: #ff4d4f;
    font-weight: bold;
    margin-top: 1rem;
}

@media(max-width: 900px) {
    .cart-container {
        flex-direction: column;
    }

    .cart-summary {
        width: 100%;
    }
}