body {
    background: #F9F9F7;
    color: #000000;
    font-family: 'Lato', system-ui, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}
    .cart-wrap { 
        max-width: 960px; 
        margin: 0 auto; 
        padding: 2.5rem 1.5rem 5rem; 
    }

    .cart-item { 
     background: #F9F9F7;
        border: 1px solid #e2e8f0; 
        border-radius: 14px; 
        padding: 1.2rem 1.4rem; 
        display: flex; 
        align-items: center; 
        gap: 1.2rem; 
        margin-bottom: 1rem; 
        flex-wrap: wrap; 
    }

    .cart-item-img { 
        width: 80px; 
        height: 80px; 
        object-fit: cover; 
        border-radius: 10px; 
        border: 1px solid #e2e8f0; 
        background: #f8f9fa; 
        flex-shrink: 0; 
    }

    .cart-item-placeholder { 
        width: 80px; 
        height: 80px; 
        background: #f0f4ff; 
        border-radius: 10px; 
        display: flex; 
        align-items: center; 
        justify-content: center; 
        font-size: 2rem; 
        flex-shrink: 0; 
    }

    .cart-item-info { 
        flex: 1; 
        min-width: 0; 
    }

    .cart-item-name { 
        font-weight: 700; 
        color: #20381d; 
        font-size: 1rem; 
    }

    .cart-item-meta { 
        font-size: 0.82rem; 
        color: #64748b; 
        margin-top: 2px; 
    }

    .cart-item-price { 
        font-weight: 700; 
        color: #20381d; 
        font-size: 1.1rem; 
        white-space: nowrap; 
    }

    .qty-input { 
        width: 60px; 
        text-align: center; 
        border: 1px solid #e2e8f0; 
        border-radius: 8px; 
        padding: 0.3rem; 
        font-weight: 600; 
    }

    .cart-summary { 
        background: #F9F9F7;
        border: 1px solid #e2e8f0; 
        border-radius: 14px; 
        padding: 1.8rem; 
        position: sticky; 
        top: 1.5rem; 
    }

    .cart-total { 
        font-size: 1.6rem; 
        font-weight: 800; 
        color: #20381d; 
    }

    .section-label { 
        font-size: 0.75rem; 
        font-weight: 700; 
        text-transform: uppercase; 
        letter-spacing: 0.08em; 
        color: #94a3b8; 
        margin-bottom: 0.75rem; 
    }

    .guest-note { 
        font-size: 0.82rem; 
        color: #64748b; 
        background: #f0f4ff; 
        border-radius: 8px; 
        padding: 0.6rem 0.9rem; 
        margin-bottom: 1rem; 
    }

    /* Nieuwe consistente knop styling */
    .btn-checkout,
    .btn-primary {
        background: #20381d;
        color: #dcb470;
        border: none !important;
        padding: 0.95rem 2.5rem !important;
        border-radius: 50px !important;
        font-weight: 600 !important;
        font-family: 'Lato', sans-serif;
        transition: all 0.25s ease;
        font-size: 1.1rem;
        width: 100%;
    }

    .btn-checkout:hover,
    .btn-primary:hover {
        background: #355c2f;
        color: #ae966d;
        transform: translateY(-2px);
    }

    .btn-outline-primary {
        color: #20381d;
        border-color: #20381d;
    }

    .btn-outline-primary:hover {
        background: #20381d;
        color: #dcb470;
        border-color: #20381d;
    }

    /* Gast login link */
    .guest-note a { 
        color: #20381d; 
        font-weight: 600; 
        text-decoration: underline;
    }

    .guest-note a:hover {
        color: #355c2f;
    }

    /* Remove button */
    .text-danger {
        color: #991b1b !important;
    }
