/* css pour la section appareils */
        .product-card {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid #ddd;
            border-radius: 10px;
            overflow: hidden;
            background-color: #fff;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }

        .product-image {
            max-height: 180px;
            object-fit: contain;
        }

        .product-title {
            font-weight: bold;
            font-size: 1rem;
            margin-bottom: 0.5rem;
        }

        .product-price {
        color: #dc3545;
        font-weight: bold;
        margin-bottom: 0.5rem;
        text-align: center;
    }


        .product-buttons {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            flex-wrap: wrap;
            margin-top: auto;
        }

        .product-buttons a {
            min-width: 100px;
            font-size: 0.875rem;
            text-align: center;
            transition: all 0.2s ease-in-out;
        }

        .product-buttons a:hover {
            opacity: 0.9;
        }

        @media (max-width: 576px) {
            .product-buttons {
                flex-direction: column;
                align-items: center;
            }

            .product-buttons a {
                width: 100%;
            }
        }

/* dahboard client */


    .dashboard-sidebar {
        background-color: #f8f9fa;
        padding: 1.5rem;
        border-radius: 10px;
    }

    .dashboard-sidebar a {
        display: block;
        margin-bottom: 1rem;
        font-weight: bold;
        color: #333;
        text-decoration: none;
        transition: all 0.3s;
    }

    .dashboard-sidebar a:hover {
        color: #007bff;
        transform: translateX(5px);
    }

    .dashboard-content {
        background-color: #ffffff;
        padding: 2rem;
        border-radius: 10px;
        box-shadow: 0 0 10px rgba(0,0,0,0.1);
    }

    .card-order {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .card-order:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    }

/* Section gadgets*/

    .product-card {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        border: 1px solid #ddd;
        border-radius: 10px;
        overflow: hidden;
        background-color: #fff;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .product-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

    .product-image {
        max-height: 180px;
        object-fit: contain;
    }

    .product-title {
        font-weight: bold;
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .product-price {
        color: #dc3545;
        font-weight: bold;
        margin-bottom: 0.5rem;
        text-align: center;
    }

    .product-buttons {
        display: flex;
        justify-content: center;
        gap: 0.5rem;
        flex-wrap: wrap;
        margin-top: auto;
    }

    .product-buttons a {
        min-width: 100px;
        font-size: 0.875rem;
        text-align: center;
        transition: all 0.2s ease-in-out;
    }

    .product-buttons a:hover {
        opacity: 0.9;
    }

    @media (max-width: 576px) {
        .product-buttons {
            flex-direction: column;
            align-items: center;
        }

        .product-buttons a {
            width: 100%;
        }
    }

    .section-title {
        font-size: 1.75rem;
        font-weight: bold;
        text-align: center;
        margin-bottom: 2rem;
        color: #333;
    }

/* section materiels */


        .product-card {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid #ddd;
            border-radius: 10px;
            overflow: hidden;
            background-color: #fff;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }

        .product-image {
            max-height: 180px;
            object-fit: contain;
        }

        .product-title {
            font-weight: bold;
            font-size: 1rem;
            margin-bottom: 0.5rem;
        }

        .product-price {
        color: #dc3545;
        font-weight: bold;
        margin-bottom: 0.5rem;
        text-align: center;
    }


        .product-buttons {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            flex-wrap: wrap;
            margin-top: auto;
        }

        .product-buttons a {
            min-width: 100px;
            font-size: 0.875rem;
            text-align: center;
            transition: all 0.2s ease-in-out;
        }

        .product-buttons a:hover {
            opacity: 0.9;
        }

        @media (max-width: 576px) {
            .product-buttons {
                flex-direction: column;
                align-items: center;
            }

            .product-buttons a {
                width: 100%;
            }
        }

/* Section promotion */


    .bandeau-promo {
        background-color: #007bff;
        color: white;
        text-align: center;
        padding: 10px 0;
        font-size: 1.5rem;
        font-weight: bold;
        margin-bottom: 20px;
        border-radius: 8px;
    }

    .product-card {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        border: 1px solid #ddd;
        border-radius: 10px;
        overflow: hidden;
        background-color: #fff;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .product-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

    .product-image {
        max-height: 180px;
        object-fit: contain;
    }

    .product-title {
        font-weight: bold;
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }

    .promo-price {
        color: #dc3545;
        font-weight: bold;
        font-size: 1.3rem;
    }

    .old-price {
        color: #6c757d;
        text-decoration: line-through;
        font-size: 0.9rem;
    }

    .product-buttons {
        display: flex;
        justify-content: center;
        gap: 0.5rem;
        flex-wrap: wrap;
        margin-top: auto;
    }

    .product-buttons a,
    .product-buttons button {
        min-width: 100px;
        font-size: 0.875rem;
        text-align: center;
        transition: all 0.2s ease-in-out;
    }

    @media (max-width: 576px) {
        .product-buttons {
            flex-direction: column;
            align-items: center;
        }

        .product-buttons a,
        .product-buttons button {
            width: 100%;
        }
    }
    

/* Seciton voir produit */

            .catalogue-item {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid #ccc;
            border-radius: 10px;
            background-color: #fff;
            padding: 10px;
            height: 100%;
        }

        .catalogue-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
        }

            .product-card {
                transition: transform 0.3s ease, box-shadow 0.3s ease;
                border: 1px solid #ddd;
                border-radius: 10px;
                overflow: hidden;
                background-color: #fff;
                display: flex;
                flex-direction: column;
                justify-content: space-between;
            }

            .product-card:hover {
                transform: translateY(-5px);
                box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
            }

            .product-image {
                max-height: 180px;
                object-fit: contain;
            }

            .product-title {
                font-weight: bold;
                font-size: 1rem;
                margin-bottom: 0.5rem;
            }

            .product-price {
            color: #dc3545;
            font-weight: bold;
            margin-bottom: 0.5rem;
            text-align: center;
        }


            .product-buttons {
                display: flex;
                justify-content: center;
                gap: 0.5rem;
                flex-wrap: wrap;
                margin-top: auto;
            }

            .product-buttons a {
                min-width: 100px;
                font-size: 0.875rem;
                text-align: center;
                transition: all 0.2s ease-in-out;
            }

            .product-buttons a:hover {
                opacity: 0.9;
            }

            @media (max-width: 576px) {
                .product-buttons {
                    flex-direction: column;
                    align-items: center;
                }

                .product-buttons a {
                    width: 100%;
                }
            }

/*section outils*/

        .product-card {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid #ddd;
            border-radius: 10px;
            overflow: hidden;
            background-color: #fff;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }

        .product-image {
            max-height: 180px;
            object-fit: contain;
        }

        .product-title {
            font-weight: bold;
            font-size: 1rem;
            margin-bottom: 0.5rem;
        }

        .product-price {
        color: #dc3545;
        font-weight: bold;
        margin-bottom: 0.5rem;
        text-align: center;
    }


        .product-buttons {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            flex-wrap: wrap;
            margin-top: auto;
        }

        .product-buttons a {
            min-width: 100px;
            font-size: 0.875rem;
            text-align: center;
            transition: all 0.2s ease-in-out;
        }

        .product-buttons a:hover {
            opacity: 0.9;
        }

        @media (max-width: 576px) {
            .product-buttons {
                flex-direction: column;
                align-items: center;
            }

            .product-buttons a {
                width: 100%;
            }
        }

/*Section paiement*/

    .text-orange { color: #ff6600; }
    .border-orange { border-left: 5px solid #ff6600; }
    .card-title { font-weight: bold; }

    .payment-card {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        border-radius: 10px;
        overflow: hidden;
        border-left: 5px solid transparent;
        text-align: center;
        padding-top: 1rem;
    }

    .payment-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

    .border-orange { border-left-color: #ff6600 !important; }
    .border-warning { border-left-color: #ffc107 !important; }
    .border-info { border-left-color: #17a2b8 !important; }
    .border-success { border-left-color: #28a745 !important; }
    .border-secondary { border-left-color: #6c757d !important; }

    .payment-card img {
        width: 60px;
        height: auto;
        margin-bottom: 10px;
    }

/*Section suivie de commande*/

    .tracking-step {
        position: relative;
        padding: 1.5rem;
        border-left: 4px solid #ccc;
        transition: background-color 0.3s ease;
        border-radius: 8px;
    }

    .tracking-step:hover {
        background-color: #f8f9fa;
    }

    .tracking-step.completed {
        border-left-color: #28a745;
        background-color: #e9fbe9;
    }

    .tracking-step.rejected {
        border-left-color: #dc3545;
        background-color: #ffe9e9;
    }

    .tracking-icon {
        font-size: 1.8rem;
        margin-right: 1rem;
        color: #6c757d;
        transition: color 0.3s ease;
    }

    .completed .tracking-icon {
        color: #28a745;
    }

    .rejected .tracking-icon {
        color: #dc3545;
    }

    .tracking-text {
        font-size: 1.1rem;
        font-weight: bold;
        margin: 0;
    }

    .tracking-description {
        font-size: 0.9rem;
        color: #555;
        margin: 0.25rem 0 0;
    }

    .timeline-line {
        position: absolute;
        left: 12px;
        top: 40px;
        height: 100%;
        width: 2px;
        background: #ccc;
        z-index: -1;
    }

    .last-step .timeline-line {
        display: none;
    }

