/*
Theme Name: Solid Sky
Description: Thème pour la boutique e-commerce Solid Sky
Author: Marjolaine Sergheraert - Not so bland
Template: blocksy
Version: 1.0.0
*/


/* ==========================================================================
   1. VARIABLES DE CONFIGURATION DE LA MARQUE
   ========================================================================== */
:root {
    --bg-dark: #0D0D0D;
    --bg-neutral-dark: #1F1F1F;  /* Fond riche sombre du deck */
    --bg-light: #D9E1E8;         /* Gris argent / bleu premium du deck */
    --bg-white: #FFFFFF;         /* Blanc pur officiel */
    
    --text-dark: #1F1F1F;        /* Anthracite profond pour une lecture haut de gamme */
    --text-light: #F5F5F7;
    --text-muted: #4A4D50;       /* Charcoal pour les textes secondaires */
    
    /* Couleurs de surlignage officiel du deck */
    --hl-yellow: #F4F0BE;        /* Jaune beurre pâle */
    --hl-blue: #A2C9EC;          /* Bleu ciel technique */
    
    --border: rgba(74, 77, 80, 0.15);
    --border-dark: rgba(255, 255, 255, 0.08);
    
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   DECLARATION DES POLICES LOCALES (RGPD COMPLIANT)
   ========================================================================== */

/* Space Grotesk - Titres */
@font-face {
    font-family: 'Space Grotesk';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('/wp-content/uploads/fonts/SpaceGrotesk.woff2') format('woff2');
}

/* Inter - Texte de base Regular */
@font-face {
    font-family: 'Inter Tight';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('/wp-content/uploads/fonts/InterTight.woff2') format('woff2');
}

/* Inter - Texte de base Light (Optionnel) */
@font-face {
    font-family: 'Inter Tight';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url('/wp-content/uploads/fonts/InterTight.woff2') format('woff2');
}

/* ==========================================================================
   APPLICATION DES POLICES SANS CONFLIT
   ========================================================================== */

/* 1. TEXTE DE CORPS (Inter Tight) */
body, p, li, label, input, textarea, select, .wp-block-paragraph {
    font-family: 'Inter Tight', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important;
}

/* 2. TITRES ET LEURS SPANS (Space Grotesk) */
h1, h2, h3, h4, h5, h6, 
h1 span, h2 span, h3 span, h4 span, h5 span, h6 span,
.hero-title, .section-title,
.hero-title span, .section-title span {
    font-family: 'Space Grotesk', sans-serif !important;
}

/* 3. BOUTONS (Space Grotesk) */
.sky-btn, .btn, .wp-block-button__link, button, .wp-block-buttons a {
    font-family: 'Space Grotesk', sans-serif !important;
}




/* ==========================================================================
   2. CONTENEUR DU FORMULAIRE (FOND BLANC UNI SUR QUADRILLAGE)
   ========================================================================== */
.sky-contact-container {
    max-width: 680px;
    margin: 2rem auto;
    padding: 2.5rem;
    background-color: #FFFFFF !important; /* Couvre le quadrillage de fond */
    border: 1px solid #E2E8F0;
    border-radius: 0px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.sky-contact-header {
    text-align: center;
    margin-bottom: 2rem;
}

.sky-contact-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1F1F1F;
    margin-bottom: 0.75rem;
}

.sky-reassurance {
    font-size: 0.92rem;
    color: #555555;
    line-height: 1.5;
    max-width: 580px;
    margin: 0 auto;
}

.sky-reassurance strong {
    color: #1F1F1F;
}

/* ==========================================================================
   3. STRUCTURE DU FORMULAIRE ET ALIGNEMENT STRICT (CSS GRID)
   ========================================================================== */
/* Reset du calcul des largeurs pour alignement au pixel près */
.sky-custom-form,
.sky-custom-form *,
.sky-custom-form *::before,
.sky-custom-form *::after {
    box-sizing: border-box !important;
}

.sky-custom-form {
    width: 100%;
    max-width: 680px;
    margin: 0 auto;
}

/* ==========================================================================
   GESTION DES LIGNES ET DES CHAMPS 
   ========================================================================== */

/* 1. Elimination des elements parasites dans la grille (Clearfix ::before/::after et <p> WP) */
.sky-custom-form .form-row::before,
.sky-custom-form .form-row::after,
.sky-custom-form .form-row > p {
    content: none !important;
    display: none !important;
}

/* 2. Configuration de la grille 2 colonnes (Prénom / Nom) */
.sky-custom-form .form-row {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 1.25rem !important;
    width: 100% !important;
    margin: 0 0 1.25rem 0 !important;
}

/* 3. Style par défaut des champs isolés pleine largeur (Email, Sujet, Message) */
.sky-custom-form .form-group {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    margin-bottom: 1.25rem;
}

/* 4. Annulation de la marge basse uniquement pour les champs situés DANS une ligne .form-row */
.sky-custom-form .form-row > .form-group {
    margin-bottom: 0 !important;
}

.sky-custom-form label {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
    color: #1F1F1F;
}

/* Champs de saisie */
.sky-custom-form input[type="text"],
.sky-custom-form input[type="email"],
.sky-custom-form input[type="tel"],
.sky-custom-form select,
.sky-custom-form textarea {
    display: block;
    width: 100% !important;
    max-width: 100% !important;
    padding: 0.75rem 1rem !important;
    border: 1px solid #D0D5DD !important;
    border-radius: 4px;
    font-size: 0.95rem;
    background-color: #FFFFFF !important;
    color: #1F1F1F;
    margin: 0 !important;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.sky-custom-form input:focus,
.sky-custom-form select:focus,
.sky-custom-form textarea:focus {
    outline: none !important;
    border-color: #A2C9EC !important;
    box-shadow: 0 0 0 3px rgba(162, 201, 236, 0.25) !important;
}

/* Case RGPD */
.sky-custom-form .checkbox-group {
    margin-top: 0.5rem;
    margin-bottom: 1.5rem;
}

.sky-custom-form .checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.82rem;
    color: #555555;
    font-weight: 400;
}

.sky-custom-form .checkbox-label input[type="checkbox"] {
    margin-top: 3px !important;
    width: 16px !important;
    height: 16px !important;
    flex-shrink: 0;
}

/* Bouton bleu plein fond */
.sky-custom-form .btn-solid-blue {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100% !important;
    padding: 0.85rem 1.5rem !important;
    background-color: #A2C9EC !important;
    color: #1F1F1F !important;
    font-weight: 700;
    font-size: 0.95rem;
    border: 1px solid #A2C9EC !important;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease !important;
}

.sky-custom-form .btn-solid-blue:hover {
    background-color: #8BBEEC !important;
    border-color: #8BBEEC !important;
    transform: translateY(-1px);
}

/* Messages de confirmation / erreur */
.form-response p {
    padding: 0.85rem 1rem;
    border-radius: 4px;
    margin-top: 1rem;
    font-size: 0.9rem;
    font-weight: 600;
}

.form-response.success p {
    background-color: #E6F4EA;
    color: #137333;
    border: 1px solid #CEEAD6;
}

.form-response.error p {
    background-color: #FCE8E6;
    color: #C5221F;
    border: 1px solid #FAD2CF;
}

/* Unification stricte de la hauteur pour TOUS les champs (inputs et selects) */
.sky-custom-form input[type="text"],
.sky-custom-form input[type="email"],
.sky-custom-form input[type="tel"],
.sky-custom-form select {
    height: 44px !important;
    min-height: 44px !important;
    max-height: 44px !important;
    line-height: 44px !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    padding-left: 1rem !important;
    box-sizing: border-box !important;
    vertical-align: middle !important;
}

/* Rembourrage spécifique à droite pour laisser la place à la flèche du select */
.sky-custom-form select {
    padding-right: 2.5rem !important;
}

/* Options dans le menu déroulant */
.sky-custom-form select option {
    padding: 0.5rem 1rem !important;
    line-height: 1.4 !important;
}

/* Mobile responsive */
@media (max-width: 640px) {
    .sky-contact-container {
        padding: 1.5rem;
    }
    .sky-custom-form .form-row {
        grid-template-columns: 1fr !important;
        gap: 1.25rem;
    }
}

/* ==========================================================================
   CHARTE GRAPHIQUE SOLID SKY (VARIABLES OFFICIELLES)
   ========================================================================== */
:root {
    --bg-dark: #0D0D0D;
    --bg-neutral-dark: #1F1F1F;
    --bg-light: #D9E1E8;
    --bg-white: #FFFFFF;
    --text-dark: #1F1F1F;
    --text-light: #F5F5F7;
    --text-muted: #4A4D50;
    --hl-yellow: #F4F0BE;
    --hl-blue: #A2C9EC;
}


/* ==========================================================================
   PAGE A PROPOS (STYLES ET DISPOSITIONS)
   ========================================================================== */

/* 1. Couleurs de fond & Textes de sections */
.bg-dark {
    background-color: #4A4D50 !important;
    color: var(--text-light) !important;
}

.bg-light {
    background-color: var(--bg-light) !important;
    color: var(--text-dark) !important;
}

.bg-white {
    background-color: var(--bg-white) !important;
    color: var(--text-dark) !important;
}

.bg-white p, .bg-light p, .sky-card-about p {
    color: var(--text-dark) !important;
    line-height: 1.6;
}

.bg-dark p {
    color: var(--text-light) !important;
    line-height: 1.6;
}

/* ==========================================================================
   HERO TEXTUEL DÉDIÉ (PAGE À PROPOS)
   ========================================================================== */
.sky-about-hero {
    
    padding-top: 5rem !important;
    padding-bottom: 2.5rem !important;
    text-align: center !important;
}

.sky-about-hero-title {
    font-size: 2.75rem !important;
    font-weight: 800 !important;
    line-height: 1.25 !important;
    color: var(--text-dark) !important;
    max-width: 850px !important;
    margin: 0 auto 1.5rem auto !important;
    text-align: center !important;
}

.sky-about-hero-subtitle {
    font-size: 1.2rem !important;
    line-height: 1.6 !important;
    color: var(--text-muted) !important;
    max-width: 720px !important;
    margin: 0 auto !important;
    text-align: center !important;
}

@media (max-width: 768px) {
    .sky-about-hero {
        padding-top: 3rem !important;
        padding-bottom: 1.5rem !important;
    }
    .sky-about-hero-title, .sky-about-split .section-title {
        font-size: 1.5rem !important;
    }
    .sky-about-hero-subtitle {
        font-size: 1rem !important;
    }

    .sky-card-about {
        padding: 1.5rem;
    }
}

/* 2. Surlignages officiels */
.highlight-yellow {
    background-color: var(--hl-yellow) !important;
    color: var(--text-dark) !important;
    padding: 0.1em 0.3em;
    border-radius: 2px;
}

.highlight-blue {
    background-color: var(--hl-blue) !important;
    color: var(--text-dark) !important;
    padding: 0.1em 0.3em;
    border-radius: 2px;
}

/* 3. Grilles & Mises en page */
.sky-about-split {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 3rem;
}

.sky-about-split > * {
    flex: 1;
    min-width: 0;
}

.sky-grid-2cols {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

/* 4. Cartes & Modèles */
.sky-card-about {
    background: var(--bg-white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 8px;
    padding: 2.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sky-card-about:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.sky-card-number {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1;
    margin-bottom: 1rem;
}

/* 5. Cartes Équipe */
.sky-team-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--bg-light);
    margin-bottom: 1.25rem;
}

.sky-team-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--hl-blue);
    flex-shrink: 0;
}

