/* Extracted from show.html.twig */
/* Auto-generated — do not edit inline styles in the template */

        .cart-item {
            background: white;
            border-radius: 16px;
            padding: 1.5rem;
            margin-bottom: 1rem;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }
        
        .cart-item:hover {
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
        }
        
        .cart-item-image {
            width: 120px;
            height: 120px;
            object-fit: cover;
            border-radius: 12px;
        }
        
        .quantity-control {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .quantity-btn {
            width: 36px;
            height: 36px;
            border-radius: 8px;
            border: 2px solid var(--primary-color);
            background: white;
            color: var(--primary-color);
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .quantity-btn:hover {
            background: var(--primary-color);
            color: red;
        }
        
        .quantity-input {
            width: 60px;
            text-align: center;
            border: 2px solid var(--border-color);
            border-radius: 8px;
            padding: 0.5rem;
            font-weight: 600;
        }
        
        .cart-summary {
            background: white;
            border-radius: 16px;
            padding: 2rem;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            position: sticky;
            top: 100px;
        }
        
        .summary-row {
            display: flex;
            justify-content: space-between;
           
            border-bottom: 1px solid var(--border-color);
        }
        
        .summary-row.total {
            border-bottom: none;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-top: 1rem;
        }
        
        .btn-checkout {
            width: 100%;
            background-color: #3869a8 !important;
            background-image: none;
            border: none;
            color: #fff !important;
            font-weight: 700;
            font-size: 1.1rem;
            padding: 1rem;
            border-radius: 12px;
            margin-top: 1.5rem;
            transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
        }
        
        /* 20 % heller: 80 % Grundfarbe + 20 % Weiß */
        .btn-checkout:hover,
        .btn-checkout:focus {
            background-color: #6087b9 !important;
            background-color: color-mix(in srgb, #3869a8 80%, white 20%) !important;
            color: #fff !important;
            transform: translateY(-2px);
            box-shadow: 0 8px 16px rgba(56, 105, 168, 0.35);
        }
        
        .btn-remove {
            color: #dc3545 !important;
            background: none;
            border: none;
            padding: 0.35rem 0.5rem;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 600;
        }
        
        .btn-remove:hover,
        .btn-remove:focus {
            color: #b02a37 !important;
            transform: scale(1.05);
        }
        
        .empty-cart {
            text-align: center;
            padding: 4rem 2rem;
            background: var(--light-bg);
            border-radius: 16px;
        }
        
        .empty-cart i {
            font-size: 4rem;
            color: var(--gray-text);
            margin-bottom: 1rem;
        }
