/* ════════════════════════════════════════
   GLOBAL VARIABLES & RESET
════════════════════════════════════════ */
:root {
    --red:          #ff0000;
    --dark:         #0f1117;
    --white:        #ffffff;
    --light-bg:     #f8f9fa;
    --font-heading: 'Open Sans', monospace;
    --font-btn:     'Open Sans', sans-serif;
}
/* ════════════════════════════════════════
   CALL TO ACTION BANNER
════════════════════════════════════════ */
.products-cta-section {
    padding-bottom: 4rem;
    background-color: #fff;
}

.products-cta-card {
    background-color: #f2f2f2;
    border-radius: 20px;
    padding: 3rem 3.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    overflow: hidden;
    position: relative;
    min-height: 260px;
}

/* Left text content */
.products-cta-content {
    flex: 1;
    z-index: 2;
    position: relative;
    max-width: 420px;
}

.products-cta-heading {
    font-family: var(--font-heading);
    font-size: clamp(1.1rem, 2vw, 1.45rem);
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.3;
    margin: 0 0 1rem;
    text-transform: uppercase;
}

.products-cta-desc {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: #555;
    line-height: 1.65;
    margin: 0 0 1.8rem;
}

/* Outlined dark button */
.products-cta-btn {
    display: inline-block;
    background-color: transparent;
    color: #1a1a1a;
    font-family: var(--font-btn);
    font-weight: 600;
    font-size: 0.82rem;
    text-decoration: none;
    padding: 0.75rem 1.8rem;
    border-radius: 50px;
    border: 1.5px solid #1a1a1a;
    letter-spacing: 0.02em;
    transition: background-color 0.2s, color 0.2s, transform 0.2s;
    white-space: nowrap;
}

.products-cta-btn:hover {
    background-color: #1a1a1a;
    color: #fff;
    transform: translateY(-2px);
}

/* Right image — equipment photo + red swoosh behind it */
.products-cta-image {
    flex: 1.1;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    position: relative;
    z-index: 2;
    height: 100%;
}

.products-cta-image img {
    max-width: 100%;
    max-height: 290px;
    object-fit: contain;
    position: relative;
    z-index: 2;
}



/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */
@media (max-width: 992px) {
    .products-cta-card {
        flex-direction: column;
        text-align: center;
        padding: 2.5rem 2rem;
    }
    .products-cta-content {
        max-width: 100%;
    }
    .products-cta-image {
        justify-content: center;
        width: 100%;
    }
    .products-cta-card::before {
        width: 100%;
        height: 50%;
        top: auto;
        bottom: -20px;
        right: -10px;
        transform: rotate(-3deg);
    }
}

@media (max-width: 576px) {
    .products-cta-image img {
        max-height: 200px;
    }
    .products-cta-card { padding: 1.5rem 1.25rem; gap: 1.5rem; }
    .products-cta-heading { font-size: 1.1rem; }
    .products-cta-btn { width: 100%; padding: 0.85rem 1.5rem; }
}
/* ════════════════════════════════════════
   HERO & BREADCRUMB
════════════════════════════════════════ */
.product-hero-section {
    background: #fff;
    padding: 1.5rem 0 3.5rem;
}
.product-breadcrumb {
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    color: #aaa;
    margin-bottom: 2.5rem;
    letter-spacing: 0.05em;
}
.product-breadcrumb a {
    color: #444;
    text-decoration: none;
}
.product-breadcrumb span {
    margin: 0 0.4rem;
}
.product-breadcrumb .active {
    color: var(--red);
}

.product-hero-row {
    display: flex;
    align-items: center;
    gap: 3rem;
}
.product-hero-content {
    flex: 1.1;
}
.product-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--dark);
    margin: 0 0 0.4rem;
    letter-spacing: -0.01em;
}
.product-hero-subtitle {
    font-family: 'Arial', sans-serif;
    font-size: 0.95rem;
    font-style: italic;
    color: var(--red);
    font-weight: 600;
    margin: 0 0 2rem;
}
.product-hero-actions {
    display: flex;
    gap: 1rem;
}
.btn-demande-devis {
    font-family: var(--font-btn);
    background: var(--red);
    color: #fff;
    padding: 0.9rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: background 0.2s;
}
.btn-demande-devis:hover {
    background: #7a0016;
}
.btn-documentation {
    font-family: var(--font-btn);
    background: #fff;
    color: var(--red);
    border: 1px solid var(--red);
    padding: 0.9rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: all 0.2s;
}
.btn-documentation:hover {
    background: var(--red);
    color: #fff;
}
.product-hero-image {
    flex: 0.9;
}
.product-hero-image img {
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    object-fit: cover;
}

