:root {
    --color-primary: #0a1a3a;
    --color-primary-dark: #060f24;
    --color-accent: #f15a24;
    --color-accent-hover: #d44a1a;
    --color-text: #1a1a2e;
    --color-text-light: #555;
    --color-text-muted: #888;
    --color-bg: #fff;
    --color-bg-light: #f4f6f8;
    --color-border: #e0e4e8;
    --color-white: #fff;
    --font-primary: 'Inter', -apple-system, sans-serif;
    --font-heading: 'Inter', -apple-system, sans-serif;
    --header-height: 80px;
    --transition: all 0.3s ease;
    --radius-sm: 4px;
    --radius-md: 8px;
}
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
    font-family: var(--font-primary); font-size: 16px; line-height: 1.7;
    color: var(--color-text); background: var(--color-bg); overflow-x: hidden;
}
a { color: inherit; text-decoration: none; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 700; line-height: 1.2; color: var(--color-primary); }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.container-fluid { width: 100%; padding: 0; }
.row { display: flex; flex-wrap: wrap; margin: 0 -1rem; }
[class*="col-"] { padding: 0 1rem; width: 100%; }
.col-12 { width: 100%; }
.col-lg-6 { width: 50%; }
.col-lg-7 { width: 58.333%; }
.col-lg-5 { width: 41.667%; }
.col-lg-4 { width: 33.333%; }
.col-lg-3 { width: 25%; }
.col-sm-6 { width: 50%; }
@media (max-width: 992px) { .col-lg-6, .col-lg-7, .col-lg-5, .col-lg-4, .col-lg-3 { width: 100%; } .col-sm-6 { width: 50%; } }
@media (max-width: 576px) { .col-sm-6 { width: 100%; } }

.d-flex { display: flex; }
.d-none { display: none; }
.d-block { display: block; }
.d-xl-none { display: none; }
.d-xl-flex { display: none; }
@media (min-width: 1200px) { .d-xl-none { display: none !important; } .d-xl-flex { display: flex !important; } .d-xl-block { display: block !important; } }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.sr-only-focusable:active, .sr-only-focusable:focus { position: static; width: auto; height: auto; overflow: visible; clip: auto; white-space: normal; }
.text-center { text-align: center; }
.h-100 { height: 100%; }
.w-100 { width: 100%; }
.mx-auto { margin-left: auto; margin-right: auto; }
.ml-auto { margin-left: auto; }
.mr-auto { margin-right: auto; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 2.5rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 2.5rem; }
.mr-5 { margin-right: 2.5rem; }
.p-0 { padding: 0; }
.p-3 { padding: 1rem; }
@media (min-width: 992px) { .p-lg-0 { padding: 0; } }

