 /* E-Commerce Features Styles */
    :root {
        --primary-color: #25D366; /* WhatsApp green */
        --secondary-color: #128C7E;
        --accent-color: #075E54;
        --cart-color: #FF9F43;
        --devis-color: #3498db;
        --dark-color: #333;
        --light-color: #f9f9f9;
    }

    .ecommerce-features {
        position: relative;
        z-index: 1000;
    }


    /* Floating action buttons */
    .floating-buttons {
        position: fixed;
        bottom: 89px;
        right: 22px;
        display: flex;
        flex-direction: column;
        gap: 15px;
        z-index: 1000;
    }

    .floating-btn {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 24px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        cursor: pointer;
        transition: all 0.3s;
        position: relative;
    }

    .floating-btn:hover {
        transform: scale(1.1);
    }

    .floating-btn.whatsapp {
        background-color: var(--primary-color);
    }

    .floating-btn.cart {
        background-color: var(--cart-color);
    }

    .floating-btn.devis {
        background-color: var(--devis-color);
    }

    .floating-btn.help {
    background-color: #687e8d;
    color: white;
}

    .cart-count {
        position: absolute;
        top: -5px;
        right: -5px;
        background-color: #e74c3c;
        color: white;
        border-radius: 50%;
        width: 24px;
        height: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 12px;
        font-weight: bold;
    }

    /* WhatsApp chat widget */
    .whatsapp-widget {
        position: fixed;
        bottom: 120px;
        right: 30px;
        width: 350px;
        background: white;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        overflow: hidden;
        display: none;
        z-index: 1001;
    }

    .widget-header {
        background-color: var(--primary-color);
        color: white;
        padding: 15px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .widget-header i {
        font-size: 24px;
    }

    .widget-body {
        padding: 15px;
        max-height: 400px;
        overflow-y: auto;
    }

    .widget-message {
        background-color: #f0f0f0;
        padding: 10px 15px;
        border-radius: 10px;
        margin-bottom: 10px;
        font-size: 14px;
    }

    .widget-input {
        display: flex;
        padding: 10px;
        border-top: 1px solid #eee;
    }

    .widget-input input {
        flex: 1;
        padding: 10px;
        border: 1px solid #ddd;
        border-radius: 20px;
        outline: none;
    }

    .widget-input button {
        background-color: var(--primary-color);
        color: white;
        border: none;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        margin-left: 10px;
        cursor: pointer;
    }

    /* Request quote modal */
    .modal {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 1002;
        justify-content: center;
        align-items: center;
    }

    .modal-content {
        background-color: white;
        padding: 20px;
        border-radius: 10px;
        width: 90%;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }

    .modal-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 20px;
        padding-bottom: 10px;
        border-bottom: 1px solid #eee;
    }

    .modal-header h2 {
        color: var(--devis-color);
    }

    .close-modal {
        font-size: 24px;
        cursor: pointer;
        color: #999;
    }

/*    .form-group {
        margin-bottom: 15px;
    }

    .form-group label {
        display: block;
        margin-bottom: 5px;
        font-weight: 500;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        width: 100%;
        padding: 10px;
        border: 1px solid #ddd;
        border-radius: 5px;
    }

    .form-group textarea {
        height: 100px;
    }*/

    .submit-btn {
        background-color: var(--devis-color);
        color: white;
        border: none;
        padding: 10px 20px;
        border-radius: 5px;
        cursor: pointer;
        font-weight: bold;
        width: 100%;
    }

    .submit-btn:hover {
        background-color: #2980b9;
    }

    /* Cart sidebar */
    .cart-sidebar {
        position: fixed;
        top: 0;
        right: -400px;
        width: 400px;
        height: 100%;
        background-color: white;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.3s;
        z-index: 1003;
        overflow-y: auto;
    }

    .cart-sidebar.open {
        right: 0;
    }

    .cart-header {
        background-color: var(--cart-color);
        color: white;
        padding: 15px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .close-cart {
        font-size: 24px;
        cursor: pointer;
    }

    .cart-items {
        padding: 15px;
    }

    .cart-item {
        display: flex;
        gap: 15px;
        margin-bottom: 15px;
        padding-bottom: 15px;
        border-bottom: 1px solid #eee;
    }

    .cart-item-image {
        width: 80px;
        height: 80px;
        object-fit: cover;
        border-radius: 5px;
    }

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

    .cart-item-title {
        font-weight: bold;
        margin-bottom: 5px;
    }

    .cart-item-price {
        color: var(--accent-color);
        font-weight: bold;
        margin-bottom: 5px;
    }

    .cart-item-quantity {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .quantity-btn {
        width: 25px;
        height: 25px;
        border: 1px solid #ddd;
        background: none;
        cursor: pointer;
        border-radius: 3px;
    }

    .remove-item {
        color: #e74c3c;
        background: none;
        border: none;
        cursor: pointer;
        font-size: 12px;
        margin-top: 5px;
    }

    .cart-total {
        padding: 15px;
        border-top: 1px solid #eee;
        font-weight: bold;
        font-size: 1.2rem;
        text-align: right;
    }

    .checkout-btn {
        background-color: var(--cart-color);
        color: white;
        border: none;
        padding: 12px;
        width: 100%;
        font-weight: bold;
        cursor: pointer;
        margin-top: 10px;
        border-radius: 5px;
    }

    .checkout-btn:hover {
        background-color: #e67e22;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
        .whatsapp-widget {
            width: 90%;
            right: 5%;
        }

        .cart-sidebar {
            width: 90%;
            right: -90%;
        }

        .floating-buttons {
            bottom: 20px;
            right: 20px;
        }

        .floating-btn {
            width: 50px;
            height: 50px;
            font-size: 20px;
        }
    }