/**
         * CSS PANIER - Design Beige/Crème avec boutons corail
         */
        
        /* Variables */
        :root {
            --cbb-primary: #FF6B6B;
            --cbb-primary-hover: #FF5252;
            --cbb-secondary: #FFA07A;
            --cbb-bg-cream: #FAF7F2;
            --cbb-bg-white: #FFFFFF;
            --cbb-border: #E8E2D5;
            --cbb-text-dark: #2C2C2C;
            --cbb-text-gray: #666666;
            --cbb-text-light: #999999;
            --cbb-success: #4CAF50;
            --cbb-checkout: #5DCCCC;
            --cbb-free-badge: #FFE5E5;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background-color: var(--cbb-bg-cream);
            color: var(--cbb-text-dark);
            line-height: 1.6;
        }

        /* Structure principale */
        .cbb-cart-page {
            max-width: 1400px;
            margin: 0 auto;
            padding: 40px 20px;
        }

        .cbb-cart-page-title {
            font-size: 28px;
            font-weight: 600;
            color: var(--cbb-primary);
            margin: 0 0 30px 0;
            letter-spacing: 0.5px;
        }

        /* Layout 2 colonnes */
        .cbb-cart-layout {
            display: grid;
            grid-template-columns: 1fr 400px;
            gap: 30px;
            align-items: start;
        }

        /* Sections */
        .cbb-gift-box-section,
        .cbb-extras-section,
        .cbb-custom-message-section {
            background: var(--cbb-bg-white);
            border-radius: 12px;
            padding: 24px;
            margin-bottom: 20px;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
        }

        .cbb-section-title {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 18px;
            font-weight: 600;
            color: var(--cbb-text-dark);
            margin: 0 0 20px 0;
        }

        .cbb-section-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }

        .cbb-modify-box-btn {
            background: transparent;
            border: 1px solid var(--cbb-primary);
            color: var(--cbb-primary);
            padding: 8px 16px;
            border-radius: 6px;
            font-size: 13px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.2s;
        }

        .cbb-modify-box-btn:hover {
            background: var(--cbb-primary);
            color: white;
        }

        /* Tableau panier */
        .cbb-cart-table {
            width: 100%;
            border-collapse: collapse;
            margin-bottom: 16px;
        }

        .cbb-cart-table thead th {
            text-align: left;
            font-size: 12px;
            font-weight: 600;
            color: var(--cbb-text-gray);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            padding-bottom: 12px;
            border-bottom: 2px solid var(--cbb-border);
        }

        .cbb-cart-table tbody tr {
            border-bottom: 1px solid var(--cbb-border);
        }

        .cbb-cart-table tbody tr:last-child {
            border-bottom: none;
        }

        .cbb-cart-table td {
            padding: 20px 12px 20px 0;
            vertical-align: middle;
        }

        /* Colonne article */
        .cbb-cart-item-col {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .cbb-cart-item-image-wrapper {
            width: 70px;
            height: 70px;
            flex-shrink: 0;
            border-radius: 8px;
            overflow: hidden;
            background: var(--cbb-bg-cream);
        }

        .cbb-cart-item-image-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .cbb-cart-item-details {
            flex: 1;
        }

        .cbb-cart-item-title {
            font-size: 15px;
            font-weight: 500;
            color: var(--cbb-text-dark);
            margin: 0 0 4px 0;
        }

        .cbb-cart-item-meta {
            font-size: 13px;
            color: var(--cbb-text-gray);
            margin: 4px 0 0 0;
        }

        .cbb-cart-item-free-badge {
            display: inline-block;
            background: var(--cbb-free-badge);
            color: var(--cbb-primary);
            font-size: 11px;
            font-weight: 600;
            padding: 4px 10px;
            border-radius: 4px;
            margin-top: 6px;
        }

        /* Prix */
        .cbb-cart-price-col {
            font-size: 16px;
            font-weight: 600;
            color: var(--cbb-text-dark);
            white-space: nowrap;
        }

        .cbb-cart-price-free {
            color: var(--cbb-text-light);
        }

        /* Quantité */
        .cbb-cart-quantity-col {
            text-align: center;
        }

        .cbb-qty-controls {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--cbb-bg-cream);
            border-radius: 8px;
            padding: 4px 8px;
        }

        .cbb-qty-btn {
            width: 28px;
            height: 28px;
            border: none;
            background: var(--cbb-bg-white);
            color: var(--cbb-text-dark);
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            border-radius: 6px;
            transition: all 0.2s;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .cbb-qty-btn:hover {
            background: var(--cbb-primary);
            color: white;
            transform: scale(1.05);
        }

        .cbb-qty-value {
            min-width: 30px;
            text-align: center;
            font-size: 14px;
            font-weight: 500;
            color: var(--cbb-text-dark);
        }

        /* Actions */
        .cbb-cart-action-col {
            text-align: right;
        }

        .cbb-cart-modify-btn,
        .cbb-cart-remove-btn {
            background: transparent;
            border: 1px solid var(--cbb-border);
            color: var(--cbb-primary);
            font-size: 13px;
            font-weight: 500;
            padding: 8px 16px;
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.2s;
        }

        .cbb-cart-modify-btn:hover {
            background: var(--cbb-primary);
            color: white;
            border-color: var(--cbb-primary);
        }

        .cbb-cart-remove-btn {
            color: var(--cbb-text-gray);
        }

        .cbb-cart-remove-btn:hover {
            background: #FFE5E5;
            border-color: var(--cbb-primary);
            color: var(--cbb-primary);
        }

        /* Sous-total de section */
        .cbb-section-subtotal {
            display: flex;
            justify-content: flex-end;
            align-items: center;
            gap: 16px;
            padding-top: 16px;
            border-top: 2px solid var(--cbb-border);
            margin-top: 8px;
        }

        .cbb-section-subtotal-label {
            font-size: 14px;
            font-weight: 500;
            color: var(--cbb-text-gray);
        }

        .cbb-section-subtotal-amount {
            font-size: 18px;
            font-weight: 600;
            color: var(--cbb-text-dark);
        }

        /* Message personnalisé */
        .cbb-custom-message-text {
            font-size: 14px;
            color: var(--cbb-text-dark);
            margin: 0 0 12px 0;
        }

        .cbb-custom-message-textarea {
            width: 100%;
            min-height: 100px;
            padding: 12px;
            border: 2px solid var(--cbb-border);
            border-radius: 8px;
            font-size: 14px;
            font-family: inherit;
            resize: vertical;
            transition: border-color 0.2s;
        }

        .cbb-custom-message-textarea:focus {
            outline: none;
            border-color: var(--cbb-primary);
        }

        /* Sidebar */
        .cbb-cart-sidebar {
            position: sticky;
            top: 20px;
        }

        .cbb-price-details-panel {
            background: var(--cbb-bg-white);
            border-radius: 12px;
            padding: 24px;
            margin-bottom: 16px;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
        }

        .cbb-price-details-title {
            font-size: 18px;
            font-weight: 600;
            color: var(--cbb-text-dark);
            margin: 0 0 20px 0;
        }

        .cbb-price-line {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 0;
            font-size: 14px;
        }

        .cbb-price-line-label {
            color: var(--cbb-text-gray);
        }

        .cbb-price-line-value {
            font-weight: 600;
            color: var(--cbb-text-dark);
        }

        .cbb-price-line.subtotal {
            border-top: 1px solid var(--cbb-border);
            padding-top: 16px;
            margin-top: 6px;
        }

        .cbb-price-line.total {
            border-top: 2px solid var(--cbb-text-dark);
            padding-top: 16px;
            margin-top: 10px;
            font-size: 18px;
        }

        .cbb-price-line.total .cbb-price-line-label,
        .cbb-price-line.total .cbb-price-line-value {
            font-weight: 700;
            color: var(--cbb-text-dark);
        }

        .cbb-price-line.loyalty-points .cbb-price-line-value,
        .cbb-price-line.discount .cbb-price-line-value {
            color: var(--cbb-success);
        }

        /* Code promo */
        .cbb-promo-code-section {
            margin: 20px 0;
        }

        .cbb-promo-code-input-group {
            display: flex;
            gap: 8px;
        }

        .cbb-promo-code-input {
            flex: 1;
            padding: 12px;
            border: 2px solid var(--cbb-border);
            border-radius: 8px;
            font-size: 14px;
            transition: border-color 0.2s;
        }

        .cbb-promo-code-input:focus {
            outline: none;
            border-color: var(--cbb-primary);
        }

        .cbb-promo-code-apply-btn {
            padding: 12px 20px;
            background: var(--cbb-bg-cream);
            border: 2px solid var(--cbb-border);
            color: var(--cbb-text-dark);
            font-size: 14px;
            font-weight: 500;
            border-radius: 8px;
            cursor: pointer;
            white-space: nowrap;
            transition: all 0.2s;
        }

        .cbb-promo-code-apply-btn:hover {
            background: var(--cbb-primary);
            color: white;
            border-color: var(--cbb-primary);
            transform: translateY(-2px);
        }

        /* Bouton checkout */
        .cbb-checkout-btn {
            display: block;
            width: 100%;
            padding: 16px;
            background: var(--cbb-checkout);
            color: white;
            font-size: 16px;
            font-weight: 600;
            text-align: center;
            text-decoration: none;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.2s;
        }

        .cbb-checkout-btn:hover {
            background: #4DB8B8;
            transform: translateY(-2px);
            box-shadow: 0 4px 16px rgba(93, 204, 204, 0.4);
        }

        /* Loyalty section */
        .cbb-loyalty-section {
            background: #FFF8E7;
            border: 2px solid #FFE5B4;
            border-radius: 12px;
            padding: 20px;
            margin-bottom: 16px;
        }

        .cbb-loyalty-header {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 12px;
        }

        .cbb-loyalty-title {
            font-size: 16px;
            font-weight: 600;
            color: var(--cbb-text-dark);
            margin: 0;
        }

        .cbb-loyalty-points {
            font-size: 14px;
            color: var(--cbb-text-dark);
            margin: 0 0 8px 0;
        }

        .cbb-loyalty-points-amount {
            font-weight: 700;
            color: var(--cbb-primary);
        }

        .cbb-loyalty-message {
            font-size: 13px;
            color: var(--cbb-text-gray);
            margin: 0 0 12px 0;
            line-height: 1.5;
        }

        .cbb-loyalty-apply-btn {
            width: 100%;
            padding: 12px;
            background: var(--cbb-primary);
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
        }

        .cbb-loyalty-apply-btn:hover {
            background: var(--cbb-primary-hover);
            transform: translateY(-2px);
        }

        /* Créer nouvelle box */
        .cbb-create-box-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            width: 100%;
            padding: 16px;
            background: var(--cbb-secondary);
            color: white;
            font-size: 15px;
            font-weight: 600;
            text-decoration: none;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.2s;
        }

        .cbb-create-box-btn:hover {
            background: var(--cbb-primary);
            transform: translateY(-2px);
            box-shadow: 0 4px 16px rgba(255, 107, 107, 0.3);
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .cbb-cart-layout {
                grid-template-columns: 1fr;
            }

            .cbb-cart-sidebar {
                order: -1;
                position: relative;
                top: 0;
            }
        }

        @media (max-width: 768px) {
            .cbb-cart-page {
                padding: 20px 15px;
            }

            .cbb-cart-page-title {
                font-size: 24px;
            }

            .cbb-cart-table thead {
                display: none;
            }

            .cbb-cart-table,
            .cbb-cart-table tbody,
            .cbb-cart-table tr,
            .cbb-cart-table td {
                display: block;
                width: 100%;
            }

            .cbb-cart-table tr {
                margin-bottom: 20px;
                padding-bottom: 20px;
            }

            .cbb-cart-item-col {
                flex-direction: column;
                align-items: flex-start;
            }

            .cbb-cart-price-col,
            .cbb-cart-quantity-col,
            .cbb-cart-action-col {
                text-align: left;
                padding: 8px 0;
            }

            .cbb-section-subtotal {
                flex-direction: column;
                align-items: flex-end;
                gap: 8px;
            }
        }