/* ===== SIDEBAR NAV (left, dark) ===== */
:root { --sidebar-width: 260px; }
.gp-sidebar {
    position: fixed; top: 0; left: 0; width: var(--sidebar-width); height: 100vh;
    background: #0e0e1a; z-index: 2000; display: flex; flex-direction: column;
    overflow-y: auto;
}
.gp-sidebar-toggle {
    display: none; position: fixed; top: 1rem; left: 1rem; z-index: 2100;
    width: 40px; height: 40px; border: none; background: #0e0e1a; border-radius: 6px;
    cursor: pointer; padding: 0.5rem; flex-direction: column; justify-content: center; gap: 4px;
}
.gp-sidebar-toggle span {
    display: block; width: 100%; height: 2px; background: #fff; border-radius: 1px;
    transition: transform 0.3s ease;
}
.gp-sidebar-inner {
    display: flex; flex-direction: column; align-items: flex-start; justify-content: center;
    flex: 1; padding: 2rem 1.5rem;
}
.gp-sidebar-logo { margin-bottom: 3rem; width: 100%; display: flex; justify-content: center; }
.gp-sidebar-logo .custom-logo-link { display: inline-block !important; line-height: 0; }
.gp-sidebar-logo img, .gp-sidebar-logo .custom-logo { max-width: 140px; height: auto; display: inline-block; }
.gp-sidebar-logo-text {
    font-size: 1.25rem; font-weight: 700; color: #fff; letter-spacing: 0.05em;
}
.gp-sidebar-nav { width: 100%; padding-left: 0.5rem; }
.gp-sidebar-menu {
    list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.125rem;
}
.gp-sidebar-menu li { list-style: none; }
.gp-sidebar-menu a {
    display: block; padding: 0.5rem 0.75rem; color: rgba(255,255,255,0.55);
    font-size: 0.8125rem; font-weight: 400; text-align: left; letter-spacing: 0.04em;
    transition: color 0.25s ease;
    position: relative;
}
.gp-sidebar-menu a::after {
    content: ''; position: absolute; bottom: 0; left: 0.75rem;
    width: 0; height: 1px; background: #d32f2f;
    transition: width 0.3s ease;
}
.gp-sidebar-menu a:hover,
.gp-sidebar-menu .current-menu-item > a,
.gp-sidebar-menu .current_page_item > a { color: #fff; }
.gp-sidebar-menu a:hover::after,
.gp-sidebar-menu .current-menu-item > a::after,
.gp-sidebar-menu .current_page_item > a::after { width: 20px; }
.gp-sidebar-app { width: 100%; padding: 1.5rem 0.75rem 0.5rem; border-top: 1px solid rgba(255,255,255,0.06); margin-top: 0.75rem; }
.gp-sidebar-app-link {
    display: flex; align-items: center; gap: 0.5rem; color: rgba(255,255,255,0.55);
    transition: color 0.25s ease; text-decoration: none;
}
.gp-sidebar-app-link:hover { color: #fff; }
.gp-sidebar-app-link svg { flex-shrink: 0; }
.gp-sidebar-app-text { display: flex; flex-direction: column; line-height: 1.3; }
.gp-sidebar-app-label { font-size: 0.625rem; color: rgba(255,255,255,0.35); text-transform: uppercase; letter-spacing: 0.06em; }
.gp-sidebar-app-name { font-size: 0.75rem; font-weight: 500; color: inherit; }
.gp-sidebar-app-slogan { font-size: 0.625rem; color: rgba(255,255,255,0.25); margin-top: 0.15rem; padding-left: 1.75rem; }
.gp-sidebar-app-qr {
    display: flex; flex-direction: column; align-items: center; gap: 0.45rem;
    background: #fff; border-radius: 10px; padding: 0.6rem;
    width: 128px; margin: 0.9rem auto 0;
    box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}
.gp-sidebar-app-qr img {
    width: 100%; height: auto; display: block; border-radius: 4px; user-select: none;
}
.gp-sidebar-app-qr span {
    font-size: 0.5625rem; font-weight: 600; letter-spacing: 0.04em;
    text-transform: uppercase; color: #1a1a2e; text-align: center;
}
.gp-sidebar-footer {
    margin-top: auto; text-align: left; padding-top: 0; width: 100%;
}
.gp-sidebar-phone { margin-bottom: 0.5rem; }
.gp-sidebar-phone a {
    display: inline-flex; align-items: center; gap: 0.4rem;
    color: rgba(255,255,255,0.7); font-size: 0.8125rem; font-weight: 500;
    transition: color 0.3s ease;
}
.gp-sidebar-phone a:hover { color: #d32f2f; }
.gp-sidebar-copy {
    color: rgba(255,255,255,0.3); font-size: 0.6875rem;
}

/* Main content offset */
.gp-main { margin-left: var(--sidebar-width); min-height: 100vh; }
.site-content { padding-top: 0; }

/* Mobile header bar */
.gp-mobile-header {
    display: none; position: fixed; top: 0; left: 0; right: 0; z-index: 2100;
    height: 56px; background: #0e0e1a; align-items: center;
}
.gp-mobile-header-logo { position: absolute; left: 50%; transform: translateX(-50%); }
.gp-mobile-header-logo img, .gp-mobile-header-logo .custom-logo { max-height: 72px; width: auto; }
.gp-mobile-header .gp-sidebar-logo-text { color: #fff; font-size: 1.125rem; font-weight: 700; }
.gp-mobile-header-burger {
    display: flex; position: absolute; right: 1rem; width: 40px; height: 40px;
    border: none; background: transparent; cursor: pointer; padding: 0.6rem;
    flex-direction: column; justify-content: space-between;
}
.gp-mobile-header-burger span {
    display: block; width: 100%; height: 2px; background: #fff; border-radius: 1px;
    transition: all 0.3s ease;
}

/* Mobile sidebar */
@media (max-width: 991px) {
    .gp-mobile-header { display: flex; }
    .gp-sidebar {
        transform: translateX(-100%); transition: transform 0.35s ease;
        padding-top: 56px;
    }
    .gp-sidebar.is-open { transform: translateX(0); }
    .gp-main { margin-left: 0; padding-top: 56px; }
}
.bg-secondary { background: var(--color-primary); }

/* ===== HERO (soliso) ===== */
.header { position: relative; min-height: 75vh; display: flex; align-items: center; overflow: hidden; }
.header .header-child { position: absolute; inset: 0; }
.header-child__image {
    position: absolute; inset: 0; width: 100%; height: 100%;
    background-size: cover; background-position: center; opacity: 0;
    transition: opacity 1.2s ease; will-change: opacity, transform;
}
.header-child__image.active { opacity: 1; z-index: 1; }
.header-child__image.zoom { animation: heroZoom 6s ease forwards; }
@keyframes heroZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.08); }
}
.header__elements { position: absolute; z-index: 2; bottom: 3rem; left: 0; color: var(--color-white); }
.header__elements-inner {
    position: relative; display: inline-block; padding: 3rem 3rem 2.5rem 4rem;
    background: #1a1a2e; margin-left: 4rem;
}
.header__elements__carre.carre-vert {
    position: absolute; top: -60px; left: 0; width: 120px; height: 120px;
    background: #d32f2f;
}
.header__elements__textes { max-width: 600px; padding-top: 1.5rem; }
.header__elements__textes__top__titre h1 {
    font-size: 2.5rem; font-weight: 700; color: var(--color-white);
    line-height: 1.15; letter-spacing: -0.02em;
}
.header__elements__textes__top__titre h1 span { color: #d32f2f; }
.header__elements__textes__texte {
    font-size: 1rem; color: rgba(255,255,255,0.7); line-height: 1.7; max-width: 520px;
}
.header__elements__bg-dots {
    position: absolute; bottom: 0; right: 2rem; z-index: -1; pointer-events: none;
}
.header__elements__bg-dots img { width: 200px; opacity: 0.12; }
.header__elements__mobile { padding: 4rem 0; }
@media (max-width: 768px) {
    .header { min-height: 65vh; }
    .header__elements__textes { padding: 3rem 1rem 3rem 1.5rem; }
    .header__elements__textes__top__titre h1 { font-size: 1.5rem; }
}

/* ===== ACCUEIL BLOC 1 / SERVICES GRID (soliso) ===== */
.accueil__bloc1 { padding: 3rem 0; background: var(--color-bg-light); }
.accueil__bloc1__textes__titre h2 { font-size: 1.75rem; font-weight: 700; line-height: 1.3; }
.accueil__bloc1__textes__sous-titre {
    color: var(--color-text-light); font-size: 1rem; margin-bottom: 2.5rem;
}
.element-numeros { display: flex; flex-wrap: wrap; }
.element-numeros__numero { margin-bottom: 1.5rem; }
.element-numeros__numero__picto {
    width: 80px; height: 80px; background: var(--color-primary); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto; color: var(--color-white);
}
.element-numeros__numero__picto:hover { background: var(--color-accent); }
.element-numeros__numero__picto img, .element-numeros__numero__picto svg { width: 32px; height: 32px; }
.numeros-small {
    font-family: var(--font-heading); font-size: 0.75rem; font-weight: 700;
    color: var(--color-accent); letter-spacing: 0.1em; margin-top: 0.75rem;
}
.element-numeros__texte {
    font-size: 0.875rem; color: var(--color-text);
    line-height: 1.5; max-width: 240px; margin: 0 auto;
}
.element-numeros__texte b, .element-numeros__texte strong { color: var(--color-primary); }
.element-numeros a { display: block; }
.element-numeros a:hover .element-numeros__texte { color: var(--color-accent); }

/* ===== ACCUEIL BLOC 2 / TEXT + IMAGE (soliso) ===== */
.accueil__bloc2 { padding: 5rem 0; }
.bloc-titres-et-texte { display: flex; flex-direction: column; justify-content: center; height: 100%; }
.bloc-titres-et-texte__pre-titre { font-size: 0.875rem; font-weight: 700; color: var(--color-accent); text-transform: uppercase; letter-spacing: 0.1em; }
.bloc-titres-et-texte__titre h2 { font-size: 1.75rem; font-weight: 700; line-height: 1.3; }
.bloc-titres-et-texte__texte { font-size: 0.9375rem; color: var(--color-text-light); line-height: 1.7; }
.bloc-titres-et-texte__texte b { color: var(--color-text); }
.experience { display: flex; align-items: center; margin-top: 2rem; }
.experience__cadre {
    width: 120px; height: 120px; flex-shrink: 0;
    border: 4px solid var(--color-accent); display: flex; align-items: center; justify-content: center;
    margin-right: 1.5rem;
}
.experience__cadre__numero {
    font-family: var(--font-heading); font-size: 2.5rem; font-weight: 800; color: var(--color-accent);
}
.experience__texte p { font-size: 1rem; font-weight: 600; color: var(--color-primary); line-height: 1.4; }
.bloc-images-droite { position: relative; }
.bloc-images-droite__bloc-image1 {
    position: relative; min-height: 380px; background-size: cover; background-position: center;
}
.bloc-images-droite__bloc-image1__image2 {
    position: absolute; bottom: -40px; left: -40px;
    width: 200px; height: 160px; background-size: cover; background-position: center;
    border: 4px solid var(--color-white);
}
.bloc-images-droite__bloc-image1__dots {
    position: absolute; top: -40px; right: -40px; z-index: -1; opacity: 0.15;
}
.bloc-images-droite__bloc-image1__dots img { width: 150px; }
@media (max-width: 992px) {
    .accueil__bloc2 { padding: 3rem 0; }
    .bloc-images-droite__bloc-image1 { margin-top: 2rem; min-height: 280px; }
    .bloc-images-droite__bloc-image1__image2 { width: 140px; height: 110px; bottom: -20px; left: -20px; }
    .bloc-images-droite__bloc-image1__dots { top: -20px; right: -20px; }
    .bloc-images-droite__bloc-image1__dots img { width: 100px; }
}

/* ===== ACCUEIL BLOC 3 / CERTIFICATIONS (soliso) ===== */
.accueil__bloc3 { padding: 4rem 0; background: var(--color-bg-light); }
.accueil__bloc3__pre-titre { font-size: 0.875rem; font-weight: 700; color: var(--color-accent); text-transform: uppercase; letter-spacing: 0.1em; }
.accueil__bloc3__titre h2 { font-size: 1.75rem; font-weight: 700; }

/* ===== ACCUEIL BLOC 4 / SLIDER (soliso-style) ===== */
.accueil__bloc4 { padding: 4rem 0; background: var(--color-bg); }
.accueil__bloc4 h2 { font-size: 1.75rem; }
.accueil__bloc4__slider {
    display: flex; gap: 0; overflow-x: auto;
    scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
}
.accueil__bloc4__slide {
    flex: 0 0 25%; scroll-snap-align: start; position: relative; overflow: hidden;
}
.accueil__bloc4__slide__photo {
    height: 320px; background-size: cover; background-position: center;
}
.accueil__bloc4__slide__bloc-texte {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    background: rgba(10,26,58,0.75); color: var(--color-white); text-align: center;
    padding: 1.5rem; opacity: 0; transition: var(--transition);
}
.accueil__bloc4__slide:hover .accueil__bloc4__slide__bloc-texte { opacity: 1; }
.accueil__bloc4__slide__bloc-texte__title {
    font-size: 1.25rem; font-weight: 700; color: var(--color-white); margin-bottom: 0.5rem;
}
.accueil__bloc4__slide__bloc-texte__icon svg { width: 40px; height: 40px; color: var(--color-accent); }
@media (max-width: 992px) { .accueil__bloc4__slide { flex: 0 0 50%; } }
@media (max-width: 576px) { .accueil__bloc4__slide { flex: 0 0 100%; } }

/* ===== ACCUEIL BLOC 5 / CTA (soliso) ===== */
.accueil__bloc5 { padding: 3rem 0; }
.block-to-action-1 {
    display: flex; align-items: center; background: var(--color-primary);
    border-radius: var(--radius-md); overflow: hidden;
}
.block-to-action-1__image { flex-shrink: 0; }
.block-to-action-1__image img { width: 180px; height: 100%; object-fit: cover; display: block; }
.block-to-action-1__elements {
    flex: 1; display: flex; align-items: center; justify-content: space-between;
    padding: 2rem 3rem; gap: 1.5rem;
}
.block-to-action-1__elements__texte__titre {
    font-size: 1.25rem; font-weight: 700; color: var(--color-white); margin-bottom: 0.4rem;
}
.block-to-action-1__elements__texte__sous-titre {
    color: rgba(255,255,255,0.6); font-size: 0.875rem;
}
.block-to-action-1__elements__bouton {
    padding: 0.75rem 2rem; background: var(--color-accent); color: var(--color-white);
    font-weight: 600; border-radius: var(--radius-sm); white-space: nowrap; flex-shrink: 0;
}
.block-to-action-1__elements__bouton:hover { background: var(--color-accent-hover); color: var(--color-white); }
@media (max-width: 992px) {
    .block-to-action-1 { flex-direction: column; }
    .block-to-action-1__elements { flex-direction: column; text-align: center; padding: 2rem; }
    .block-to-action-1__image { display: none; }
}

/* ===== FOOTER ===== */
.site-footer { background: var(--color-primary-dark); color: rgba(255,255,255,0.5); padding: 2rem; }
.footer-inner-soliso {
    display: flex; align-items: center; justify-content: space-between;
    max-width: 1200px; margin: 0 auto; flex-wrap: wrap; gap: 1rem;
}
.footer-brand { text-align: center; }
.footer-logo img, .footer-logo .custom-logo { max-height: 40px; width: auto; }
.footer-logo-text { font-size: 0.875rem; font-weight: 600; color: #fff; }
.footer-slogan { font-size: 0.6875rem; color: rgba(255,255,255,0.35); margin-top: 0.2rem; }
.footer-center { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.footer-phone { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.9375rem; font-weight: 500; color: var(--color-white); }
.footer-phone:hover { color: #d32f2f; }
.footer-links { display: flex; gap: 1rem; font-size: 0.75rem; }
.footer-links a { color: rgba(255,255,255,0.4); }
.footer-links a:hover { color: var(--color-white); }
.footer-lang { display: flex; gap: 0.375rem; }
.footer-lang-link {
    display: flex; align-items: center; justify-content: center;
    width: 30px; height: 30px; border-radius: 50%;
    background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.4);
    font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.02em;
    transition: all 0.3s ease;
}
.footer-lang-link:hover { background: #d32f2f; color: #fff; }
.footer-social-soliso { display: flex; gap: 0.5rem; }
.footer-social-soliso a {
    display: flex; align-items: center; justify-content: center;
    width: 30px; height: 30px; background: rgba(255,255,255,0.06);
    border-radius: 50%; color: rgba(255,255,255,0.4);
}
.footer-social-soliso a:hover { background: #d32f2f; color: var(--color-white); }
.footer-copy {
    width: 100%; text-align: center; padding-top: 1rem; margin-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.06); font-size: 0.75rem; color: rgba(255,255,255,0.25);
}
@media (max-width: 768px) { .footer-inner-soliso { flex-direction: column; text-align: center; } .footer-center { justify-content: center; } }

/* ===== BUTTONS ===== */
.btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.75rem 1.75rem; font-size: 0.875rem; font-weight: 600; border-radius: var(--radius-sm); border: none; cursor: pointer; }
.btn-primary { background: var(--color-primary); color: var(--color-white); }
.btn-primary:hover { opacity: 0.9; color: var(--color-white); }
.btn-accent { background: var(--color-accent); color: var(--color-white); }
.btn-accent:hover { background: var(--color-accent-hover); color: var(--color-white); }

/* Notification */
.gp-notification {
    position: fixed; bottom: 2rem; right: 2rem; z-index: 9999;
    padding: 1rem 1.5rem; border-radius: var(--radius-sm);
    font-size: 0.875rem; font-weight: 500;
    color: var(--color-white); background: var(--color-primary);
    opacity: 0; transform: translateY(10px);
    transition: var(--transition); pointer-events: none;
}
.gp-notification.show { opacity: 1; transform: translateY(0); }
.gp-notification.success { background: #28a745; }
.gp-notification.error { background: #dc3545; }

/* Specialty page */
.specialty-hero { position: relative; padding: 6rem 2rem; background-size: cover; background-position: center; min-height: 350px; display: flex; align-items: flex-end; overflow: hidden; }
.specialty-hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,26,58,0.92) 0%, rgba(10,26,58,0.5) 100%); }
.specialty-hero-content { position: relative; z-index: 1; }
.gp-back-circle {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: #1a1a2e; color: #fff; 
    padding: 0.5rem 1rem 0.5rem 0.75rem; border-radius: 50px;
    font-size: 0.8125rem; font-weight: 500; text-decoration: none;
    transition: background 0.3s ease; flex-shrink: 0;
}
.gp-back-circle:hover { background: #d32f2f; color: #fff; }
.gp-back-circle svg { flex-shrink: 0; }
.back-link { display: inline-flex; align-items: center; gap: 0.5rem; color: rgba(255,255,255,0.6); font-size: 0.875rem; margin-bottom: 1.25rem; }
.back-link:hover { color: var(--color-white); }
.specialty-hero-title { font-size: 2.25rem; font-weight: 700; color: var(--color-white); margin-bottom: 0.5rem; }
.specialty-hero-desc { font-size: 1rem; color: rgba(255,255,255,0.6); }
.client-type-section { padding: 4rem 2rem; }
.client-type-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; max-width: 700px; margin: 0 auto; }
.client-type-card { text-align: center; padding: 2.5rem 2rem; background: var(--color-white); border: 1px solid var(--color-border); border-radius: var(--radius-md); }
.client-type-card:hover { border-color: var(--color-accent); transform: translateY(-3px); }
.client-type-icon { width: 72px; height: 72px; background: var(--color-bg-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--color-accent); margin: 0 auto 1.25rem; }
.client-type-card:hover .client-type-icon { background: var(--color-accent); color: var(--color-white); }
.client-type-title { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.5rem; }
.client-type-desc { font-size: 0.875rem; color: var(--color-text-light); margin-bottom: 1rem; }
@media (max-width: 768px) { .client-type-grid { grid-template-columns: 1fr; } }

/* Devis */
.devis-hero { padding: 4rem 2rem; background: var(--color-primary); text-align: center; }
.devis-hero-title { font-size: 2rem; font-weight: 800; color: var(--color-white); margin-bottom: 0.5rem; }
.devis-hero-subtitle { font-size: 1rem; color: rgba(255,255,255,0.6); max-width: 500px; margin: 0 auto; }
.devis-form-section { padding: 3rem 2rem; background: var(--color-bg-light); }
.devis-form-container { max-width: 800px; margin: 0 auto; background: var(--color-white); border: 1px solid var(--color-border); border-radius: var(--radius-md); padding: 2.5rem; }
.form-progress { display: flex; justify-content: space-between; margin-bottom: 2.5rem; position: relative; }
.form-progress::before { content: ''; position: absolute; top: 20px; left: 50px; right: 50px; height: 2px; background: var(--color-border); z-index: 0; }
.progress-step { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; position: relative; z-index: 1; }
.step-number { width: 40px; height: 40px; background: var(--color-bg); border: 2px solid var(--color-border); border-radius: 50%; font-size: 0.875rem; font-weight: 600; color: var(--color-text-muted); display: flex; align-items: center; justify-content: center; }
.progress-step.active .step-number { background: var(--color-accent); border-color: var(--color-accent); color: var(--color-white); }
.progress-step.completed .step-number { background: #28a745; border-color: #28a745; color: var(--color-white); }
.step-label { font-size: 0.75rem; color: var(--color-text-muted); font-weight: 500; }
.progress-step.active .step-label { color: var(--color-accent); font-weight: 600; }
.form-step { display: none; }
.form-step.active { display: block; animation: fadeIn 0.3s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.step-title { font-size: 1.375rem; font-weight: 700; margin-bottom: 0.5rem; }
.step-description { color: var(--color-text-light); margin-bottom: 2rem; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group.full-width { grid-column: 1 / -1; }
.form-group label { font-size: 0.8125rem; font-weight: 600; color: var(--color-text); }
.required { color: var(--color-accent); }
.form-group input, .form-group select, .form-group textarea { padding: 0.75rem 1rem; border: 1px solid var(--color-border); border-radius: var(--radius-sm); font-family: var(--font-primary); font-size: 0.9375rem; color: var(--color-text); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--color-accent); box-shadow: 0 0 0 3px rgba(241,90,36,0.1); }
.step-actions { display: flex; justify-content: flex-end; gap: 1rem; margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--color-border); }
.specialty-selection-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-bottom: 2rem; }
.specialty-radio-card { cursor: pointer; }
.specialty-radio-card input { display: none; }
.radio-card-content { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 1.5rem 1rem; border: 2px solid var(--color-border); border-radius: var(--radius-md); }
.specialty-radio-card input:checked + .radio-card-content { border-color: var(--color-accent); background: rgba(241,90,36,0.04); }
.radio-card-icon { width: 56px; height: 56px; background: var(--color-bg-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--color-accent); margin-bottom: 1rem; }
.specialty-radio-card input:checked + .radio-card-content .radio-card-icon { background: var(--color-accent); color: var(--color-white); }
.radio-card-title { font-weight: 600; font-size: 0.875rem; }
.products-selection-container { max-height: 350px; overflow-y: auto; border: 1px solid var(--color-border); border-radius: var(--radius-md); padding: 1rem; }
.loading-products { text-align: center; padding: 2rem; color: var(--color-text-muted); }
.product-select-item {
    display: flex; align-items: center; justify-content: space-between; gap: 1rem;
    padding: 0.7rem 0.9rem; border-bottom: 1px solid var(--color-border);
}
.product-select-item:last-child { border-bottom: none; }
.product-select-item:hover { background: rgba(211,47,47,0.03); }
.product-select-info { display: flex; flex-direction: column; gap: 0.1rem; min-width: 0; }
.product-select-name { font-size: 0.875rem; font-weight: 500; color: var(--color-text); overflow-wrap: anywhere; }
.product-select-price { font-size: 0.75rem; color: var(--color-text-muted); }
.product-select-qty {
    width: 72px !important; flex-shrink: 0; text-align: center;
    padding: 0.45rem 0.5rem !important; border: 1px solid var(--color-border);
    border-radius: var(--radius-sm); font-size: 0.875rem;
}
.product-select-qty:focus { border-color: var(--color-accent) !important; outline: none; box-shadow: 0 0 0 3px rgba(211,47,47,0.12); }
.no-products-found { text-align: center; padding: 2rem 1rem; color: var(--color-text-muted); font-size: 0.9rem; }
.gp-devis-search {
    display: flex; align-items: center; gap: 0.6rem;
    margin-bottom: 1rem; padding: 0.75rem 1rem;
    border: 1px solid var(--color-border); border-radius: var(--radius-md);
    background: var(--color-white); color: var(--color-text-muted);
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.gp-devis-search:focus-within { border-color: #d32f2f; box-shadow: 0 0 0 3px rgba(211,47,47,0.1); }
.gp-devis-search input {
    flex: 1; border: none !important; outline: none !important;
    box-shadow: none !important; font-size: 0.9rem; padding: 0 !important;
    background: transparent;
}
.gp-devis-search-results {
    max-height: 260px; overflow-y: auto; margin: -0.5rem 0 1rem;
    background: var(--color-white); border: 1px solid var(--color-border);
    border-top: none; border-radius: 0 0 var(--radius-md) var(--radius-md);
    box-shadow: 0 10px 24px rgba(0,0,0,0.08); position: relative; z-index: 5;
}
.gp-search-row {
    display: flex; align-items: center; gap: 0.75rem;
    padding: 0.6rem 0.9rem; border-bottom: 1px solid var(--color-border);
}
.gp-search-row:last-child { border-bottom: none; }
.gp-search-row:hover { background: rgba(211,47,47,0.04); }
.gp-search-row-name { flex: 1; min-width: 0; font-size: 0.8438rem; font-weight: 500; overflow-wrap: anywhere; }
.gp-search-row-price { font-size: 0.75rem; color: var(--color-text-muted); white-space: nowrap; }
.gp-search-add {
    flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%;
    border: none; cursor: pointer; padding: 0;
    display: inline-flex; align-items: center; justify-content: center;
    background: #d32f2f; color: #fff;
    transition: transform 0.2s ease, background 0.2s ease;
}
.gp-search-add:hover { transform: scale(1.12); background: #b71c1c; }
.gp-search-add.is-added { background: #28a745; transform: scale(1.15); }
.product-select-item.flash { animation: gpRowFlash 0.9s ease; }
@keyframes gpRowFlash {
    0% { background: rgba(40,167,69,0.18); } 100% { background: transparent; }
}
.radio-card-count { display: block; margin-top: 0.25rem; font-size: 0.6875rem; letter-spacing: 0.03em; text-transform: uppercase; color: var(--color-text-muted); }
.specialty-radio-card input:checked + .radio-card-content .radio-card-count { color: var(--color-accent); }
.gp-devis-cartmode { max-height: 350px; overflow-y: auto; border: 1px solid var(--color-border); border-radius: var(--radius-md); padding: 1rem; background: #fffdf7; }
.gp-devis-cartnote {
    display: flex; align-items: center; gap: 0.5rem; margin: -1rem -1rem 0.75rem;
    padding: 0.75rem 1rem; background: #fdf6e3; border-bottom: 1px solid #f0e6c8;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    font-size: 0.78rem; color: #7a6520;
}
.spinner { width: 32px; height: 32px; border: 3px solid var(--color-border); border-top-color: var(--color-accent); border-radius: 50%; animation: spin 0.8s linear infinite; margin: 0 auto 0.75rem; }
@keyframes spin { to { transform: rotate(360deg); } }
.devis-recap { background: var(--color-bg-light); border-radius: var(--radius-md); padding: 1.5rem; }
.recap-section { margin-bottom: 1rem; padding-bottom: 1rem; border-bottom: 1px solid var(--color-border); }
.recap-section:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.recap-section h4 { font-size: 0.75rem; font-weight: 700; color: var(--color-text-muted); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.5rem; }
.recap-item { display: flex; justify-content: space-between; padding: 0.25rem 0; font-size: 0.875rem; }
.recap-item-label { color: var(--color-text-light); }
.recap-item-value { font-weight: 600; }
.form-success { text-align: center; padding: 3rem; }
.form-success h2 { font-size: 1.5rem; margin-bottom: 0.75rem; }
.form-success p { color: var(--color-text-light); margin-bottom: 1.5rem; }
.success-icon { width: 80px; height: 80px; margin: 0 auto 1.5rem; background: rgba(40,167,69,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #28a745; }
@media (max-width: 768px) { .devis-form-container { padding: 1.5rem; } .form-grid, .specialty-selection-grid { grid-template-columns: 1fr; } }

/* WooCommerce */
.products-hero { padding: 3rem 2rem; background: var(--color-bg-light); border-bottom: 1px solid var(--color-border); }
.products-hero-content { display: flex; align-items: center; gap: 1rem; max-width: 1200px; margin: 0 auto; flex-wrap: wrap; }
.products-hero-title { font-size: 1.5rem; font-weight: 700; }
.client-badge { padding: 0.25rem 0.75rem; background: var(--color-accent); color: var(--color-white); font-size: 0.75rem; font-weight: 600; border-radius: 100px; }
.products-layout { display: flex; gap: 2rem; padding: 2rem; max-width: 1200px; margin: 0 auto; }
.products-main { flex: 1; }
.products-sidebar { width: 260px; flex-shrink: 0; }
.sidebar-sticky { position: sticky; top: calc(var(--header-height) + 1rem); }
.sidebar-title { font-size: 1rem; font-weight: 700; margin-bottom: 1rem; padding-bottom: 0.5rem; border-bottom: 2px solid var(--color-accent); }
.product-categories-list { list-style: none; padding: 0; margin: 0 0 2rem; }
.product-categories-list li { border-bottom: 1px solid var(--color-border); }
.product-categories-list li a { display: flex; align-items: center; gap: 0.75rem; padding: 0.625rem 0; color: var(--color-text); font-size: 0.875rem; }
.product-categories-list li a:hover, .product-categories-list li.current-cat a { color: var(--color-accent); }
.woocommerce ul.products { display: grid !important; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; padding: 0 !important; margin: 0 !important; list-style: none !important; }
.woocommerce ul.products::before, .woocommerce ul.products::after { display: none !important; }
.woocommerce ul.products li.product { width: 100% !important; margin: 0 !important; padding: 0 !important; float: none !important; clear: none !important; background: var(--color-white); border: 1px solid var(--color-border); border-radius: var(--radius-md); overflow: hidden; transition: all 0.3s ease; list-style: none !important; }
.woocommerce ul.products li.product::before, .woocommerce ul.products li.product::after { display: none !important; }
.woocommerce ul.products li.product:hover { border-color: var(--color-accent); transform: translateY(-3px); box-shadow: 0 8px 25px rgba(10,26,58,0.06); }
.woocommerce ul.products li.product a img { width: 100%; height: 220px; object-fit: cover; }
.woocommerce ul.products li.product .woocommerce-loop-product__title { font-size: 0.875rem; font-weight: 600; padding: 0.75rem 1rem 0.25rem; }
.woocommerce ul.products li.product .price { font-size: 1rem; font-weight: 700; color: var(--color-accent); padding: 0 1rem; }
@media (max-width: 1024px) { .products-layout { flex-direction: column; } .products-sidebar { width: 100%; } .sidebar-sticky { position: relative; top: 0; } }
@media (max-width: 768px) { .woocommerce ul.products { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .woocommerce ul.products { grid-template-columns: 1fr; } }

/* WooCommerce buttons – archive & single */
.woocommerce ul.products li.product .button { margin: calc(0.75rem + 25px) 1rem 0.75rem; display: inline-block; }
.woocommerce .button, .woocommerce a.button, .woocommerce button.button, .woocommerce input.button {
    font-weight: 600; border-radius: 6px; transition: all 0.3s ease;
}

/* Single product page – clean layout */
.woocommerce div.product {
    max-width: 1200px; margin: 2rem auto; padding: 0 2rem;
    display: flex; flex-wrap: wrap;
}
.woocommerce div.product .woocommerce-product-gallery {
    width: 55% !important; float: none !important; margin-bottom: 2rem; padding-right: 2rem;
}
.woocommerce div.product .summary {
    width: 45% !important; float: none !important; margin-bottom: 2rem;
}
.woocommerce div.product .product_title {
    font-size: 1.75rem; font-weight: 700; color: #1a1a2e; margin-bottom: 0.5rem; line-height: 1.2;
}
.woocommerce div.product .woocommerce-product-rating { margin-bottom: 0.75rem; }
.woocommerce div.product p.price, .woocommerce div.product span.price {
    font-size: 1.5rem; font-weight: 700; color: #d32f2f; margin-bottom: 1rem;
}
.woocommerce div.product .woocommerce-product-details__short-description {
    color: #555; font-size: 0.9375rem; line-height: 1.7; margin-bottom: 1.5rem;
}
.woocommerce div.product form.cart { margin: 1.5rem 0; display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: center; }
.woocommerce div.product form.cart div.quantity { float: none; margin: 0; }
.woocommerce div.product form.cart .quantity input.qty {
    width: 70px; height: 46px; padding: 0.5rem; border: 1px solid #e0e4e8; border-radius: 6px;
    font-size: 1rem; text-align: center;
}
.woocommerce .single_add_to_cart_button {
    height: 46px; padding: 0 2rem; background: #d32f2f; color: #fff; font-size: 0.9375rem;
    font-weight: 600; border: none; border-radius: 6px; cursor: pointer;
    transition: background 0.3s ease;
}
.woocommerce .single_add_to_cart_button:hover { background: #b71c1c; }

/* Product gallery */
.woocommerce div.product div.images .woocommerce-product-gallery__wrapper { border: 1px solid #e0e4e8; border-radius: 6px; overflow: hidden; }
.woocommerce div.product div.images .flex-control-thumbs { margin-top: 0.5rem; gap: 0.5rem; display: flex; flex-wrap: wrap; }
.woocommerce div.product div.images .flex-control-thumbs li { width: 80px; height: 80px; border-radius: 4px; overflow: hidden; border: 1px solid #e0e4e8; }
.woocommerce div.product div.images .flex-control-thumbs li img { width: 100%; height: 100%; object-fit: cover; }

/* Related products – separate full-width block */
.woocommerce .related {
    width: 100%; margin-top: 3rem; padding: 3rem 2rem;
    background: #f5f5f5; border-top: 1px solid #e0e4e8;
}
.woocommerce .related h2 {
    font-size: 1.375rem; font-weight: 700; margin-bottom: 1.5rem;
    max-width: 1200px; margin-left: auto; margin-right: auto;
}
.woocommerce .related ul.products {
    max-width: 1200px; margin: 0 auto !important;
}
.woocommerce .related ul.products li.product { margin: 0 !important; }

@media (max-width: 768px) {
    .woocommerce div.product { padding: 0 1rem; }
    .woocommerce div.product .woocommerce-product-gallery { width: 100% !important; padding-right: 0; }
    .woocommerce div.product .summary { width: 100% !important; }
    .woocommerce div.product .product_title { font-size: 1.375rem; }
    .woocommerce div.product form.cart { flex-direction: column; align-items: stretch; }
    .woocommerce div.product form.cart .quantity input.qty { width: 100%; }
    .woocommerce .single_add_to_cart_button { width: 100%; }
}

/* ===== HERO TYPEWRITER ===== */
.gp-hero-title { min-height: 2.4em; }
.gp-caret {
    display: inline-block; width: 3px; height: 0.85em;
    background: #d32f2f; margin-left: 3px; vertical-align: -0.08em;
    animation: gpCaretBlink 0.8s step-end infinite;
}
@keyframes gpCaretBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
    .gp-hero-title .gp-caret { display: none; }
}

/* ===== FAQ (widget Elementor) ===== */
.gp-faq { max-width: 820px; margin: 0 auto; padding: 3rem 1rem; }
.gp-faq-head { text-align: center; margin-bottom: 2.25rem; }
.gp-faq-title { font-size: 1.75rem; font-weight: 800; color: #1a1a2e; margin-bottom: 0.4rem; }
.gp-faq-subtitle { font-size: 0.9375rem; color: #888; }
.gp-faq-list { display: grid; gap: 0.85rem; }
.gp-faq-item {
    background: #fff; border: 1px solid #e5e8ec; border-radius: 10px;
    overflow: hidden; transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.gp-faq-item:hover { border-color: rgba(211,47,47,0.45); }
.gp-faq-item.is-open { border-color: #d32f2f; box-shadow: 0 6px 22px rgba(211,47,47,0.08); }
.gp-faq-q {
    width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
    padding: 1.05rem 1.25rem; border: none; background: transparent; cursor: pointer;
    font-family: inherit; font-size: 0.9688rem; font-weight: 600; color: #1a1a2e;
    text-align: left; transition: color 0.25s ease;
}
.gp-faq-q:hover { color: #d32f2f; }
.gp-faq-chevron { flex-shrink: 0; color: #d32f2f; transition: transform 0.3s ease; }
.gp-faq-item.is-open .gp-faq-chevron { transform: rotate(180deg); }
.gp-faq-a { border-top: 1px dashed #eceef1; }
.gp-faq-a-inner {
    padding: 1rem 1.25rem 1.15rem; font-size: 0.9rem; color: #555; line-height: 1.7;
}
.gp-faq-a-inner p:last-child { margin-bottom: 0; }
.gp-faq-a-inner a { color: #d32f2f; font-weight: 600; }
@media (prefers-reduced-motion: no-preference) {
    .gp-faq-q, .gp-faq-chevron { transition-duration: 0.25s; }
}

/* ===== BRANDS / NOS MARQUES ===== */
.gp-brands-section { padding: 4rem 2rem 4.5rem; background: #fff; text-align: center; }
.gp-brands-inner { max-width: 1100px; margin: 0 auto; }
.gp-brands-title { font-size: 1.75rem; font-weight: 800; color: #1a1a2e; line-height: 1.25; margin-bottom: 0.5rem; }
.gp-brands-subtitle { font-size: 0.9375rem; color: #888; margin-bottom: 2.5rem; }
.gp-brands-grid {
    display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem;
}
.gp-brand-card {
    display: flex; align-items: center; justify-content: center;
    min-height: 96px; padding: 1.25rem 1rem;
    border: 1px solid #e8eaee; border-radius: 10px; background: #fbfbfc;
    transition: all 0.35s ease;
}
.gp-brand-card:hover {
    transform: translateY(-4px); border-color: #d32f2f;
    box-shadow: 0 10px 26px rgba(211,47,47,0.10); background: #fff;
}
.gp-brand-card img {
    max-height: 56px; max-width: 100%; width: auto; object-fit: contain;
    transition: transform 0.35s ease;
}
.gp-brand-card:hover img { transform: scale(1.06); }
.gp-brand-wordmark {
    font-size: 1.0625rem; font-weight: 800; letter-spacing: 0.08em;
    text-transform: uppercase; color: #9aa0aa; transition: color 0.35s ease;
}
.gp-brand-card:hover .gp-brand-wordmark { color: #d32f2f; }
@media (max-width: 992px) {
    .gp-brands-grid { grid-template-columns: repeat(3, 1fr); }
    .gp-brands-title { font-size: 1.375rem; }
}
@media (max-width: 576px) {
    .gp-brands-grid { grid-template-columns: repeat(2, 1fr); }
    .gp-brands-section { padding-left: 1rem; padding-right: 1rem; }
}

/* ===== CONTACT PAGE ===== */
.gp-contact-cards-section { padding: 3rem 2rem; background: #f5f5f5; }
.gp-contact-cards {
    max-width: 1100px; margin: 0 auto; display: grid;
    grid-template-columns: repeat(4, 1fr); gap: 1.25rem;
}
.gp-contact-card {
    display: flex; flex-direction: column; align-items: center; gap: 0.35rem;
    padding: 1.75rem 1rem; background: #fff; border: 1px solid #e0e4e8; border-radius: 10px;
    text-decoration: none; text-align: center; transition: all 0.3s ease;
}
.gp-contact-card:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(10,26,58,0.10); border-color: #d32f2f; }
.gp-contact-card strong { font-size: 0.9375rem; color: #1a1a2e; }
.gp-contact-card > span:not([class]) { font-size: 0.8125rem; color: #555; line-height: 1.45; word-break: break-word; }
.gp-contact-card em { font-style: normal; font-size: 0.6875rem; font-weight: 700; color: #d32f2f; text-transform: uppercase; letter-spacing: 0.06em; margin-top: 0.35rem; }
.gp-contact-card-icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 52px; height: 52px; border-radius: 50%; margin-bottom: 0.5rem; color: #fff;
    transition: transform 0.3s ease;
}
.gp-contact-card:hover .gp-contact-card-icon { transform: scale(1.08) rotate(-4deg); }
.gp-cc-red { background: #d32f2f; }
.gp-cc-dark { background: #1a1a2e; }
.gp-cc-green { background: #25d366; }

.gp-contact-split-section { padding: 4rem 2rem; background: #fff; }
.gp-contact-split { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1.6fr 1fr; gap: 2.5rem; align-items: start; }
.gp-contact-form-title { font-size: 1.625rem; font-weight: 800; color: #1a1a2e; margin-bottom: 0.25rem; }
.gp-contact-form-sub { font-size: 0.875rem; color: #888; margin-bottom: 1.5rem; }
.gp-cf-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.gp-cf-field.full { grid-column: 1 / -1; }
.gp-cf-field label { display: block; font-size: 0.8125rem; font-weight: 600; color: #333; margin-bottom: 0.4rem; }
.gp-cf-field label b { color: #d32f2f; font-weight: 700; }
.gp-cf-field input, .gp-cf-field select, .gp-cf-field textarea {
    width: 100%; padding: 0.8rem 1rem; border: 1px solid #dde1e7; border-radius: 8px;
    font-family: inherit; font-size: 0.9375rem; color: #1a1a2e; background: #fbfbfc;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.gp-cf-field textarea { resize: vertical; min-height: 140px; }
.gp-cf-field input:focus, .gp-cf-field select:focus, .gp-cf-field textarea:focus {
    outline: none; border-color: #d32f2f; background: #fff; box-shadow: 0 0 0 3px rgba(211,47,47,0.08);
}
.gp-cf-invalid { border-color: #d32f2f !important; background: #fff5f5 !important; }
.gp-cf-submit {
    position: relative; margin-top: 1.25rem; height: 50px; padding: 0 2.5rem;
    border: none; border-radius: 8px; background: #d32f2f; color: #fff;
    font-family: inherit; font-size: 0.9375rem; font-weight: 600; cursor: pointer;
    transition: background 0.3s ease;
}
.gp-cf-submit:hover:not(:disabled) { background: #b71c1c; }
.gp-cf-submit:disabled { opacity: 0.65; cursor: wait; }
.gp-cf-note { margin-top: 0.75rem; font-size: 0.75rem; color: #999; }

.gp-contact-side {
    background: linear-gradient(160deg, #1a1a2e 0%, #0e0e1a 100%);
    border-radius: 14px; padding: 2rem 1.75rem; color: #fff;
}
.gp-contact-side h3 { font-size: 0.8125rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: #ff6b6b; margin-bottom: 0.85rem; }
.gp-contact-side h3:not(:first-child) { margin-top: 1.75rem; }
.gp-hours { list-style: none; margin: 0; padding: 0; }
.gp-hours li {
    display: flex; justify-content: space-between; align-items: center;
    padding: 0.55rem 0; border-bottom: 1px dashed rgba(255,255,255,0.15);
    font-size: 0.8125rem;
}
.gp-hours li:last-child { border-bottom: none; }
.gp-hours span { color: rgba(255,255,255,0.65); }
.gp-hours strong { font-weight: 600; }
.gp-side-address { font-size: 0.875rem; color: rgba(255,255,255,0.75); line-height: 1.65; margin-bottom: 0.85rem; }
.gp-side-maps-btn, .gp-side-devis-btn {
    display: inline-flex; align-items: center; gap: 0.45rem;
    padding: 0.6rem 1.25rem; border-radius: 8px; font-size: 0.8125rem; font-weight: 600;
    text-decoration: none; transition: all 0.3s ease;
}
.gp-side-maps-btn { border: 1px solid rgba(255,255,255,0.3); color: #fff; }
.gp-side-maps-btn:hover { border-color: #fff; background: rgba(255,255,255,0.08); color: #fff; }
.gp-side-devis-btn { background: #d32f2f; color: #fff; }
.gp-side-devis-btn:hover { background: #b71c1c; color: #fff; }

.gp-map-section { background: #f5f5f5; padding: 0 0 4rem; }
.gp-map-section iframe { display: block; filter: grayscale(0.3); }
@media (max-width: 992px) {
    .gp-contact-cards { grid-template-columns: repeat(2, 1fr); }
    .gp-contact-split { grid-template-columns: 1fr; }
}
@media (max-width: 576px) {
    .gp-contact-cards { grid-template-columns: 1fr; }
    .gp-cf-grid { grid-template-columns: 1fr; }
    .gp-contact-split-section { padding-left: 1rem; padding-right: 1rem; }
}

/* ===== BADGE LOGO GP (entre hero et bloc suivant) ===== */
.gp-hero-badge-wrap {
    position: relative; z-index: 6;
    height: 0; text-align: center; pointer-events: none;
}
.gp-hero-badge {
    position: absolute; left: calc(50% + 200px); top: 0;
    transform: translate(-50%, calc(-50% - 20px));
    width: 215px; height: 215px; border-radius: 50%;
    background: #0e0e1a;
    border: 4px solid #fff;
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.35);
    display: flex; align-items: center; justify-content: center;
    overflow: hidden; pointer-events: auto;
    transition: transform 0.35s ease;
}
.gp-hero-badge:hover { transform: translate(-50%, calc(-52% - 20px)) scale(1.04); }
.gp-hero-badge img {
    width: 68%; height: 68%; object-fit: contain;
    user-select: none;
}
@media (max-width: 768px) {
    .gp-hero-badge { width: 110px; height: 110px; border-width: 3px; left: 50%; }
}

/* ===== WAVE SEPARATORS (accueil) ===== */
.gp-wave { position: relative; }
.gp-wave::before {
    content: ''; position: absolute; top: -54px; left: 0;
    width: 100%; height: 55px; z-index: 2; pointer-events: none;
    background-repeat: no-repeat; background-size: 100% 100%;
}
.gp-wave-grey::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60' preserveAspectRatio='none'%3E%3Cpath d='M0,34 C240,60 480,4 720,24 C960,46 1200,8 1440,32 L1440,61 L0,61 Z' fill='%23f5f5f5'/%3E%3C/svg%3E");
}
.gp-wave-white::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60' preserveAspectRatio='none'%3E%3Cpath d='M0,34 C240,60 480,4 720,24 C960,46 1200,8 1440,32 L1440,61 L0,61 Z' fill='%23ffffff'/%3E%3C/svg%3E");
}
.gp-wave-dark::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60' preserveAspectRatio='none'%3E%3Cpath d='M0,34 C240,60 480,4 720,24 C960,46 1200,8 1440,32 L1440,61 L0,61 Z' fill='%231a1a2e'/%3E%3C/svg%3E");
}
.gp-wave-red::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60' preserveAspectRatio='none'%3E%3Cpath d='M0,34 C240,60 480,4 720,24 C960,46 1200,8 1440,32 L1440,61 L0,61 Z' fill='%23d32f2f'/%3E%3C/svg%3E");
}
@media (max-width: 768px) {
    .gp-wave::before { top: -27px; height: 28px; }
}
/* Variante inversée : la vague descend DANS la section suivante
   (utilisée après le texte défilant pour ne jamais le recouvrir) */
.gp-wave-drop::before { top: -1px; }
.gp-wave-drop-dark::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60' preserveAspectRatio='none'%3E%3Cpath d='M0,0 L1440,0 L1440,28 C1260,50 1020,12 760,32 C500,52 220,10 0,30 L0,0 Z' fill='%231a1a2e'/%3E%3C/svg%3E");
}

/* ===== MARQUEE (texte défilant) ===== */
.gp-marquee-band { position: relative; z-index: 3; }
.gp-marquee {
    overflow: hidden; background: #1a1a2e; color: #fff;
    padding: 0.85rem 0; white-space: nowrap;
}
.gp-marquee-track {
    display: inline-flex; animation: gpMarquee 28s linear infinite;
}
.gp-marquee:hover .gp-marquee-track { animation-play-state: paused; }
.gp-marquee-text {
    display: inline-block; font-weight: 600; letter-spacing: 0.02em;
    padding-right: 3em; line-height: 1.4;
}
@keyframes gpMarquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ===== ABOUT / QUI SOMMES-NOUS ===== */
.gp-about-section { padding: 4rem 2rem; background: #f5f5f5; }
.gp-about-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; gap: 3rem; }
.gp-about-content { flex: 1; }
.gp-about-badge { font-size: 0.75rem; font-weight: 700; color: #d32f2f; text-transform: uppercase; letter-spacing: 0.1em; display: inline-block; margin-bottom: 0.75rem; }
.gp-about-title { font-size: 2rem; font-weight: 700; color: #1a1a2e; line-height: 1.2; margin-bottom: 1rem; }
.gp-about-text { font-size: 0.9375rem; color: #555; line-height: 1.7; margin-bottom: 0.75rem; }
.gp-about-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; flex-shrink: 0; width: 340px; }
.gp-stat-item { text-align: center; padding: 1.5rem 1rem; background: #fff; border: 1px solid #e0e4e8; border-radius: 8px; }
.gp-stat-num { display: block; font-size: 1.75rem; font-weight: 800; color: #d32f2f; line-height: 1; margin-bottom: 0.25rem; }
.gp-stat-label { font-size: 0.75rem; color: #888; font-weight: 500; }
@media (max-width: 992px) {
    .gp-about-inner { flex-direction: column; text-align: center; }
    .gp-about-stats { width: 100%; max-width: 400px; }
}
@media (max-width: 768px) {
    .gp-about-title { font-size: 1.5rem; }
}

/* ===== EXPERTISE SECTION ===== */
.gp-expertise-section { padding: 4rem 2rem; background: #fff; text-align: center; }
.gp-expertise-inner { max-width: 900px; margin: 0 auto 3rem; }
.gp-expertise-title { font-size: 1.75rem; font-weight: 700; color: #1a1a2e; line-height: 1.3; margin-bottom: 0.75rem; }
.gp-expertise-subtitle { font-size: 1rem; color: #888; }
.gp-expertise-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; max-width: 1000px; margin: 0 auto; }
.gp-expertise-item { position: relative; padding: 2rem 1rem; border: 1px solid #e0e4e8; border-radius: 8px; transition: all 0.3s ease; }
.gp-expertise-item:hover { border-color: #d32f2f; transform: translateY(-3px); box-shadow: 0 8px 25px rgba(211,47,47,0.08); }
.gp-expertise-num { font-size: 0.75rem; font-weight: 700; color: #d32f2f; letter-spacing: 0.05em; display: block; margin-bottom: 0.75rem; }
.gp-expertise-icon { margin-bottom: 1rem; }
.gp-expertise-item-title { font-size: 0.9375rem; font-weight: 600; color: #1a1a2e; margin-bottom: 0.4rem; }
.gp-expertise-item-desc { font-size: 0.8125rem; color: #888; line-height: 1.5; }
@media (max-width: 992px) {
    .gp-expertise-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .gp-expertise-title { font-size: 1.375rem; }
    .gp-expertise-grid { grid-template-columns: 1fr; }
}

/* ===== CTA SECTION ===== */
.gp-cta-section { padding: 3rem 2rem; background: #d32f2f; text-align: center; color: #fff; }
.gp-cta-title { color: #fff; font-size: 1.5rem; font-weight: 700; margin-bottom: 0.5rem; }
.gp-cta-text { opacity: 0.8; margin-bottom: 1.5rem; font-size: 1rem; }
.gp-cta-btn { display: inline-block; padding: 0.75rem 2rem; background: #fff; color: #d32f2f; font-weight: 600; border-radius: 6px; text-decoration: none; transition: all 0.3s ease; }
.gp-cta-btn:hover { background: #f5f5f5; color: #b71c1c; }

/* Clean WooCommerce pages – hide default WP widgets clutter */
.woocommerce-page .widget.widget_search,
.woocommerce-page .widget.widget_pages,
.woocommerce-page .widget.widget_archives,
.woocommerce-page .widget.widget_categories,
.woocommerce-page .widget.widget_recent_entries,
.woocommerce-page .widget.widget_meta { display: none; }

/* ===== CART PAGE ===== */
.woocommerce-cart .site-main { max-width: 1200px; margin: 0 auto; padding: 2rem 2rem; }
.woocommerce-cart .woocommerce-notices-wrapper { margin-bottom: 1.5rem; }
.woocommerce-cart table.cart { border: 1px solid #e0e4e8; border-radius: 6px; overflow: hidden; }
.woocommerce-cart table.cart thead { background: #f5f5f5; }
.woocommerce-cart table.cart th { font-size: 0.8125rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.03em; color: #555; padding: 0.75rem 1rem; border-bottom: 1px solid #e0e4e8; }
.woocommerce-cart table.cart td { padding: 1rem; border-bottom: 1px solid #e0e4e8; vertical-align: middle; }
.woocommerce-cart table.cart .product-thumbnail { width: 80px; }
.woocommerce-cart table.cart .product-thumbnail img { width: 80px; height: 80px; object-fit: cover; border-radius: 4px; }
.woocommerce-cart table.cart .product-name a { font-weight: 600; color: #1a1a2e; }
.woocommerce-cart table.cart .product-name a:hover { color: #d32f2f; }
.woocommerce-cart table.cart .product-price, .woocommerce-cart table.cart .product-subtotal { font-weight: 600; color: #d32f2f; }
.woocommerce-cart table.cart .quantity input.qty { width: 60px; height: 36px; padding: 0.25rem; border: 1px solid #e0e4e8; border-radius: 4px; text-align: center; font-size: 0.875rem; }
.woocommerce-cart table.cart .product-remove a { display: flex; align-items: center; justify-content: center; width: 28px; height: 28px; border-radius: 50%; background: #f5f5f5; color: #999; font-size: 1.25rem; transition: all 0.3s ease; }
.woocommerce-cart table.cart .product-remove a:hover { background: #d32f2f; color: #fff; }
.woocommerce-cart .cart-collaterals { margin-top: 2rem; display: flex; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.woocommerce-cart .cart-collaterals .cart_totals { width: 400px; max-width: 100%; background: #f9f9f9; border: 1px solid #e0e4e8; border-radius: 6px; padding: 1.5rem; }
.woocommerce-cart .cart-collaterals .cart_totals h2 { font-size: 1.125rem; font-weight: 700; margin-bottom: 1rem; }
.woocommerce-cart .cart-collaterals .cart_totals table { border: none; margin-bottom: 1rem; }
.woocommerce-cart .cart-collaterals .cart_totals table th, .woocommerce-cart .cart-collaterals .cart_totals table td { border: none; padding: 0.5rem 0; font-size: 0.875rem; }
.woocommerce-cart .cart-collaterals .cart_totals table th { font-weight: 600; color: #555; }
.woocommerce-cart .cart-collaterals .cart_totals table td { text-align: right; }
.woocommerce-cart .cart-collaterals .cart_totals .order-total th, .woocommerce-cart .cart-collaterals .cart_totals .order-total td { font-size: 1rem; font-weight: 700; color: #d32f2f; padding-top: 0.75rem; border-top: 1px solid #e0e4e8; }
.woocommerce-cart .wc-proceed-to-checkout a { display: inline-block; padding: 0.75rem 2rem; background: #d32f2f; color: #fff; font-weight: 600; border-radius: 6px; text-decoration: none; transition: background 0.3s ease; }
.woocommerce-cart .wc-proceed-to-checkout a:hover { background: #b71c1c; }
.woocommerce-cart .coupon { display: flex; gap: 0.5rem; align-items: center; }
.woocommerce-cart .coupon label { display: none; }
.woocommerce-cart .coupon input[type="text"] { height: 40px; padding: 0 0.75rem; border: 1px solid #e0e4e8; border-radius: 4px; font-size: 0.875rem; width: 160px; }
.woocommerce-cart .coupon button { height: 40px; padding: 0 1.25rem; background: #1a1a2e; color: #fff; font-weight: 600; font-size: 0.8125rem; border: none; border-radius: 4px; cursor: pointer; transition: background 0.3s ease; }
.woocommerce-cart .coupon button:hover { background: #d32f2f; }
.woocommerce-cart .cart-empty { text-align: center; padding: 3rem; font-size: 1.125rem; color: #555; }
.woocommerce-cart .return-to-shop { text-align: center; margin-top: 1rem; }
.woocommerce-cart .return-to-shop a { display: inline-block; padding: 0.75rem 2rem; background: #1a1a2e; color: #fff; font-weight: 600; border-radius: 6px; text-decoration: none; }
.woocommerce-cart .return-to-shop a:hover { background: #d32f2f; }

@media (max-width: 768px) {
    .woocommerce-cart .gp-main { padding: 1rem; }
    .woocommerce-cart table.cart .product-price, .woocommerce-cart table.cart .product-quantity, .woocommerce-cart table.cart .product-subtotal { display: table-cell; }
    .woocommerce-cart .cart-collaterals .cart_totals { width: 100%; }
}

/* ===== CHECKOUT PAGE ===== */
.woocommerce-checkout .site-main { max-width: 1200px; margin: 0 auto; padding: 2rem; }
.woocommerce-checkout .woocommerce-notices-wrapper { margin-bottom: 1.5rem; }
.woocommerce-checkout h3, .woocommerce-checkout #customer_details h3, .woocommerce-checkout #order_review_heading {
    font-size: 1.125rem; font-weight: 700; color: #1a1a2e; margin-bottom: 1rem;
}
.woocommerce-checkout form.checkout {
    display: flex; flex-wrap: wrap; gap: 2rem; align-items: flex-start;
}
.woocommerce-checkout form.checkout #customer_details {
    flex: 1 1 55%; background: #fff;
}
.woocommerce-checkout form.checkout #customer_details .col-1, .woocommerce-checkout form.checkout #customer_details .col-2 {
    width: 100% !important; float: none !important;
}
.woocommerce-checkout form.checkout #order_review, .woocommerce-checkout form.checkout #order_review_heading {
    flex: 1 1 38%; position: sticky; top: calc(var(--header-height) + 1rem);
}
.woocommerce-checkout #order_review {
    background: #f9f9f9; border: 1px solid #e0e4e8; border-radius: 8px; padding: 1.5rem;
}
.woocommerce-checkout #order_review table.shop_table { border: none !important; }
.woocommerce-checkout #order_review table.shop_table th, .woocommerce-checkout #order_review table.shop_table td {
    border: none; padding: 0.5rem 0; font-size: 0.875rem; background: transparent;
}
.woocommerce-checkout #order_review table.shop_table tfoot .order-total th,
.woocommerce-checkout #order_review table.shop_table tfoot .order-total td {
    font-size: 1rem; font-weight: 700; color: #d32f2f; padding-top: 0.75rem; border-top: 1px solid #e0e4e8;
}
.woocommerce-checkout #payment { background: #fff; border-radius: 6px; }
.woocommerce-checkout #payment div.payment_box { background: #f5f5f5; border-radius: 4px; font-size: 0.8125rem; }
.woocommerce-checkout #payment div.payment_box::before { display: none; }
.woocommerce-checkout #place_order {
    width: 100%; height: 48px; background: #d32f2f; color: #fff; font-size: 1rem;
    font-weight: 600; border: none; border-radius: 6px; cursor: pointer; transition: background 0.3s ease;
}
.woocommerce-checkout #place_order:hover { background: #b71c1c; }

/* ===== WOOCOMMERCE FORMS (checkout, account, address) ===== */
.woocommerce form .form-row label { font-size: 0.8125rem; font-weight: 600; color: #1a1a2e; margin-bottom: 0.35rem; }
.woocommerce form .form-row input.input-text, .woocommerce form .form-row textarea, .woocommerce form .form-row select {
    width: 100%; padding: 0.65rem 0.85rem; border: 1px solid #e0e4e8; border-radius: 6px;
    font-size: 0.9375rem; font-family: inherit; transition: border-color 0.3s ease;
}
.woocommerce form .form-row input.input-text:focus, .woocommerce form .form-row textarea:focus, .woocommerce form .form-row select:focus {
    outline: none; border-color: #d32f2f; box-shadow: 0 0 0 3px rgba(211,47,47,0.08);
}
.woocommerce form .form-row .required { color: #d32f2f; text-decoration: none; }

/* ===== MY ACCOUNT / LOGIN ===== */
.woocommerce-account .site-main { max-width: 1200px; margin: 0 auto; padding: 2rem; }
.woocommerce-account .woocommerce { display: flex; flex-wrap: wrap; gap: 2rem; align-items: flex-start; }
.woocommerce-account .woocommerce-MyAccount-navigation { width: 240px !important; float: none !important; margin: 0 !important; }
.woocommerce-account .woocommerce-MyAccount-navigation ul { list-style: none; margin: 0; padding: 0; border: 1px solid #e0e4e8; border-radius: 8px; overflow: hidden; background: #fff; }
.woocommerce-account .woocommerce-MyAccount-navigation ul li { border-bottom: 1px solid #e0e4e8; }
.woocommerce-account .woocommerce-MyAccount-navigation ul li:last-child { border-bottom: none; }
.woocommerce-account .woocommerce-MyAccount-navigation ul li a {
    display: block; padding: 0.75rem 1rem; font-size: 0.875rem; font-weight: 500; color: #555; transition: all 0.25s ease;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active a,
.woocommerce-account .woocommerce-MyAccount-navigation ul li a:hover { background: #d32f2f; color: #fff; }
.woocommerce-account .woocommerce-MyAccount-content { flex: 1 !important; width: auto !important; float: none !important; min-width: 0; }
.woocommerce-account .woocommerce-MyAccount-content h2, .woocommerce-account .woocommerce-MyAccount-content h3 {
    font-size: 1.125rem; font-weight: 700; color: #1a1a2e; margin-bottom: 1rem;
}
.woocommerce-account .woocommerce-MyAccount-content p { font-size: 0.9375rem; color: #555; line-height: 1.6; }

/* Orders table */
.woocommerce-account .woocommerce-MyAccount-content table.shop_table,
.woocommerce-account table.my_account_orders {
    border-collapse: separate; border-spacing: 0; width: 100%; border: 1px solid #e0e4e8; border-radius: 8px; overflow: hidden; margin-bottom: 1.5rem;
}
.woocommerce-account .woocommerce-MyAccount-content table.shop_table th,
.woocommerce-account table.my_account_orders th { background: #f5f5f5; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.03em; color: #555; padding: 0.75rem 1rem; text-align: left; border-bottom: 1px solid #e0e4e8; }
.woocommerce-account .woocommerce-MyAccount-content table.shop_table td,
.woocommerce-account table.my_account_orders td { padding: 0.85rem 1rem; border-bottom: 1px solid #e0e4e8; font-size: 0.875rem; vertical-align: middle; }
.woocommerce-account .woocommerce-MyAccount-content table.shop_table tr:last-child td { border-bottom: none; }
.woocommerce-account .woocommerce-orders-table__cell-order-number a { color: #d32f2f; font-weight: 600; }
.woocommerce-account .woocommerce-orders-table__cell-order-number a:hover { color: #b71c1c; }

/* Order status badges */
.woocommerce-account .order-status, .woocommerce-order-overview .order-status {
    display: inline-block; padding: 0.25rem 0.75rem; border-radius: 100px;
    font-size: 0.6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em;
}
.woocommerce-account .status-completed, .woocommerce-account .status-processing { background: rgba(40,167,69,0.12); color: #28a745; }
.woocommerce-account .status-pending, .woocommerce-account .status-on-hold { background: rgba(255,193,7,0.15); color: #c79100; }
.woocommerce-account .status-cancelled, .woocommerce-account .status-failed, .woocommerce-account .status-refunded { background: rgba(211,47,47,0.12); color: #d32f2f; }

/* Order details page */
.woocommerce-account .woocommerce-order-overview { list-style: none; margin: 0 0 1.5rem; padding: 1.25rem 1.5rem; background: #f9f9f9; border: 1px solid #e0e4e8; border-radius: 8px; display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 1rem; }
.woocommerce-account .woocommerce-order-overview li { font-size: 0.75rem; color: #888; }
.woocommerce-account .woocommerce-order-overview strong { display: block; font-size: 0.9375rem; color: #1a1a2e; margin-top: 0.15rem; }
.woocommerce-account .wc-billing-addresses, .woocommerce-account address { font-style: normal; font-size: 0.875rem; color: #555; line-height: 1.6; }
.woocommerce-account .u-columns .col-1, .woocommerce-account .u-columns .col-2 { max-width: 48%; }
.woocommerce-account .woocommerce-Address-title h3 { display: inline-block; margin-right: 1rem; }
.woocommerce-account .woocommerce-Address-title .edit { font-size: 0.75rem; font-weight: 600; color: #d32f2f; text-transform: uppercase; letter-spacing: 0.04em; }

/* Downloads */
.woocommerce-account .woocommerce-Downloads table.shop_table td img { width: 40px; height: auto; border-radius: 4px; }

/* Login / Register */
.woocommerce-account .login, .woocommerce-account .register, .woocommerce-account form.woocommerce-form-login {
    max-width: 480px; margin: 0 auto; padding: 2rem; border: 1px solid #e0e4e8; border-radius: 8px; background: #fff;
}
.woocommerce-account .login h2, .woocommerce-account .register h2 { font-size: 1.25rem; font-weight: 700; margin-bottom: 1.25rem; }

/* ===== AUTH PAGE (connexion / inscription) ===== */
.gp-auth-wrap { max-width: 1040px; margin: 0 auto; padding: 3rem 2rem 4rem; }
.gp-auth-card {
    display: grid; grid-template-columns: 340px 1fr; gap: 0;
    background: #fff; border-radius: 14px; overflow: hidden;
    box-shadow: 0 12px 40px rgba(10,26,58,0.10); border: 1px solid #e8eaee;
}

/* Panneau latéral */
.gp-auth-side {
    background: linear-gradient(160deg, #1a1a2e 0%, #0e0e1a 100%);
    color: #fff; padding: 2.5rem 2rem; display: flex; flex-direction: column;
}
.gp-auth-side-logo { margin-bottom: 1.75rem; }
.gp-auth-side-logo img { max-height: 56px; width: auto; filter: brightness(0) invert(1); }
.gp-auth-logo-text { font-size: 1.375rem; font-weight: 800; letter-spacing: 0.04em; }
.gp-auth-side-title { font-size: 1.5rem; font-weight: 800; line-height: 1.25; margin-bottom: 0.5rem; }
.gp-auth-side-sub { font-size: 0.875rem; color: rgba(255,255,255,0.65); line-height: 1.6; margin-bottom: 1.75rem; }
.gp-auth-benefits { list-style: none; margin: 0 0 auto; padding: 0; display: grid; gap: 0.85rem; }
.gp-auth-benefits li {
    display: flex; align-items: center; gap: 0.6rem;
    font-size: 0.8125rem; color: rgba(255,255,255,0.85);
}
.gp-auth-benefits svg { color: #ff6b6b; flex-shrink: 0; }
.gp-auth-back {
    display: inline-flex; align-items: center; gap: 0.4rem; margin-top: 2rem;
    color: rgba(255,255,255,0.55); font-size: 0.8125rem; text-decoration: none; transition: color 0.3s ease;
}
.gp-auth-back:hover { color: #fff; }

/* Zone formulaires */
.gp-auth-main { padding: 2.5rem 2.75rem; }
.gp-auth-notices { margin-bottom: 0; }
.gp-auth-notices:empty { display: none; }
.gp-auth-notices .woocommerce-message,
.gp-auth-notices .woocommerce-error,
.gp-auth-notices .woocommerce-info {
    list-style: none; margin: 0 0 1rem; padding: 0.85rem 1.05rem;
    border-radius: 10px; font-size: 0.8438rem; line-height: 1.55;
    border-left: 4px solid #d32f2f;
    background: #fdf0f0; color: #8e1f1f;
    border-top: 1px solid rgba(211,47,47,0.15);
    border-right: 1px solid rgba(211,47,47,0.15);
    border-bottom: 1px solid rgba(211,47,47,0.15);
}
.gp-auth-notices .woocommerce-error::before,
.gp-auth-notices .woocommerce-info::before,
.gp-auth-notices .woocommerce-message::before { display: none; }
.gp-auth-notices .woocommerce-error li,
.gp-auth-notices .woocommerce-info li { margin: 0; list-style: none; }
.gp-auth-notices .woocommerce-message {
    border-left-color: #2ea043;
    background: #effaf1; color: #1e6b34;
    border-color: rgba(46,160,67,0.18);
}
.gp-auth-notices .woocommerce-info {
    border-left-color: #2f6dc7;
    background: #f0f6ff; color: #1d4d8f;
    border-color: rgba(47,109,199,0.18);
}
.gp-auth-profile-chip {
    display: inline-flex; align-items: center; gap: 0.4rem;
    padding: 0.45rem 1rem; margin-bottom: 1.25rem;
    background: rgba(211,47,47,0.08); border: 1px solid rgba(211,47,47,0.25);
    border-radius: 100px; font-size: 0.75rem; color: #b71c1c;
}
.gp-auth-profile-chip strong { text-transform: uppercase; letter-spacing: 0.03em; }
.gp-auth-tabs {
    display: flex; gap: 0.5rem; padding: 0.3rem; margin-bottom: 1.75rem;
    background: #f0f1f4; border-radius: 100px;
}
.gp-auth-tab {
    flex: 1; padding: 0.65rem 1rem; border: none; border-radius: 100px;
    background: transparent; color: #666; font-family: inherit;
    font-size: 0.875rem; font-weight: 600; cursor: pointer; transition: all 0.3s ease;
}
.gp-auth-tab.is-active { background: #d32f2f; color: #fff; box-shadow: 0 3px 10px rgba(211,47,47,0.35); }
.gp-auth-pane { display: none; }
.gp-auth-pane.is-active { display: block; animation: gpAuthFade 0.35s ease; }
@keyframes gpAuthFade {
    from { opacity: 0; transform: translateY(6px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Champs */
.gp-auth-main label {
    display: block; font-size: 0.8125rem; font-weight: 600; color: #333; margin-bottom: 0.4rem;
}
.gp-auth-main .required { color: #d32f2f; }
.gp-auth-main input[type="text"], .gp-auth-main input[type="email"], .gp-auth-main input[type="password"] {
    width: 100%; height: 48px; padding: 0 1rem;
    border: 1px solid #dde1e7; border-radius: 8px;
    font-size: 0.9375rem; font-family: inherit; color: #1a1a2e; background: #fbfbfc;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.gp-auth-main input:focus {
    outline: none; border-color: #d32f2f; background: #fff;
    box-shadow: 0 0 0 3px rgba(211,47,47,0.08);
}
.gp-pass-field { position: relative; display: block; }
.gp-pass-field input { padding-right: 3rem !important; }
.gp-pass-toggle {
    position: absolute; right: 0.5rem; top: 50%; transform: translateY(-50%);
    width: 34px; height: 34px; display: inline-flex; align-items: center; justify-content: center;
    border: none; background: transparent; color: #999; cursor: pointer; border-radius: 6px;
    transition: color 0.25s ease;
}
.gp-pass-toggle:hover, .gp-pass-toggle.is-visible { color: #d32f2f; }
.gp-auth-actions { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-top: 1.25rem; flex-wrap: wrap; }
.gp-auth-actions .woocommerce-form-login__rememberme {
    display: inline-flex; align-items: center; gap: 0.45rem;
    font-size: 0.8125rem; font-weight: 400 !important; color: #555 !important; margin-bottom: 0;
    cursor: pointer;
}
.gp-auth-actions input[type="checkbox"] { accent-color: #d32f2f; width: 16px; height: 16px; }
.gp-auth-main button[name="login"], .gp-auth-main button[name="register"] {
    height: 46px; padding: 0 2.25rem !important; border: none !important; border-radius: 8px !important;
    background: #d32f2f !important; color: #fff !important;
    font-size: 0.9375rem; font-weight: 600; cursor: pointer; transition: background 0.3s ease !important;
}
.gp-auth-main button[name="login"]:hover, .gp-auth-main button[name="register"]:hover { background: #b71c1c !important; }
.gp-auth-lost { margin-top: 1.25rem; font-size: 0.8125rem; }
.gp-auth-lost a { color: #d32f2f; font-weight: 500; }
.gp-auth-hint { font-size: 0.8125rem; color: #888; background: #f5f5f5; border-radius: 6px; padding: 0.7rem 1rem; }
.gp-auth-switch { margin-top: 1.5rem; padding-top: 1.25rem; border-top: 1px dashed #e5e8ec; font-size: 0.875rem; color: #666; text-align: center; }
.gp-auth-switch-btn {
    border: none; background: transparent; color: #d32f2f;
    font-family: inherit; font-size: 0.875rem; font-weight: 700; cursor: pointer;
}
.gp-auth-switch-btn:hover { text-decoration: underline; }
@media (max-width: 860px) {
    .gp-auth-card { grid-template-columns: 1fr; }
    .gp-auth-side { padding: 1.75rem 1.5rem; }
    .gp-auth-benefits { display: none; }
    .gp-auth-back { margin-top: 0.75rem; }
    .gp-auth-main { padding: 1.75rem 1.5rem; }
}
.woocommerce-account .woocommerce-form-login .button, .woocommerce-account .woocommerce-ResetPassword .button {
    background: #d32f2f; color: #fff; font-weight: 600; border-radius: 6px; padding: 0.7rem 2rem; transition: background 0.3s ease;
}
.woocommerce-account .woocommerce-form-login .button:hover { background: #b71c1c; }
.woocommerce-account .lost_password a, .woocommerce-account .woocommerce-LostPassword a { font-size: 0.8125rem; color: #d32f2f; }
@media (max-width: 768px) {
    .woocommerce-account .woocommerce { flex-direction: column; }
    .woocommerce-account .woocommerce-MyAccount-navigation { width: 100% !important; margin-bottom: 1.5rem; }
    .woocommerce-checkout form.checkout { flex-direction: column; }
    .woocommerce-checkout form.checkout #customer_details, .woocommerce-checkout form.checkout #order_review { flex: 1 1 100%; }
}

/* ===== ORDER RECEIVED / THANK YOU ===== */
.woocommerce-order-received .site-main { max-width: 800px; margin: 0 auto; padding: 2rem; }
.woocommerce-order-received .woocommerce-thankyou-order-received {
    background: rgba(40,167,69,0.08); border: 1px solid rgba(40,167,69,0.25); border-radius: 8px;
    padding: 1.5rem 2rem; font-size: 1.125rem; font-weight: 700; color: #28a745; text-align: center;
}
.woocommerce-order-received .woocommerce-order-overview { list-style: none; margin: 1.5rem 0; padding: 1.5rem 2rem; background: #f9f9f9; border: 1px solid #e0e4e8; border-radius: 8px; display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 1rem; }
.woocommerce-order-received .woocommerce-order-overview li { font-size: 0.8125rem; }
.woocommerce-order-received .woocommerce-order-overview strong { display: block; font-size: 0.9375rem; color: #1a1a2e; }

/* ===== GENERIC WOOCOMMERCE MESSAGES & BUTTONS ===== */
.woocommerce-message, .woocommerce-info, .woocommerce-error {
    border-top-color: #d32f2f; border-radius: 6px; font-size: 0.875rem; padding: 1rem 1.5rem;
}
.woocommerce-message { border-top-color: #28a745; }
.woocommerce-info { border-top-color: #1a1a2e; }
.woocommerce-message::before, .woocommerce-info::before, .woocommerce-error::before { top: 0.95em; }
.woocommerce .button.alt, .woocommerce button.button.alt, .woocommerce input.button.alt,
.woocommerce #respond input#submit.alt {
    background: #d32f2f !important; color: #fff !important; border-radius: 6px !important;
    font-weight: 600 !important; transition: background 0.3s ease;
}
.woocommerce .button.alt:hover, .woocommerce button.button.alt:hover, .woocommerce input.button.alt:hover,
.woocommerce #respond input#submit.alt:hover { background: #b71c1c !important; }
.woocommerce table.shop_table { border-collapse: collapse; border: 1px solid #e0e4e8; border-radius: 6px; }
.woocommerce table.shop_table th { background: #f5f5f5; font-size: 0.8125rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.03em; color: #555; padding: 0.75rem 1rem; }
.woocommerce table.shop_table td { padding: 0.85rem 1rem; border-bottom: 1px solid #e0e4e8; font-size: 0.875rem; vertical-align: middle; }
.woocommerce .woocommerce-pagination ul { border: none !important; gap: 0.25rem; display: flex; }
.woocommerce .woocommerce-pagination ul li { border: none !important; }
.woocommerce .woocommerce-pagination ul li a, .woocommerce .woocommerce-pagination ul li span {
    min-width: 36px; height: 36px; display: inline-flex; align-items: center; justify-content: center;
    border-radius: 6px !important; border: 1px solid #e0e4e8; font-size: 0.875rem; font-weight: 500; color: #555; transition: all 0.25s ease;
}
.woocommerce .woocommerce-pagination ul li span.current { background: #d32f2f; border-color: #d32f2f; color: #fff; }
.woocommerce .woocommerce-pagination ul li a:hover { border-color: #d32f2f; color: #d32f2f; }

/* ===== ORDER TRACKING PAGE ===== */
.gp-tracking-page { min-height: 60vh; }
.tracking-hero { padding: 4rem 2rem 2rem; background: #f5f5f5; text-align: center; }
.tracking-hero-inner { max-width: 640px; margin: 0 auto; }
.tracking-title { font-size: 2rem; font-weight: 800; color: #1a1a2e; margin-bottom: 0.5rem; }
.tracking-subtitle { font-size: 0.9375rem; color: #555; line-height: 1.7; }
.tracking-form-section { padding: 2rem 2rem 4rem; background: #fff; }
.tracking-form-wrap { max-width: 720px; margin: 0 auto; }
.track-form {
    display: flex; gap: 0.75rem; align-items: stretch;
    background: #fff; border: 1px solid #e0e4e8; border-radius: 10px;
    padding: 0.75rem; box-shadow: 0 4px 18px rgba(10,26,58,0.05);
}
.track-field {
    flex: 1; display: flex; align-items: center; gap: 0.5rem;
    border: 1px solid #e0e4e8; border-radius: 8px; padding: 0 1rem; color: #999;
}
.track-field:focus-within { border-color: #d32f2f; box-shadow: 0 0 0 3px rgba(211,47,47,0.08); color: #d32f2f; }
.track-field input { flex: 1; border: none; outline: none; height: 46px; font-size: 1rem; font-family: inherit; color: #1a1a2e; background: transparent; min-width: 0; }
.track-submit {
    position: relative; height: 48px; padding: 0 2.25rem; border: none; border-radius: 8px;
    background: #d32f2f; color: #fff; font-size: 0.9375rem; font-weight: 600;
    cursor: pointer; transition: background 0.3s ease; white-space: nowrap;
}
.track-submit:hover:not(:disabled) { background: #b71c1c; }
.track-submit:disabled { opacity: 0.65; cursor: wait; }
.track-spinner {
    position: absolute; inset: 0; margin: auto; width: 20px; height: 20px;
    border: 2px solid rgba(255,255,255,0.35); border-top-color: #fff; border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
.track-submit-label.is-hidden { visibility: hidden; }

.track-result { margin-top: 1.5rem; }
.track-result.has-results { display: grid; gap: 1.25rem; }
.track-error {
    background: rgba(211,47,47,0.06); border: 1px solid rgba(211,47,47,0.25);
    border-radius: 8px; padding: 1rem 1.25rem; color: #b71c1c; font-size: 0.875rem;
}
.track-card { border: 1px solid #e0e4e8; border-radius: 10px; overflow: hidden; background: #fff; }
.track-card-head {
    display: flex; align-items: center; justify-content: space-between; gap: 1rem;
    padding: 1rem 1.25rem; background: #f9f9f9; border-bottom: 1px solid #e0e4e8; flex-wrap: wrap;
}
.track-order-num { display: block; font-weight: 700; color: #1a1a2e; font-size: 0.9375rem; }
.track-order-date { display: block; font-size: 0.75rem; color: #888; margin-top: 0.15rem; }
.track-timeline { list-style: none; display: flex; margin: 0; padding: 1.25rem; gap: 0.5rem; }
.track-timeline li {
    flex: 1; text-align: center; font-size: 0.6875rem; font-weight: 600; color: #aaa;
    text-transform: uppercase; letter-spacing: 0.03em; position: relative; padding-top: 2.25rem;
}
.track-timeline li span {
    position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    width: 22px; height: 22px; border-radius: 50%;
    border: 2px solid #e0e4e8; background: #fff;
}
.track-timeline li span::before {
    content: ''; position: absolute; top: -2px; left: -2px; right: -2px; bottom: -2px;
    border-radius: 50%; background: transparent;
}
.track-timeline li.reached { color: #1a1a2e; }
.track-timeline li.reached span { border-color: #28a745; background: #28a745; }
.track-items { list-style: none; margin: 0; padding: 0 1.25rem 1rem; border-top: 1px dashed #eee; }
.track-items li {
    display: flex; justify-content: space-between; padding: 0.55rem 0;
    border-bottom: 1px dashed #eee; font-size: 0.8125rem; color: #555;
}
.track-items li:last-child { border-bottom: none; }
.track-items em { color: #888; font-style: normal; }
.track-card-foot {
    display: flex; align-items: center; justify-content: space-between; gap: 1rem;
    padding: 1rem 1.25rem; background: #f9f9f9; border-top: 1px solid #e0e4e8;
}
.track-total-label { display: block; font-size: 0.6875rem; color: #888; text-transform: uppercase; letter-spacing: 0.04em; }
.track-total { display: block; font-size: 1.125rem; font-weight: 800; color: #d32f2f; }
.track-details {
    padding: 0.5rem 1.25rem; background: #1a1a2e; color: #fff; border-radius: 6px;
    font-size: 0.8125rem; font-weight: 600; transition: background 0.3s ease;
}
.track-details:hover { background: #d32f2f; color: #fff; }
.track-help { margin-top: 2rem; text-align: center; font-size: 0.8125rem; color: #888; }
.track-help a { color: #d32f2f; font-weight: 600; }
@media (max-width: 576px) {
    .track-form { flex-direction: column; }
    .track-submit { width: 100%; }
    .tracking-hero { padding: 2.5rem 1rem 1.5rem; }
    .tracking-form-section { padding-left: 1rem; padding-right: 1rem; }
}

/* ===== WELCOME POPUP (premiere visite) ===== */
.gp-welcome[hidden] { display: none !important; }
body.gp-welcome-lock { overflow: hidden; }
.gp-welcome {
    position: fixed; inset: 0; z-index: 99999;
    display: flex; align-items: center; justify-content: center;
    background: #0e0e1a center / cover no-repeat;
    opacity: 0; transition: opacity 0.45s ease;
}
.gp-welcome:not(.is-open) { pointer-events: none; }
.gp-welcome.has-bg::before { content: none; }
.gp-welcome-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(14,14,26,0.82) 0%, rgba(14,14,26,0.68) 50%, rgba(14,14,26,0.88) 100%);
}
.gp-welcome.is-open { opacity: 1; }
.gp-welcome-content {
    position: relative; z-index: 1; width: min(560px, 100%);
    padding: 2.5rem 2rem 2rem; text-align: center; color: #fff;
}
.gp-welcome-close {
    position: absolute; top: 0.75rem; right: 0.75rem; z-index: 2;
    width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.25); border-radius: 50%;
    background: rgba(255,255,255,0.08); color: #fff; font-size: 1.25rem; line-height: 1;
    cursor: pointer; transition: all 0.3s ease;
}
.gp-welcome-close:hover { background: #d32f2f; border-color: #d32f2f; }
.gp-welcome-logo { display: flex; justify-content: center; margin-bottom: 0.75rem; }
.gp-welcome-logo img { max-height: 72px; width: auto; filter: brightness(0) invert(1); }
.gp-welcome-logo .custom-logo-link { display: inline-block; }
.gp-welcome-logo-text {
    font-size: 1.625rem; font-weight: 800; letter-spacing: 0.04em;
}
.gp-welcome-logo-text::after {
    content: ''; display: block; width: 48px; height: 3px; margin: 0.5rem auto 0;
    background: #d32f2f; border-radius: 2px;
}
.gp-welcome-tagline { font-size: 0.8125rem; color: rgba(255,255,255,0.65); letter-spacing: 0.05em; margin-bottom: 1.75rem; }
.gp-welcome-title { font-size: 1.375rem; font-weight: 700; margin-bottom: 1.25rem; }
.gp-welcome-choices {
    display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1.5rem;
}
.gp-welcome-choice {
    display: flex; flex-direction: column; align-items: center; gap: 0.4rem;
    padding: 1.5rem 1rem; border: 1px solid rgba(255,255,255,0.18); border-radius: 10px;
    background: rgba(255,255,255,0.06); color: #fff; text-decoration: none;
    backdrop-filter: blur(4px); transition: all 0.3s ease;
}
button.gp-welcome-choice { font-family: inherit; cursor: pointer; width: auto; }
.gp-welcome-choice:hover {
    transform: translateY(-4px); border-color: #d32f2f; background: rgba(211,47,47,0.18); color: #fff;
}
.gp-welcome-choice-icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 58px; height: 58px; border-radius: 50%;
    background: rgba(211,47,47,0.15); color: #ff6b6b; transition: all 0.3s ease;
}
.gp-welcome-choice:hover .gp-welcome-choice-icon { background: #d32f2f; color: #fff; }
.gp-welcome-choice strong { font-size: 1.0625rem; font-weight: 700; }
.gp-welcome-choice-desc { font-size: 0.75rem; line-height: 1.5; color: rgba(255,255,255,0.6); }
.gp-welcome-guest {
    display: inline-block; padding: 0.7rem 2rem;
    border: 1px solid rgba(255,255,255,0.35); border-radius: 100px;
    color: rgba(255,255,255,0.85); font-size: 0.8125rem; font-weight: 500;
    text-decoration: none; letter-spacing: 0.03em; transition: all 0.3s ease;
}
.gp-welcome-guest:hover { background: rgba(255,255,255,0.12); border-color: #fff; color: #fff; }
@media (max-width: 576px) {
    .gp-welcome-content { padding: 2rem 1.25rem 1.5rem; }
    .gp-welcome-choices { grid-template-columns: 1fr; gap: 0.75rem; }
    .gp-welcome-title { font-size: 1.125rem; }
}

/* ===== GUEST ORDER NOTICE (produit simple, invites) ===== */
.gp-guest-order-notice {
    display: flex; align-items: center; gap: 0.75rem;
    padding: 1rem 1.25rem; margin: 1rem 0;
    background: rgba(26,26,46,0.04); border: 1px dashed #c9ced6; border-radius: 8px;
}
.gp-guest-order-notice svg { flex-shrink: 0; color: #d32f2f; }
.gp-guest-order-notice p { margin: 0; font-size: 0.875rem; color: #555; line-height: 1.6; }
.gp-guest-login-btn {
    display: inline-block !important; margin-left: 0.5rem !important;
    padding: 0.55rem 1.25rem !important; border-radius: 6px !important;
    background: #d32f2f !important; color: #fff !important;
    font-weight: 600 !important; font-size: 0.8125rem !important;
    transition: background 0.3s ease !important;
}
.gp-guest-login-btn:hover { background: #b71c1c !important; color: #fff !important; }
@media (max-width: 576px) {
    .gp-guest-order-notice { flex-direction: column; align-items: flex-start; }
    .gp-guest-login-btn { margin-left: 0 !important; }
}

/* ===== SIDE RAIL (compte / panier / suivi / aide) ===== */
.gp-side-rail {
    position: fixed; right: 0; top: 50%; transform: translateY(-50%); z-index: 1500;
    display: flex; flex-direction: column;
    background: #fff; border: 1px solid #e0e4e8; border-right: none;
    border-radius: 10px 0 0 10px; box-shadow: -2px 0 12px rgba(10,26,58,0.08);
    overflow: hidden;
}
.gp-side-rail-link {
    position: relative; display: flex; flex-direction: column; align-items: center; gap: 3px;
    width: 62px; padding: 0.7rem 0.35rem; color: #555; text-decoration: none;
    border-bottom: 1px solid #e0e4e8; transition: all 0.25s ease;
}
.gp-side-rail-link:last-child { border-bottom: none; }
.gp-side-rail-link:hover { background: #f5f5f5; color: #d32f2f; }
.gp-side-rail-link span { font-size: 0.5625rem; font-weight: 600; letter-spacing: 0.02em; }
.gp-side-rail-badge {
    position: absolute; top: 4px; right: 6px;
    min-width: 16px; height: 16px; padding: 0 4px;
    background: #d32f2f; color: #fff; font-size: 0.5625rem; font-weight: 700;
    font-style: normal; border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
}
@media (max-width: 991px) {
    .gp-side-rail { display: none; }
}

/* ===== FLOATING WHATSAPP ===== */
.gp-whatsapp-float {
    position: fixed; top: calc(1rem + 25px); right: 1rem; z-index: 9999;
}
.gp-whatsapp-float a {
    display: flex; align-items: center; gap: 0.5rem;
    background: #25d366; color: #fff; padding: 0.65rem 1.25rem;
    border-radius: 50px; font-size: 0.8125rem; font-weight: 600;
    text-decoration: none; box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
    transition: all 0.3s ease;
}
.gp-whatsapp-float a:hover { background: #1ebe5d; color: #fff; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45); }
.gp-whatsapp-float a svg { flex-shrink: 0; }
@media (max-width: 991px) {
    .gp-whatsapp-float { top: auto; bottom: 1.5rem; right: 1rem; }
    .gp-whatsapp-float a { padding: 0.6rem 1rem; font-size: 0.75rem; }
}

/* Elementor */
.gp-el-contact-bar { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.gp-el-contact-item { display: flex; align-items: center; gap: 0.4rem; font-size: 0.875rem; color: rgba(255,255,255,0.8); }
.gp-el-contact-item:hover { color: var(--color-white); }

/* Carousel chantiers */
.gp-carousel-header { display: flex; align-items: flex-end; justify-content: space-between; }
.gp-carousel-arrows { display: flex; gap: 0.75rem; padding-bottom: 0.25rem; }
.gp-arrow {
    width: 44px; height: 44px; border-radius: 50%; border: 2px solid rgba(26,26,46,0.15);
    background: transparent; cursor: pointer; display: flex; align-items: center; justify-content: center;
    color: #1a1a2e; transition: all 0.3s ease; padding: 0;
}
.gp-arrow:hover { border-color: #d32f2f; color: #d32f2f; background: rgba(211,47,47,0.05); }
.gp-carousel { position: relative; overflow: hidden; width: 100%; }
.gp-carousel-track { display: flex; flex-wrap: nowrap; transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94); will-change: transform; }
.gp-carousel-track.gp-no-anim { transition: none !important; }
.gp-carousel { cursor: grab; touch-action: pan-y; }
.gp-carousel.is-drag, .gp-carousel.is-drag .gp-carousel-slide { cursor: grabbing; }
.gp-carousel.is-drag .gp-carousel-slide img { pointer-events: none; -webkit-user-drag: none; user-select: none; }
.gp-carousel-wrapper { padding: 0 0.75rem; }
.gp-carousel-slide {
    flex: 0 0 40%; min-height: 520px;
    background-size: cover !important; background-position: center !important;
    position: relative; color: #fff; text-decoration: none; display: block;
    margin-right: 1rem; border-radius: 8px; overflow: hidden;
}
.gp-carousel-slide:last-child { margin-right: 0; }
.gp-carousel-slide-box {
    position: absolute; bottom: 1.5rem; left: 1.5rem; right: 1.5rem;
    background: #0e0e1a; padding: 1rem 1.25rem; border-radius: 6px;
}
.gp-carousel-slide-box h3 { font-size: 1.375rem; font-weight: 700; color: #fff; margin: 0; line-height: 1.25; }
.gp-carousel-slide-box p { font-size: 0.9375rem; color: rgba(255,255,255,0.6); margin: 0.2rem 0 0; }
.gp-carousel-dots {
    display: flex; justify-content: center; gap: 0.5rem; margin-top: 1.5rem;
}
.gp-carousel-dots button {
    width: 10px; height: 10px; border-radius: 50%; border: 2px solid rgba(26,26,46,0.3);
    background: transparent; cursor: pointer; padding: 0; transition: all 0.3s ease;
}
.gp-carousel-dots button.is-active { background: #d32f2f; border-color: #d32f2f; }
@media (max-width: 992px) {
    .gp-carousel-slide { flex: 0 0 50%; min-height: 380px; }
}
@media (max-width: 576px) {
    .gp-carousel-slide { flex: 0 0 100%; min-height: 300px; }
}
