/* Centralized stylesheet for all pages */
@import url('site-search.css');

/* ===== accessoires.html ===== */
:root {
            --green-logo: #64b446;
            --anthracite: #333333;
            --light-grey: #f4f4f4;
            --white: #ffffff;
            --border-color: #eeeeee;
            --linkedin-blue: #0077b5;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: var(--anthracite);
            background-color: var(--white);
        }

        .container { width: 95%; max-width: 1200px; margin: auto; }

        /* HEADER STANDARD */
        header {
            background: var(--white);
            padding: 10px 0;
            border-bottom: 1px solid var(--border-color);
            position: sticky; 
            top: 0; 
            z-index: 1000;
        }

        .navbar { display: flex; justify-content: space-between; align-items: center; }

        .logo-block {
            width: 300px; 
            height: 80px; 
            background-image: url('../images/logo.jpg');
            background-repeat: no-repeat;
            background-position: left center;
            background-size: contain;
            display: block;
        }

        nav { display: flex; align-items: center; }
        nav ul { display: flex; list-style: none; align-items: center; }
        nav ul li { margin-left: 5px; position: relative; }

        nav ul li a { 
            text-decoration: none; 
            color: var(--anthracite); 
            font-weight: 500; 
            font-size: 0.85rem; 
            transition: 0.3s; 
            text-transform: uppercase;
            padding: 10px 15px;
            display: inline-block;
        }

        nav ul li a:hover, .active { color: var(--green-logo); }

        .header-utils {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-left: 20px;
            border-left: 1px solid var(--border-color);
            padding-left: 20px;
        }

        .lang-selector { display: flex; gap: 8px; }
        .lang-selector a {
            text-decoration: none;
            color: #999;
            font-size: 0.75rem;
            font-weight: 700;
            transition: 0.3s;
        }
        .lang-selector a:hover, .lang-selector a.current-lang { color: var(--green-logo); }

        .social-link svg {
            width: 20px; height: 20px; fill: #999; transition: 0.3s; display: block;
        }
        .social-link:hover svg { fill: var(--linkedin-blue); }

        .dropdown-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background-color: var(--white);
            min-width: 240px;
            box-shadow: 0 8px 16px rgba(0,0,0,0.1);
            border-top: 2px solid var(--green-logo);
            z-index: 100;
        }

        .has-dropdown:hover .dropdown-menu { display: block; }
        .dropdown-menu li { margin: 0; display: block; width: 100%; }
        .dropdown-menu li a {
            color: var(--anthracite);
            padding: 12px 20px;
            text-transform: capitalize;
            font-size: 0.85rem;
            width: 100%;
            display: block;
            border-bottom: 1px solid #eee;
        }

        /* SECTION HERO */
        .product-page-hero {
            padding: 60px 0;
            background: var(--light-grey);
            border-bottom: 1px solid var(--border-color);
        }

        .breadcrumb { font-size: 0.8rem; color: #888; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px; }

        .product-intro {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .product-gallery img { width: 100%; border-radius: 4px; box-shadow: 0 4px 20px rgba(0,0,0,0.05); }

        .product-details h1 { font-size: 2.5rem; margin-bottom: 20px; line-height: 1.2; }
        .product-details .tagline { 
            display: inline-block; 
            background: var(--green-logo); 
            color: white; 
            padding: 4px 12px; 
            font-size: 0.75rem; 
            font-weight: 700; 
            border-radius: 20px; 
            margin-bottom: 15px;
            text-transform: uppercase;
        }
        .product-details p { font-size: 1.1rem; color: #555; margin-bottom: 30px; }

        /* SECTION SELECTION */
        .product-selection { padding: 80px 0; }
        .product-category-title { font-size: 1.8rem; margin-bottom: 40px; border-left: 4px solid var(--green-logo); padding-left: 20px; }

        .item-card {
            border: 1px solid var(--border-color);
            margin-bottom: 15px;
            border-radius: 4px;
            background: white;
            overflow: hidden;
        }

        .item-header {
            padding: 15px 20px;
            display: grid;
            grid-template-columns: 80px 1fr 200px 40px;
            align-items: center;
            cursor: pointer;
            transition: 0.2s;
        }

        .item-header:hover { background: #fafafa; }
        .item-img-mini { width: 50px; height: 50px; object-fit: contain; background: #fff; border-radius: 4px; }
        .item-title { font-weight: 700; font-size: 1.05rem; }
        .item-cat { color: #888; font-size: 0.85rem; font-style: italic; }
        .item-toggle { text-align: right; color: var(--green-logo); font-weight: bold; font-size: 1.2rem; }

        .item-details { display: none; padding: 30px; border-top: 1px solid var(--border-color); background: #fdfdfd; }
        
        .grid-details { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-bottom: 20px; }
        .grid-details h4 { font-size: 0.85rem; text-transform: uppercase; color: var(--green-logo); margin-bottom: 8px; }
        .grid-details p { font-size: 0.9rem; color: #666; }

        table { width: 100%; border-collapse: collapse; background: white; }
        th { text-align: left; padding: 12px; border-bottom: 2px solid var(--border-color); color: #888; font-size: 0.7rem; text-transform: uppercase; }
        td { padding: 10px 12px; border-bottom: 1px solid var(--border-color); font-size: 0.85rem; }

        .btn-order-small { 
            background: var(--green-logo); 
            color: white; 
            text-decoration: none; 
            padding: 5px 12px; 
            border-radius: 2px; 
            font-size: 0.75rem; 
            font-weight: bold;
            display: inline-block;
        }

        .tech-disclaimer { font-size: 0.75rem; color: #999; margin-top: 30px; font-style: italic; }

        /* FOOTER STANDARD (IDENTIQUE INDEX) */
        footer { 
            background: var(--anthracite); 
            color: white; 
            padding: 80px 0 40px 0; 
            font-size: 0.9rem; 
            border-top: 4px solid var(--green-logo); 
        }
        
        .mega-footer { 
            display: grid; 
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); 
            gap: 40px; 
            margin-bottom: 60px;
        }

        .footer-col h4 { color: var(--green-logo); text-transform: uppercase; font-size: 0.8rem; letter-spacing: 1px; margin-bottom: 25px; font-weight: 700; }
        .footer-col ul { list-style: none; }
        .footer-col ul li { margin-bottom: 12px; }
        .footer-col ul li a { color: #ddd; text-decoration: none; transition: 0.3s; }
        .footer-col ul li a:hover { color: var(--green-logo); padding-left: 5px; }

        .footer-social { display: flex; gap: 15px; margin-top: 20px; }
        .footer-social svg { width: 24px; height: 24px; fill: white; transition: 0.3s; }
        .footer-social a:hover svg { fill: var(--green-logo); }

        .footer-bottom { 
            border-top: 1px solid rgba(255,255,255,0.1); 
            padding-top: 30px; 
            display: flex; 
            justify-content: space-between; 
            align-items: center;
            color: #bbb; 
            font-size: 0.8rem;
        }
        .footer-bottom a { color: var(--green-logo); text-decoration: none; }

        @media (max-width: 992px) {
            .header-utils { border-left: none; padding-left: 0; margin-left: 0; margin-top: 10px; }
            .product-intro, .grid-details { grid-template-columns: 1fr; }
            .item-header { grid-template-columns: 60px 1fr 40px; }
            .item-cat { display: none; }
            .mega-footer { grid-template-columns: 1fr; }
            .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
        }

/* ===== cables.html ===== */
:root {
            --green-logo: #64b446;
            --anthracite: #333333;
            --light-grey: #f4f4f4;
            --white: #ffffff;
            --border-color: #eeeeee;
            --linkedin-blue: #0077b5;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: var(--anthracite);
            background-color: var(--white);
        }

        .container { width: 95%; max-width: 1200px; margin: auto; }

        /* HEADER STANDARD - IDENTIQUE INDEX */
        header {
            background: var(--white);
            padding: 10px 0;
            border-bottom: 1px solid var(--border-color);
            position: sticky; 
            top: 0; 
            z-index: 1000;
        }

        .navbar { display: flex; justify-content: space-between; align-items: center; }

        .logo-block {
            width: 300px; 
            height: 80px; 
            background-image: url('../images/logo.jpg');
            background-repeat: no-repeat;
            background-position: left center;
            background-size: contain;
            display: block;
        }

        nav { display: flex; align-items: center; }
        nav ul { display: flex; list-style: none; align-items: center; }
        nav ul li { margin-left: 5px; position: relative; }

        nav ul li a { 
            text-decoration: none; 
            color: var(--anthracite); 
            font-weight: 500; 
            font-size: 0.85rem; 
            transition: 0.3s; 
            text-transform: uppercase;
            padding: 10px 15px;
            display: inline-block;
        }

        nav ul li a:hover, .active { color: var(--green-logo); }

        .header-utils {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-left: 20px;
            border-left: 1px solid var(--border-color);
            padding-left: 20px;
        }

        .lang-selector { display: flex; gap: 8px; }
        .lang-selector a {
            text-decoration: none;
            color: #999;
            font-size: 0.75rem;
            font-weight: 700;
            transition: 0.3s;
        }
        .lang-selector a:hover, .lang-selector a.current-lang { color: var(--green-logo); }

        .social-link svg {
            width: 20px; height: 20px; fill: #999; transition: 0.3s; display: block;
        }
        .social-link:hover svg { fill: var(--linkedin-blue); }

        .dropdown-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background-color: var(--white);
            min-width: 240px;
            box-shadow: 0 8px 16px rgba(0,0,0,0.1);
            border-top: 2px solid var(--green-logo);
            z-index: 100;
        }

        .has-dropdown:hover .dropdown-menu { display: block; }
        .dropdown-menu li { margin: 0; display: block; width: 100%; }
        .dropdown-menu li a {
            color: var(--anthracite);
            padding: 12px 20px;
            text-transform: capitalize;
            font-size: 0.85rem;
            width: 100%;
            display: block;
            border-bottom: 1px solid #eee;
        }

        /* SECTION HERO PRODUIT */
        .product-page-hero {
            padding: 60px 0;
            background: var(--light-grey);
            border-bottom: 1px solid var(--border-color);
        }

        .breadcrumb { font-size: 0.8rem; color: #888; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px; }
        .breadcrumb a { color: #888; text-decoration: none; }

        .product-intro {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .product-gallery img { width: 100%; border-radius: 4px; box-shadow: 0 4px 20px rgba(0,0,0,0.05); }

        .product-details h1 { font-size: 2.5rem; margin-bottom: 20px; line-height: 1.2; }
        .product-details .tagline { 
            display: inline-block; 
            background: var(--green-logo); 
            color: white; 
            padding: 4px 12px; 
            font-size: 0.75rem; 
            font-weight: 700; 
            border-radius: 20px; 
            margin-bottom: 15px;
            text-transform: uppercase;
        }
        .product-details p { font-size: 1.1rem; color: #555; margin-bottom: 30px; }

        /* TABLEAU TECHNIQUE */
        .specs-section { padding: 80px 0; }
        .specs-section h2 { font-size: 1.8rem; margin-bottom: 40px; border-left: 4px solid var(--green-logo); padding-left: 20px; }

        .specs-table-wrapper { border: 1px solid var(--border-color); border-radius: 4px; overflow: hidden; background: white; }
        table { width: 100%; border-collapse: collapse; }

        th { background: #f8f8f8; text-align: left; padding: 18px; border-bottom: 2px solid var(--border-color); color: #888; font-size: 0.85rem; text-transform: uppercase; }
        
        .clickable-row { cursor: pointer; transition: background 0.2s; border-bottom: 1px solid var(--border-color); }
        .clickable-row:hover { background: #fcfcfc; }
        .clickable-row td { padding: 18px; font-weight: 500; color: var(--anthracite); }
        .row-icon { color: var(--green-logo); text-align: right; font-weight: bold; font-size: 1.2rem; }

        .tech-disclaimer { font-size: 0.75rem; color: #999; margin-top: 15px; padding-left: 10px; font-style: italic; }

        /* DETAILS ACCORDEON */
        .details-row { display: none; background: #fdfdfd; border-bottom: 1px solid var(--border-color); }
        .details-content { padding: 40px; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
        
        .info-list { list-style: none; }
        .info-list li { margin-bottom: 12px; font-size: 0.95rem; display: flex; justify-content: space-between; border-bottom: 1px solid #eee; padding-bottom: 6px; }
        .info-list li span { font-weight: 700; color: var(--anthracite); }

        .action-box { display: flex; flex-direction: column; justify-content: center; }
        .btn-order { background: var(--green-logo); color: white; text-decoration: none; padding: 15px; border-radius: 4px; text-align: center; font-weight: 700; transition: 0.3s; }
        .btn-order:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(100, 180, 70, 0.3); }

        /* FOOTER STANDARD - IDENTIQUE INDEX */
        footer { 
            background: var(--anthracite); 
            color: white; 
            padding: 80px 0 40px 0; 
            font-size: 0.9rem; 
            border-top: 4px solid var(--green-logo); 
        }
        
        .mega-footer { 
            display: grid; 
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); 
            gap: 40px; 
            margin-bottom: 60px;
        }

        .footer-col h4 { color: var(--green-logo); text-transform: uppercase; font-size: 0.8rem; letter-spacing: 1px; margin-bottom: 25px; font-weight: 700; }
        .footer-col ul { list-style: none; }
        .footer-col ul li { margin-bottom: 12px; }
        .footer-col ul li a { color: #ddd; text-decoration: none; transition: 0.3s; }
        .footer-col ul li a:hover { color: var(--green-logo); padding-left: 5px; }

        .footer-social { display: flex; gap: 15px; margin-top: 20px; }
        .footer-social svg { width: 24px; height: 24px; fill: white; transition: 0.3s; }
        .footer-social a:hover svg { fill: var(--green-logo); }

        .footer-bottom { 
            border-top: 1px solid rgba(255,255,255,0.1); 
            padding-top: 30px; 
            display: flex; 
            justify-content: space-between; 
            align-items: center;
            color: #bbb; 
            font-size: 0.8rem;
        }
        .footer-bottom a { color: var(--green-logo); text-decoration: none; }

        @media (max-width: 992px) {
            .product-intro, .details-content { grid-template-columns: 1fr; gap: 30px; }
            .mega-footer { grid-template-columns: 1fr; }
            .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
        }

/* ===== contact-de.html ===== */
:root {
            --green-logo: #64b446;
            --anthracite: #333333;
            --light-grey: #f4f4f4;
            --white: #ffffff;
            --border-color: #eeeeee;
            --linkedin-blue: #0077b5;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: var(--anthracite);
            background-color: var(--white);
        }

        .container { width: 95%; max-width: 1200px; margin: auto; }

        /* HEADER */
        header {
            background: var(--white);
            padding: 10px 0;
            border-bottom: 1px solid var(--border-color);
            position: sticky; 
            top: 0; 
            z-index: 1000;
        }

        .navbar { display: flex; justify-content: space-between; align-items: center; }

        .logo-block {
            width: 300px; 
            height: 80px; 
            background-image: url('../images/logo.jpg');
            background-repeat: no-repeat;
            background-position: left center;
            background-size: contain;
            display: block;
        }

        nav { display: flex; align-items: center; }
        nav ul { display: flex; list-style: none; align-items: center; }
        nav ul li { margin-left: 5px; position: relative; }

        nav ul li a { 
            text-decoration: none; 
            color: var(--anthracite); 
            font-weight: 500; 
            font-size: 0.85rem; 
            transition: 0.3s; 
            text-transform: uppercase;
            padding: 10px 15px;
            display: inline-block;
        }

        nav ul li a:hover { color: var(--green-logo); }

        /* HEADER UTILS */
        .header-utils {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-left: 20px;
            border-left: 1px solid var(--border-color);
            padding-left: 20px;
        }

        .lang-selector { display: flex; gap: 8px; }
        .lang-selector a {
            text-decoration: none;
            color: #999;
            font-size: 0.75rem;
            font-weight: 700;
            transition: 0.3s;
        }
        .lang-selector a:hover, .lang-selector a.current-lang { color: var(--green-logo); }

        .social-link svg {
            width: 20px;
            height: 20px;
            fill: #999;
            transition: 0.3s;
            display: block;
        }
        .social-link:hover svg { fill: var(--linkedin-blue); }

        .dropdown-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background-color: var(--white);
            min-width: 240px;
            box-shadow: 0 8px 16px rgba(0,0,0,0.1);
            border-top: 2px solid var(--green-logo);
            z-index: 100;
        }

        .has-dropdown:hover .dropdown-menu { display: block; }
        .dropdown-menu li { margin: 0; display: block; width: 100%; }
        .dropdown-menu li a {
            color: var(--anthracite);
            padding: 12px 20px;
            text-transform: capitalize;
            font-size: 0.85rem;
            width: 100%;
            display: block;
            border-bottom: 1px solid #eee;
        }

        /* PAGE CONTACT CONTENT */
        .contact-hero {
            background-color: var(--light-grey);
            padding: 60px 0;
            text-align: center;
            border-bottom: 1px solid var(--border-color);
        }

        .contact-hero h1 { font-size: 2.5rem; color: var(--anthracite); margin-bottom: 10px; }
        .contact-hero p { color: #666; font-size: 1.1rem; }

        .contact-wrapper {
            padding: 80px 0;
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 60px;
        }

        .info-card {
            background: #f9f9f9;
            padding: 40px;
            border-radius: 4px;
        }

        .info-item { margin-bottom: 30px; }
        .info-item h3 { 
            color: var(--green-logo); 
            font-size: 0.9rem; 
            text-transform: uppercase; 
            margin-bottom: 10px; 
            letter-spacing: 1px;
        }
        .info-item p, .info-item a { 
            font-size: 1.1rem; 
            color: var(--anthracite); 
            text-decoration: none; 
            display: block; 
        }
        .info-item a:hover { color: var(--green-logo); }

        /* FORMULAR */
        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .form-group { display: flex; flex-direction: column; gap: 8px; }
        .form-group label { font-weight: 600; font-size: 0.9rem; }
        
        .form-group input:not([type="checkbox"]), .form-group textarea {
            padding: 14px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-family: inherit;
            font-size: 1rem;
            outline: none;
            transition: 0.3s;
        }

        .form-group input:not([type="checkbox"]):focus, .form-group textarea:focus {
            border-color: var(--green-logo);
            box-shadow: 0 0 0 3px rgba(100, 180, 70, 0.1);
        }

        .btn-submit {
            background: var(--green-logo);
            color: white;
            padding: 16px 32px;
            border: none;
            border-radius: 4px;
            font-weight: bold;
            cursor: pointer;
            font-size: 1rem;
            transition: 0.3s;
            align-self: flex-start;
        }

        .btn-submit:hover { opacity: 0.9; transform: translateY(-2px); }

        /* GOOGLE MAPS */
        .map-container {
            width: 100%;
            height: 450px;
            border-top: 1px solid var(--border-color);
            line-height: 0;
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            border: 0;
            filter: grayscale(0.2);
        }

        /* FOOTER */
        footer { 
            background: var(--anthracite); 
            color: white; 
            padding: 80px 0 40px 0; 
            font-size: 0.9rem; 
            border-top: 4px solid var(--green-logo); 
        }
        
        .mega-footer { 
            display: grid; 
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); 
            gap: 40px; 
            margin-bottom: 60px;
        }

        .footer-col h4 { color: var(--green-logo); text-transform: uppercase; font-size: 0.8rem; letter-spacing: 1px; margin-bottom: 25px; font-weight: 700; }
        .footer-col ul { list-style: none; }
        .footer-col ul li { margin-bottom: 12px; }
        .footer-col ul li a { color: #ddd; text-decoration: none; transition: 0.3s; }
        .footer-col ul li a:hover { color: var(--green-logo); padding-left: 5px; }

        .footer-social { display: flex; gap: 15px; margin-top: 20px; }
        .footer-social svg { width: 24px; height: 24px; fill: white; transition: 0.3s; }
        .footer-social a:hover svg { fill: var(--green-logo); }

        .footer-bottom { 
            border-top: 1px solid rgba(255,255,255,0.1); 
            padding-top: 30px; 
            display: flex; 
            justify-content: space-between; 
            align-items: center;
            color: #bbb; 
            font-size: 0.8rem;
        }
        .footer-bottom a { color: var(--green-logo); text-decoration: none; }

        @media (max-width: 992px) {
            .header-utils { border-left: none; padding-left: 0; margin-left: 0; margin-top: 10px; }
            .contact-wrapper { grid-template-columns: 1fr; padding: 40px 0; }
            .mega-footer { grid-template-columns: 1fr; }
            .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
            .map-container { height: 300px; }
        }

/* ===== contact-en.html ===== */
:root {
            --green-logo: #64b446;
            --anthracite: #333333;
            --light-grey: #f4f4f4;
            --white: #ffffff;
            --border-color: #eeeeee;
            --linkedin-blue: #0077b5;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: var(--anthracite);
            background-color: var(--white);
        }

        .container { width: 95%; max-width: 1200px; margin: auto; }

        /* HEADER */
        header {
            background: var(--white);
            padding: 10px 0;
            border-bottom: 1px solid var(--border-color);
            position: sticky; 
            top: 0; 
            z-index: 1000;
        }

        .navbar { display: flex; justify-content: space-between; align-items: center; }

        .logo-block {
            width: 300px; 
            height: 80px; 
            background-image: url('../images/logo.jpg');
            background-repeat: no-repeat;
            background-position: left center;
            background-size: contain;
            display: block;
        }

        nav { display: flex; align-items: center; }
        nav ul { display: flex; list-style: none; align-items: center; }
        nav ul li { margin-left: 5px; position: relative; }

        nav ul li a { 
            text-decoration: none; 
            color: var(--anthracite); 
            font-weight: 500; 
            font-size: 0.85rem; 
            transition: 0.3s; 
            text-transform: uppercase;
            padding: 10px 15px;
            display: inline-block;
        }

        nav ul li a:hover { color: var(--green-logo); }

        /* HEADER UTILS */
        .header-utils {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-left: 20px;
            border-left: 1px solid var(--border-color);
            padding-left: 20px;
        }

        .lang-selector { display: flex; gap: 8px; }
        .lang-selector a {
            text-decoration: none;
            color: #999;
            font-size: 0.75rem;
            font-weight: 700;
            transition: 0.3s;
        }
        .lang-selector a:hover, .lang-selector a.current-lang { color: var(--green-logo); }

        .social-link svg {
            width: 20px;
            height: 20px;
            fill: #999;
            transition: 0.3s;
            display: block;
        }
        .social-link:hover svg { fill: var(--linkedin-blue); }

        .dropdown-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background-color: var(--white);
            min-width: 240px;
            box-shadow: 0 8px 16px rgba(0,0,0,0.1);
            border-top: 2px solid var(--green-logo);
            z-index: 100;
        }

        .has-dropdown:hover .dropdown-menu { display: block; }
        .dropdown-menu li { margin: 0; display: block; width: 100%; }
        .dropdown-menu li a {
            color: var(--anthracite);
            padding: 12px 20px;
            text-transform: capitalize;
            font-size: 0.85rem;
            width: 100%;
            display: block;
            border-bottom: 1px solid #eee;
        }

        /* PAGE CONTACT CONTENT */
        .contact-hero {
            background-color: var(--light-grey);
            padding: 60px 0;
            text-align: center;
            border-bottom: 1px solid var(--border-color);
        }

        .contact-hero h1 { font-size: 2.5rem; color: var(--anthracite); margin-bottom: 10px; }
        .contact-hero p { color: #666; font-size: 1.1rem; }

        .contact-wrapper {
            padding: 80px 0;
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 60px;
        }

        .info-card {
            background: #f9f9f9;
            padding: 40px;
            border-radius: 4px;
        }

        .info-item { margin-bottom: 30px; }
        .info-item h3 { 
            color: var(--green-logo); 
            font-size: 0.9rem; 
            text-transform: uppercase; 
            margin-bottom: 10px; 
            letter-spacing: 1px;
        }
        .info-item p, .info-item a { 
            font-size: 1.1rem; 
            color: var(--anthracite); 
            text-decoration: none; 
            display: block; 
        }
        .info-item a:hover { color: var(--green-logo); }

        /* FORM */
        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .form-group { display: flex; flex-direction: column; gap: 8px; }
        .form-group label { font-weight: 600; font-size: 0.9rem; }
        
        .form-group input:not([type="checkbox"]), .form-group textarea {
            padding: 14px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-family: inherit;
            font-size: 1rem;
            outline: none;
            transition: 0.3s;
        }

        .form-group input:not([type="checkbox"]):focus, .form-group textarea:focus {
            border-color: var(--green-logo);
            box-shadow: 0 0 0 3px rgba(100, 180, 70, 0.1);
        }

        .btn-submit {
            background: var(--green-logo);
            color: white;
            padding: 16px 32px;
            border: none;
            border-radius: 4px;
            font-weight: bold;
            cursor: pointer;
            font-size: 1rem;
            transition: 0.3s;
            align-self: flex-start;
        }

        .btn-submit:hover { opacity: 0.9; transform: translateY(-2px); }

        /* GOOGLE MAPS */
        .map-container {
            width: 100%;
            height: 450px;
            border-top: 1px solid var(--border-color);
            line-height: 0;
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            border: 0;
            filter: grayscale(0.2);
        }

        /* FOOTER */
        footer { 
            background: var(--anthracite); 
            color: white; 
            padding: 80px 0 40px 0; 
            font-size: 0.9rem; 
            border-top: 4px solid var(--green-logo); 
        }
        
        .mega-footer { 
            display: grid; 
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); 
            gap: 40px; 
            margin-bottom: 60px;
        }

        .footer-col h4 { color: var(--green-logo); text-transform: uppercase; font-size: 0.8rem; letter-spacing: 1px; margin-bottom: 25px; font-weight: 700; }
        .footer-col ul { list-style: none; }
        .footer-col ul li { margin-bottom: 12px; }
        .footer-col ul li a { color: #ddd; text-decoration: none; transition: 0.3s; }
        .footer-col ul li a:hover { color: var(--green-logo); padding-left: 5px; }

        .footer-social { display: flex; gap: 15px; margin-top: 20px; }
        .footer-social svg { width: 24px; height: 24px; fill: white; transition: 0.3s; }
        .footer-social a:hover svg { fill: var(--green-logo); }

        .footer-bottom { 
            border-top: 1px solid rgba(255,255,255,0.1); 
            padding-top: 30px; 
            display: flex; 
            justify-content: space-between; 
            align-items: center;
            color: #bbb; 
            font-size: 0.8rem;
        }
        .footer-bottom a { color: var(--green-logo); text-decoration: none; }
        .footer-bottom .impressum-link { color: #bbb; text-decoration: none; margin-left: 10px; }

        @media (max-width: 992px) {
            .header-utils { border-left: none; padding-left: 0; margin-left: 0; margin-top: 10px; }
            .contact-wrapper { grid-template-columns: 1fr; padding: 40px 0; }
            .mega-footer { grid-template-columns: 1fr; }
            .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
            .map-container { height: 300px; }
        }

/* ===== contact.html ===== */
:root {
            --green-logo: #64b446;
            --anthracite: #333333;
            --light-grey: #f4f4f4;
            --white: #ffffff;
            --border-color: #eeeeee;
            --linkedin-blue: #0077b5;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: var(--anthracite);
            background-color: var(--white);
        }

        .container { width: 95%; max-width: 1200px; margin: auto; }

        /* HEADER */
        header {
            background: var(--white);
            padding: 10px 0;
            border-bottom: 1px solid var(--border-color);
            position: sticky; 
            top: 0; 
            z-index: 1000;
        }

        .navbar { display: flex; justify-content: space-between; align-items: center; }

        .logo-block {
            width: 300px; 
            height: 80px; 
            background-image: url('../images/logo.jpg');
            background-repeat: no-repeat;
            background-position: left center;
            background-size: contain;
            display: block;
        }

        nav { display: flex; align-items: center; }
        nav ul { display: flex; list-style: none; align-items: center; }
        nav ul li { margin-left: 5px; position: relative; }

        nav ul li a { 
            text-decoration: none; 
            color: var(--anthracite); 
            font-weight: 500; 
            font-size: 0.85rem; 
            transition: 0.3s; 
            text-transform: uppercase;
            padding: 10px 15px;
            display: inline-block;
        }

        nav ul li a:hover { color: var(--green-logo); }

        /* HEADER UTILS */
        .header-utils {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-left: 20px;
            border-left: 1px solid var(--border-color);
            padding-left: 20px;
        }

        .lang-selector { display: flex; gap: 8px; }
        .lang-selector a {
            text-decoration: none;
            color: #999;
            font-size: 0.75rem;
            font-weight: 700;
            transition: 0.3s;
        }
        .lang-selector a:hover, .lang-selector a.current-lang { color: var(--green-logo); }

        .social-link svg {
            width: 20px;
            height: 20px;
            fill: #999;
            transition: 0.3s;
            display: block;
        }
        .social-link:hover svg { fill: var(--linkedin-blue); }

        .dropdown-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background-color: var(--white);
            min-width: 240px;
            box-shadow: 0 8px 16px rgba(0,0,0,0.1);
            border-top: 2px solid var(--green-logo);
            z-index: 100;
        }

        .has-dropdown:hover .dropdown-menu { display: block; }
        .dropdown-menu li { margin: 0; display: block; width: 100%; }
        .dropdown-menu li a {
            color: var(--anthracite);
            padding: 12px 20px;
            text-transform: capitalize;
            font-size: 0.85rem;
            width: 100%;
            display: block;
            border-bottom: 1px solid #eee;
        }

        /* PAGE CONTACT CONTENT */
        .contact-hero {
            background-color: var(--light-grey);
            padding: 60px 0;
            text-align: center;
            border-bottom: 1px solid var(--border-color);
        }

        .contact-hero h1 { font-size: 2.5rem; color: var(--anthracite); margin-bottom: 10px; }
        .contact-hero p { color: #666; font-size: 1.1rem; }

        .contact-wrapper {
            padding: 80px 0;
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 60px;
        }

        .info-card {
            background: #f9f9f9;
            padding: 40px;
            border-radius: 4px;
        }

        .info-item { margin-bottom: 30px; }
        .info-item h3 { 
            color: var(--green-logo); 
            font-size: 0.9rem; 
            text-transform: uppercase; 
            margin-bottom: 10px; 
            letter-spacing: 1px;
        }
        .info-item p, .info-item a { 
            font-size: 1.1rem; 
            color: var(--anthracite); 
            text-decoration: none; 
            display: block; 
        }
        .info-item a:hover { color: var(--green-logo); }

        /* FORMULAIRE */
        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .form-group { display: flex; flex-direction: column; gap: 8px; }
        .form-group label { font-weight: 600; font-size: 0.9rem; }
        
        .form-group input:not([type="checkbox"]), .form-group textarea {
            padding: 14px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-family: inherit;
            font-size: 1rem;
            outline: none;
            transition: 0.3s;
        }

        .form-group input:not([type="checkbox"]):focus, .form-group textarea:focus {
            border-color: var(--green-logo);
            box-shadow: 0 0 0 3px rgba(100, 180, 70, 0.1);
        }

        .btn-submit {
            background: var(--green-logo);
            color: white;
            padding: 16px 32px;
            border: none;
            border-radius: 4px;
            font-weight: bold;
            cursor: pointer;
            font-size: 1rem;
            transition: 0.3s;
            align-self: flex-start;
        }

        .btn-submit:hover { opacity: 0.9; transform: translateY(-2px); }

        /* CARTE GOOGLE MAPS */
        .map-container {
            width: 100%;
            height: 450px;
            border-top: 1px solid var(--border-color);
            line-height: 0;
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            border: 0;
            filter: grayscale(0.2);
        }

        /* FOOTER */
        footer { 
            background: var(--anthracite); 
            color: white; 
            padding: 80px 0 40px 0; 
            font-size: 0.9rem; 
            border-top: 4px solid var(--green-logo); 
        }
        
        .mega-footer { 
            display: grid; 
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); 
            gap: 40px; 
            margin-bottom: 60px;
        }

        .footer-col h4 { color: var(--green-logo); text-transform: uppercase; font-size: 0.8rem; letter-spacing: 1px; margin-bottom: 25px; font-weight: 700; }
        .footer-col ul { list-style: none; }
        .footer-col ul li { margin-bottom: 12px; }
        .footer-col ul li a { color: #ddd; text-decoration: none; transition: 0.3s; }
        .footer-col ul li a:hover { color: var(--green-logo); padding-left: 5px; }

        .footer-social { display: flex; gap: 15px; margin-top: 20px; }
        .footer-social svg { width: 24px; height: 24px; fill: white; transition: 0.3s; }
        .footer-social a:hover svg { fill: var(--green-logo); }

        .footer-bottom { 
            border-top: 1px solid rgba(255,255,255,0.1); 
            padding-top: 30px; 
            display: flex; 
            justify-content: space-between; 
            align-items: center;
            color: #bbb; 
            font-size: 0.8rem;
        }
        .footer-bottom a { color: var(--green-logo); text-decoration: none; }
        .footer-bottom .impressum-link { color: #bbb; text-decoration: none; margin-left: 10px; }

        @media (max-width: 992px) {
            .header-utils { border-left: none; padding-left: 0; margin-left: 0; margin-top: 10px; }
            .contact-wrapper { grid-template-columns: 1fr; padding: 40px 0; }
            .mega-footer { grid-template-columns: 1fr; }
            .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
            .map-container { height: 300px; }
        }

/* ===== filets.html ===== */
:root {
            --green-logo: #64b446;
            --anthracite: #333333;
            --light-grey: #f4f4f4;
            --white: #ffffff;
            --border-color: #eeeeee;
            --linkedin-blue: #0077b5;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: var(--anthracite);
            background-color: var(--white);
        }

        .container { width: 95%; max-width: 1200px; margin: auto; }

        /* HEADER STANDARD */
        header {
            background: var(--white);
            padding: 10px 0;
            border-bottom: 1px solid var(--border-color);
            position: sticky; 
            top: 0; 
            z-index: 1000;
        }

        .navbar { display: flex; justify-content: space-between; align-items: center; }

        .logo-block {
            width: 300px; 
            height: 80px; 
            background-image: url('../images/logo.jpg');
            background-repeat: no-repeat;
            background-position: left center;
            background-size: contain;
            display: block;
        }

        nav { display: flex; align-items: center; }
        nav ul { display: flex; list-style: none; align-items: center; }
        nav ul li { margin-left: 5px; position: relative; }

        nav ul li a { 
            text-decoration: none; 
            color: var(--anthracite); 
            font-weight: 500; 
            font-size: 0.85rem; 
            transition: 0.3s; 
            text-transform: uppercase;
            padding: 10px 15px;
            display: inline-block;
        }

        nav ul li a:hover, .active { color: var(--green-logo); }

        .header-utils {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-left: 20px;
            border-left: 1px solid var(--border-color);
            padding-left: 20px;
        }

        .lang-selector { display: flex; gap: 8px; }
        .lang-selector a {
            text-decoration: none;
            color: #999;
            font-size: 0.75rem;
            font-weight: 700;
            transition: 0.3s;
        }
        .lang-selector a:hover, .lang-selector a.current-lang { color: var(--green-logo); }

        .social-link svg {
            width: 20px; height: 20px; fill: #999; transition: 0.3s; display: block;
        }
        .social-link:hover svg { fill: var(--linkedin-blue); }

        .dropdown-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background-color: var(--white);
            min-width: 240px;
            box-shadow: 0 8px 16px rgba(0,0,0,0.1);
            border-top: 2px solid var(--green-logo);
            z-index: 100;
        }

        .has-dropdown:hover .dropdown-menu { display: block; }
        .dropdown-menu li { margin: 0; display: block; width: 100%; }
        .dropdown-menu li a {
            color: var(--anthracite);
            padding: 12px 20px;
            text-transform: capitalize;
            font-size: 0.85rem;
            width: 100%;
            display: block;
            border-bottom: 1px solid #eee;
        }

        /* SECTION HERO PRODUIT */
        .product-page-hero {
            padding: 60px 0;
            background: var(--light-grey);
            border-bottom: 1px solid var(--border-color);
        }

        .breadcrumb { font-size: 0.8rem; color: #888; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px; }

        .product-intro {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .product-gallery img { width: 100%; border-radius: 4px; box-shadow: 0 4px 20px rgba(0,0,0,0.05); }

        .product-details h1 { font-size: 2.5rem; margin-bottom: 20px; line-height: 1.2; }
        .product-details .tagline { 
            display: inline-block; 
            background: var(--green-logo); 
            color: white; 
            padding: 4px 12px; 
            font-size: 0.75rem; 
            font-weight: 700; 
            border-radius: 20px; 
            margin-bottom: 15px;
            text-transform: uppercase;
        }
        .product-details p { font-size: 1.1rem; color: #555; margin-bottom: 30px; }

        /* SECTION SELECTION */
        .product-selection { padding: 80px 0; }
        .product-category-title { font-size: 1.8rem; margin-bottom: 40px; border-left: 4px solid var(--green-logo); padding-left: 20px; }

        .item-card {
            border: 1px solid var(--border-color);
            margin-bottom: 20px;
            border-radius: 4px;
            background: white;
            overflow: hidden;
        }

        .item-header {
            padding: 20px;
            display: grid;
            grid-template-columns: 100px 1fr 150px 50px;
            align-items: center;
            cursor: pointer;
            transition: 0.3s;
        }

        .item-header:hover { background: #fafafa; }
        .item-img-mini { width: 60px; height: 60px; object-fit: cover; background: #fff; border-radius: 4px; border: 1px solid #eee; }
        .item-title { font-weight: 700; font-size: 1.1rem; }
        .item-tag { color: var(--green-logo); font-size: 0.8rem; text-transform: uppercase; font-weight: bold; }
        .item-toggle { text-align: right; color: var(--green-logo); font-weight: bold; font-size: 1.2rem; }

        .item-details { display: none; padding: 30px; border-top: 1px solid var(--border-color); background: #fdfdfd; }
        
        .grid-details { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-bottom: 20px; }
        .grid-details h4 { font-size: 0.9rem; text-transform: uppercase; color: var(--green-logo); margin-bottom: 10px; }
        .grid-details p { font-size: 0.9rem; color: #666; }

        table { width: 100%; border-collapse: collapse; background: white; margin-top: 10px; }
        th { text-align: left; padding: 12px; border-bottom: 2px solid var(--border-color); color: #888; font-size: 0.75rem; text-transform: uppercase; }
        td { padding: 12px; border-bottom: 1px solid var(--border-color); font-size: 0.9rem; }

        .btn-order-small { 
            background: var(--green-logo); 
            color: white; 
            text-decoration: none; 
            padding: 6px 15px; 
            border-radius: 2px; 
            font-size: 0.8rem; 
            font-weight: bold;
            display: inline-block;
        }

        .tech-disclaimer { font-size: 0.75rem; color: #999; margin-top: 30px; font-style: italic; }

        /* FOOTER STANDARD (IDENTIQUE INDEX) */
        footer { 
            background: var(--anthracite); 
            color: white; 
            padding: 80px 0 40px 0; 
            font-size: 0.9rem; 
            border-top: 4px solid var(--green-logo); 
        }
        
        .mega-footer { 
            display: grid; 
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); 
            gap: 40px; 
            margin-bottom: 60px;
        }

        .footer-col h4 { color: var(--green-logo); text-transform: uppercase; font-size: 0.8rem; letter-spacing: 1px; margin-bottom: 25px; font-weight: 700; }
        .footer-col ul { list-style: none; }
        .footer-col ul li { margin-bottom: 12px; }
        .footer-col ul li a { color: #ddd; text-decoration: none; transition: 0.3s; }
        .footer-col ul li a:hover { color: var(--green-logo); padding-left: 5px; }

        .footer-social { display: flex; gap: 15px; margin-top: 20px; }
        .footer-social svg { width: 24px; height: 24px; fill: white; transition: 0.3s; }
        .footer-social a:hover svg { fill: var(--green-logo); }

        .footer-bottom { 
            border-top: 1px solid rgba(255,255,255,0.1); 
            padding-top: 30px; 
            display: flex; 
            justify-content: space-between; 
            align-items: center;
            color: #bbb; 
            font-size: 0.8rem;
        }
        .footer-bottom a { color: var(--green-logo); text-decoration: none; }

        @media (max-width: 992px) {
            .header-utils { border-left: none; padding-left: 0; margin-left: 0; margin-top: 10px; }
            .product-intro, .grid-details { grid-template-columns: 1fr; }
            .item-header { grid-template-columns: 60px 1fr 40px; }
            .item-tag { display: none; }
            .mega-footer { grid-template-columns: 1fr; }
            .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
        }

/* ===== vegetalisation.html ===== */
:root {
            --green-logo: #64b446;
            --anthracite: #333333;
            --light-grey: #f4f4f4;
            --white: #ffffff;
            --border-color: #eeeeee;
            --linkedin-blue: #0077b5;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: var(--anthracite);
            background-color: var(--white);
        }

        .container { width: 95%; max-width: 1200px; margin: auto; }

        /* HEADER STANDARD */
        header {
            background: var(--white);
            padding: 10px 0;
            border-bottom: 1px solid var(--border-color);
            position: sticky; 
            top: 0; 
            z-index: 1000;
        }

        .navbar { display: flex; justify-content: space-between; align-items: center; }

        .logo-block {
            width: 300px; 
            height: 80px; 
            background-image: url('../images/logo.jpg');
            background-repeat: no-repeat;
            background-position: left center;
            background-size: contain;
            display: block;
        }

        nav { display: flex; align-items: center; }
        nav ul { display: flex; list-style: none; align-items: center; }
        nav ul li { margin-left: 5px; position: relative; }

        nav ul li a { 
            text-decoration: none; 
            color: var(--anthracite); 
            font-weight: 500; 
            font-size: 0.85rem; 
            transition: 0.3s; 
            text-transform: uppercase;
            padding: 10px 15px;
            display: inline-block;
        }

        nav ul li a:hover, .active { color: var(--green-logo); }

        .header-utils {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-left: 20px;
            border-left: 1px solid var(--border-color);
            padding-left: 20px;
        }

        .lang-selector { display: flex; gap: 8px; }
        .lang-selector a {
            text-decoration: none;
            color: #999;
            font-size: 0.75rem;
            font-weight: 700;
            transition: 0.3s;
        }
        .lang-selector a:hover, .lang-selector a.current-lang { color: var(--green-logo); }

        .social-link svg {
            width: 20px; height: 20px; fill: #999; transition: 0.3s; display: block;
        }
        .social-link:hover svg { fill: var(--linkedin-blue); }

        .dropdown-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background-color: var(--white);
            min-width: 240px;
            box-shadow: 0 8px 16px rgba(0,0,0,0.1);
            border-top: 2px solid var(--green-logo);
            z-index: 100;
        }

        .has-dropdown:hover .dropdown-menu { display: block; }
        .dropdown-menu li { margin: 0; display: block; width: 100%; }
        .dropdown-menu li a {
            color: var(--anthracite);
            padding: 12px 20px;
            text-transform: capitalize;
            font-size: 0.85rem;
            width: 100%;
            display: block;
            border-bottom: 1px solid #eee;
        }

        /* SECTION HERO PRODUIT */
        .product-page-hero {
            padding: 60px 0;
            background: var(--light-grey);
            border-bottom: 1px solid var(--border-color);
        }

        .breadcrumb { font-size: 0.8rem; color: #888; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px; }

        .product-intro {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .product-gallery img { width: 100%; border-radius: 4px; box-shadow: 0 4px 20px rgba(0,0,0,0.05); }

        .product-details h1 { font-size: 2.5rem; margin-bottom: 20px; line-height: 1.2; }
        .product-details .tagline { 
            display: inline-block; 
            background: var(--green-logo); 
            color: white; 
            padding: 4px 12px; 
            font-size: 0.75rem; 
            font-weight: 700; 
            border-radius: 20px; 
            margin-bottom: 15px;
            text-transform: uppercase;
        }
        .product-details p { font-size: 1.1rem; color: #555; margin-bottom: 30px; }

        /* SECTION SELECTION */
        .product-selection { padding: 80px 0; }
        .product-category-title { font-size: 1.8rem; margin-bottom: 40px; border-left: 4px solid var(--green-logo); padding-left: 20px; }

        .item-card {
            border: 1px solid var(--border-color);
            margin-bottom: 20px;
            border-radius: 4px;
            background: white;
            overflow: hidden;
        }

        .item-header {
            padding: 20px;
            display: grid;
            grid-template-columns: 100px 1fr 150px 50px;
            align-items: center;
            cursor: pointer;
            transition: 0.3s;
        }

        .item-header:hover { background: #fafafa; }
        .item-img-mini { width: 60px; height: 60px; object-fit: cover; background: #fff; border-radius: 4px; border: 1px solid #eee; }
        .item-title { font-weight: 700; font-size: 1.1rem; }
        .item-tag { color: var(--green-logo); font-size: 0.8rem; text-transform: uppercase; font-weight: bold; }
        .item-toggle { text-align: right; color: var(--green-logo); font-weight: bold; font-size: 1.2rem; }

        .item-details { display: none; padding: 30px; border-top: 1px solid var(--border-color); background: #fdfdfd; }
        
        .grid-details { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-bottom: 20px; }
        .grid-details h4 { font-size: 0.9rem; text-transform: uppercase; color: var(--green-logo); margin-bottom: 10px; }
        .grid-details p { font-size: 0.9rem; color: #666; }

        table { width: 100%; border-collapse: collapse; background: white; margin-top: 10px; }
        th { text-align: left; padding: 12px; border-bottom: 2px solid var(--border-color); color: #888; font-size: 0.75rem; text-transform: uppercase; }
        td { padding: 12px; border-bottom: 1px solid var(--border-color); font-size: 0.9rem; }

        .btn-order-small { 
            background: var(--green-logo); 
            color: white; 
            text-decoration: none; 
            padding: 6px 15px; 
            border-radius: 2px; 
            font-size: 0.8rem; 
            font-weight: bold;
            display: inline-block;
        }

        .tech-disclaimer { font-size: 0.75rem; color: #999; margin-top: 30px; font-style: italic; }

        /* FOOTER STANDARD (IDENTIQUE INDEX) */
        footer { 
            background: var(--anthracite); 
            color: white; 
            padding: 80px 0 40px 0; 
            font-size: 0.9rem; 
            border-top: 4px solid var(--green-logo); 
        }
        
        .mega-footer { 
            display: grid; 
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); 
            gap: 40px; 
            margin-bottom: 60px;
        }

        .footer-col h4 { color: var(--green-logo); text-transform: uppercase; font-size: 0.8rem; letter-spacing: 1px; margin-bottom: 25px; font-weight: 700; }
        .footer-col ul { list-style: none; }
        .footer-col ul li { margin-bottom: 12px; }
        .footer-col ul li a { color: #ddd; text-decoration: none; transition: 0.3s; }
        .footer-col ul li a:hover { color: var(--green-logo); padding-left: 5px; }

        .footer-social { display: flex; gap: 15px; margin-top: 20px; }
        .footer-social svg { width: 24px; height: 24px; fill: white; transition: 0.3s; }
        .footer-social a:hover svg { fill: var(--green-logo); }

        .footer-bottom { 
            border-top: 1px solid rgba(255,255,255,0.1); 
            padding-top: 30px; 
            display: flex; 
            justify-content: space-between; 
            align-items: center;
            color: #bbb; 
            font-size: 0.8rem;
        }
        .footer-bottom a { color: var(--green-logo); text-decoration: none; }

        @media (max-width: 992px) {
            .header-utils { border-left: none; padding-left: 0; margin-left: 0; margin-top: 10px; }
            .product-intro, .grid-details { grid-template-columns: 1fr; }
            .item-header { grid-template-columns: 60px 1fr 40px; }
            .item-tag { display: none; }
            .mega-footer { grid-template-columns: 1fr; }
            .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
        }

/* ===== impressum.html ===== */
:root {
            --green-logo: #64b446;
            --anthracite: #333333;
            --light-grey: #f4f4f4;
            --white: #ffffff;
            --border-color: #eeeeee;
            --linkedin-blue: #0077b5;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: var(--anthracite);
            background-color: var(--white);
        }

        .container { width: 95%; max-width: 1200px; margin: auto; }

        /* HEADER STANDARD */
        header {
            background: var(--white);
            padding: 10px 0;
            border-bottom: 1px solid var(--border-color);
            position: sticky; 
            top: 0; 
            z-index: 1000;
        }

        .navbar { display: flex; justify-content: space-between; align-items: center; }

        .logo-block {
            width: 300px; 
            height: 80px; 
            background-image: url('../images/logo.jpg');
            background-repeat: no-repeat;
            background-position: left center;
            background-size: contain;
            display: block;
        }

        nav { display: flex; align-items: center; }
        nav ul { display: flex; list-style: none; align-items: center; }
        nav ul li { margin-left: 5px; position: relative; }

        nav ul li a { 
            text-decoration: none; 
            color: var(--anthracite); 
            font-weight: 500; 
            font-size: 0.85rem; 
            transition: 0.3s; 
            text-transform: uppercase;
            padding: 10px 15px;
            display: inline-block;
        }

        nav ul li a:hover { color: var(--green-logo); }

        .header-utils {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-left: 20px;
            border-left: 1px solid var(--border-color);
            padding-left: 20px;
        }

        .lang-selector { display: flex; gap: 8px; }
        .lang-selector a {
            text-decoration: none;
            color: #999;
            font-size: 0.75rem;
            font-weight: 700;
            transition: 0.3s;
        }
        .lang-selector a:hover, .lang-selector a.current-lang { color: var(--green-logo); }

        .social-link svg {
            width: 20px; height: 20px; fill: #999; transition: 0.3s; display: block;
        }
        .social-link:hover svg { fill: var(--linkedin-blue); }

        .dropdown-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background-color: var(--white);
            min-width: 240px;
            box-shadow: 0 8px 16px rgba(0,0,0,0.1);
            border-top: 2px solid var(--green-logo);
            z-index: 100;
        }

        .has-dropdown:hover .dropdown-menu { display: block; }
        .dropdown-menu li { margin: 0; display: block; width: 100%; }
        .dropdown-menu li a {
            color: var(--anthracite);
            padding: 12px 20px;
            text-transform: capitalize;
            font-size: 0.85rem;
            width: 100%;
            display: block;
            border-bottom: 1px solid #eee;
        }

        /* CONTENU IMPRESSUM */
        .legal-content { padding: 80px 0; max-width: 800px; margin: auto; }
        .legal-content h1 { font-size: 2.5rem; margin-bottom: 40px; border-bottom: 4px solid var(--green-logo); display: inline-block; padding-bottom: 10px; }
        .legal-section { margin-bottom: 40px; }
        .legal-section h2 { font-size: 1.3rem; color: var(--green-logo); margin-bottom: 15px; text-transform: uppercase; }
        .legal-section p { margin-bottom: 10px; color: #555; }
        .legal-section strong { color: var(--anthracite); }

        /* FOOTER STANDARD */
        footer { 
            background: var(--anthracite); 
            color: white; 
            padding: 80px 0 40px 0; 
            font-size: 0.9rem; 
            border-top: 4px solid var(--green-logo); 
        }
        
        .mega-footer { 
            display: grid; 
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); 
            gap: 40px; 
            margin-bottom: 60px;
        }

        .footer-col h4 { color: var(--green-logo); text-transform: uppercase; font-size: 0.8rem; letter-spacing: 1px; margin-bottom: 25px; font-weight: 700; }
        .footer-col ul { list-style: none; }
        .footer-col ul li { margin-bottom: 12px; }
        .footer-col ul li a { color: #ddd; text-decoration: none; transition: 0.3s; }
        .footer-col ul li a:hover { color: var(--green-logo); padding-left: 5px; }

        .footer-social { display: flex; gap: 15px; margin-top: 20px; }
        .footer-social svg { width: 24px; height: 24px; fill: white; transition: 0.3s; }
        .footer-social a:hover svg { fill: var(--green-logo); }

        .footer-bottom { 
            border-top: 1px solid rgba(255,255,255,0.1); 
            padding-top: 30px; 
            display: flex; 
            justify-content: space-between; 
            align-items: center;
            color: #bbb; 
            font-size: 0.8rem;
        }

        @media (max-width: 992px) {
            .mega-footer { grid-template-columns: 1fr; }
            .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
        }

/* ===== index-de.html ===== */
:root {
            --green-logo: #64b446;
            --anthracite: #333333;
            --light-grey: #f4f4f4;
            --white: #ffffff;
            --border-color: #eeeeee;
            --linkedin-blue: #0077b5;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: var(--anthracite);
            background-color: var(--white);
        }

        .container { width: 95%; max-width: 1200px; margin: auto; }

        header {
            background: var(--white);
            padding: 10px 0;
            border-bottom: 1px solid var(--border-color);
            position: sticky; 
            top: 0; 
            z-index: 1000;
        }

        .navbar { display: flex; justify-content: space-between; align-items: center; }

        .logo-block {
            width: 300px; 
            height: 80px; 
            background-image: url('../images/logo.jpg');
            background-repeat: no-repeat;
            background-position: left center;
            background-size: contain;
            display: block;
        }

        nav { display: flex; align-items: center; }
        nav ul { display: flex; list-style: none; align-items: center; }
        nav ul li { margin-left: 5px; position: relative; }

        nav ul li a { 
            text-decoration: none; 
            color: var(--anthracite); 
            font-weight: 500; 
            font-size: 0.85rem; 
            transition: 0.3s; 
            text-transform: uppercase;
            padding: 10px 15px;
            display: inline-block;
        }

        nav ul li a:hover, .active { color: var(--green-logo); }

        /* HEADER UTILS */
        .header-utils {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-left: 20px;
            border-left: 1px solid var(--border-color);
            padding-left: 20px;
        }

        .lang-selector { display: flex; gap: 8px; }
        .lang-selector a {
            text-decoration: none;
            color: #999;
            font-size: 0.75rem;
            font-weight: 700;
            transition: 0.3s;
        }
        .lang-selector a:hover, .lang-selector a.current-lang { color: var(--green-logo); }

        .social-link svg {
            width: 20px;
            height: 20px;
            fill: #999;
            transition: 0.3s;
            display: block;
        }
        .social-link:hover svg { fill: var(--linkedin-blue); }

        .dropdown-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background-color: var(--white);
            min-width: 240px;
            box-shadow: 0 8px 16px rgba(0,0,0,0.1);
            border-top: 2px solid var(--green-logo);
            z-index: 100;
        }

        .has-dropdown:hover .dropdown-menu { display: block; }
        .dropdown-menu li { margin: 0; display: block; width: 100%; }
        .dropdown-menu li a {
            color: var(--anthracite);
            padding: 12px 20px;
            text-transform: capitalize;
            font-size: 0.85rem;
            width: 100%;
            display: block;
            border-bottom: 1px solid #eee;
        }
        .dropdown-menu li a:hover { background-color: var(--light-grey); color: var(--green-logo); }

        .hero {
            height: 70vh;
            background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('../images/concept-system-accueil-banner.png') no-repeat center center/cover;
            display: flex; 
            align-items: center;
            border-bottom: 1px solid var(--border-color);
            color: white; 
        }

        .hero-content h1 { font-size: 3.5rem; margin-bottom: 15px; line-height: 1.1; font-weight: 700; text-shadow: 0 2px 4px rgba(0,0,0,0.5); }
        .hero-content p { font-size: 1.25rem; margin-bottom: 35px; color: #f4f4f4; max-width: 650px; text-shadow: 0 1px 3px rgba(0,0,0,0.5); }

        .btn-primary { background: var(--green-logo); color: white; padding: 16px 32px; text-decoration: none; border-radius: 4px; font-weight: bold; display: inline-block; transition: 0.3s; border: none; }
        .btn-primary:hover { opacity: 0.9; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.2); }

        .products { padding: 100px 0; }
        .section-title { text-align: center; margin-bottom: 60px; font-size: 2.2rem; }
        .product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 40px; }
        .product-card { background: white; transition: 0.4s; padding-bottom: 20px; border-bottom: 1px solid #eee; display: flex; flex-direction: column; }
        .product-card:hover { transform: translateY(-10px); }
        
        .product-img { height: 220px; background-color: #f0f0f0; margin-bottom: 20px; border-radius: 2px; overflow: hidden; }
        .product-img img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
        .product-card:hover .product-img img { transform: scale(1.05); }

        .product-card-body { padding: 0 10px; flex-grow: 1; }
        .product-card h3 { margin-bottom: 12px; font-size: 1.3rem; color: var(--anthracite); }
        .product-card p { color: #666; font-size: 0.9rem; margin-bottom: 20px; line-height: 1.5; }
        .link-green { color: var(--green-logo); text-decoration: none; font-weight: bold; font-size: 0.9rem; }

        footer { 
            background: var(--anthracite); 
            color: white; 
            padding: 80px 0 40px 0; 
            font-size: 0.9rem; 
            border-top: 4px solid var(--green-logo); 
        }
        
        .mega-footer { 
            display: grid; 
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); 
            gap: 40px; 
            margin-bottom: 60px;
        }

        .footer-col h4 { color: var(--green-logo); text-transform: uppercase; font-size: 0.8rem; letter-spacing: 1px; margin-bottom: 25px; font-weight: 700; }
        .footer-col ul { list-style: none; }
        .footer-col ul li { margin-bottom: 12px; }
        .footer-col ul li a { color: #ddd; text-decoration: none; transition: 0.3s; }
        .footer-col ul li a:hover { color: var(--green-logo); padding-left: 5px; }

        .footer-social { display: flex; gap: 15px; margin-top: 20px; }
        .footer-social svg { width: 24px; height: 24px; fill: white; transition: 0.3s; }
        .footer-social a:hover svg { fill: var(--green-logo); }

        .footer-bottom { 
            border-top: 1px solid rgba(255,255,255,0.1); 
            padding-top: 30px; 
            display: flex; 
            justify-content: space-between; 
            align-items: center;
            color: #bbb; 
            font-size: 0.8rem;
        }
        .footer-bottom a { color: var(--green-logo); text-decoration: none; }

        @media (max-width: 992px) {
            .header-utils { border-left: none; padding-left: 0; margin-left: 0; margin-top: 10px; }
            .hero-content h1 { font-size: 2.5rem; }
            .mega-footer { grid-template-columns: 1fr; }
            .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
        }

/* ===== index-en.html ===== */
:root {
            --green-logo: #64b446;
            --anthracite: #333333;
            --light-grey: #f4f4f4;
            --white: #ffffff;
            --border-color: #eeeeee;
            --linkedin-blue: #0077b5;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: var(--anthracite);
            background-color: var(--white);
        }

        .container { width: 95%; max-width: 1200px; margin: auto; }

        header {
            background: var(--white);
            padding: 10px 0;
            border-bottom: 1px solid var(--border-color);
            position: sticky; 
            top: 0; 
            z-index: 1000;
        }

        .navbar { display: flex; justify-content: space-between; align-items: center; }

        .logo-block {
            width: 300px; 
            height: 80px; 
            background-image: url('../images/logo.jpg');
            background-repeat: no-repeat;
            background-position: left center;
            background-size: contain;
            display: block;
        }

        nav { display: flex; align-items: center; }
        nav ul { display: flex; list-style: none; align-items: center; }
        nav ul li { margin-left: 5px; position: relative; }

        nav ul li a { 
            text-decoration: none; 
            color: var(--anthracite); 
            font-weight: 500; 
            font-size: 0.85rem; 
            transition: 0.3s; 
            text-transform: uppercase;
            padding: 10px 15px;
            display: inline-block;
        }

        nav ul li a:hover, .active { color: var(--green-logo); }

        /* HEADER UTILS */
        .header-utils {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-left: 20px;
            border-left: 1px solid var(--border-color);
            padding-left: 20px;
        }

        .lang-selector { display: flex; gap: 8px; }
        .lang-selector a {
            text-decoration: none;
            color: #999;
            font-size: 0.75rem;
            font-weight: 700;
            transition: 0.3s;
        }
        .lang-selector a:hover, .lang-selector a.current-lang { color: var(--green-logo); }

        .social-link svg {
            width: 20px;
            height: 20px;
            fill: #999;
            transition: 0.3s;
            display: block;
        }
        .social-link:hover svg { fill: var(--linkedin-blue); }

        .dropdown-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background-color: var(--white);
            min-width: 240px;
            box-shadow: 0 8px 16px rgba(0,0,0,0.1);
            border-top: 2px solid var(--green-logo);
            z-index: 100;
        }

        .has-dropdown:hover .dropdown-menu { display: block; }
        .dropdown-menu li { margin: 0; display: block; width: 100%; }
        .dropdown-menu li a {
            color: var(--anthracite);
            padding: 12px 20px;
            text-transform: capitalize;
            font-size: 0.85rem;
            width: 100%;
            display: block;
            border-bottom: 1px solid #eee;
        }
        .dropdown-menu li a:hover { background-color: var(--light-grey); color: var(--green-logo); }

        .hero {
            height: 70vh;
            background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('../images/concept-system-accueil-banner.png') no-repeat center center/cover;
            display: flex; 
            align-items: center;
            border-bottom: 1px solid var(--border-color);
            color: white; 
        }

        .hero-content h1 { font-size: 3.5rem; margin-bottom: 15px; line-height: 1.1; font-weight: 700; text-shadow: 0 2px 4px rgba(0,0,0,0.5); }
        .hero-content p { font-size: 1.25rem; margin-bottom: 35px; color: #f4f4f4; max-width: 650px; text-shadow: 0 1px 3px rgba(0,0,0,0.5); }

        .btn-primary { background: var(--green-logo); color: white; padding: 16px 32px; text-decoration: none; border-radius: 4px; font-weight: bold; display: inline-block; transition: 0.3s; border: none; }
        .btn-primary:hover { opacity: 0.9; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.2); }

        .products { padding: 100px 0; }
        .section-title { text-align: center; margin-bottom: 60px; font-size: 2.2rem; }
        .product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 40px; }
        .product-card { background: white; transition: 0.4s; padding-bottom: 20px; border-bottom: 1px solid #eee; display: flex; flex-direction: column; }
        .product-card:hover { transform: translateY(-10px); }
        
        .product-img { height: 220px; background-color: #f0f0f0; margin-bottom: 20px; border-radius: 2px; overflow: hidden; }
        .product-img img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
        .product-card:hover .product-img img { transform: scale(1.05); }

        .product-card-body { padding: 0 10px; flex-grow: 1; }
        .product-card h3 { margin-bottom: 12px; font-size: 1.3rem; color: var(--anthracite); }
        .product-card p { color: #666; font-size: 0.9rem; margin-bottom: 20px; line-height: 1.5; }
        .link-green { color: var(--green-logo); text-decoration: none; font-weight: bold; font-size: 0.9rem; }

        footer { 
            background: var(--anthracite); 
            color: white; 
            padding: 80px 0 40px 0; 
            font-size: 0.9rem; 
            border-top: 4px solid var(--green-logo); 
        }
        
        .mega-footer { 
            display: grid; 
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); 
            gap: 40px; 
            margin-bottom: 60px;
        }

        .footer-col h4 { color: var(--green-logo); text-transform: uppercase; font-size: 0.8rem; letter-spacing: 1px; margin-bottom: 25px; font-weight: 700; }
        .footer-col ul { list-style: none; }
        .footer-col ul li { margin-bottom: 12px; }
        .footer-col ul li a { color: #ddd; text-decoration: none; transition: 0.3s; }
        .footer-col ul li a:hover { color: var(--green-logo); padding-left: 5px; }

        .footer-social { display: flex; gap: 15px; margin-top: 20px; }
        .footer-social svg { width: 24px; height: 24px; fill: white; transition: 0.3s; }
        .footer-social a:hover svg { fill: var(--green-logo); }

        .footer-bottom { 
            border-top: 1px solid rgba(255,255,255,0.1); 
            padding-top: 30px; 
            display: flex; 
            justify-content: space-between; 
            align-items: center;
            color: #bbb; 
            font-size: 0.8rem;
        }
        .footer-bottom a { color: var(--green-logo); text-decoration: none; }

        @media (max-width: 992px) {
            .header-utils { border-left: none; padding-left: 0; margin-left: 0; margin-top: 10px; }
            .hero-content h1 { font-size: 2.5rem; }
            .mega-footer { grid-template-columns: 1fr; }
            .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
        }

/* ===== index.html ===== */
:root {
            --green-logo: #64b446;
            --anthracite: #333333;
            --light-grey: #f4f4f4;
            --white: #ffffff;
            --border-color: #eeeeee;
            --linkedin-blue: #0077b5;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: var(--anthracite);
            background-color: var(--white);
        }

        .container { width: 95%; max-width: 1200px; margin: auto; }

        header {
            background: var(--white);
            padding: 10px 0;
            border-bottom: 1px solid var(--border-color);
            position: sticky; 
            top: 0; 
            z-index: 1000;
        }

        .navbar { display: flex; justify-content: space-between; align-items: center; }

        .logo-block {
            width: 300px; 
            height: 80px; 
            background-image: url('../images/logo.jpg');
            background-repeat: no-repeat;
            background-position: left center;
            background-size: contain;
            display: block;
        }

        nav { display: flex; align-items: center; }
        nav ul { display: flex; list-style: none; align-items: center; }
        nav ul li { margin-left: 5px; position: relative; }

        nav ul li a { 
            text-decoration: none; 
            color: var(--anthracite); 
            font-weight: 500; 
            font-size: 0.85rem; 
            transition: 0.3s; 
            text-transform: uppercase;
            padding: 10px 15px;
            display: inline-block;
        }

        nav ul li a:hover, .active { color: var(--green-logo); }

        .header-utils {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-left: 20px;
            border-left: 1px solid var(--border-color);
            padding-left: 20px;
        }

        .lang-selector { display: flex; gap: 8px; }
        .lang-selector a {
            text-decoration: none;
            color: #999;
            font-size: 0.75rem;
            font-weight: 700;
            transition: 0.3s;
        }
        .lang-selector a:hover, .lang-selector a.current-lang { color: var(--green-logo); }

        .social-link svg {
            width: 20px;
            height: 20px;
            fill: #999;
            transition: 0.3s;
            display: block;
        }
        .social-link:hover svg { fill: var(--linkedin-blue); }

        .dropdown-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background-color: var(--white);
            min-width: 240px;
            box-shadow: 0 8px 16px rgba(0,0,0,0.1);
            border-top: 2px solid var(--green-logo);
            z-index: 100;
        }

        .has-dropdown:hover .dropdown-menu { display: block; }
        .dropdown-menu li { margin: 0; display: block; width: 100%; }
        .dropdown-menu li a {
            color: var(--anthracite);
            padding: 12px 20px;
            text-transform: capitalize;
            font-size: 0.85rem;
            width: 100%;
            display: block;
            border-bottom: 1px solid #eee;
        }
        .dropdown-menu li a:hover { background-color: var(--light-grey); color: var(--green-logo); }

        .hero {
            height: 70vh;
            background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('../images/concept-system-accueil-banner.png') no-repeat center center/cover;
            display: flex; 
            align-items: center;
            border-bottom: 1px solid var(--border-color);
            color: white; 
        }

        .hero-content h1 { font-size: 3.5rem; margin-bottom: 15px; line-height: 1.1; font-weight: 700; text-shadow: 0 2px 4px rgba(0,0,0,0.5); }
        .hero-content p { font-size: 1.25rem; margin-bottom: 35px; color: #f4f4f4; max-width: 650px; text-shadow: 0 1px 3px rgba(0,0,0,0.5); }

        .btn-primary { background: var(--green-logo); color: white; padding: 16px 32px; text-decoration: none; border-radius: 4px; font-weight: bold; display: inline-block; transition: 0.3s; border: none; }
        .btn-primary:hover { opacity: 0.9; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.2); }

        .products { padding: 100px 0; }
        .section-title { text-align: center; margin-bottom: 60px; font-size: 2.2rem; }
        .product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 40px; }
        .product-card { background: white; transition: 0.4s; padding-bottom: 20px; border-bottom: 1px solid #eee; display: flex; flex-direction: column; }
        .product-card:hover { transform: translateY(-10px); }
        
        .product-img { height: 220px; background-color: #f0f0f0; margin-bottom: 20px; border-radius: 2px; overflow: hidden; }
        .product-img img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
        .product-card:hover .product-img img { transform: scale(1.05); }

        .product-card-body { padding: 0 10px; flex-grow: 1; }
        .product-card h3 { margin-bottom: 12px; font-size: 1.3rem; color: var(--anthracite); }
        .product-card p { color: #666; font-size: 0.9rem; margin-bottom: 20px; line-height: 1.5; }
        .link-green { color: var(--green-logo); text-decoration: none; font-weight: bold; font-size: 0.9rem; }

        footer { 
            background: var(--anthracite); 
            color: white; 
            padding: 80px 0 40px 0; 
            font-size: 0.9rem; 
            border-top: 4px solid var(--green-logo); 
        }
        
        .mega-footer { 
            display: grid; 
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); 
            gap: 40px; 
            margin-bottom: 60px;
        }

        .footer-col h4 { color: var(--green-logo); text-transform: uppercase; font-size: 0.8rem; letter-spacing: 1px; margin-bottom: 25px; font-weight: 700; }
        .footer-col ul { list-style: none; }
        .footer-col ul li { margin-bottom: 12px; }
        .footer-col ul li a { color: #ddd; text-decoration: none; transition: 0.3s; }
        .footer-col ul li a:hover { color: var(--green-logo); padding-left: 5px; }

        .footer-social { display: flex; gap: 15px; margin-top: 20px; }
        .footer-social svg { width: 24px; height: 24px; fill: white; transition: 0.3s; }
        .footer-social a:hover svg { fill: var(--green-logo); }

        .footer-bottom { 
            border-top: 1px solid rgba(255,255,255,0.1); 
            padding-top: 30px; 
            display: flex; 
            justify-content: space-between; 
            align-items: center;
            color: #bbb; 
            font-size: 0.8rem;
        }
        .footer-bottom a { color: var(--green-logo); text-decoration: none; }

        @media (max-width: 992px) {
            .header-utils { border-left: none; padding-left: 0; margin-left: 0; margin-top: 10px; }
            .hero-content h1 { font-size: 2.5rem; }
            .mega-footer { grid-template-columns: 1fr; }
            .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
        }

/* ===== installation.html ===== */
:root {
            --green-logo: #64b446;
            --anthracite: #333333;
            --light-grey: #f4f4f4;
            --white: #ffffff;
            --border-color: #eeeeee;
            --linkedin-blue: #0077b5;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: var(--anthracite);
            background-color: var(--white);
        }

        .container { width: 95%; max-width: 1200px; margin: auto; }

        /* HEADER STANDARD */
        header {
            background: var(--white);
            padding: 10px 0;
            border-bottom: 1px solid var(--border-color);
            position: sticky; 
            top: 0; 
            z-index: 1000;
        }

        .navbar { display: flex; justify-content: space-between; align-items: center; }

        .logo-block {
            width: 300px; 
            height: 80px; 
            background-image: url('../images/logo.jpg');
            background-repeat: no-repeat;
            background-position: left center;
            background-size: contain;
            display: block;
        }

        nav { display: flex; align-items: center; }
        nav ul { display: flex; list-style: none; align-items: center; }
        nav ul li { margin-left: 5px; position: relative; }

        nav ul li a { 
            text-decoration: none; 
            color: var(--anthracite); 
            font-weight: 500; 
            font-size: 0.85rem; 
            transition: 0.3s; 
            text-transform: uppercase;
            padding: 10px 15px;
            display: inline-block;
        }

        nav ul li a:hover, .active { color: var(--green-logo); }

        .header-utils {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-left: 20px;
            border-left: 1px solid var(--border-color);
            padding-left: 20px;
        }

        .lang-selector { display: flex; gap: 8px; }
        .lang-selector a {
            text-decoration: none;
            color: #999;
            font-size: 0.75rem;
            font-weight: 700;
            transition: 0.3s;
        }
        .lang-selector a:hover, .lang-selector a.current-lang { color: var(--green-logo); }

        .social-link svg {
            width: 20px; height: 20px; fill: #999; transition: 0.3s; display: block;
        }
        .social-link:hover svg { fill: var(--linkedin-blue); }

        .dropdown-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background-color: var(--white);
            min-width: 240px;
            box-shadow: 0 8px 16px rgba(0,0,0,0.1);
            border-top: 2px solid var(--green-logo);
            z-index: 100;
        }

        .has-dropdown:hover .dropdown-menu { display: block; }
        .dropdown-menu li { margin: 0; display: block; width: 100%; }
        .dropdown-menu li a {
            color: var(--anthracite);
            padding: 12px 20px;
            text-transform: capitalize;
            font-size: 0.85rem;
            width: 100%;
            display: block;
            border-bottom: 1px solid #eee;
        }

        /* SECTION HERO */
        .installation-hero {
            padding: 100px 0;
            background-image:
                linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),
                url('../images/logo-concept-system-transparent.png'),
                url('../images/installation-new.png');
            background-repeat: no-repeat, no-repeat, no-repeat;
            background-size: auto, 120px auto, cover;
            background-position: center, 18px calc(100% - 18px), center;
            color: white;
            text-align: center;
        }

        .installation-hero h1 { font-size: 3rem; margin-bottom: 20px; }
        .installation-hero p { font-size: 1.2rem; max-width: 800px; margin: 0 auto; opacity: 0.9; }

        /* SECTION PARTENARIAT NO GRAVITY */
        .partner-section { padding: 80px 0; background: var(--white); }
        .partner-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
        .partner-content h2 { font-size: 2rem; margin-bottom: 25px; color: var(--anthracite); }
        .partner-content p { margin-bottom: 20px; color: #555; font-size: 1.05rem; }
        
        .partner-logo-box { 
            background: #fff; 
            padding: 40px; 
            border-radius: 8px; 
            text-align: center;
            box-shadow: 0 4px 20px rgba(0,0,0,0.05);
            border: 1px solid var(--border-color);
        }
        .partner-logo-box img { 
            max-width: 100%; 
            height: auto; 
            display: block;
            margin: 0 auto;
        }
        .partner-badge { 
            display: inline-block; 
            margin-top: 20px; 
            padding: 10px 20px; 
            border: 2px solid var(--green-logo); 
            color: var(--green-logo); 
            font-weight: 700; 
            text-transform: uppercase; 
            letter-spacing: 1px;
        }

        /* PROCESSUS DE POSE */
        .process-section { padding: 80px 0; background: var(--light-grey); }
        .section-title { text-align: center; margin-bottom: 60px; }
        .section-title h2 { font-size: 2.2rem; margin-bottom: 15px; }
        .section-title .underline { width: 60px; height: 4px; background: var(--green-logo); margin: 0 auto; }

        .process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
        .process-card { background: white; padding: 40px; border-radius: 4px; position: relative; transition: 0.3s; box-shadow: 0 4px 15px rgba(0,0,0,0.05); }
        .process-card:hover { transform: translateY(-10px); }
        .process-number { font-size: 3rem; font-weight: 900; color: rgba(100, 180, 70, 0.1); position: absolute; top: 10px; right: 20px; }
        .process-card h3 { margin-bottom: 15px; color: var(--green-logo); }

        /* SERVICES TECHNIQUES */
        .tech-services { padding: 80px 0; }
        .service-list { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 40px; }
        .service-item { display: flex; gap: 20px; }
        .service-icon { min-width: 50px; height: 50px; background: var(--green-logo); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-weight: bold; }
        .service-text h4 { margin-bottom: 5px; }
        .service-text p { font-size: 0.9rem; color: #777; }

        /* CTA */
        .cta-box { background: var(--anthracite); color: white; padding: 60px; text-align: center; border-radius: 8px; margin-top: 60px; }
        .btn-main { background: var(--green-logo); color: white; padding: 15px 35px; text-decoration: none; font-weight: bold; border-radius: 4px; transition: 0.3s; display: inline-block; margin-top: 20px; }
        .btn-main:hover { background: #529639; transform: scale(1.05); }

        /* FOOTER STANDARD (IDENTIQUE INDEX) */
        footer { 
            background: var(--anthracite); 
            color: white; 
            padding: 80px 0 40px 0; 
            font-size: 0.9rem; 
            border-top: 4px solid var(--green-logo); 
        }
        
        .mega-footer { 
            display: grid; 
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); 
            gap: 40px; 
            margin-bottom: 60px;
        }

        .footer-col h4 { color: var(--green-logo); text-transform: uppercase; font-size: 0.8rem; letter-spacing: 1px; margin-bottom: 25px; font-weight: 700; }
        .footer-col ul { list-style: none; }
        .footer-col ul li { margin-bottom: 12px; }
        .footer-col ul li a { color: #ddd; text-decoration: none; transition: 0.3s; }
        .footer-col ul li a:hover { color: var(--green-logo); padding-left: 5px; }

        .footer-social { display: flex; gap: 15px; margin-top: 20px; }
        .footer-social svg { width: 24px; height: 24px; fill: white; transition: 0.3s; }
        .footer-social a:hover svg { fill: var(--green-logo); }

        .footer-bottom { 
            border-top: 1px solid rgba(255,255,255,0.1); 
            padding-top: 30px; 
            display: flex; 
            justify-content: space-between; 
            align-items: center;
            color: #bbb; 
            font-size: 0.8rem;
        }
        .footer-bottom a { color: var(--green-logo); text-decoration: none; }

        @media (max-width: 992px) {
            .header-utils { border-left: none; padding-left: 0; margin-left: 0; margin-top: 10px; }
            .partner-grid, .service-list { grid-template-columns: 1fr; }
            .mega-footer { grid-template-columns: 1fr; }
            .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
        }

/* ===== tendeurs.html ===== */
:root {
            --green-logo: #64b446;
            --anthracite: #333333;
            --light-grey: #f4f4f4;
            --white: #ffffff;
            --border-color: #eeeeee;
            --linkedin-blue: #0077b5;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: var(--anthracite);
            background-color: var(--white);
        }

        .container { width: 95%; max-width: 1200px; margin: auto; }

        /* HEADER STANDARD - STRICTEMENT IDENTIQUE INDEX */
        header {
            background: var(--white);
            padding: 10px 0;
            border-bottom: 1px solid var(--border-color);
            position: sticky; 
            top: 0; 
            z-index: 1000;
        }

        .navbar { display: flex; justify-content: space-between; align-items: center; }

        .logo-block {
            width: 300px; 
            height: 80px; 
            background-image: url('../images/logo.jpg');
            background-repeat: no-repeat;
            background-position: left center;
            background-size: contain;
            display: block;
        }

        nav { display: flex; align-items: center; }
        nav ul { display: flex; list-style: none; align-items: center; }
        nav ul li { margin-left: 5px; position: relative; }

        nav ul li a { 
            text-decoration: none; 
            color: var(--anthracite); 
            font-weight: 500; 
            font-size: 0.85rem; 
            transition: 0.3s; 
            text-transform: uppercase;
            padding: 10px 15px;
            display: inline-block;
        }

        nav ul li a:hover, .active { color: var(--green-logo); }

        .header-utils {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-left: 20px;
            border-left: 1px solid var(--border-color);
            padding-left: 20px;
        }

        .lang-selector { display: flex; gap: 8px; }
        .lang-selector a {
            text-decoration: none;
            color: #999;
            font-size: 0.75rem;
            font-weight: 700;
            transition: 0.3s;
        }
        .lang-selector a:hover, .lang-selector a.current-lang { color: var(--green-logo); }

        .social-link svg {
            width: 20px; height: 20px; fill: #999; transition: 0.3s; display: block;
        }
        .social-link:hover svg { fill: var(--linkedin-blue); }

        .dropdown-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background-color: var(--white);
            min-width: 240px;
            box-shadow: 0 8px 16px rgba(0,0,0,0.1);
            border-top: 2px solid var(--green-logo);
            z-index: 100;
        }

        .has-dropdown:hover .dropdown-menu { display: block; }
        .dropdown-menu li { margin: 0; display: block; width: 100%; }
        .dropdown-menu li a {
            color: var(--anthracite);
            padding: 12px 20px;
            text-transform: capitalize;
            font-size: 0.85rem;
            width: 100%;
            display: block;
            border-bottom: 1px solid #eee;
        }

        /* SECTION HERO PRODUIT */
        .product-page-hero {
            padding: 60px 0;
            background: var(--light-grey);
            border-bottom: 1px solid var(--border-color);
        }

        .breadcrumb { font-size: 0.8rem; color: #888; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px; }
        .breadcrumb a { color: #888; text-decoration: none; }

        .product-intro {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .product-gallery img { width: 100%; border-radius: 4px; box-shadow: 0 4px 20px rgba(0,0,0,0.05); }

        .product-details h1 { font-size: 2.5rem; margin-bottom: 20px; line-height: 1.2; }
        .product-details .tagline { 
            display: inline-block; 
            background: var(--green-logo); 
            color: white; 
            padding: 4px 12px; 
            font-size: 0.75rem; 
            font-weight: 700; 
            border-radius: 20px; 
            margin-bottom: 15px;
            text-transform: uppercase;
        }
        .product-details p { font-size: 1.1rem; color: #555; margin-bottom: 30px; }

        /* LISTE DES PRODUITS */
        .product-selection { padding: 80px 0; }
        .product-category-title { font-size: 1.8rem; margin-bottom: 40px; border-left: 4px solid var(--green-logo); padding-left: 20px; }

        .item-card {
            border: 1px solid var(--border-color);
            margin-bottom: 15px;
            border-radius: 4px;
            background: white;
            overflow: hidden;
        }

        .item-header {
            padding: 15px 20px;
            display: grid;
            grid-template-columns: 80px 1fr 200px 40px;
            align-items: center;
            cursor: pointer;
            transition: 0.2s;
        }

        .item-header:hover { background: #fafafa; }
        .item-img-mini { width: 50px; height: 50px; object-fit: contain; background: #fff; border-radius: 4px; }
        .item-title { font-weight: 700; font-size: 1.05rem; }
        .item-cat { color: #888; font-size: 0.85rem; font-style: italic; }
        .item-toggle { text-align: right; color: var(--green-logo); font-weight: bold; font-size: 1.2rem; transition: 0.3s; }

        .item-details { display: none; padding: 30px; border-top: 1px solid var(--border-color); background: #fdfdfd; }
        
        .grid-details { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-bottom: 20px; }
        .grid-details h4 { font-size: 0.85rem; text-transform: uppercase; color: var(--green-logo); margin-bottom: 8px; }
        .grid-details p { font-size: 0.9rem; color: #666; }

        table { width: 100%; border-collapse: collapse; background: white; }
        th { text-align: left; padding: 12px; border-bottom: 2px solid var(--border-color); color: #888; font-size: 0.7rem; text-transform: uppercase; }
        td { padding: 10px 12px; border-bottom: 1px solid var(--border-color); font-size: 0.85rem; }

        .btn-order-small { 
            background: var(--green-logo); 
            color: white; 
            text-decoration: none; 
            padding: 5px 12px; 
            border-radius: 2px; 
            font-size: 0.75rem; 
            font-weight: bold;
            display: inline-block;
        }

        .tech-disclaimer { font-size: 0.75rem; color: #999; margin-top: 30px; font-style: italic; }

        /* FOOTER STANDARD - STRICTEMENT IDENTIQUE INDEX */
        footer { 
            background: var(--anthracite); 
            color: white; 
            padding: 80px 0 40px 0; 
            font-size: 0.9rem; 
            border-top: 4px solid var(--green-logo); 
        }
        
        .mega-footer { 
            display: grid; 
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); 
            gap: 40px; 
            margin-bottom: 60px;
        }

        .footer-col h4 { color: var(--green-logo); text-transform: uppercase; font-size: 0.8rem; letter-spacing: 1px; margin-bottom: 25px; font-weight: 700; }
        .footer-col ul { list-style: none; }
        .footer-col ul li { margin-bottom: 12px; }
        .footer-col ul li a { color: #ddd; text-decoration: none; transition: 0.3s; }
        .footer-col ul li a:hover { color: var(--green-logo); padding-left: 5px; }

        .footer-social { display: flex; gap: 15px; margin-top: 20px; }
        .footer-social svg { width: 24px; height: 24px; fill: white; transition: 0.3s; }
        .footer-social a:hover svg { fill: var(--green-logo); }

        .footer-bottom { 
            border-top: 1px solid rgba(255,255,255,0.1); 
            padding-top: 30px; 
            display: flex; 
            justify-content: space-between; 
            align-items: center;
            color: #bbb; 
            font-size: 0.8rem;
        }
        .footer-bottom a { color: var(--green-logo); text-decoration: none; }

        @media (max-width: 992px) {
            .header-utils { border-left: none; padding-left: 0; margin-left: 0; margin-top: 10px; }
            .product-intro, .grid-details { grid-template-columns: 1fr; }
            .item-header { grid-template-columns: 60px 1fr 40px; }
            .item-cat { display: none; }
            .mega-footer { grid-template-columns: 1fr; }
            .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
        }

/* Formulaire contact — consentement (label = ligne flex, case à gauche du texte) */
.contact-form .consent-checkbox-row {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 12px;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    text-align: left;
    font-weight: 400;
    line-height: 1.45;
    cursor: pointer;
    box-sizing: border-box;
}
.contact-form .consent-checkbox-row input[type="checkbox"] {
    flex: 0 0 auto;
    margin: 0.2rem 0 0 0;
    width: 1.15rem;
    height: 1.15rem;
    min-width: 1.15rem;
    padding: 0;
    border: none;
    border-radius: 4px;
    box-shadow: none;
    background: transparent;
    font-size: inherit;
    outline: none;
    cursor: pointer;
    accent-color: var(--green-logo);
    -webkit-appearance: auto;
    appearance: auto;
}
.contact-form .consent-checkbox-row input[type="checkbox"]:focus {
    box-shadow: 0 0 0 2px rgba(100, 180, 70, 0.35);
}
.contact-form .consent-checkbox-row .consent-checkbox-text {
    flex: 1 1 0;
    min-width: 0;
    text-align: left;
    display: block;
}
.contact-form .consent-checkbox-row .consent-checkbox-text a {
    color: var(--green-logo);
    text-decoration: underline;
}
.contact-form .consent-checkbox-row .consent-checkbox-text a:hover {
    text-decoration: none;
}

.form-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

.contact-form-status {
    margin: 0 0 16px;
    padding: 12px 14px;
    border-radius: 8px;
    font-size: 0.92rem;
    line-height: 1.45;
}

.contact-form-status--success {
    background: #eef8ea;
    border: 1px solid #b8ddb0;
    color: #2d5c22;
}

.contact-form-status--error {
    background: #fff3f3;
    border: 1px solid #f0c4c4;
    color: #8b2e2e;
}

.contact-form .btn-submit:disabled {
    opacity: 0.65;
    cursor: not-allowed;
    transform: none;
}

.contact-captcha-group {
    margin-top: 4px;
}

.contact-captcha-row {
    display: flex;
    gap: 10px;
    align-items: stretch;
}

.contact-captcha-row input {
    flex: 1;
    min-width: 0;
}

.contact-captcha-refresh {
    flex: 0 0 44px;
    border: 1px solid #dcdcdc;
    background: #fff;
    border-radius: 8px;
    font-size: 1.25rem;
    line-height: 1;
    cursor: pointer;
    color: #555;
    transition: 0.2s;
}

.contact-captcha-refresh:hover {
    border-color: var(--green-logo, #64b446);
    color: var(--green-logo, #64b446);
}

.contact-captcha-hint {
    margin: 8px 0 0;
    font-size: 0.82rem;
    color: #777;
    line-height: 1.4;
}

/* ===== header-nav.css (en fin de fichier pour priorité sur les blocs dupliqués) ===== */
header,
header .container,
header .navbar,
header nav,
header nav > ul {
    overflow: visible !important;
}

header {
    position: sticky !important;
    top: 0 !important;
    z-index: 100000 !important;
}

nav > ul > li.has-dropdown {
    position: relative;
}

nav > ul > li.has-dropdown > ul.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 100001;
    min-width: 240px;
    margin: 0;
    padding: 0;
    list-style: none;
    background: #fff;
    border-top: 2px solid var(--green-logo, #64b446);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

nav > ul > li.has-dropdown:hover > ul.dropdown-menu,
nav > ul > li.has-dropdown:focus-within > ul.dropdown-menu,
nav > ul > li.has-dropdown > ul.dropdown-menu.nav-dropdown-portal {
    display: block !important;
}

nav > ul > li.has-dropdown > ul.dropdown-menu {
    flex-direction: column !important;
    align-items: stretch !important;
}

nav > ul > li.has-dropdown > ul.dropdown-menu li {
    margin: 0 !important;
    display: block !important;
    width: 100% !important;
    position: static !important;
}

nav > ul > li.has-dropdown > ul.dropdown-menu li a {
    display: block !important;
    width: 100% !important;
    box-sizing: border-box;
    white-space: normal !important;
    text-transform: capitalize !important;
    padding: 12px 20px !important;
    border-bottom: 1px solid #eee;
}

ul.dropdown-menu.nav-dropdown-portal::before {
    content: "";
    display: block;
    height: 10px;
    margin-top: -10px;
}

ul.dropdown-menu.nav-dropdown-portal {
    position: fixed !important;
    z-index: 2147483646 !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
    min-width: 240px;
    background: #fff !important;
    border: 1px solid #eee !important;
    border-top: 2px solid var(--green-logo, #64b446) !important;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.16) !important;
}

ul.dropdown-menu.nav-dropdown-portal li {
    margin: 0 !important;
    display: block !important;
    width: 100% !important;
}

ul.dropdown-menu.nav-dropdown-portal li a {
    display: block !important;
    width: 100% !important;
    box-sizing: border-box;
    padding: 12px 20px !important;
    text-transform: capitalize !important;
    white-space: normal !important;
    color: var(--anthracite, #333) !important;
    text-decoration: none !important;
    border-bottom: 1px solid #eee;
    font-size: 0.85rem !important;
    font-weight: 500 !important;
}

ul.dropdown-menu.nav-dropdown-portal li a:hover {
    background: var(--light-grey, #f4f4f4) !important;
    color: var(--green-logo, #64b446) !important;
}

ul.dropdown-menu.nav-dropdown-portal li:last-child a {
    border-bottom: none;
}

/* Menu principal : ne pas appliquer nav ul { flex } au sous-menu Produit */
header nav > ul {
    display: flex !important;
    list-style: none !important;
    align-items: center !important;
}

header nav ul.dropdown-menu {
    display: none !important;
    flex-direction: column !important;
    align-items: stretch !important;
    flex-wrap: nowrap !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

header nav > ul > li.has-dropdown:hover > ul.dropdown-menu,
header nav > ul > li.has-dropdown:focus-within > ul.dropdown-menu,
header nav ul.dropdown-menu.nav-dropdown-portal {
    display: block !important;
}

.product-page-hero,
.specs-section,
.tendeur-detail-header,
.tendeur-table-scroll,
#tendeur-catalog-root,
.tendeur-catalog-toolbar {
    z-index: auto !important;
    isolation: auto !important;
}

/* Fiches catalogue : défilement page normal (galerie puis tableau, sans chevauchement) */
#tendeur-level-detail,
#fil-level-detail,
#veg-level-detail {
    position: static !important;
    isolation: auto !important;
}

.tendeur-detail-header,
.fil-detail-header,
.veg-detail-header,
#tendeur-detail-table,
#fil-detail-table,
#veg-detail-table {
    position: static !important;
    z-index: auto !important;
    isolation: auto !important;
}

.tendeur-detail-header.has-gallery,
.fil-detail-header.has-gallery {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 18px !important;
    overflow: visible !important;
}

.tendeur-detail-header.has-gallery > div:not(.tendeur-detail-hero),
.fil-detail-header.has-gallery > div:not(.fil-detail-hero) {
    width: 100% !important;
    min-width: 0 !important;
    order: 2 !important;
}

.tendeur-detail-header.has-gallery .tendeur-detail-hero,
.fil-detail-header.has-gallery .fil-detail-hero,
.tendeur-detail-hero.tendeur-detail-hero--gallery,
.fil-detail-hero.fil-detail-hero--gallery {
    order: 1 !important;
    width: 100% !important;
    max-width: min(340px, 100%) !important;
    min-width: 0 !important;
    height: auto !important;
    min-height: 0 !important;
    overflow: visible !important;
    border: none !important;
    background: transparent !important;
    margin: 0 !important;
}

.tendeur-detail-hero:not(.tendeur-detail-hero--gallery) > img,
.fil-detail-hero:not(.fil-detail-hero--gallery) > img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 8px;
}

.tendeur-detail-gallery,
.fil-detail-gallery {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

.tendeur-detail-gallery-main,
.fil-detail-gallery-main {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    max-height: 220px;
    overflow: hidden;
}

.tendeur-detail-gallery-thumbs,
.fil-detail-gallery-thumbs {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 8px;
    width: 100%;
}

.tendeur-detail-gallery-thumb,
.fil-detail-gallery-thumb {
    flex: 1 1 0 !important;
    min-width: 0 !important;
}

.tendeur-table-scroll,
.fil-table-scroll,
.veg-table-scroll {
    position: relative !important;
    z-index: auto !important;
    isolation: auto !important;
}

.tendeur-catalog-table thead th,
.fil-catalog-table thead th,
.veg-catalog-table thead th,
.specs-table-wrapper thead th {
    z-index: 0;
}

.specs-table-wrapper {
    position: static !important;
    z-index: auto !important;
    isolation: auto !important;
}

ul.dropdown-menu.nav-dropdown-portal {
    pointer-events: auto !important;
    z-index: 2147483647 !important;
}

/* Zone hero produit (bande grise sous le menu) — hauteur intermédiaire */
.product-page-hero {
    padding: 60px 0 !important;
}

.product-page-hero .breadcrumb {
    margin-bottom: 20px !important;
}

.product-page-hero .product-intro {
    gap: 60px !important;
    align-items: center !important;
}

/* Catalogue produit — image collée au texte (colonne image = largeur réelle) — desktop uniquement */
@media (min-width: 993px) {
    .tendeurs-product-hero.product-page-hero .product-intro,
    .cables-product-hero.product-page-hero .product-intro,
    .filets-product-hero.product-page-hero .product-intro {
        grid-template-columns: auto minmax(0, 1fr) !important;
        gap: 28px !important;
    }

    .tendeurs-product-hero.product-page-hero .product-gallery,
    .cables-product-hero.product-page-hero .product-gallery,
    .filets-product-hero.product-page-hero .product-gallery {
        width: auto;
        justify-self: start;
    }
}

/* Zone hero produit — galerie : styles desktop (cadre blanc) */
@media (min-width: 993px) {
    .product-page-hero .product-gallery {
        height: 320px;
        max-height: 320px;
        width: 100%;
        background: #fff;
        border-radius: 4px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
        overflow: hidden;
        position: relative;
    }

    .product-page-hero .product-gallery img:not(.fil-hero-logo) {
        display: block;
        width: 100%;
        height: 100%;
        max-height: none;
        object-fit: cover;
        object-position: center;
        border-radius: 0;
        box-shadow: none;
    }
}

/* Mobile / tablette : galerie compacte sans cadre pleine largeur */
@media (max-width: 992px) {
    .product-page-hero .product-gallery {
        height: auto !important;
        max-height: none !important;
        width: auto !important;
        max-width: min(280px, 100%) !important;
        margin: 0 auto !important;
        background: transparent !important;
        box-shadow: none !important;
        overflow: visible !important;
    }

    .product-page-hero .product-gallery img:not(.fil-hero-logo) {
        display: block !important;
        width: auto !important;
        max-width: 100% !important;
        height: auto !important;
        max-height: 200px !important;
        margin: 0 auto !important;
        object-fit: contain !important;
        object-position: center !important;
    }

    .product-page-hero .product-intro {
        gap: 20px !important;
    }

    .product-page-hero .product-details h1 {
        font-size: 1.75rem !important;
    }
}

.product-page-hero .product-gallery {
    position: relative;
}

.product-page-hero .product-gallery img:not(.fil-hero-logo) {
    border-radius: 0;
}

.product-page-hero .product-details h1 {
    font-size: 2.5rem !important;
    margin-bottom: 20px !important;
    line-height: 1.2 !important;
}

.product-page-hero .product-details .tagline {
    margin-bottom: 15px !important;
}

.product-page-hero .product-details p {
    font-size: 1.1rem !important;
    margin-bottom: 0 !important;
    line-height: 1.6;
}

.product-page-hero .veg-hero-placeholder {
    min-height: 275px !important;
    padding: 24px !important;
}

@media (max-width: 768px) {
    .product-page-hero {
        padding: 40px 0 !important;
    }
}

/* Quantité pièces — même principe que longueur câbles (m) */
.catalog-quote-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-wrap: nowrap;
    justify-content: flex-end;
    width: 100%;
    max-width: 220px;
}
.tendeur-catalog-table .quote-unit-cell .catalog-quote-action {
    max-width: none;
    justify-content: space-between;
}
.quote-unit-label {
    font-size: 0.82rem;
    font-weight: 600;
    color: #555;
    margin-right: auto;
}
.quote-qty-input {
    width: 52px;
    padding: 7px 6px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 0.82rem;
    font-variant-numeric: tabular-nums;
    text-align: center;
    background: #fff;
}
.quote-qty-input:focus {
    outline: none;
    border-color: var(--green-logo, #64b446);
    box-shadow: 0 0 0 2px rgba(100, 180, 70, 0.2);
}
.quote-qty-input--invalid {
    border-color: #c0392b;
    background: #fff5f5;
    box-shadow: 0 0 0 2px rgba(192, 57, 43, 0.2);
}

.add-quote-btn {
    margin-top: 0;
    border: none;
    background: var(--green-logo, #64b446);
    color: #fff;
    border-radius: 6px;
    padding: 8px 14px;
    cursor: pointer;
    font-size: 0.82rem;
    font-weight: 700;
    font-family: inherit;
    line-height: 1.2;
    white-space: nowrap;
    appearance: none;
    -webkit-appearance: none;
    transition: filter 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

.add-quote-btn:hover {
    filter: brightness(1.06);
}

.add-quote-btn:active {
    transform: scale(0.98);
}

.add-quote-btn:focus-visible {
    outline: 2px solid var(--green-logo, #64b446);
    outline-offset: 2px;
}

.add-quote-btn--error {
    animation: quote-btn-shake 0.45s ease;
    box-shadow: 0 0 0 2px rgba(192, 57, 43, 0.45);
}
.add-quote-btn--ok {
    filter: brightness(1.08);
    box-shadow: 0 0 0 2px rgba(100, 180, 70, 0.55);
}
.quote-row--error {
    background: rgba(192, 57, 43, 0.04);
}
.cable-length-input--invalid {
    border-color: #c0392b !important;
    background: #fff5f5 !important;
}
@keyframes quote-btn-shake {
    0%,
    100% {
        transform: translateX(0);
    }
    20%,
    60% {
        transform: translateX(-4px);
    }
    40%,
    80% {
        transform: translateX(4px);
    }
}
.quote-qty-suffix {
    font-size: 0.78rem;
    font-weight: 600;
    color: #666;
}
.quote-unit-cell {
    white-space: nowrap;
    vertical-align: middle;
}
.tendeur-catalog-table .quote-unit-cell .add-quote-btn,
.tendeur-catalog-table .quote-action-cell .add-quote-btn,
.fil-catalog-table .add-quote-btn {
    margin-top: 0;
    white-space: nowrap;
}
.quote-action-cell {
    white-space: nowrap;
    vertical-align: middle;
}
.tendeur-catalog-table .quote-action-cell .catalog-quote-action {
    justify-content: flex-end;
    max-width: none;
}

/* Boutons Ajouter — zone tactile mobile (toutes pages catalogue) */
@media (max-width: 768px) {
    .add-quote-btn {
        min-height: 44px;
        padding: 10px 16px;
        font-size: 0.85rem;
    }

    .cable-tech-table th:last-child,
    .cable-tech-table td:last-child,
    .fil-catalog-table th:last-child,
    .fil-catalog-table td:last-child {
        position: sticky;
        right: 0;
        z-index: 2;
        background: #fff;
        box-shadow: -6px 0 10px rgba(0, 0, 0, 0.06);
    }

    .inner-specs-table .add-quote-btn {
        display: inline-block;
        margin: 4px 0;
    }
}

/* Végétalisation — Embase & Terminaisons : vignettes plus petites, image entière */
.veg-family-grid .veg-pick-card--img-sm .product-img {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}

.veg-family-grid .veg-pick-card--img-sm .product-img img {
    width: auto;
    height: auto;
    max-width: 62%;
    max-height: 82%;
    object-fit: contain;
}

.veg-family-grid .veg-pick-card--img-sm:hover .product-img img {
    transform: scale(1.02);
}

/* Accents — repli system-ui si la police web ne charge pas */
body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Page remerciement contact */
.contact-thanks-section {
    padding: 48px 0 72px;
}

.contact-thanks-card {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
    padding: 40px 32px 36px;
    border: 1px solid var(--border-color, #e8e8e8);
    border-radius: 12px;
    background: #f9fbf8;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
}

.contact-thanks-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
    border-radius: 50%;
    background: var(--green-logo, #64b446);
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.contact-thanks-card h1,
.contact-thanks-card .contact-thanks-title {
    font-size: 1.75rem;
    color: var(--anthracite, #333);
    margin: 0 0 14px;
}

.contact-thanks-lead {
    font-size: 1.05rem;
    color: #444;
    margin: 0 0 10px;
    line-height: 1.55;
}

.contact-thanks-note {
    font-size: 0.92rem;
    color: #666;
    margin: 0 0 28px;
    line-height: 1.5;
}

.contact-thanks-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.contact-thanks-btn {
    display: inline-block;
    padding: 12px 22px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: filter 0.2s ease;
}

.contact-thanks-btn--primary {
    background: var(--green-logo, #64b446);
    color: #fff;
}

.contact-thanks-btn--secondary {
    background: #fff;
    color: var(--anthracite, #333);
    border: 1px solid #ddd;
}

.contact-thanks-btn:hover {
    filter: brightness(1.06);
}

@media (max-width: 768px) {
    .contact-thanks-card {
        padding: 32px 20px 28px;
    }

    .contact-thanks-card h1,
    .contact-thanks-card .contact-thanks-title {
        font-size: 1.45rem;
    }
}