.sky-card-about ul {
    color: var(--text-muted);
    padding-left: 0 !important;
}

.sky-card-about ul strong {
    color: var(--text-dark);
}

/* 6. Adaptabilité Mobile */
@media (max-width: 768px) {
    .sky-about-split {
        flex-direction: column;
        gap: 2rem;
        padding: 1rem;
    }
    .sky-grid-2cols {
        grid-template-columns: 1fr;
    }
}

/* Espacement vertical des listes uniquement dans les cartes et blocs de la page À Propos */
.sky-card-about .wp-block-list li,
.bg-dark .wp-block-list li {
    margin-bottom: 0.75rem !important;
}

/* Annule la marge sur le dernier élément de chaque liste */
.sky-card-about .wp-block-list li:last-child,
.bg-dark .wp-block-list li:last-child {
    margin-bottom: 0 !important;
}


/* ==========================================================================
   2. EFFETS DE SURLIGNAGE RECTILIGNES (PILE SUR LE TEXTE - STYLE DECK)
   ========================================================================== */
.highlight-yellow, .highlight-blue {
    position: relative;
    display: inline-block;
    font-weight: 700;
    color: var(--text-dark) !important;
    padding: 0 6px;
    margin: 0;
    isolation: isolate; 
}

.highlight-yellow::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: var(--hl-yellow);
    z-index: -1;
    border-radius: 6px;
}

.highlight-blue::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: var(--hl-blue);
    z-index: -1;
    border-radius: 6px;
}

/* ==========================================================================
   3. FILIGRANE QUADRILLÉ TECHNIQUE (BACKGROUND PATTERN)
   ========================================================================== */
.bg-grid-texture {
    background-color: var(--bg-white);
    background-image: 
        linear-gradient(to right, rgba(74, 77, 80, 0.04) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(74, 77, 80, 0.04) 1px, transparent 1px);
    background-size: 40px 40px;
}

/* ==========================================================================
   4. STRUCTURES GLOBALES ADAPTÉES
   ========================================================================== */
.sky-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-section[data-type=type-1] {
    margin-bottom: 20px !important;
}

.max-width-md { max-width: 850px; }
.text-center { text-align: center; }
.font-bold { font-weight: 600; }

.section { padding: 8rem 0; }
.bg-light { background-color: var(--bg-light); }
.bg-dark { background-color: var(--bg-dark); }
.bg-white { background-color: var(--bg-white); }
.text-light { color: var(--text-light) !important; }
.border-top { border-top: 1px solid var(--border); }

/* COMPOSANTS BOUTONS SÉCURISÉS */
.sky-btn {
    display: inline-block;
    padding: 0.9rem 2.2rem !important;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.sky-btn-primary {
    background-color: var(--bg-neutral-dark);
    color: var(--bg-white) !important;
    border: 1px solid var(--bg-neutral-dark);
}

.sky-btn-primary:hover {
    background-color: var(--bg-dark);
    transform: translateY(-2px);
}

.sky-btn-outline {
    background-color: transparent;
    color: var(--bg-neutral-dark) !important;
    border: 1px solid var(--bg-neutral-dark);
}

.sky-btn-outline:hover {
    background-color: var(--bg-neutral-dark);
    color: var(--bg-white) !important;
    transform: translateY(-2px);
}

.sky-btn-outline-light {
    background-color: transparent;
    color: var(--text-light) !important;
    border: 1px solid var(--text-light);
}

.sky-btn-outline-light:hover {
    background-color: var(--bg-white);
    color: var(--bg-neutral-dark) !important;
    transform: translateY(-2px);
}

/* Masquage accessible du texte de l'icône mon compte */
.menu-item-account .screen-reader-text {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* Alignement vertical de l'icône dans le menu 2 */
.menu-item-account a {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* ==========================================================================
   HARMONISATION ET CENTRAGE DES BOUTONS DU MENU PRINCIPAL
   ========================================================================== */

/* 1. Centrage vertical de l'élément parent dans la barre de navigation */
.header-menu-1 ul.menu > li.menu-btn-primary,
.header-menu-1 ul.menu > li.menu-btn-outline {
    display: flex !important;
    align-items: center !important;
    height: 100% !important;
    margin-left: 0.5rem !important;
}

/* 2. Règle commune : taille compacte et désactivation de la hauteur à 100% */
.header-menu-1 ul.menu > li.menu-btn-primary > a,
.header-menu-1 ul.menu > li.menu-btn-outline > a {
    height: auto !important; /* Empêche le bouton de s'étirer verticalement */
    align-self: center !important;
    padding: 0.45rem 0.9rem !important; /* Hauteur et largeur réduites */
    font-size: 12px !important; /* Typographie plus fine pour le menu */
    font-weight: 700 !important;
    line-height: 1.2 !important;
    border-radius: 4px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.3px !important;
    transition: all 0.2s ease !important;
}

/* 3. Bouton "Demande de devis" (Plein fond bleu) */
.header-menu-1 ul.menu > li.menu-btn-primary > a {
    background-color: #A2C9EC !important;
    color: #1F1F1F !important;
    border: 1px solid #A2C9EC !important;
}

.header-menu-1 ul.menu > li.menu-btn-primary > a:hover {
    background-color: #8BBEEC !important;
    border-color: #8BBEEC !important;
    color: #1F1F1F !important;
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(162, 201, 236, 0.35) !important;
}

/* 4. Bouton "Contactez-nous" (Outline noir -> Plein noir) */
.header-menu-1 ul.menu > li.menu-btn-outline > a {
    background-color: transparent !important;
    color: #1F1F1F !important;
    border: 1px solid #1F1F1F !important;
}

.header-menu-1 ul.menu > li.menu-btn-outline > a:hover {
    background-color: #1F1F1F !important;
    color: #FFFFFF !important;
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(31, 31, 31, 0.15) !important;
}

/* Neutralisation du trait d'animation au survol de Blocksy */
.header-menu-1 ul.menu > li.menu-btn-primary > a::after,
.header-menu-1 ul.menu > li.menu-btn-outline > a::after {
    display: none !important;
}


/* ==========================================================================
   HERO BOUTONS CTA (ALIGNEMENT DESKTOP / EMPILAGE MOBILE & COULEURS CHARTE)
   ========================================================================== */

/* Alignement côte à côte sur ordinateur */
.hero .hero-buttons,
.hero .wp-block-buttons {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 1rem !important; /* Espacement horizontal desktop */
    margin-top: 1.5rem !important;
}

/* Nouveau style pour le second bouton "Obtenir un devis" (Bleu clair #A2C9EC) */
.sky-btn-secondary {
    background-color: #A2C9EC !important; /* Bleu clair de la charte */
    color: #1F1F1F !important;            /* Texte sombre de la charte */
    font-weight: 600 !important;
    transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
    text-decoration: none !important;
    display: inline-block;
}

.sky-btn-secondary:hover {
    background-color: #D9E1E8 !important; /* Passage en gris clair au survol */
    color: #1F1F1F !important;
    transform: translateY(-2px);
}

/* Adaptabilité Tablette & Mobile (Empilage vertical avec espacement) */
@media (max-width: 768px) {
    .hero .hero-buttons,
    .hero .wp-block-buttons {
        flex-direction: column !important;
        align-items: start !important;
        gap: 0.75rem !important; /* Espacement vertical entre les deux boutons */
    }

    .hero .wp-block-button {
        width: 80% !important;
        text-align: left !important;
    }

}

/* ==========================================================================
   5. BANDEAU DES INDUSTRIES
   ========================================================================== */
.section-compact.industry-ribbon {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border);
    padding: 1.5rem 0 !important;
}

.ribbon-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    justify-items: center;
    align-items: center;
}

.ribbon-item {
    display: flex;
    flex-direction: column; 
    align-items: center;
    text-align: center;
    gap: 1.2rem;
}

.ribbon-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
}

