    #chat-toggle {
        position: fixed;
        bottom: 20px;
        right: 76px;
        background: var(--bs-brand-2);
        color: white;
        width: 55px;
        height: 55px;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        font-size: 22px;
        box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    }

    #chat-widget {
        position: fixed;
        bottom: 90px;
        right: 20px;
        width: 320px;
        height: 420px;
        background: white;
        border-radius: 16px;
        box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        display: flex;
        flex-direction: column;
        overflow: hidden;
        font-family: Arial;
        z-index: 10000;
    }

    .hidden {
        display: none !important;
    }

    .chat-header {
        background: #39da78;
        color: white;
        padding: 12px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .chat-header small {
        display: block;
        font-size: 11px;
        opacity: 0.7;
    }

    .chat-body {
        flex: 1;
        padding: 10px;
        overflow-y: auto;
        background: #f9fafb;
    }

    .bot-message {
        background: #e5e7eb;
        padding: 8px 10px;
        border-radius: 10px;
        margin-bottom: 8px;
        font-size: 13px;
    }

    .chat-footer {
        display: flex;
        border-top: 1px solid #eee;
    }

    .chat-footer input {
        flex: 1;
        border: none;
        padding: 12px;
        outline: none;
    }

    .chat-footer button {
        background: #1f2937;
        color: white;
        border: none;
        padding: 0 15px;
        cursor: pointer;
    }
    .cart-wrapper {
        background: #fff;
        border-radius: 12px;
        padding: 24px;
        box-shadow: 0 0 16px rgba(0, 0, 0, 0.05);
        overflow-x: auto;
    }

    /* Tableau panier */
    #cart-table {
        width: 100%;
        border-collapse: collapse;
    }

    #cart-table thead th {
        background-color: #f8f9fa;
        color: #333;
        font-weight: 600;
        text-transform: uppercase;
        font-size: 13px;
        padding: 12px 8px;
        border-bottom: 2px solid #dee2e6;
    }

    #cart-table td {
        padding: 12px 8px;
        vertical-align: middle;
        border-bottom: 1px solid #eaeaea;
    }

    .cart-item-image img {
        width: 64px;
        height: 44px;
        object-fit: cover;
        border-radius: 6px;
    }

    /* Bouton supprimer */
    .remove-item {
        color: #dc3545;
        font-size: 18px;
        cursor: pointer;
        transition: color 0.2s ease;
    }

    .remove-item:hover {
        color: #b02a37;
    }

    /* Input quantité */
    .cart-item-qty {
        max-width: 70px;
        padding: 6px;
        border: 1px solid #ced4da;
        border-radius: 4px;
        text-align: center;
    }

    /* Totaux du panier */
    #cart-totals {
        width: 100%;
        margin-top: 20px;
        border-collapse: collapse;
    }

    #cart-totals td {
        padding: 10px;
        font-size: 14px;
        border-top: 1px solid #dee2e6;
    }

    #cart-totals .text-bold {
        font-weight: 600;
        font-size: 16px;
        color: #000;
    }

    #cart-totals .active {
        background-color: #f1f1f1;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .cart-wrapper {
            padding: 12px;
        }

        #cart-table th, #cart-table td {
            font-size: 12px;
            padding: 8px 6px;
        }
 
        .cart-item-qty {
            max-width: 60px;
        }
    }




    .brator-product-single-item-area {
        width: 255px;
        height: auto;
        margin: 10px; /* espace entre les produits */
        box-sizing: border-box;
    }

    .brator-product-single-item-img img {
        width: 255px;
        height: 255px;
        object-fit: cover;
        border: 1px solid #ddd;
        border-radius: 4px;
    }
    .quantity-wrapper {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 4px;
        margin-bottom: 8px;
    }

    .quantity-input {
        width: 50px;
        text-align: center;
        height: 35px;
        border: 1px solid #ccc;
        border-radius: 4px;
    }

    .quantity-btn {
        width: 35px;
        height: 35px;
        background-color: #BED000;
        border: none;
        color: white;
        font-size: 20px;
        font-weight: bold;
        border-radius: 4px;
        cursor: pointer;
    }

    .quantity-btn:active {
        transform: scale(0.95);
    }

