.elementor-kit-4{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;}.elementor-kit-4 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){margin-block-end:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS *//* --- 1. VARIABLES DESIGN SYSTEM --- */
:root {
    --c-bg: #F7F5F0;       /* Papier/Sable */
    --c-text: #2B2B2B;     /* Encre Noire */
    --c-accent: #8C7B6D;   /* Taupe Organique */
    --c-lines: #DEDAD4;    /* Lignes grilles */
    --w-sidebar: 260px;    /* Largeur du menu */
}

/* Reset Global */
html, body {
    background-color: var(--c-bg);
    color: var(--c-text);
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* Empêche le slide horizontal */
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    letter-spacing: -0.02em;
}

/* --- 2. LAYOUT MENU LATÉRAL (Desktop Only) --- */
@media (min-width: 1025px) {
    /* Pousse le contenu du site à droite */
    body {
        margin-left: var(--w-sidebar) !important;
        width: calc(100% - var(--w-sidebar)) !important;
        min-height: 100vh; /* Force le fond beige jusqu'en bas */
    }
    
    /* Force le Header Elementor à gauche */
    .elementor-location-header {
        position: fixed !important;
        top: 0;
        left: 0;
        width: var(--w-sidebar) !important;
        height: 100vh !important;
        border-right: 1px solid var(--c-lines);
        background: var(--c-bg);
        z-index: 999;
        
        display: flex;
        flex-direction: column;
        
        /* --- CORRECTION ICI --- */
        justify-content: flex-start; /* Tout aligner en haut */
        gap: 30px; /* Espace entre Logo et Menu */
        padding: 10px 30px 30px 30px; /* Seulement 10px en haut ! */
    }
}

/* Reset Mobile (Header en haut normal) */
@media (max-width: 1024px) {
    .elementor-location-header {
        position: sticky !important;
        width: 100% !important;
        height: auto !important;
        border-bottom: 1px solid var(--c-lines);
        padding: 15px 20px;
    }
    body {
        margin-left: 0 !important;
        width: 100% !important;
    }
}

/* --- 3. STYLE PRODUITS --- */
.product-grid {
    background-color: var(--c-lines);
    gap: 1px !important;
}

.product-grid .elementor-loop-container > .elementor-widget-container, 
.product-grid .e-loop-item {
    background-color: var(--c-bg);
    height: 100%;
}

/* --- 4. BOUTONS LUXE --- */
.btn-luxe .elementor-button {
    background: transparent !important;
    color: var(--c-text) !important;
    border: 1px solid var(--c-text) !important;
    border-radius: 0px !important;
    padding: 12px 24px !important;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-luxe .elementor-button:hover {
    background: var(--c-text) !important;
    color: var(--c-bg) !important;
}/* End custom CSS */