.ribbon-icon img {
    max-width: 100%;
    max-height: 100%;
    display: block;
    object-fit: contain;
}

.ribbon-item h3 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
    white-space: nowrap;
}

/* ==========================================================================
   HUB D'ORIENTATION : VIGNETTES CIRCULAIRES STYLES JOHN DEERE
   ========================================================================== */

/* Conteneur circulaire de l'image */
.industry-ribbon .ribbon-icon {
    width: 140px !important;
    height: 140px !important;
    margin: 0 auto !important;
    border-radius: 50% !important; /* Découpe en cercle parfait */
    overflow: hidden !important;
    border: 1px solid #D9E1E8 !important;
    box-shadow: 0 4px 14px rgba(31, 31, 31, 0.12) !important;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    background-color: #F5F5F7;
}

/* Force l'image à remplir le cercle sans déformation */
.industry-ribbon .ribbon-icon img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important; /* Remplissage intelligent */
    display: block !important;
}

/* Ajustement du cadrage pour chaque image (Ajuste le centrage du drone + paysage) */
.industry-ribbon .ribbon-item:nth-child(1) .ribbon-icon img {
    object-position: 70% 30%; /* Cartographie : Met en avant le drone et le faisceau 3D */
}

.industry-ribbon .ribbon-item:nth-child(2) .ribbon-icon img {
    object-position: 25% center; /* BTP : Centre sur le drone tout en voyant la grue */
}

.industry-ribbon .ribbon-item:nth-child(3) .ribbon-icon img {
    object-position: center 35%; /* Prise de vue : Équilibre le drone et le décor de canyon */
}

.industry-ribbon .ribbon-item:nth-child(4) .ribbon-icon img {
    object-position: 60% center; /* Pulvérisation : Centre le drone principal et la brume */
}

/* Effet au survol style John Deere */
.industry-ribbon .ribbon-item:hover .ribbon-icon {
    transform: scale(1.05);
    border-color: #A2C9EC !important; 
    box-shadow: 0 6px 20px rgba(162, 201, 236, 0.4) !important;
}

/* ==========================================================================
   GRILLE BEST SELLERS (4 COLS DESKTOP, 2 COLS TABLETTE, 1 COL / MAX 4 MOBILE)
   ========================================================================== */

/* Structure de la grille WooCommerce sur ordinateur */
.section-compact .woocommerce ul.products {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 1.5rem !important;
    margin: 0 !important;
    padding: 0 !important;
}

.section-compact .woocommerce ul.products li.product {
    width: 100% !important;
    margin: 0 !important;
}

/* Format Tablette (jusqu'à 992px) : 2 colonnes (4 produits par ligne) */
@media (max-width: 992px) {
    .section-compact .woocommerce ul.products {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.25rem !important;
    }
}

/* Format Mobile (jusqu'à 576px) : 1 colonne et 4 produits maximum */
@media (max-width: 576px) {
    .section-compact .woocommerce ul.products {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }

    /* Masque du 5ème au 8ème produit uniquement sur mobile */
    .section-compact .woocommerce ul.products li.product:nth-child(n+5) {
        display: none !important;
    }
}

/* ==========================================================================
   6. CARACTÉRISTIQUES / BANDEAU DE RÉASSURANCE (HARMONISÉ)
   ========================================================================== */

/* En-tête de section */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem auto;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    margin-bottom: 1rem;
    line-height: 1.25;
    letter-spacing: -0.5px;
    color: #1F1F1F;
}

.section-lead {
    font-size: 1.1rem;
    color: #4A4D50;
    margin: 0;
}

/* Structure de la grille */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    justify-content: center;
}

/* Style des cartes */
.features-grid .feature-card,
.feature-card {
    background-color: #FFFFFF;
    border: 1px solid #D9E1E8;
    border-radius: 8px;
    padding: 1.75rem 1rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

/* Survol de la carte */
.features-grid .feature-card:hover,
.feature-card:hover {
    transform: translateY(-4px);
    border-color: #A2C9EC;
    box-shadow: 0 10px 25px rgba(31, 31, 31, 0.06);
}

/* Pastille circulaire d'icône */
.features-grid .feature-icon,
.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: rgba(162, 201, 236, 0.2); /* Halo bleu clair #A2C9EC */
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.15rem auto;
    transition: background-color 0.25s ease;
}

.features-grid .feature-card:hover .feature-icon,
.feature-card:hover .feature-icon {
    background-color: #A2C9EC; /* Bleu uni au survol */
}

/* Dimensionnement et centrage des icônes SVG/IMG */
.features-grid .feature-icon img,
.features-grid .feature-icon svg,
.feature-icon img,
.feature-icon svg {
    width: 26px;
    height: 26px;
    max-width: 26px;
    max-height: 26px;
    display: block;
    object-fit: contain;
}

/* Typographies */
.features-grid .feature-card h3,
.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: #1F1F1F;
    margin-bottom: 0.5rem;
    text-align: center;
}

.features-grid .feature-card p,
.feature-card p {
    color: #4A4D50;
    font-size: 0.8rem;
    line-height: 1.5;
    margin: 0;
    text-align: center;
}

/* Adaptabilité Tablette & Mobile */
@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* ==========================================================================
   7. VISION SPLIT
   ========================================================================== */
.vision-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin: 2rem 0;
}

.vision-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #D9E1E8;
    font-weight: 300;
}

.vision-text .highlight-text {
    color: var(--text-light);
    font-weight: 400;
    border-left: 2px solid var(--text-light);
    padding-left: 1.2rem;
    margin-top: 2rem;
}

.floating-animation { animation: floatEffect 6s ease-in-out infinite; }
@keyframes floatEffect {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* ==========================================================================
   8. TUNNEL DE CONTACT ASYMÉTRIQUE
   ========================================================================== */
.contact-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.contact-card { 
    padding: 5.5rem 4.5rem; 
    text-align: center;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: var(--transition);
}

.contact-card.b2b-portal {
    background-color: var(--bg-light);
    color: var(--text-dark);
}

.contact-card.investor-portal {
    background-color: var(--bg-neutral-dark);
    color: var(--text-light) !important;
}

.contact-card.investor-portal h3 { color: var(--text-light); }
.contact-card.investor-portal p { color: #C5C5C7 !important; }

.contact-card h3 {
    font-family: var(--font-heading);
    font-size: 1.7rem;
    margin-bottom: 1.5rem;
}

.contact-card p {
    font-size: 1.05rem;
    max-width: 440px;
    margin-bottom: 3rem;
}

.contact-card .sky-btn {
    margin-top: auto; 
    width: 100%;
    max-width: 320px;
}

.trust-badge {
    text-align: center;
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 4px;
    font-size: 0.95rem;
    color: var(--text-dark);
}

/* ==========================================================================
   STYLISATION DU FOOTER SUR-MESURE SOLID SKY
   ========================================================================== */

/* Fond global du footer */
[data-footer] {
    background-color: #1F1F1F !important;
    font-size: 0.9rem !important;
}

/* Titres des colonnes */
.footer-heading {
    color: #FFFFFF !important;
    font-size: 1.05rem !important;
    font-weight: 700 !important;
    margin-bottom: 1.25rem !important;
    letter-spacing: -0.2px;
}

/* Textes descriptifs */
.footer-desc {
    color: #A0A5AA !important;
    line-height: 1.6 !important;
    margin-bottom: 1rem !important;
}

/* Listes de liens */
.footer-menu {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.footer-menu li {
    margin-bottom: 0.65rem !important;
}

.footer-menu a,
.contact-item a {
    color: #D9E1E8 !important;
    text-decoration: none !important;
    transition: color 0.2s ease, transform 0.2s ease;
    display: inline-block;
}

.footer-menu a:hover,
.contact-item a:hover {
    color: #A2C9EC !important; /* Bleu clair de votre charte */
    transform: translateX(3px);
}

/* Contacts & Badges */
.contact-item {
    margin-bottom: 0.75rem !important;
    color: #D9E1E8 !important;
}

.contact-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.825rem;
    color: #A0A5AA;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.4rem 0.75rem;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 0.5rem;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background-color: #A2C9EC;
    border-radius: 50%;
    display: inline-block;
}

/* Barre de Copyright inférieure */
[data-footer] .ct-footer-copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #D9E1E8 !important;
    font-size: 0.85rem !important;
}

.copyright-text {
    color: #A0A5AA !important;
}

[data-footer] .ct-footer-copyright a {
    color: #A0A5AA !important;
}

[data-footer] .ct-footer-copyright a:hover {
    color: #A2C9EC !important;
}

.footer-legal-links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.footer-legal-links a {
    color: #A0A5AA !important;
    text-decoration: none !important;
    font-size: 0.85rem !important;
    transition: color 0.2s ease;
}

.footer-legal-links a:hover {
    color: #A2C9EC !important;
}

.footer-legal-links .sep {
    color: #4A4D50;
    font-size: 0.75rem;
}

/* ==========================================================================
   ADAPTATION MOBILE DU FOOTER BOTTOM (ALIGNEMENT GAUCHE & LIENS EN COLONNE)
   ========================================================================== */

@media (max-width: 767px) {
    /* Alignement complet du bloc et de Blocksy à gauche */
    .footer-bottom-centered,
    [data-footer] .ct-footer-copyright,
    [data-footer] [data-row="bottom"] {
        align-items: flex-start !important;
        justify-content: flex-start !important;
        text-align: left !important;
    }

    /* Empilage vertical des liens légaux */
    .footer-bottom-centered .footer-legal-links {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 0.65rem !important;
        margin-top: 0.5rem !important;
    }

    /* Masquage des puces séparatrices en format vertical */
    .footer-bottom-centered .footer-legal-links .sep {
        display: none !important;
    }
}

/* ==========================================================================
   AJUSTEMENTS SPÉCIFIQUES POUR LA BANNIÈRE HERO
   ========================================================================== */
.hero .wp-block-cover__inner-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 540px !important;
    margin-left: 0 !important;
    margin-right: auto !important;
    text-align: left !important;
    padding: 0 !important;
}