/* ════════════════════════════════════════
   SECTION HEADER UTILITY
════════════════════════════════════════ */
.section-header-line {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}
.section-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--dark);
    margin: 0;
    text-transform: uppercase;
}
.header-decor-line {
    flex: 1;
    height: 1.5px;
    background: var(--red);
}

/* ════════════════════════════════════════
   DESCRIPTION TECHNIQUE
════════════════════════════════════════ */
.tech-desc-section {
    padding: 2.5rem 0;
    background: #fff;
}
.tech-desc-text p {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.88rem;
    color: #333;
    line-height: 1.7;
    margin-bottom: 1.2rem;
    text-align: justify;
}
.brand-highlight {
    color: var(--red);
    font-weight: 700;
}
.highlight-badge {
    border: 2px solid var(--red);
    padding: 1.2rem 1.5rem;
    margin-top: 2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--dark);
}
.highlight-badge i {
    color: var(--red);
    font-size: 1.2rem;
}

/* ════════════════════════════════════════
   APPLICATIONS & UTILISATIONS SECTION
════════════════════════════════════════ */
.apps-section {
    background-color: #ffffff;
    padding: 3rem 0;
}

/* Section Title Alignment */
.section-header-line {
    margin-bottom: 2rem;
}

.section-title {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #0f1117;
    letter-spacing: -0.01em;
}

/* Two-column structural grid layout */
.apps-row {
    display: flex;
    gap: 2.5rem;
    align-items: stretch; /* Forces both columns to stay equal height */
}

.apps-list-col {
    flex: 1.1;
    display: flex;
}

/* 1. Unified List Container Block */
.apps-unified-list {
    width: 100%;
    background: #ffffff;
    border: 1px solid #f2dbde; /* Light reddish-gray precise border tint */
    border-radius: 12px;       /* Rounded outer wrapper corners */
    overflow: hidden;          /* Clean cropping for children background tints */
    display: flex;
    flex-direction: column;
}

/* 2. List Item Rows */
.app-list-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.1rem 1.5rem;
    border-bottom: 1px solid #f2dbde;
    background-color: #ffffff;
}

/* Remove bottom border on the final item */
.app-list-row:last-child {
    border-bottom: none;
}

/* Alternating background rows using zebra matching tint */
.app-list-row:nth-child(even) {
    background-color: #f8f9fa; /* Soft gray tint line */
}

/* Text presentation styles */
.app-item-text {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    color: #11141a;
    line-height: 1.4;
    padding-right: 1rem;
}

/* 3. Red Circular Icons Details */
.app-item-icon {
    width: 26px;
    height: 26px;
    border: 1.5px solid #9E001F; /* Master brand red accent outline */
    border-radius: 50%;          /* Perfect circle */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9E001F;
    font-size: 0.95rem;
    font-weight: 800;
    flex-shrink: 0;             /* Keeps icon circular on smaller viewports */
}

/* 4. Right Image Column Box */
.apps-image-col {
    flex: 0.9;
    display: flex;
}

.apps-image-col img {
    width: 78%;
    object-fit: cover;
    border-radius: 20px; /* Smooth rounded image corner layout */
}

/* ════════════════════════════════════════
   RESPONSIVE LAYOUT BREAKPOINTS
════════════════════════════════════════ */
@media (max-width: 992px) {
    .apps-row {
        flex-direction: column;
        gap: 2rem;
    }
    
    .apps-image-col img {
        height: 320px; /* Constrains height once stacked vertically */
    }
}

@media (max-width: 576px) {
    .app-list-row {
        padding: 1rem;
    }
    
    .app-item-text {
        font-size: 0.75rem;
    }
}

