
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background-color: #f8fafc;
            color: #1e293b;
            line-height: 1.6;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }

        /* Bouton retour */
        .back-link {
            display: inline-block;
            margin: 20px 0;
            color: #007bff;
            text-decoration: none;
            font-weight: 600;
            transition: opacity 0.2s;
        }
        .back-link:hover {
            opacity: 0.8;
        }

        /* Layout produit */
        .product-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 20px;
    align-content: space-evenly;
    justify-content: center;
    align-items: stretch;
    justify-items: stretch;
        }

        @media (max-width: 768px) {
            .product-layout {
                grid-template-columns: 1fr;
            }
        }

        /* Slider */
        .product-gallery {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            position: relative;
        }

        .slider {
            display: flex;
            transition: transform 0.5s ease;
            height: 450px;
        }

        .slide {
            min-width: 100%;
            height: 100%;
        }

        .slide img {
            width: 100%;
			/* 
            height: 100%;
            object-fit: cover;*/
        }

        .slider-nav {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255,255,255,0.6);
            cursor: pointer;
            transition: background 0.3s;
        }

        .dot.active {
            background: white;
        }

        .slider-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.8);
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            font-size: 18px;
            color: #333;
            cursor: pointer;
            transition: background 0.3s;
        }

        .slider-btn:hover {
            background: white;
        }

        .slider-btn.prev { left: 20px; }
        .slider-btn.next { right: 20px; }

        /* Infos produit */
        .product-info {
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .product-title {
            font-size: 2.2rem;
            font-weight: 700;
            color: #0f172a;
            margin-bottom: 10px;
        }

        .product-price {
            font-size: 1.4rem;
            color: #007bff;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .product-description {
            color: #475569;
            margin-bottom: 25px;
            font-size: 1.05rem;
        }

        .product-meta {
            background: white;
            padding: 20px;
            border-radius: 16px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);

        }
		.product-meta6 {
            background: #fffbfb;
            padding: 20px;
            border-radius: 16px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
            margin-bottom: 25px;
        }
		.product-metab {
            padding: 20px;
			margin-top:20px

        }

        .meta-title {
            font-size: 1.1rem;
            font-weight: 600;
            color: #0f172a;
            margin-bottom: 12px;
        }

        .caracteristiques {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
        }

        .caracteristique-item {
            display: flex;
            flex-direction: column;
        }

        .caracteristique-label {
            font-size: 0.9rem;
            color: #64748b;
        }

        .caracteristique-value {
            font-weight: 600;
            color: #1e293b;
        }

        /* Boutons */
        .action-buttons {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

        .btn {
            padding: 14px 28px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 1rem;
            text-align: center;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            transition: all 0.3s ease;
            flex: 1;
            min-width: 200px;
        }

        .btn-devis {
            background: linear-gradient(135deg, #007bff, #0056b3);
            color: white;
            box-shadow: 0 4px 15px rgba(0,123,255,0.3);
        }

        .btn-devis:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0,123,255,0.4);
        }

        .btn-whatsapp {
            background: linear-gradient(135deg, #25D366, #128C7E);
            color: white;
            box-shadow: 0 4px 15px rgba(37,211,102,0.3);
        }

        .btn-whatsapp:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(37,211,102,0.4);
        }

        /* Footer léger */
        footer {
            margin-top: 80px;
            text-align: center;
            padding: 20px;
            color: #64748b;
            font-size: 0.9rem;
        }