.hero-title {
    font-family: var(--font-heading) !important;
    font-size: 3rem !important;
    line-height: 1.2 !important;
    margin-bottom: 1.5rem !important;
    font-weight: 700 !important;
    letter-spacing: -1px !important;
    text-align: left !important;
}

.hero-subtitle {
    font-size: 1.2rem !important;
    margin-bottom: 2.5rem !important;
    color: #F5F5F7 !important;
    font-weight: 300 !important;
    text-align: left !important;
}

.hero .wp-block-buttons {
    justify-content: flex-start !important;
}

/* ==========================================================================
   STYLE E-COMMERCE INDUSTRIEL (WOOCOMMERCE / BLOCKSY)
   ========================================================================== */

/* 1. Cadre d'image sur fond gris technique */
.woocommerce ul.products li.product .ct-media-container,
.single-product .woocommerce-product-gallery__wrapper {
    background-color: #F8F9FA !important;
    border-radius: 4px !important;
    padding: 1rem;
}

/* 2. Cartes de la boutique : Bordure fine 1px, coins 4px et transition */
.woocommerce ul.products li.product {
    border: 1px solid var(--border) !important;
    border-radius: 4px !important;
    transition: var(--transition) !important;
    background-color: #FFFFFF;
}

.woocommerce ul.products li.product:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

/* 3. Titres des produits dans la grille */
.woocommerce-loop-product__title {
    font-family: var(--font-heading) !important;
    font-weight: 700 !important;
    font-size: 1.1rem !important;
    color: var(--text-dark) !important;
}

/* 4. Épurage des accordéons de la fiche produit */
.ct-accordion-item {
    border-top: none !important;
    border-bottom: 1px solid var(--border) !important;
    border-radius: 0 !important;
}

.ct-accordion-title {
    font-family: var(--font-heading) !important;
    font-weight: 600 !important;
    font-size: 1.05rem !important;
}

/* 5. Boutons WooCommerce aux normes de la marque */
.single-product button.single_add_to_cart_button {
    font-family: var(--font-heading) !important;
    border-radius: 4px !important;
    padding: 1rem 2rem !important;
    background-color: var(--bg-neutral-dark) !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.single-product button.single_add_to_cart_button:hover {
    background-color: var(--bg-dark) !important;
}

/* ==========================================================================
   REFONTE ACCUEIL : DENSITÉ OPTIMISÉE & CHARTE GRAPHIQUE STRICTE
   ========================================================================== */

/* 1. Réduction globale de la hauteur des sections (Densité B2B) */
.section-compact {
    padding: 2.25rem 0 !important;
}

.section-header {
    margin-bottom: 1.25rem !important;
}

.section-title {
    font-size: 1.65rem !important;
    margin-bottom: 0.35rem !important;
    color: #1F1F1F;
}

.section-lead {
    font-size: 0.95rem !important;
    color: #4A4D50;
}

/* Backgrounds de la charte */
.bg-light {
    background-color: #F5F5F7 !important;
}

.bg-dark {
    background-color: #1F1F1F !important;
}

.bg-white {
    background-color: #FFFFFF !important;
}

/* 2. Hub d'orientation usagess */
.ribbon-header {
    margin-bottom: 1.25rem !important;
}

.industry-ribbon .ribbon-item {
    text-decoration: none !important;
    color: #1F1F1F;
    transition: transform 0.2s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.industry-ribbon .ribbon-item:hover {
    transform: translateY(-3px);
}

.industry-ribbon .ribbon-item h3 {
    font-size: 0.95rem;
    color: #1F1F1F;
}

/* 3. Compression du shortcode produits (Best Sellers) */
.section-compact .woocommerce ul.products {
    margin-bottom: 0 !important;
}

/* 4. Bandeau Réassurance ultra-compact */
.features-grid {
    gap: 1.5rem !important;
    margin: 2rem 0;
}

.feature-card h3 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.25rem !important;
    color: #1F1F1F;
}

.feature-card p {
    color: #4A4D50;
    line-height: 1.4 !important;
}

/* 5. Bandeau Devis */
.sky-quote-banner {
    background-color: #4A4D50 !important;
    padding: 3rem 0 !important;
}

.sky-quote-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-direction: column;
    text-align: center;
}

.sky-quote-content h2 {
    color: #FFFFFF !important;
    font-size: 1.8rem !important;
    margin-bottom: 0.35rem !important;
}

.text-light-sub {
    color: #FFFFFF !important; /* Gris-bleu très clair de la charte */
    font-size: 1.1rem;
    line-height: 1.4;
    margin: 0 auto;
    max-width: 60%;
}

/* Bouton Jaune #F4F0BE de la charte */
.sky-btn-accent {
    background-color: #F4F0BE !important;
    color: #1F1F1F !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    white-space: nowrap;
    transition: background-color 0.2s ease, transform 0.2s ease;
    display: inline-block;
}

.sky-btn-accent:hover {
    background-color: #1F1F1F !important; /* Survol Bleu #A2C9EC */
    color: #FFFFFF !important;
}

/* 6. Section Contact compacte */
.contact-split {
    gap: 1.5rem !important;
}

.contact-card {
    padding: 1.75rem !important;
}

@media (max-width: 768px) {
    .sky-quote-inner {
        flex-direction: column;
        text-align: center;
    }
    .sky-btn-accent {
        width: 100%;
        text-align: center;
    }
}

/* ==========================================================================
   LAYOUT FICHE PRODUIT SUR-MESURE (SINGLE PRODUCT)
   ========================================================================== */

/* 1. HAUT DE PAGE : GALERIE (70%) + SOMMAIRE (30%) */
.sky-product-hero-summary {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    
    margin-bottom: 3.5rem;
    width: 100%;
    clear: both;
}

/* Galerie d'images : 70% de la largeur */
.sky-product-hero-summary .woocommerce-product-gallery {
    flex: 0 0 calc(70% - 1rem) !important;
    max-width: calc(70% - 1rem) !important;
    width: calc(70% - 1rem) !important;
}

/* Colonne Sommaire (Prix / Achat) : 30% avec Cadre / Bordure */
.sky-product-hero-summary .summary.entry-summary {
    flex: 0 0 calc(30% - 1rem) !important;
    max-width: calc(30% - 1rem) !important;
    width: calc(30% - 1rem) !important;
    
    border: 1px solid var(--border, rgba(74, 77, 80, 0.2)) !important;
    border-radius: 6px !important;
    padding: 1.8rem !important;
    background-color: #FFFFFF !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02) !important;
    box-sizing: border-box !important;
}

/* 2. BARRE DE NAVIGATION STICKY */
.sticky-product-nav-wrapper {
    position: sticky;
    top: 70px;
    z-index: 99;
    background-color: #D9E1E8 !important;
    border: 1px solid var(--border, rgba(74, 77, 80, 0.15));
    border-radius: 6px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 2.5rem auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.sticky-product-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    padding: 0.85rem 1.5rem;
    margin: 0 auto;
    overflow-x: auto;
    white-space: nowrap;
}