/* ════════════════════════════════════════
   ENGAGEMENT & SOLUTIONS GRID
════════════════════════════════════════ */
.commitment-section {
    padding: 3rem 0;
    background: #fff;
}
.commitment-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}
.commitment-box-left {
    border-top: 0.5px solid var(--red);
    border-right: 0.5px solid var(--red);
    border-bottom: 0.5px solid var(--red);
    border-left: 4px solid var(--red);

    padding: 2rem 2.5rem;
    border-radius: 0 10px 10px 0;
}
.box-title-red {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: black;
    margin: 0 0 1rem;
}
.commitment-box-left p {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: #444;
    line-height: 1.6;
    margin: 0;
}
.commitment-box-right {
    border: 1px solid var(--red);
    border-radius: 12px;
    padding: 2rem 2.5rem;
}
.box-right-header {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1.2rem;
}
.box-right-header i {
    color: var(--red);
    font-size: 1.1rem;
}
.box-title-dark {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--dark);
    margin: 0;
}
.solutions-list {
    margin: 0;
    padding-left: 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.solutions-list li {
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    color: #555;
    padding-bottom: 0.4rem;
    border-bottom: 1px solid var(--red);
}
.solutions-list li::marker {
    color: var(--red);
    font-weight: 800;
}


/* ════════════════════════════════════════
   MARQUES PROPOSÉES
════════════════════════════════════════ */
.brands-section {
    padding: 2rem 0 4rem;
    background: #fff;
    text-align: center;
}
.brands-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--red);
    margin-bottom: 2rem;
    letter-spacing: 0.05em;
}
.brands-logo-row {
    display: flex;
    justify-content: center;
    gap: 5.9rem;
}
.brand-logo-card {
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 1rem 2.5rem;
    background: #fff;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    max-width: 240px;
}
.brand-logo-card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* ════════════════════════════════════════
   CALL TO ACTION BANNER (MATCHING SPEC)
════════════════════════════════════════ */
.products-cta-section {
    padding-bottom: 4rem;
    background-color: #fff;
}

.products-cta-card {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    min-height: 500px;

    border-radius: 24px;
    padding: 3rem 4rem;
    display: flex;
    align-items: center;

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}
.products-cta-content {
    flex: 1;
}
.products-cta-heading {
    font-family: var(--font-heading);
    font-size: 1.9rem;
    font-weight: 800;
    color: #808080;
    width: 600px;
    margin: 0 0 1rem;
}
.products-cta-desc {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: #808080;
    line-height: 1.6;
    margin: 0;
    width: 500px;
    margin-bottom: 10%;
}
.products-cta-action {
    flex-shrink: 0;
}
.products-cta-btn {
    display: inline-block;
    background-color: #fff;
        font-family: var(--font-btn);
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    padding: 1.1rem 2.5rem;
    border-radius: 50px;
    text-align: center;
    letter-spacing: 0.02em;
    transition: transform 0.2s, box-shadow 0.2s;
}
.products-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}
/* ════════════════════════════════════════
   NOTRE SELECTION SECTION
════════════════════════════════════════ */
.selection-section {
    padding: 4rem 0;
    background-color: #ffffff;
}

/* En-tête avec titre et boutons de navigation */
.selection-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2.5rem;
}

.selection-subtitle {
    display: block;
    font-family: var(--font-heading);
   
    font-weight: 900;
    color: #888888;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.2rem;
}

.selection-main-title {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    font-weight: 900;
    
    color:  #808080;
    margin: 0;
}

/* Boutons de navigation style carrousel */
.selection-nav {
    display: flex;
    gap: 0.6rem;
}

.nav-btn {
    width: 38px;
    height: 38px;
    border: 1px solid #111;
    border-radius: 8px;
    background: #ffffff;
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.9rem;
}

.nav-btn:hover {
    background-color: var(--dark);
    color: #ffffff;
}

/* Grille structurelle */
.selection-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* Style de la Carte Produit */
.product-selection-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-selection-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

/* Wrapper Image (Moitié supérieure grise) */
.card-image-wrapper {
    background-color: #ededed;
    padding: 2.5rem 1.5rem;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 360px;
}

.card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Badges de marques (ABB / GAMAK) */
.brand-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 800;
    padding: 0.25rem 0.7rem;
    border-radius: 20px;
    letter-spacing: 0.05em;
}

