        .specs-section {
            background: linear-gradient(135deg, #f8f9fc 0%, #e9ecef 100%);
            border-radius: 16px;
            padding: 2rem;
            margin: 2rem 0;
        }

        .specs-section h2 {
            font-size: 1.5rem;
            font-weight: 700;
            color: #1a1a2e;
            margin-bottom: 1.5rem;
            padding-bottom: 0.75rem;
            border-bottom: 2px solid #4e73df;
        }

        .specs-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
        }

        .specs-category {
            background: white;
            border-radius: 12px;
            padding: 1.25rem;
            box-shadow: 0 2px 8px rgba(0,0,0,0.06);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .specs-category:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 16px rgba(0,0,0,0.1);
        }

        .specs-category-title {
            font-size: 1rem;
            font-weight: 600;
            color: #4e73df;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid #e3e6f0;
            display: flex;
            align-items: center;
        }

        .specs-category-title i {
            font-size: 1.2rem;
        }

        .specs-table {
            width: 100%;
            border-collapse: collapse;
        }

        .specs-table tr {
            border-bottom: 1px solid #f0f0f0;
        }

        .specs-table tr:last-child {
            border-bottom: none;
        }

        .specs-table td {
            padding: 0.5rem 0;
            font-size: 0.9rem;
        }

        .spec-name {
            color: #6c757d;
            font-weight: 500;
            width: 45%;
        }

        .spec-value {
            color: #1a1a2e;
            font-weight: 600;
            text-align: right;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .specs-section {
                padding: 1.25rem;
                margin: 1rem -0.5rem;
                border-radius: 12px;
            }

            .specs-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .specs-category {
                padding: 1rem;
            }

            .spec-name, .spec-value {
                font-size: 0.85rem;
            }
        }

        /* Source des données */
        .specs-source {
            margin-top: 1.5rem;
            padding-top: 1rem;
            border-top: 1px solid #e3e6f0;
            font-size: 0.85rem;
            color: #6c757d;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            flex-wrap: wrap;
        }

        .specs-source i {
            color: #4e73df;
        }

        .specs-source a {
            color: #4e73df;
            text-decoration: none;
            font-weight: 500;
        }

        .specs-source a:hover {
            text-decoration: underline;
        }