.sticky-product-nav a {
    font-family: var(--font-heading, sans-serif);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-dark, #1F1F1F);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    transition: opacity 0.2s ease;
}

.sticky-product-nav a:hover {
    opacity: 0.7;
}

.sticky-product-nav a.active {
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 6px;
    text-decoration-thickness: 2px;
    opacity: 1 !important;
}

/* 3. SECTION DE DÉTAILS */
.sky-product-details-container {
    width: 100%;
    clear: both;
    max-width: 1200px;
    margin: 0 auto;
}

/* 4. MASQUER LA CATÉGORIE SOUS LE BOUTON PANIER */
.single-product .product_meta {
    display: none !important;
}

/* --------------------------------------------------------------------------
   ENCADRÉ POINTS FORTS / RÉASSURANCE (SOMMAIRE PRODUIT)
   -------------------------------------------------------------------------- */
.sky-product-highlights-box {
    margin-top: 1.8rem;
    padding: 1.25rem;
    background-color: #F8F9FA;
    border: 1px solid #E5E7EB;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.sky-product-highlights-box .highlight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.sky-product-highlights-box .highlight-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #1F1F1F;
    flex-shrink: 0;
}

.sky-product-highlights-box .highlight-text {
    font-size: 0.88rem;
    font-weight: 500;
    color: #374151;
    line-height: 1.3;
}

/* --------------------------------------------------------------------------
   PILULES D'USAGE / MÉTIERS (AU-DESSUS DU TITRE)
   -------------------------------------------------------------------------- */
.sky-product-pills-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.sky-pill-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    background-color: #F3F4F6;
    color: #374151;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 50px;
    border: 1px solid #E5E7EB;
    line-height: 1;
}

/* --------------------------------------------------------------------------
   BOUTON SECONDATION "DEMANDEZ UN DEVIS"
   -------------------------------------------------------------------------- */

.sky-btn-quote-request {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    height: 48px !important;
    background-color: #A2C9EC !important;
    color: #111827 !important;
    font-family: var(--font-heading, 'Space Grotesk', sans-serif) !important;
    font-size: 0.95rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px !important;
    text-decoration: none !important;
    border-radius: 4px !important;
    box-sizing: border-box !important;
    transition: background-color 0.2s ease, transform 0.2s ease !important;
}

.sky-btn-quote-request:hover {
    background-color: #8BBBE5 !important; /* Bleu légèrement plus soutenu au survol */
    color: #111827 !important;
    transform: translateY(-1px) !important;
}

/* ==========================================================================
   HARMONISATION DES ESPACEMENTS DU SOMMAIRE PRODUIT (ENTRY SUMMARY)
   ========================================================================== */

.entry-summary .sky-product-pills-container {
    margin-bottom: 1.25rem !important;
}

.entry-summary .product_title {
    margin-bottom: 0.15rem !important;
    line-height: 1.1 !important;
}

.entry-summary .price,
.entry-summary p.price {
    margin-top: 0 !important;
    margin-bottom: 1.25rem !important;
    font-size: 1.35rem !important;
    font-weight: 700 !important;
    color: #1F1F1F !important;
}

.entry-summary .woocommerce-product-details__short-description {
    font-size: 0.88rem !important;
    line-height: 1.55 !important;
    color: #4B5563 !important;
    margin-bottom: 1.5rem !important;
}

.entry-summary .woocommerce-product-details__short-description p {
    margin-bottom: 0 !important;
}

.entry-summary form.cart {
    margin-bottom: 0.5rem !important;
}

.entry-summary .sky-product-highlights-box {
    margin-top: 0 !important;
}

.ct-product-divider {
    border-top: none !important;
}

.added_to_cart.wc-forward {
    font-family: var(--font-heading) !important;
    font-size: 0.95rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px !important;
    text-decoration: none !important;
}

/* --------------------------------------------------------------------------
   CHIFFRES CLÉS - LAYOUT FLEXBOX AUTO-CENTRÉ
   -------------------------------------------------------------------------- */
.sky-key-stats-grid {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 3rem 2.5rem !important;
    margin: 4rem 0 1.5rem 0;
    padding: 2.5rem 1.5rem;
    background-color: #F8F9FA;
    border-radius: 12px;
}

.sky-key-stats-grid .stat-card {
    flex: 1 1 260px !important;
    max-width: 320px !important;
    text-align: center;
}

.sky-key-stats-grid.stats-count-4 .stat-card {
    flex: 1 1 calc(50% - 2.5rem) !important;
    max-width: 380px !important;
}

.stat-card .stat-value {
    display: block;
    font-family: var(--font-heading, sans-serif);
    font-size: clamp(2rem, 3vw, 2.8rem); 
    font-weight: 700;
    color: #1F1F1F;
    line-height: 1.15;
    margin-bottom: 0.6rem;
    word-break: break-word;
    transition: color 0.35s ease-in-out;
}

.stat-card .stat-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #55585B;
    line-height: 1.35;
    max-width: 260px;
    margin: 0 auto;
    transition: color 0.35s ease-in-out;
}

.sky-key-stats-grid .stat-card:hover .stat-value,
.sky-key-stats-grid .stat-card:hover .stat-label {
    color: #A2C9EC !important;
}

/* --------------------------------------------------------------------------
   PRÉSENTATION PRODUIT : RAPPROCHEMENT & MANIFESTE
   -------------------------------------------------------------------------- */

.sky-presentation-builder {
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
    margin-top: 1rem !important;
}

.sky-pres-video {
    margin-top: -0.5rem;
}

.sky-pres-video video {
    width: 100%;
    max-height: 620px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.sky-pres-manifesto {
    max-width: 850px;
    margin: 0.5rem auto 1rem auto;
    text-align: center;
    padding: 0 1rem;
}

.sky-pres-manifesto p {
    font-size: 1.18rem;
    line-height: 1.7;
    font-weight: 450;
    color: #1F2937;
    letter-spacing: -0.01em;
    margin: 0 !important;
}

.sky-pres-manifesto strong {
    font-weight: 600;
    color: #111827;
}

.sky-feature-block {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.sky-feature-banner img {
    width: 100%;
    height: auto;
    max-height: 560px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

.sky-feature-header {
    text-align: center;
    margin-top: 0.5rem;
}

.sky-feature-header h3 {
    font-size: 1.65rem;
    font-weight: 700;
    color: #111827;
    margin: 0;
    letter-spacing: -0.01em;
}

.sky-pres-lead {
    font-size: 0.98rem;
    line-height: 1.65;
    color: #4B5563;
    text-align: center;
    max-width: 820px;
    margin: 0 auto 2.25rem auto !important;
}

.sky-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.sky-card-item {
    background-color: #F4F5F7;
    border: none !important;
    border-radius: 12px;
    padding: 1.75rem 1.5rem;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: background-color 0.2s ease;
}

.sky-card-item:hover {
    background-color: #ECEEEF;
    transform: none;
    box-shadow: none;
}

.sky-card-item p {
    font-size: 0.95rem;
    line-height: 1.55;
    font-weight: 700;
    color: #111827;
    margin: 0 !important;
}

/* SECTIONS ET SÉPARATEURS */
.sky-product-section {
    padding-top: 2rem;
    padding-bottom: 2rem;
    scroll-margin-top: 150px;
}

.sky-product-section h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1F1F1F;
}

.sky-section-divider {
    margin: 2rem 0;
    border: none;
}

/* ACCORDÉONS DE SPÉCIFICATIONS TECHNIQUES (DETAILS / SUMMARY) */
.specs-accordions-container {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-top: 0;
}

.sky-spec-accordion {
    border: 1px solid #E5E5E5;
    border-radius: 6px;
    background-color: #FFFFFF;
    overflow: hidden;
    transition: border-color 0.2s ease;
}

.sky-spec-accordion:hover {
    border-color: #CCCCCC;
}

.sky-spec-accordion summary {
    font-family: var(--font-heading, sans-serif);
    font-size: 1.05rem;
    font-weight: 600;
    color: #1F1F1F;
    padding: 1.2rem 1.5rem;
    background-color: #F8F9FA;
    cursor: pointer;
    user-select: none;
    outline: none;
    position: relative;
    list-style: none;
}

.sky-spec-accordion summary::-webkit-details-marker {
    display: none;
}

.sky-spec-accordion summary::after {
    content: "+";
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.4rem;
    font-weight: 400;
    color: #666666;
}

.sky-spec-accordion[open] summary::after {
    content: "−";
}

.sky-spec-accordion[open] summary {
    border-bottom: 1px solid #E5E5E5;
    background-color: #FFFFFF;
}

/* STYLE DES TABLEAUX D'ATTRIBUTS (DANS LES ACCORDÉONS) */
table.shop_attributes {
    width: 100% !important;
    border-collapse: collapse !important;
    margin: 0 !important;
    border: none !important;
}

table.shop_attributes tr {
    border-bottom: 1px solid #F0F0F0 !important;
}

table.shop_attributes tr:last-child {
    border-bottom: none !important;
}

table.shop_attributes tr:nth-child(even) {
    background-color: #FAFBFD !important;
}

table.shop_attributes th {
    font-family: var(--font-heading, sans-serif) !important;
    font-size: 0.92rem !important;
    font-weight: 600 !important;
    color: #1F1F1F !important;
    padding: 14px 20px !important;
    width: 35% !important;
    text-align: left !important;
    border: none !important;
    background: transparent !important;
}

table.shop_attributes td {
    font-size: 0.95rem !important;
    color: #4A4D50 !important;
    padding: 14px 20px !important;
    border: none !important;
    background: transparent !important;
}

table.shop_attributes td p {
    margin: 0 !important;
    padding: 0 !important;
}

.specs-accordions-container .spec-label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: #6B7280;
    margin-bottom: 0.2rem;
    line-height: 1.3;
}

.specs-accordions-container .spec-value {
    display: block;
    font-size: 0.98rem;
    font-weight: 600;
    color: #111827;
    margin: 0 !important;
    line-height: 1.4;
}

/* ==========================================================================
   SECTIONS SUPPORT & RÉGLEMENTATION
   ========================================================================== */

/* Introduction des sections */
.sky-section-lead {
    font-size: 1rem;
    line-height: 1.6;
    color: #4B5563;
    margin-bottom: 1.75rem;
}

/* Grille 3 cartes - Support & Installation */
.sky-support-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.sky-support-card {
    background-color: #F9FAFB;
    border: 1px solid #E5E7EB;
    border-radius: 10px;
    padding: 1.5rem;
}

.sky-support-card-header h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.75rem !important;
}