.badge-abb, .badge-gamak {
    background-color: var(--red); /* Rouge uniforme selon votre charte graphique */
}

/* Contenu textuel (Moitié inférieure blanche) */
.card-content-wrapper {
    padding: 1.8rem 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-tag {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--red);
    margin-bottom: 0.5rem;
}

.product-name {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0 0 1.8rem 0;
    line-height: 1.3;
    min-height: 3rem; /* Aligne la hauteur si le texte fait 1 ou 2 lignes */
}

/* Bouton Outline arrondi VOIR PLUS */
.btn-voir-plus {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: auto; /* Pousse le bouton vers le bas */
    border: 1px solid var(--red);
    color: var(--red);
    font-family: var(--font-btn);
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    transition: all 0.2s ease;
    letter-spacing: 0.05em;
    width: fit-content;
    align-self: center;
}

.btn-voir-plus i {
    font-size: 0.85rem;
}

.btn-voir-plus:hover {
    background-color: var(--red);
    color: #ffffff;
}
/* ════════════════════════════════════════
   DESCRIPTION TECHNIQUE (NEW REPRODUCTION)
════════════════════════════════════════ */
.tech-desc-section {
    padding: 5rem 0;
    background-color: #f8f9fa; /* Fond gris très clair comme sur la maquette */
}