.sky-support-card p {
    font-size: 0.9rem;
    line-height: 1.55;
    color: #4B5563;
    margin: 0 !important;
}

/* Encadré des prérequis réglementaires */
.sky-compliance-box {
    background-color: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 10px;
    padding: 1.5rem 1.75rem;
    margin-bottom: 1.25rem;
}

.sky-compliance-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.sky-compliance-list li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #374151;
}

.sky-compliance-list li:last-child {
    margin-bottom: 0;
}

/* Puce personnalisée (Coche) */
.sky-compliance-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #111827;
    font-weight: 700;
    font-size: 1.05rem;
}

.sky-compliance-list strong {
    color: #111827;
    font-weight: 700;
}

/* Avertissement / Désengagement de responsabilité */
.sky-disclaimer-notice {
    background-color: #F3F4F6;
    border-left: 3px solid #6B7280;
    padding: 0.85rem 1.25rem;
    border-radius: 0 6px 6px 0;
}

.sky-disclaimer-notice p {
    font-size: 0.85rem;
    line-height: 1.5;
    color: #4B5563;
    font-style: italic;
    margin: 0 !important;
}

/* Responsive Mobile & Tablette */
@media (max-width: 992px) {
    .sky-support-cards-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* ==========================================================================
   CHARTE GRAPHIQUE SOLID SKY : FILIGRANE, LOGOMARK & BULLETS (FICHIERS SVG)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. FOND FILIGRANE QUADRILLÉ SUR LA ZONE DÉTAILS
   -------------------------------------------------------------------------- */
.ct-container-full {
    background-color: #FFFFFF !important;
    background-image: linear-gradient(to right, rgba(74, 77, 80, 0.04) 1px, transparent 1px), 
                      linear-gradient(to bottom, rgba(74, 77, 80, 0.04) 1px, transparent 1px) !important;
    background-size: 40px 40px !important;
    border-radius: 0;
    padding-top: 1rem;
    padding-bottom: 2rem;
}

[data-prefix="product"] [class*="ct-container"] > article[class*="post"] {
    background-color: transparent !important;
    --theme-boxed-content-box-shadow: none !important;
}

/* --------------------------------------------------------------------------
   2. LOGOMARK DEVANT LES TITRES H2 DE SECTION
   -------------------------------------------------------------------------- */

.sky-product-section > h2 {
    display: flex !important;
    align-items: center !important;
    gap: 0.75rem !important;
    font-size: 1.6rem;
}

.sky-product-section > h2::before {
    content: "" !important;
    display: inline-block !important;
    width: 2rem !important;
    height: 2rem !important;
    flex-shrink: 0 !important;
    background-color: #111827 !important;
    
    -webkit-mask-image: url('assets/img/logomark.svg') !important;
    mask-image: url('assets/img/logomark.svg') !important;
    -webkit-mask-size: contain !important;
    mask-size: contain !important;
    -webkit-mask-repeat: no-repeat !important;
    mask-repeat: no-repeat !important;
    -webkit-mask-position: center !important;
    mask-position: center !important;
}

/* --------------------------------------------------------------------------
   3. BULLETS ALTERNÉS (UP / DOWN) SUR LES LISTES
   -------------------------------------------------------------------------- */
.sky-compliance-list li,
.wp-block-list li {
    position: relative !important;
    list-style: none !important;
    padding-left: 1.85rem !important;
}

.sky-compliance-list li::before,
.wp-block-list li::before {
    content: "" !important;
    position: absolute !important;
    left: 0 !important;
    top: 0.3em !important;
    width: 1rem !important;
    height: 1.2rem !important;
    background-color: #111827 !important;
    
    -webkit-mask-size: contain !important;
    mask-size: contain !important;
    -webkit-mask-repeat: no-repeat !important;
    mask-repeat: no-repeat !important;
    -webkit-mask-position: center !important;
    mask-position: center !important;
}

/* Puce impaire (1, 3, 5...) : bullet-up.svg */
.sky-compliance-list li:nth-child(odd)::before,
.wp-block-list li:nth-child(odd)::before {
    -webkit-mask-image: url('assets/img/bullet-up.svg') !important;
    mask-image: url('assets/img/bullet-up.svg') !important;
}

/* Puce paire (2, 4, 6...) : bullet-down.svg */
.sky-compliance-list li:nth-child(even)::before,
.wp-block-list li:nth-child(even)::before {
    -webkit-mask-image: url('assets/img/bullet-down.svg') !important;
    mask-image: url('assets/img/bullet-down.svg') !important;
}

.sky-product-section h2 {
    margin-bottom: 1.5rem;
}

.sky-product-section .wp-block-list li {
    padding-bottom: 1rem;
}


/* ==========================================================================
   STYLE PAGE BOUTIQUE JOHN DEERE & GRILLE PRODUITS
   ========================================================================== */

/* Structure Générale */
.sky-shop-wrapper {
    padding-top: 2rem;
    padding-bottom: 4rem;
}

.sky-shop-header {
    margin-bottom: 2rem;
}

.sky-shop-header h1 {
    font-size: 2.25rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 0.5rem;
}

.sky-shop-subtitle {
    font-size: 1rem;
    color: #4B5563;
    margin: 0;
}

/* Disposition Sidebar + Grille */
.sky-shop-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 2rem;
    align-items: start;
}

/* Sidebar & Boîte de filtres */
.sky-filter-widget-box {
    background-color: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    padding: 1.25rem;
}

.sky-filter-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #F3F4F6;
}

.sky-filter-header-row h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #111827;
    margin: 0 !important;
}

.sky-reset-btn {
    background: none;
    border: none;
    font-size: 0.8rem;
    color: #4B5563;
    text-decoration: underline;
    cursor: pointer;
    padding: 0;
}

.sky-reset-btn:hover {
    color: #111827;
}

.sky-filter-group {
    margin-bottom: 1.25rem;
}

.sky-filter-group h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: #374151;
    margin-bottom: 0.75rem !important;
}

.sky-checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #4B5563;
    margin-bottom: 0.5rem;
    cursor: pointer;
}

.sky-checkbox-label input[type="checkbox"] {
    accent-color: #111827;
    width: 1rem;
    height: 1rem;
}

/* Zone Principale & Loader */
.sky-shop-main {
    position: relative;
    min-height: 400px;
}

.sky-shop-loader-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(255, 255, 255, 0.7);
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    z-index: 10;
}