/* Layout principal en 2 colonnes asymétriques */
.tech-desc-row {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

/* Colonne Titre (Gauche) */
.tech-desc-title-col {
    flex: 0.8;
    border-left: 4.5px solid var(--red); /* Ligne verticale rouge épaisse */
    padding-left: 1.5rem;
}

.tech-desc-main-title {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    font-weight: 800;
    color: var(--dark);
    line-height: 1.15;
    margin: 0;
    letter-spacing: -0.01em;
}

/* Colonne Contenu (Droite) */
.tech-desc-content-col {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.tech-desc-paragraphs p {
    font-family: var(--font-heading);
    font-size: 0.92rem;
    color: #222222;
    line-height: 1.65;
    margin: 0 0 1.5rem 0;
    text-align: justify;
}

.tech-desc-paragraphs p:last-child {
    margin-bottom: 0;
}

/* Encadré de mise en valeur (Badge du bas) */
.tech-highlight-box {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    background-color: #ffffff;
    border: 1px solid #e5e7eb; /* Bordure fine gris clair sur 3 côtés */
    border-left: 4px solid var(--red); /* Bordure rouge épaisse à gauche */
    border-radius: 0 4px 4px 0;
    padding: 1.5rem 2rem;
    width: 100%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.01);
}

.highlight-icon-wrapper {
    color: var(--red);
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.highlight-text {
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 800;
    color: var(--dark);
    letter-spacing: 0.02em;
}

/* ════════════════════════════════════════
   RESPONSIVE DESIGN HANDLERS
════════════════════════════════════════ */
@media (max-width: 992px) {
    .tech-desc-row {
        flex-direction: column;
        gap: 2.5rem;
    }
    
    .tech-desc-title-col {
        flex: none;
        width: 100%;
    }
    
    .tech-desc-content-col {
        flex: none;
        width: 100%;
    }
}

@media (max-width: 576px) {
    .tech-highlight-box {
        padding: 1.2rem 1.5rem;
        gap: 0.8rem;
    }
    
    .highlight-text {
        font-size: 0.78rem;
        line-height: 1.4;
    }
}


/* ════════════════════════════════════════
   HERO & BREADCRUMB (NEW REPRODUCTION)
════════════════════════════════════════ */
.product-hero-section {
    background: #ffffff;
    padding: 2rem 0 5rem;
}
ss
/* Fil d'Ariane discret */
.product-breadcrumb {
    font-family: var(--font-heading);
    font-size: 0.1rem;
    font-weight: 700;
    color: #888888;
    margin-bottom: 0rem;
    letter-spacing: 0.02em;
}

.product-breadcrumb a {
    color: #666666;
    text-decoration: none;
    transition: color 0.2s ease;
    
}

.product-breadcrumb a:hover {
    color: var(--red);
}

.product-breadcrumb .bc-separator {
    margin: 0 0.5rem;
    color: #666666;
    font-weight: 400;
}

.product-breadcrumb .active {
    color: var(--red);
}

/* Structure de la rangée Hero */
.product-hero-row {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.product-hero-content {
    flex: 1.1;
}

.product-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    font-weight: 800;
    color: var(--dark);
    margin: 0 0 1.5rem 0;
    letter-spacing: -0.01em;
    line-height: 1.1;
}

.product-hero-description {
    font-family: 'Arial', sans-serif;
    font-size: 0.95rem;
    color: #777777;
    line-height: 1.6;
    margin: 0 0 2.5rem 0;
    max-width: 540px;
}

/* Actions & Boutons */
.product-hero-actions {
    display: flex;
    gap: 1.2rem;
    align-items: center;
}

.btn-demande-devis {
    font-family: var(--font-btn);
    background: var(--red);
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    letter-spacing: 0.05em;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.btn-demande-devis:hover {
    background: #d60000;
    transform: translateY(-1px);
}

.btn-documentation {
    font-family: var(--font-btn);
    background: #ffffff;
    color: var(--dark);
    border: 1px solid var(--dark);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    letter-spacing: 0.05em;
    text-align: center;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.btn-documentation:hover {
    background: var(--dark);
    color: #ffffff;
    transform: translateY(-1px);
}

/* Container Image et Badge Flottant */
.product-hero-image-wrapper {
    flex: 0.9;
    position: relative;
}

.hero-image-container {
    position: relative;
    width: 100%;
}

.hero-main-img {
    width: 120%;
    height: auto;
    border-radius: 16px;
    display: block;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
}

/* Badge Efficiencne Positionné en chevauchement bas */
.efficiency-floating-badge {
    position: absolute;
    bottom: -25px;
    left: -20px;
    background: #ffffff;
    border-radius: 12px;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #f0f0f0;
    z-index: 10;
}

.badge-icon-lightning {
    background-color: #fff1f2; /* Fond rouge très clair et doux */
    color: var(--red);
    width: 38px;
    height: 38px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.badge-text-block {
    display: flex;
    flex-direction: column;
}

.badge-label {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    color: #999999;
    letter-spacing: 0.03em;
}

.badge-value {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--dark);
}

/* ════════════════════════════════════════
   RESPONSIVE DESIGN HANDLERS
════════════════════════════════════════ */
@media (max-width: 992px) {
    .product-hero-row {
        flex-direction: column;
        gap: 3.5rem;
    }
    .product-hero-content {
        width: 100%;
    }
    .product-hero-image-wrapper {
        width: 100%;
        max-width: 550px;
        margin: 0 auto;
    }
    .efficiency-floating-badge {
        left: 20px; /* Aligne mieux le badge en vue mobile/tablette stacked */
    }
}

@media (max-width: 576px) {
    .product-breadcrumb {
        margin-bottom: 2rem;
    }
    .product-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }
    .btn-demande-devis, .btn-documentation {
        justify-content: center;
    }
    .efficiency-floating-badge {
        bottom: -15px;
        left: 15px;
        padding: 0.8rem 1.2rem;
    }
}
/* ════════════════════════════════════════
   RESPONSIVE DESIGN
════════════════════════════════════════ */
@media (max-width: 992px) {
    .selection-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .selection-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    .selection-nav {
        align-self: flex-end;
    }
    .selection-grid {
        grid-template-columns: 1fr;
    }
    .card-image-wrapper {
        height: 200px;
    }
}
/* ════════════════════════════════════════
   RESPONSIVE DESIGN HANDLERS
════════════════════════════════════════ */
@media (max-width: 992px) {
    .product-hero-row { flex-direction: column; text-align: center; }
    .product-hero-actions { justify-content: center; }
    .apps-row { flex-direction: column; }
    .apps-image-col { width: 100%; }
    .commitment-grid { grid-template-columns: 1fr; }
    .products-cta-card { flex-direction: column; text-align: center; padding: 2.5rem; }
}

@media (max-width: 576px) {
    .brands-logo-row { flex-direction: column; align-items: center; }
    .brand-logo-card { width: 100%; max-width: 100%; }
}