.sky-shop-loader-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.sky-spinner {
    width: 35px;
    height: 35px;
    border: 3px solid #E5E7EB;
    border-top-color: #111827;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Responsive Mobile & Tablette */
@media (max-width: 992px) {
    .sky-shop-layout {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   FILTRES HAUT DE BOUTIQUE : STYLE BOUTONS D'ACTION
   ========================================================================== */

.sky-shop-quick-filters {
    margin-bottom: 2rem;
    padding: 1.25rem;
    background-color: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
}

.sky-quick-filters-title {
    display: block;
    font-family: var(--font-heading, sans-serif);
    font-size: 0.85rem;
    font-weight: 800;
    color: #4B5563;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.85rem;
}

.sky-pills-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}

/* Style Bouton d'action */
.sky-pill-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: #1F2937;
    background-color: #F9FAFB;
    border: 2px solid #E5E7EB;
    border-radius: 8px; /* Bords légèrement arrondis style bouton */
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    text-decoration: none !important;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

/* État Survol (Hover) */
.sky-pill-btn:hover {
    border-color: #111827;
    background-color: #FFFFFF;
    color: #111827;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.08);
}

/* État Actif (Sélectionné) */
.sky-pill-btn.active {
    background-color: #111827 !important;
    border-color: #111827 !important;
    color: #FFFFFF !important;
    box-shadow: 0 4px 10px rgba(17, 24, 39, 0.2);
    transform: translateY(0);
}

/* ==========================================================================
   DESIGN DES CARTES PRODUIT SOLID SKY (CHARTE EXACTE CONTENT-SINGLE-PRODUCT)
   ========================================================================== */

/* 1. Neutralisation du style conteneur par défaut de Blocksy (Suppression du cadre dans le cadre) */
ul.products li.product.sky-product-card,
.woocommerce ul.products li.product.sky-product-card {
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
    list-style: none !important;
}

/* 2. Conteneur unique de la carte */
.sky-card-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    background-color: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    padding: 1rem 0.75rem;
    box-sizing: border-box;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.sky-card-inner:hover {
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.08);
    border-color: #A2C9EC !important; 
}

/* 3. Image Produit intacte (Proportions originales) */
.sky-card-image-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 130px;
    margin-bottom: 0.25rem;
    margin-top: 0.5rem;
    overflow: hidden;
}

.sky-card-image-link img.sky-product-img,
.sky-card-image-link img {
    max-height: 100% !important;
    max-width: 100% !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    margin: 0 auto !important;
     transition: transform 0.2s ease;
}


/* OPTION B : CAS OÙ IL N'Y A QU'UNE SEULE IMAGE (Zoom doux) */
.sky-card-inner:hover .sky-card-image-link img {
    transform: scale(1.06) !important;
    transition: transform 0.2s ease;
}

/* 4. Zone Contenu */
.sky-card-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* 5. Étiquettes (Tags) au-dessus du titre (Reprise exacte du style .sky-pill-tag) */
.sky-product-card .sky-card-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 0.35rem;
}

.sky-product-card .sky-pill-tag {
    font-size: 0.6rem;
}

/* 6. Titre Produit */
.sky-card-title {
    font-family: var(--font-heading) !important;
    font-size: 1.2rem !important;
    font-weight: 800 !important;
    line-height: 1.3 !important;
    text-align: center;
    margin: 0 0 0.5rem 0 !important;
}

.sky-card-title a {
    color: #111827 !important;
    text-decoration: none !important;
}

/* 7. Prix Centré */
.sky-card-price {
    font-size: 1rem;
    font-weight: 800;
    color: #111827;
    text-align: center;
    margin-bottom: 0.75rem;
}

.sky-card-price del {
    color: #9CA3AF;
    font-size: 0.85em;
    margin-right: 0.35rem;
}

.sky-card-price ins {
    text-decoration: none;
}

/* 8. Empilement des Boutons d'Action */
.sky-card-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: auto;
}

/* Bouton Voir le produit (Style exact du bouton Demande de devis) */
.sky-btn-view-product {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    height: 48px !important;
    background-color: #A2C9EC !important;
    color: #111827 !important;
    font-family: var(--font-heading) !important;
    font-size: 0.95rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px !important;
    text-decoration: none !important;
    border-radius: 4px !important;
    border: none !important;
    box-sizing: border-box !important;
    transition: background-color 0.2s ease, transform 0.2s ease !important;
    cursor: pointer;
}

.sky-btn-view-product:hover {
    background-color: #8EBCE4 !important;
    color: #111827 !important;
}

/* Bouton Ajouter au panier (Quick Add WooCommerce) */
.sky-card-actions .button.add_to_cart_button,
.sky-card-actions .button.product_type_simple,
.sky-card-actions .button.product_type_variable {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    height: 48px !important;
    background-color: #111827 !important;
    color: #FFFFFF !important;
    font-family: var(--font-heading) !important;
    font-size: 0.95rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px !important;
    text-decoration: none !important;
    border-radius: 4px !important;
    border: none !important;
    margin: 0 !important;
    box-sizing: border-box !important;
    transition: background-color 0.2s ease !important;
}

.sky-card-actions .button.add_to_cart_button:hover {
    background-color: #1F2937 !important;
    color: #FFFFFF !important;
}

/* Forcer l'en-tête mobile Blocksy jusqu'à 1280px */
@media (max-width: 1280px) {
    .ct-header [data-device="desktop"] {
        display: none !important;
    }
    .ct-header [data-device="mobile"] {
        display: flex !important;
    }

    [data-header*="type-1"] #offcanvas .ct-panel-inner {
        background-color: var(--theme-palette-color-8) !important;
    }

    [class*=ct-toggle-close] {
        --theme-icon-color: var(--theme-palette-color-1) !important;
    }
}

/* ==========================================================================
   BOUTIQUE RESPONSIVE : MOBILE BOTTOM SHEET & TRIGGER BUTTON
   ========================================================================== */

/* Bouton Déclencheur Mobile (Masqué sur Desktop par défaut) */
.sky-mobile-filter-btn {
    display: none;
}

/* Bouton de fermeture du tiroir (Masqué sur Desktop) */
.sky-close-drawer-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    line-height: 1;
    color: #4B5563;
    cursor: pointer;
    padding: 0 0.25rem;
}

.sky-close-drawer-btn:hover {
    color: #111827;
}

.sky-filter-header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Fond obscurci (Backdrop) */
.sky-drawer-backdrop {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.sky-drawer-backdrop.open {
    opacity: 1;
    pointer-events: auto;
}

/* --------------------------------------------------------------------------
   RÈGLES MOBILE & TABLETTE (ÉCRANS <= 992PX)
   -------------------------------------------------------------------------- */
@media (max-width: 992px) {

    /* Conserve le comportement desktop : retour à la ligne naturel */
    .sky-pills-container {
        flex-wrap: wrap !important;
        overflow-x: visible !important;
        padding-bottom: 0;
    }

    .sky-pill-btn {
        flex-shrink: 1 !important; /* Les boutons s'adaptent naturellement */
    }

    /* Bouton Filtres Style John Deere (Pillule large bordée) */
    .sky-mobile-filter-btn {
        display: flex !important;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        width: 100%;
        padding: 0.75rem 1.25rem;
        margin-bottom: 1.5rem;
        background-color: #FFFFFF;
        border: 2px solid #111827;
        border-radius: 9999px;
        font-family: var(--font-heading, sans-serif);
        font-size: 0.95rem;
        font-weight: 700;
        color: #111827;
        cursor: pointer;
        transition: all 0.2s ease;
    }

    .sky-mobile-filter-btn:active {
        background-color: #F3F4F6;
        transform: scale(0.99);
    }

    /* Transformation de la Sidebar en Tiroir Coulissant (Bottom Sheet) */
    .sky-shop-sidebar {
        position: fixed !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 999 !important;
        background-color: #FFFFFF !important;
        border-radius: 20px 20px 0 0 !important;
        max-height: 85vh !important;
        overflow-y: auto !important;
        transform: translateY(100%) !important;
        transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
        box-shadow: 0 -10px 25px rgba(0, 0, 0, 0.15) !important;
    }

    .sky-shop-sidebar.open {
        transform: translateY(0) !important;
    }

    .sky-filter-widget-box {
        border: none !important;
        border-radius: 0 !important;
        padding: 1.5rem 1.25rem 2rem 1.25rem !important;
    }

    .sky-close-drawer-btn {
        display: block !important;
    }
}

/* ==========================================================================
   MENTION LÉGALE TVA (CHECKOUT)
   ========================================================================== */
.sky-vat-notice-row td {
    padding-top: 1rem !important;
    padding-bottom: 0.5rem !important;
    border: none !important;
}

.sky-checkout-vat-notice {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    background-color: #F9FAFB;
    border: 1px solid #E5E7EB;
    border-radius: 6px;
    padding: 0.75rem 1rem;
    font-size: 0.825rem;
    color: #4B5563;
    line-height: 1.45;
}

.sky-checkout-vat-notice svg {
    flex-shrink: 0;
    color: #2563EB; /* Icône bleue */
    margin-top: 2px;
}

.sky-checkout-vat-notice strong {
    color: #111827;
}


/* ==========================================================================
   RESPONSIVE MEDIA QUERIES UNIFIÉES
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. REGLES DESKTOP UNIQUEMENT (1025PX ET PLUS)
   -------------------------------------------------------------------------- */
@media (min-width: 1025px) {
    .sky-product-hero-summary .product-entry-wrapper {
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: flex-start !important;
        width: 100% !important;
    }

    .sky-product-hero-summary .woocommerce-product-gallery {
        width: calc(70% - 1rem) !important;
        max-width: calc(70% - 1rem) !important;
        flex: 0 0 calc(70% - 1rem) !important;
    }

    .sky-product-hero-summary .summary.entry-summary {
        width: calc(30% - 1rem) !important;
        max-width: calc(30% - 1rem) !important;
        flex: 0 0 calc(30% - 1rem) !important;
    }
}


/* --------------------------------------------------------------------------
   2. REGLES GENERALES MOBILE & TABLETTE (MAX-WIDTH: 1024PX)
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {

    .sticky-product-nav-wrapper {
        display: none !important;
    }

    /* Annulation du flex-row natif de Blocksy sur le conteneur parent */
    .sky-product-hero-summary {
        width: 100% !important;
    }

    .sky-product-hero-summary .product-entry-wrapper {
        display: flex !important;
        flex-direction: column !important; /* Force l'empilement vertical galerie / sommaire */
        width: 100% !important;
        max-width: 100% !important;
        margin-inline-start: 0 !important;
        margin-left: 0 !important;
    }

    .sky-product-hero-summary .woocommerce-product-gallery,
    .sky-product-hero-summary .summary.entry-summary {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
        margin-inline-start: 0 !important;
        margin-left: 0 !important;
        position: static !important; /* Neutralise le positionnement sticky de Blocksy */
    }

    /* Grilles générales du thème */
    .ribbon-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; justify-items: center; }
    .ribbon-item { align-items: flex-start; text-align: center; }
    .ribbon-item h3 { white-space: normal; }
    .features-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    .vision-split { grid-template-columns: 1fr; gap: 3.5rem; padding: 0 1rem;}
    .contact-split { grid-template-columns: 1fr; gap: 1.5rem; }
    .contact-card { padding: 4rem 2rem; }
    .contact-card p { margin-bottom: 2rem; }

    .sky-key-stats-grid {
        margin-top: 1.5rem;
    }

    .hero-title {
        font-size: 2.4rem !important;
        line-height: 1 !important;
    }

    .hero-subtitle {
        line-height: 1.4 !important;
    }

    .hero-title .highlight-yellow {
        margin-top: 0.5rem;
    }

    .text-light-sub {
        max-width: 100%;
    }

    .trust-badge {
        margin-top: 1.5rem;
    }
}


/* --------------------------------------------------------------------------
   3. TABLETTE UNIQUEMENT (768PX A 1024PX INCLUS)
   -------------------------------------------------------------------------- */
@media (min-width: 768px) and (max-width: 1024px) {

    /* A. Cartes de présentation : 2 colonnes avec 3ème carte centrée sur la ligne 2 */
    .sky-cards-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.25rem !important;
    }

    .sky-cards-grid .sky-card-item:nth-child(3):last-child {
        grid-column: 1 / -1 !important;
        justify-self: center !important;
        width: calc(50% - 0.625rem) !important;
    }

    /* B. Sommaire Produit : Disposition 2 colonnes compacte et aérée */
    .summary.entry-summary {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: space-between !important;
        align-items: stretch !important;
        gap: 1rem !important;
        padding: 1.5rem !important;
    }

    /* 2. Étirement du bloc points forts + centrage vertical du contenu interne */
    .summary.entry-summary .sky-product-highlights-box,
    .summary.entry-summary [class*="reassurance"] {
        height: auto !important;           /* S'étire sur toute la hauteur de la ligne */
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;/* Centre verticalement les puces/icônes dans le bloc */
    }

    /* Rapprochement des éléments d'en-tête */
    .summary.entry-summary .sky-product-pills-container {
        margin-bottom: 0.5rem !important;
    }

    .summary.entry-summary .product_title {
        margin-bottom: 0.25rem !important;
    }

    .summary.entry-summary .price,
    .summary.entry-summary p.price {
        margin-bottom: 0.75rem !important;
    }

    .summary.entry-summary .woocommerce-product-details__short-description {
        margin-bottom: 0.5rem !important;
    }

    .summary.entry-summary .ct-product-divider {
        display: none !important;
    }

    /* En-tête prend 100% de la largeur */
    .summary.entry-summary > *:not(.ct-product-add-to-cart):not(.sky-product-highlights-box) {
        width: 100% !important;
    }

    /* Colonne GAUCHE : Bloc Points Forts (Aligné en haut) */
    .summary.entry-summary .sky-product-highlights-box {
        width: calc(50% - 0.5rem) !important;
        order: 10 !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        box-sizing: border-box !important;
    }

    /* Colonne DROITE : Conteneur Achat (Aligné en haut avec la gauche) */
    .summary.entry-summary .ct-product-add-to-cart {
        width: calc(50% - 0.5rem) !important;
        order: 11 !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        box-sizing: border-box !important;
    }

    .summary.entry-summary .ct-product-add-to-cart form.cart {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }

    .summary.entry-summary .ct-product-add-to-cart .single_add_to_cart_button {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
    }
}


/* --------------------------------------------------------------------------
   4. MOBILE ET TABLETTE : REPOSITIONNEMENT DU SÉLECTEUR DE QUANTITÉ
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {

    .entry-summary .quantity {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 1.25rem !important;
        width: 100% !important;
        max-width: 100% !important;
        height: 48px !important;
        border: 1px solid #111827 !important;
        border-radius: 6px !important;
        background-color: #FFFFFF !important;
        box-sizing: border-box !important;
        position: relative !important;
        margin: 0 !important;
        float: none !important;
    }

    .entry-summary .quantity .ct-decrease,
    .entry-summary .quantity .ct-increase {
        position: static !important;
        top: auto !important;
        bottom: auto !important;
        left: auto !important;
        right: auto !important;
        inset-inline-start: auto !important;
        inset-inline-end: auto !important;
        transform: none !important;
        width: 32px !important;
        height: 100% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        cursor: pointer !important;
        color: #111827 !important;
        font-size: 1.2rem !important;
        margin: 0 !important;
        padding: 0 !important;
        background: transparent !important;
        border: none !important;
    }

    .entry-summary .quantity .ct-decrease {
        order: 1 !important;
    }

    .entry-summary .quantity input.qty {
        order: 2 !important;
        width: 35px !important;
        height: 100% !important;
        border: none !important;
        background: transparent !important;
        text-align: center !important;
        font-weight: 600 !important;
        font-size: 1rem !important;
        color: #111827 !important;
        padding: 0 !important;
        margin: 0 !important;
        box-shadow: none !important;
        flex: 0 0 auto !important;
    }

    .entry-summary .quantity .ct-increase {
        order: 3 !important;
    }

    .sky-btn-quote-request {
        margin-top: 0.75rem;
    }
}


/* --------------------------------------------------------------------------
   5. MOBILE UNIQUEMENT (< 767PX)
   -------------------------------------------------------------------------- */
@media (max-width: 767px) {

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


    .ct-container,
    .sky-container,
    .sky-product-hero-summary {
        padding-left: 0.75rem !important;
        padding-right: 0.75rem !important;
        max-width: 100% !important;
        width: 100% !important;
    }

    .summary.entry-summary {
        padding: 1.25rem 1rem !important;
        box-sizing: border-box !important;
    }

    .entry-summary .ct-product-add-to-cart {
        margin-bottom: 0 !important;
    }

    .entry-summary .ct-product-add-to-cart form.cart {
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        width: 100% !important;
    }

    .entry-summary .ct-product-add-to-cart .single_add_to_cart_button {
        width: 100% !important;
        height: 48px !important;
        margin: 0 !important;
        float: none !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        font-size: 1rem !important;
        white-space: nowrap !important;
    }

    .sky-cards-grid {
        grid-template-columns: 1fr !important;
    }

    .sky-pres-manifesto {
        padding: 0 0.5rem !important;
        max-width: 100% !important;
    }

    .sky-pres-manifesto p {
        font-size: 1rem !important;
        line-height: 1.6 !important;
    }

    .sky-product-section h3 {
        font-size: 1.2rem;
    }

    .sky-product-section > h2 {
        font-size: 1.2rem;
    }

    .entry-summary .sky-product-highlights-box {
        margin-top: 1rem !important;
    }

    .hero .wp-block-button {
        width: 100% !important;
    }
}


/* --------------------------------------------------------------------------
   6. PETIT MOBILE (< 480PX)
   -------------------------------------------------------------------------- */
@media (max-width: 480px) {
    .sky-key-stats-grid {
        grid-template-columns: 1fr !important;
        padding: 1.5rem 1rem !important;
    }
}


/* ==========================================================================
   EMPILEMENT DU BLOC ACHAT SUR PETITS ÉCRANS DESKTOP (1025PX À 1427PX)
   ========================================================================== */

@media (min-width: 1025px) and (max-width: 1427px) {

    /* Formulaire de panier en colonne */
    .summary.entry-summary .ct-product-add-to-cart form.cart {
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        width: 100% !important;
    }

    /* Sélecteur de quantité à 100% de largeur */
    .summary.entry-summary .quantity {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 1.25rem !important;
        width: 100% !important;
        max-width: 100% !important;
        height: 48px !important;
        border: 1px solid #111827 !important;
        border-radius: 6px !important;
        background-color: #FFFFFF !important;
        box-sizing: border-box !important;
        margin: 0 !important;
        float: none !important;
    }

    /* Bouton Ajouter au panier à 100% de largeur */
    .summary.entry-summary .single_add_to_cart_button {
        width: 100% !important;
        max-width: 100% !important;
        height: 48px !important;
        margin: 0 !important;
        float: none !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    /* Bouton Demandez un devis à 100% de largeur */
    .summary.entry-summary .sky-btn-quote-request {
        width: 100% !important;
        margin-top: 0 !important;
    }
}