* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
}

body {
    min-height: 100vh;
    margin: 0;
    padding-top: var(--fsg-header-offset, 202px);
    display: flex;
    flex-direction: column;
    font-family: Arial, Helvetica, sans-serif;
    color: #111;
    background: #fff;
}

body > main,
.fsg-home,
.fsg-woocommerce-page,
#primary {
    flex: 1 0 auto;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.fsg-container {
    width: min(1400px, calc(100% - 40px));
    margin: 0 auto;
}

/* HEADER FIXE */
.fsg-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: #fff;
}

body.admin-bar .fsg-header {
    top: 32px;
}

.fsg-header-top {
    height: 160px;
    background: #fff;
    padding: 0;
    overflow: visible;
}

.fsg-header-top-inner {
    position: relative;
    height: 160px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.fsg-logo-link {
    position: relative;
    z-index: 3;
    align-self: flex-start;
    margin-top: 0;
    flex: 0 0 auto;
}

.fsg-logo {
    width: 500px;
    height: auto;
    margin: 0;
}

.fsg-header-actions {
    position: absolute;
    top: 0;
    left: 520px;
    z-index: 50;
    display: flex;
    align-items: flex-start;
}

.fsg-version {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    white-space: nowrap;
    background: #08006b;
    color: #fff;
    padding: 8px 16px 10px;
    border-radius: 0 0 14px 14px;
    overflow: visible;
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.fsg-version > span:first-child {
    font-weight: 700;
}

.fsg-version button {
    position: relative;
    border: none;
    background: transparent;
    border-radius: 7px;
    width: auto;
    height: auto;
    cursor: pointer;
    padding: 3px;
    margin-left: 2px;
    line-height: 1;
    overflow: visible;
    transition: background 0.22s ease, transform 0.22s ease;
}

.fsg-version button:hover {
    background: rgba(255,255,255,0.16);
    transform: translateY(-2px);
}

.fsg-version svg {
    width: 30px;
    height: 20px;
    border-radius: 3px;
    display: block;
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.65),
        0 2px 4px rgba(0,0,0,0.25);
    transition: transform 0.2s ease;
}

.fsg-version button:hover svg {
    transform: scale(1.14);
}

.fsg-lang-tooltip {
    position: absolute;
    left: 50%;
    top: calc(100% + 12px);
    transform: translateX(-50%) translateY(-6px);
    background: #fff;
    color: #08006b;
    border: 2px solid #08006b;
    border-radius: 16px;
    padding: 7px 12px;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    z-index: 999;
    box-shadow: 0 8px 18px rgba(0,0,0,0.22);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.fsg-lang-tooltip::before {
    content: "";
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 8px solid #08006b;
}

.fsg-lang-tooltip::after {
    content: "";
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 6px solid #fff;
}

.fsg-version button:hover .fsg-lang-tooltip {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.fsg-header-tagline {
    position: absolute;
    left: 530px;
    bottom: 16px;
    z-index: 4;
    margin: 0;
    color: #111;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.fsg-user-links {
    position: fixed;
    top: 52px;
    right: 460px;
    z-index: 80;
    font-size: 16px;
    line-height: 1;
    font-weight: 700;
    display: flex;
    gap: 10px;
    align-items: center;
    color: #08006b;
    white-space: nowrap;
}

.fsg-user-links a:hover {
    text-decoration: underline;
}

.fsg-map-france {
    position: relative;
    right: 110px;
    width: 220px;
    height: auto;
    margin-bottom: 0;
    z-index: 2;
    flex: 0 0 auto;
}

/* NAV Menu */
.fsg-main-nav {
    background: #08006b;
    color: #fff;
    min-height: 40px;
}

.fsg-main-nav .fsg-container {
    display: flex;
    justify-content: center;
}

.fsg-menu,
.fsg-main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 44px;
    align-items: center;
    justify-content: center;
}

.fsg-menu li,
.fsg-main-nav li {
    margin: 0;
    padding: 0;
    list-style: none;
}

.fsg-menu li a,
.fsg-main-nav li a {
    display: block;
    padding: 12px 0;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    line-height: 1;
}

.fsg-username {
    text-transform: none !important;
    font-weight: 400;
}

.fsg-cart-count {
    position: relative;
    top: -1px;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 20px !important;
    min-width: 20px !important;
    height: 20px !important;
    margin-left: 7px !important;
    padding: 0 !important;
    border-radius: 50% !important;
    background: #e30613;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    line-height: 1 !important;
    text-align: center;
    vertical-align: middle;
}

/* Elements header mobile / dropdown */
.fsg-mobile-lang-toggle,
.fsg-burger-toggle,
.fsg-mobile-lang-panel,
.fsg-mobile-account,
.fsg-desktop-lang-dropdown {
    display: none;
}

/* Dropdown langues desktop au scroll */
.fsg-desktop-lang-dropdown {
    position: absolute;
    top: 14px;
    right: 250px;
    z-index: 60;
}

.fsg-desktop-lang-toggle {
    border: 2px solid #08006b;
    background: #fff;
    color: #08006b;
    padding: 8px 16px;
    border-radius: 999px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}

.fsg-desktop-lang-toggle::after {
    content: " ▾";
}

.fsg-desktop-lang-toggle:hover {
    background: #08006b;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(8,0,107,0.22);
}

.fsg-desktop-lang-panel {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 170px;
    background: #fff;
    border: 2px solid #08006b;
    border-radius: 14px;
    padding: 8px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.18);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.fsg-desktop-lang-panel.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.fsg-desktop-lang-panel button {
    width: 100%;
    border: 0;
    background: transparent;
    color: #08006b;
    padding: 8px 10px;
    text-align: left;
    font-weight: 700;
    cursor: pointer;
    border-radius: 8px;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.fsg-desktop-lang-panel button:hover {
    background: #08006b;
    color: #fff;
    transform: translateX(3px);
}

/* Flag DECO droite Header */
.fsg-big-flag {
    position: fixed;
    top: 154px;
    right: 22px;
    width: 96px;
    height: auto;
    z-index: 10001;
    pointer-events: none;
}

body.admin-bar .fsg-big-flag {
    top: 186px;
}

/* Header réduit au scroll desktop / laptop */
@media (min-width: 901px) {
    .fsg-header,
    .fsg-header-top,
    .fsg-header-top-inner,
    .fsg-logo,
    .fsg-header-tagline,
    .fsg-map-france,
    .fsg-main-nav,
    .fsg-menu li a,
    .fsg-main-nav li a,
    .fsg-username,
    .fsg-big-flag {
        transition: all 0.28s ease;
    }

    .fsg-header.is-scrolled .fsg-header-top {
        height: 82px;
    }

    .fsg-header.is-scrolled .fsg-header-top-inner {
        height: 82px;
        align-items: center;
    }

    .fsg-header.is-scrolled .fsg-logo {
        width: 258px;
    }

    .fsg-header.is-scrolled .fsg-header-actions {
        display: none;
    }

    .fsg-header.is-scrolled .fsg-desktop-lang-dropdown {
        display: block;
    }

    .fsg-header.is-scrolled .fsg-header-tagline {
        left: 330px;
        bottom: 28px;
        font-size: 17px;
    }

    .fsg-header.is-scrolled .fsg-map-france {
        width: 105px;
        right: 120px;
    }

    .fsg-header.is-scrolled .fsg-main-nav {
        min-height: 32px;
    }

    .fsg-header.is-scrolled .fsg-menu li a,
    .fsg-header.is-scrolled .fsg-main-nav li a,
    .fsg-header.is-scrolled .fsg-username {
        padding: 9px 0;
        font-size: 12px;
    }

    .fsg-header.is-scrolled .fsg-big-flag {
        top: 78px;
        width: 72px;
    }

    body.admin-bar .fsg-header.is-scrolled .fsg-big-flag {
        top: 110px;
    }
}

/* Slider HOME */
.fsg-hero-slider {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
    background: #05003f;
}

.fsg-slide {
    position: relative;
    display: none;
    opacity: 0;
    transition: opacity 0.7s ease;
}

.fsg-slide.active {
    display: block;
    opacity: 1;
    z-index: 2;
}

.fsg-slide img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.fsg-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.62), rgba(0,0,0,0.18));
}

.fsg-slide-content {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: max(40px, calc((100vw - 1400px) / 2));
    transform: translateY(-50%);
    max-width: 640px;
    color: #fff;
}

.fsg-slide-content h1,
.fsg-slide-content h2 {
    margin: 0 0 18px;
    font-size: clamp(42px, 5vw, 76px);
    line-height: 0.95;
    text-transform: uppercase;
}

.fsg-slide-content p {
    margin: 0 0 28px;
    font-size: 14px;
    line-height: 1.5;
}

.fsg-btn {
    display: inline-block;
    background: #e30613;
    color: #fff;
    padding: 14px 24px;
    border-radius: 999px;
    font-weight: 700;
    transition: background 0.24s ease, color 0.24s ease, transform 0.24s ease, box-shadow 0.24s ease;
}

.fsg-btn:hover {
    background: #08006b;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(8,0,107,0.28);
}

.fsg-slider-btn {
    position: absolute;
    top: 50%;
    z-index: 5;
    transform: translateY(-50%);
    border: 0;
    background: rgba(255,255,255,0.85);
    color: #08006b;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 34px;
    line-height: 1;
    cursor: pointer;
}

.fsg-slider-btn.prev {
    left: 24px;
}

.fsg-slider-btn.next {
    right: 24px;
}

/* SECTIONS */
.fsg-welcome,
.fsg-video-demo,
.fsg-push-products,
.fsg-shop-preview {
    padding: 70px 0;
}

.fsg-welcome-card {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: stretch;
    padding: 0;
    border: 2px solid #08006b;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}

.fsg-welcome-img {
    width: 52%;
    min-height: 100%;
}

.fsg-welcome-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fsg-welcome-text {
    width: 48%;
    padding: 42px;
}

.fsg-welcome-text h2,
.fsg-section-heading h2 {
    margin: 0 0 18px;
    font-size: clamp(34px, 4vw, 58px);
    color: #08006b;
    text-transform: uppercase;
    line-height: 1;
}

.fsg-welcome-text p,
.fsg-section-heading p {
    font-size: 17px;
    line-height: 1.7;
}

.fsg-section-heading {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 35px;
}

.fsg-section-heading span {
    color: #e30613;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.fsg-section-title {
    max-width: 1400px;
    margin: 0 auto 28px;
    font-size: 30px;
    line-height: 1.2;
}

/* Bloc VIDEO */
.fsg-video-demo {
    background: #fff;
}

.fsg-video-card {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    background: #08006b;
    padding: 2px;
    border: 2px solid #08006b;
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.18);
    overflow: hidden;
}

.fsg-video-card.is-loading::after {
    content: "Chargement de la vidéo...";
    position: absolute;
    inset: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(8,0,107,0.78);
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.4px;
}

.videoWrapper {
    width: 100%;
    background: #000;
    border-radius: 14px 14px 0 0;
    overflow: hidden;
}

.fsg-demo-video {
    display: block;
    width: 100%;
    height: auto;
    max-height: none;
    border-radius: 14px 14px 0 0;
    background: #000;
    object-fit: contain;
    transition: opacity 0.25s ease;
}

.fsg-video-card.is-loading .fsg-demo-video {
    opacity: 0.35;
}

.fsg-video-langs {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    padding: 14px 0 16px;
    background: #08006b;
}

.fsg-video-langs button {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border: 2px solid #fff;
    background: transparent;
    color: #fff;
    padding: 10px 18px;
    border-radius: 999px;
    font-weight: 700;
    cursor: pointer;
    line-height: 1;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.fsg-video-langs button:hover {
    transform: translateY(-2px);
}

.fsg-video-lang-flag {
    font-size: 16px;
    line-height: 1;
}

.fsg-video-langs button.active,
.fsg-video-langs button:hover {
    background: #fff;
    color: #08006b;
}

/* Habillage Flag FR vignettes produits */
.home .woocommerce ul.products li.product {
    position: relative;
}

.fsg-product-flag {
    position: absolute;
    top: -10px;
    left: 10px;
    z-index: 10;
    width: 34px;
    height: 34px;
    display: block;
}

.fsg-product-flag img {
    width: 100%;
    height: auto;
    display: block;
}

/* Bloc PUSH PRODUITS */
.fsg-push-products {
    background: #f7f7fb;
}

.fsg-push-grid {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 36px;
}

.fsg-push-card {
    width: calc(50% - 18px);
    background: #fff;
    border: 2px solid #08006b;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}

.fsg-push-card img {
    width: 100%;
    height: 390px;
    object-fit: cover;
    border-radius: 15px;
}

/* Produits WOOCOMMERCE */
.fsg-shop-preview {
    background: #fff;
}

.fsg-shop-preview ul.products {
    max-width: 1400px;
    margin: 30px auto 0;
}

.home .woocommerce ul.products {
    display: flex !important;
    flex-wrap: wrap;
    gap: 42px 36px;
    justify-content: flex-start;
}

.home .woocommerce ul.products::before,
.home .woocommerce ul.products::after {
    display: none !important;
}

.home .woocommerce ul.products li.product {
    width: calc((100% - 144px) / 5) !important;
    margin: 0 !important;
    float: none !important;
    text-align: center;
    border: 2px solid #08006b;
    border-radius: 18px;
    padding: 14px 14px 18px !important;
    box-shadow: 0 10px 26px rgba(0,0,0,0.10);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.home .woocommerce ul.products li.product:hover {
    transform: translateY(-8px);
    border-color: #e30613;
    box-shadow: 0 22px 42px rgba(0,0,0,0.18);
}

.home .woocommerce ul.products li.product a img {
    margin-bottom: 14px;
    transition: transform 0.25s ease, filter 0.25s ease;
}

.home .woocommerce ul.products li.product:hover a img {
    transform: scale(1.04);
    filter: saturate(1.08);
}

.home .woocommerce ul.products li.product .woocommerce-loop-product__title {
    color: #08006b;
    font-weight: 700;
    transition: color 0.2s ease;
}

.home .woocommerce ul.products li.product:hover .woocommerce-loop-product__title {
    color: #e30613;
}

.home .woocommerce ul.products li.product .button {
    background: #e30613;
    color: #fff;
    border-radius: 999px;
    padding: 12px 18px;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.home .woocommerce ul.products li.product .button:hover {
    background: #08006b;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(8,0,107,0.25);
}

/* Wrapper WooCommerce commun : boutique, catégories, sous-catégories, produit */
.fsg-woocommerce-page {
    width: min(1400px, calc(100% - 40px));
    margin: 0 auto;
    padding: 50px 0 70px;
}

/* Vignettes produits : format court, sans description dans les listings */
.woocommerce ul.products li.product .woocommerce-product-details__short-description,
.fsg-shop-preview ul.products li.product .woocommerce-product-details__short-description {
    display: none !important;
}

.woocommerce ul.products li.product a img {
    height: 210px;
    object-fit: contain;
    background: #f5f5f5;
}

.fsg-shop-preview ul.products li.product {
    min-height: 380px;
}

/* FOOTER */
.fsg-footer {
    flex-shrink: 0;
    margin-top: auto;
    background: #08006b;
    color: #fff;
    padding: 45px 0;
}

.fsg-footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.fsg-footer-logo {
    width: 190px;
}

.fsg-footer-title {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 2px;
}

/* FIX hook flag FR sur vignettes produits */
.home .woocommerce ul.products li.product .fsg-product-flag,
.woocommerce ul.products li.product .fsg-product-flag {
    position: absolute;
    top: -10px;
    left: 10px;
    z-index: 20;
    width: 34px;
    height: 34px;
    display: block;
    background: transparent !important;
    border: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    transition: transform 0.25s ease;
}

.home .woocommerce ul.products li.product:hover .fsg-product-flag {
    transform: translateY(1px) scale(1.08);
}

.home .woocommerce ul.products li.product .fsg-product-flag img,
.woocommerce ul.products li.product .fsg-product-flag img {
    width: 100% !important;
    height: auto !important;
    max-height: none !important;
    object-fit: contain !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Titre produit toujours sur 2 lignes */
.home .woocommerce ul.products li.product .woocommerce-loop-product__title {
    min-height: 52px !important;
    height: 52px !important;
    line-height: 20px !important;
    margin-bottom: 8px !important;
    color: #08006b;
    font-weight: 700;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Prix aligné sous le titre */
.home .woocommerce ul.products li.product .price {
    display: block;
    min-height: 24px !important;
    margin-bottom: 22px !important;
}

/* Bouton aligné */
.home .woocommerce ul.products li.product .button {
    margin-top: 0 !important;
}

.home .woocommerce ul.products li.product .button:active {
    transform: scale(0.95);
}

.home .woocommerce ul.products li.product:hover {
    box-shadow: 0 25px 50px rgba(8,0,107,0.25);
}

.home .woocommerce ul.products li.product:hover .price {
    color: #e30613;
}

/* Hover menu rubriques */
.fsg-menu li a,
.fsg-main-nav li a {
    position: relative;
    transition: color 0.22s ease;
}

.fsg-menu li a:hover,
.fsg-main-nav li a:hover {
    color: #e30613;
}

.fsg-menu li a::after,
.fsg-main-nav li a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 4px;
    width: 0;
    height: 2px;
    background: #e30613;
    border-radius: 999px;
    transform: translateX(-50%);
    transition: width 0.22s ease;
}

.fsg-menu li a:hover::after,
.fsg-main-nav li a:hover::after {
    width: 100%;
}

/* Bouton langue desktop réduit au scroll */
.fsg-desktop-lang-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.fsg-desktop-lang-flag {
    font-size: 16px;
    line-height: 1;
}

.fsg-desktop-lang-label {
    line-height: 1;
}

/* Accessibilité */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        transition: none !important;
        animation: none !important;
        scroll-behavior: auto !important;
    }
}

/* =========================================================
   CENTRAGE GLOBAL DES VIGNETTES PRODUITS
   HOME + CATEGORIES + SHOP + RELATED PRODUCTS
========================================================= */

.woocommerce ul.products,
.related.products ul.products,
.upsells.products ul.products {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    align-items: stretch !important;
    gap: 42px 36px !important;
    width: 100% !important;
}

/* Supprime les vieux float WooCommerce */
.woocommerce ul.products::before,
.woocommerce ul.products::after,
.related.products ul.products::before,
.related.products ul.products::after,
.upsells.products ul.products::before,
.upsells.products ul.products::after {
    display: none !important;
}

/* Cartes produits */
.woocommerce ul.products li.product,
.related.products ul.products li.product,
.upsells.products ul.products li.product {
    float: none !important;
    display: flex !important;
    flex-direction: column !important;
    margin: 0 !important;
}

/* Produits similaires centrés */
.related.products,
.upsells.products {
    width: 100% !important;
    text-align: center !important;
}

.related.products > h2,
.upsells.products > h2 {
    text-align: center !important;
    margin-bottom: 30px !important;
}

/* FOOTER Steph3D */
.fsg-footer {
    background: #08006b;
    color: #fff;
    padding-right: 2rem;
    padding-left: 2rem;

}

.fsg-footer-title {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 2px;
}

.boxhaute{
    display: flex;
    justify-content: row;
    padding-top: 1.5rem;
}

.footer-menu {
    list-style: none;
    display: flex;
    width: 20%;    
    gap: 20px;
    text-align: left;
    padding-left: 5rem;
}

.cat2{
    width: 20%;
}

.footer-menu li {
    position: relative;
}

.fsg-footer .fond{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.fond .cgu{
    display: flex;
    flex-direction: row;
    font-size: 18px;
    gap: 20px;
}
.fond .sociaux{
    display: flex;
    gap: 20px;
}

.fond .sociaux img{
    width: 50px;
    color: #fff;

}

/*****************************/
/* RESPONSIVE HEADER + PAGES */
/*****************************/
@media (max-width: 1350px) {
    body {
        padding-top: var(--fsg-header-offset, 155px);
    }

    .fsg-container {
        width: min(1200px, calc(100% - 32px));
    }

    .fsg-logo {
        width: 360px;
    }

    .fsg-header-top {
        height: 115px;
    }

    .fsg-header-top-inner {
        height: 115px;
    }

    .fsg-header-actions {
        left: auto;
        right: 255px;
    }

    .fsg-version {
        gap: 8px;
        padding: 7px 12px 9px;
    }

    .fsg-version svg {
        width: 26px;
        height: 18px;
    }

    .fsg-header-tagline {
        left: auto;
        right: 295px;
        bottom: 12px;
        font-size: 18px;
    }

    .fsg-map-france {
        position: relative;
        right: 70px;
        width: 140px;
    }

    .fsg-menu,
    .fsg-main-nav ul {
        gap: 30px;
    }

    .fsg-menu li a,
    .fsg-main-nav li a,
    .fsg-username {
        font-size: 13px;
    }

    .fsg-header.is-scrolled .fsg-header-tagline {
        left: 285px;
        right: auto;
        font-size: 15px;
    }

    .fsg-header.is-scrolled .fsg-map-france {
        right: 100px;
    }

    .fsg-header.is-scrolled .fsg-desktop-lang-dropdown {
        right: 260px;
    }

    .fsg-big-flag {
        top: 111px;
        right: 0;
        width: 78px;
    }

    body.admin-bar .fsg-big-flag {
        top: 143px;
    }
}

@media (max-width: 1100px) {

    body {
        padding-top: var(--fsg-header-offset, 132px);
    }

    .fsg-header-top {
        height: 92px;
    }

    .fsg-header-top-inner {
        height: 92px;
        align-items: flex-end;
    }

    .fsg-logo {
        width: 300px;
    }

    .fsg-logo-link {
        align-self: flex-end;
    }

    .fsg-header-actions {
        right: 210px;
    }

    .fsg-version {
        padding: 6px 10px 8px;
    }

    .fsg-version svg {
        width: 22px;
        height: 16px;
    }

    .fsg-header-tagline {
        right: 240px;
        bottom: 10px;
        font-size: 15px;
    }

    .fsg-map-france {
        position: relative;
        width: 115px;
        right: 55px;
    }

    .fsg-big-flag {
        top: 87px;
        right: 0;
        width: 72px;
    }

    body.admin-bar .fsg-big-flag {
        top: 119px;
    }

    .fsg-menu,
    .fsg-main-nav ul {
        gap: 20px;
    }

    .fsg-menu li a,
    .fsg-main-nav li a,
    .fsg-username {
        font-size: 12px;
    }
}

@media (max-width: 980px) and (min-width: 901px) {
    body {
        padding-top: var(--fsg-header-offset, 132px);
    }

    .fsg-header-top {
        height: 92px;
    }

    .fsg-header-top-inner {
        height: 92px;
        align-items: flex-end;
        justify-content: space-between;
    }

    .fsg-logo-link {
        align-self: flex-end;
        margin-top: 0;
    }

    .fsg-logo {
        width: 270px;
    }

    .fsg-header-actions {
        top: 0;
        left: 50%;
        transform: translateX(-50%);
    }

    .fsg-version {
        gap: 7px;
        padding: 6px 10px 8px;
    }

    .fsg-version svg {
        width: 22px;
        height: 16px;
    }

    .fsg-header-tagline {
        left: 50%;
        right: auto;
        bottom: 11px;
        transform: translateX(-50%);
        font-size: 14px;
        text-align: center;
        white-space: nowrap;
    }

    .fsg-map-france {
        position: absolute;
        right: 38px;
        bottom: 8px;
        width: 100px;
    }

    .fsg-menu,
    .fsg-main-nav ul {
        gap: 15px;
        flex-wrap: nowrap;
    }

    .fsg-menu li a,
    .fsg-main-nav li a,
    .fsg-username {
        font-size: 11px;
        padding: 10px 0;
    }

    .fsg-cart-count {
        width: 18px !important;
        min-width: 18px !important;
        height: 18px !important;
        font-size: 10px;
        margin-left: 5px !important;
    }

    .fsg-big-flag {
        width: 72px;
        top: 88px;
        right: 0;
    }

    body.admin-bar .fsg-big-flag {
        top: 120px;
    }

    .fsg-header.is-scrolled .fsg-header-top {
        height: 78px;
    }

    .fsg-header.is-scrolled .fsg-header-top-inner {
        height: 78px;
    }

    .fsg-header.is-scrolled .fsg-logo {
        width: 220px;
    }

    .fsg-header.is-scrolled .fsg-header-tagline {
        left: 280px;
        right: auto;
        bottom: 28px;
        transform: none;
        font-size: 14px;
    }

    .fsg-header.is-scrolled .fsg-map-france {
        width: 90px;
        right: 95px;
        bottom: 6px;
    }

    .fsg-header.is-scrolled .fsg-desktop-lang-dropdown {
        right: 205px;
        top: 14px;
    }

    .fsg-header.is-scrolled .fsg-big-flag {
        top: 74px;
        width: 68px;
        right: 0;
    }

    body.admin-bar .fsg-header.is-scrolled .fsg-big-flag {
        top: 106px;
    }
}

@media (max-width: 782px) {
    body.admin-bar .fsg-header {
        top: 46px;
    }

    body.admin-bar .fsg-big-flag {
        top: 186px;
    }
}

/* MOBILE */
@media (max-width: 900px) {
    body {
        padding-top: 0;
    }

    .fsg-header {
        position: relative;
        top: 0;
    }

    body.admin-bar .fsg-header {
        top: 0;
    }

    .fsg-header-top {
        height: auto;
        padding: 8px 0 6px;
    }

    .fsg-header-top-inner {
        height: auto;
        min-height: auto;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        column-gap: 10px;
        row-gap: 7px;
        padding-top: 0;
    }

    .fsg-logo-link {
        order: 1;
        margin-top: 0;
        align-self: center;
        flex: 0 0 auto;
        width: auto;
        display: flex;
        justify-content: center;
    }

    .fsg-logo {
        width: clamp(170px, 46vw, 245px);
    }

    .fsg-mobile-lang-toggle {
        order: 2;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 32px;
        min-width: 42px;
        min-height: 32px;
        border: 2px solid #08006b;
        background: #fff;
        color: #08006b;
        border-radius: 10px;
        padding: 5px;
        cursor: pointer;
        flex: 0 0 auto;
        transition: background 0.24s ease, border-color 0.24s ease, transform 0.24s ease, box-shadow 0.24s ease;
    }

    .fsg-mobile-lang-toggle:hover,
    .fsg-mobile-lang-toggle.is-open {
        background: #08006b;
        border-color: #08006b;
        transform: translateY(-2px);
        box-shadow: 0 8px 16px rgba(8,0,107,0.22);
    }

    .fsg-mobile-lang-toggle::after {
        content: "";
    }

    .fsg-mobile-lang-toggle svg {
        width: 28px;
        height: 18px;
        border-radius: 3px;
        display: block;
        flex: 0 0 auto;
        box-shadow:
            0 0 0 1px rgba(8,0,107,0.25),
            0 2px 4px rgba(0,0,0,0.18);
        transition: transform 0.24s ease, box-shadow 0.24s ease;
    }

    .fsg-mobile-lang-toggle:hover svg,
    .fsg-mobile-lang-toggle.is-open svg {
        transform: scale(1.08);
        box-shadow:
            0 0 0 1px rgba(255,255,255,0.8),
            0 3px 8px rgba(0,0,0,0.25);
    }

    .fsg-burger-toggle {
        order: 3;
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 4px;
        width: 42px;
        height: 32px;
        min-width: 42px;
        min-height: 32px;
        border: 2px solid #08006b;
        background: #08006b;
        border-radius: 10px;
        cursor: pointer;
        padding: 0;
        flex: 0 0 auto;
        transition: background 0.24s ease, border-color 0.24s ease, transform 0.24s ease, box-shadow 0.24s ease;
    }

    .fsg-burger-toggle:hover,
    .fsg-burger-toggle.is-open {
        background: #e30613;
        border-color: #e30613;
        transform: translateY(-2px);
        box-shadow: 0 8px 16px rgba(227,6,19,0.25);
    }

    .fsg-burger-toggle span {
        display: block;
        width: 20px;
        height: 2px;
        min-height: 2px;
        background: #fff;
        border-radius: 999px;
        flex: 0 0 auto;
        transition: transform 0.24s ease, opacity 0.2s ease, width 0.24s ease;
    }

    .fsg-burger-toggle:hover span {
        width: 22px;
    }

    .fsg-burger-toggle.is-open span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .fsg-burger-toggle.is-open span:nth-child(2) {
        opacity: 0;
    }

    .fsg-burger-toggle.is-open span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

    .fsg-header-actions,
    .fsg-map-france,
    .fsg-big-flag,
    .fsg-desktop-lang-dropdown {
        display: none;
    }

    .fsg-header-tagline {
        order: 4;
        flex: 0 0 100%;
        width: 100%;
        position: static;
        transform: none;
        margin: 0;
        color: #111;
        font-size: 13px;
        line-height: 1.25;
        text-align: center;
        white-space: normal;
    }

    .fsg-main-nav {
        min-height: auto;
    }

    .fsg-main-nav .fsg-container {
        display: block;
        width: 100%;
        padding: 0;
    }

    .fsg-mobile-account {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 7px;
        width: 100%;
        background: #08006b;
        color: #fff;
        min-height: 30px;
        padding: 8px 12px;
        font-size: 12px;
        font-weight: 700;
        text-align: center;
    }

    .fsg-mobile-account a {
        color: #fff;
        text-decoration: none;
    }

    .fsg-menu,
    .fsg-main-nav ul {
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        width: 100%;
        background: #08006b;
        border-top: 1px solid rgba(255,255,255,0.22);
        padding: 0;
    }

    .fsg-menu.is-open,
    .fsg-main-nav ul.is-open {
        display: flex;
    }

    .fsg-menu li,
    .fsg-main-nav li {
        width: 100%;
    }

    .fsg-menu li a,
    .fsg-main-nav li a,
    .fsg-username {
        width: 100%;
        padding: 13px 18px;
        text-align: center;
        font-size: 13px;
        border-bottom: 1px solid rgba(255,255,255,0.16);
    }

    .fsg-menu-separator,
    .fsg-desktop-auth,
    .fsg-desktop-auth-separator {
        display: none !important;
    }

    .fsg-mobile-lang-panel {
        display: none;
        width: 100%;
        background: #fff;
        border-top: 2px solid #08006b;
        border-bottom: 2px solid #08006b;
        padding: 9px 12px;
        box-shadow: 0 10px 22px rgba(0,0,0,0.14);
    }

    .fsg-mobile-lang-panel.is-open {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 9px;
    }

    .fsg-mobile-lang-panel button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 30px;
        border: 2px solid #08006b;
        background: #fff;
        border-radius: 9px;
        padding: 4px;
        cursor: pointer;
        transition: background 0.22s ease, border-color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
    }

    .fsg-mobile-lang-panel button:hover {
        background: #08006b;
        border-color: #08006b;
        transform: translateY(-2px);
        box-shadow: 0 8px 16px rgba(8,0,107,0.22);
    }

    .fsg-mobile-lang-panel button svg {
        width: 28px;
        height: 18px;
        border-radius: 3px;
        display: block;
        transition: transform 0.22s ease, box-shadow 0.22s ease;
    }

    .fsg-mobile-lang-panel button:hover svg {
        transform: scale(1.08);
        box-shadow:
            0 0 0 1px rgba(255,255,255,0.8),
            0 3px 8px rgba(0,0,0,0.25);
    }

    .fsg-hero-slider {
        height: auto;
    }

    .fsg-slider-btn {
        display: none;
    }

    .fsg-slide-content {
        max-width: 78%;
    }

    .fsg-slide-content h1,
    .fsg-slide-content h2 {
        font-size: clamp(17px, 6vw, 28px);
        line-height: 0.98;
        margin-bottom: 6px;
    }

    .fsg-slide-content p {
        font-size: 9px;
        line-height: 1.35;
        margin-bottom: 8px;
    }

    .fsg-btn {
        padding: 7px 12px;
        font-size: 10px;
        border-radius: 999px;
        box-shadow: 0 5px 12px rgba(227,6,19,0.22);
    }

    .fsg-btn:hover {
        transform: translateY(-1px) scale(1.03);
        box-shadow: 0 7px 16px rgba(8,0,107,0.28);
    }

    .fsg-welcome-card,
    .fsg-push-grid {
        flex-direction: column;
    }

    .fsg-welcome-img,
    .fsg-welcome-text,
    .fsg-push-card {
        width: 100%;
    }

    .fsg-welcome-img img {
        height: auto;
    }

    .home .woocommerce ul.products li.product {
        width: calc((100% - 36px) / 2) !important;
    }

    .fsg-footer-inner {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 560px) {
    .fsg-container {
        width: min(100%, calc(100% - 28px));
    }

    .fsg-logo {
        width: 185px;
    }

    .fsg-mobile-lang-toggle {
        width: 38px;
        height: 30px;
        min-width: 38px;
        min-height: 30px;
        margin-left: 6px;
    }

    .fsg-mobile-lang-toggle svg {
        width: 25px;
        height: 17px;
    }

    .fsg-burger-toggle {
        width: 38px;
        height: 30px;
        min-width: 38px;
        min-height: 30px;
    }

    .fsg-burger-toggle span {
        width: 19px;
        height: 2px;
        min-height: 2px;
    }

    .fsg-header-top-inner {
        column-gap: 8px;
        row-gap: 6px;
    }

    .fsg-header-tagline {
        font-size: 11px;
    }

    .fsg-mobile-account {
        font-size: 11px;
        min-height: 28px;
        padding: 7px 10px;
    }

    .fsg-slide-content {
        left: 12px;
        right: 12px;
        max-width: 74%;
    }

    .fsg-slide-content h1,
    .fsg-slide-content h2 {
        font-size: clamp(15px, 6.3vw, 22px);
        line-height: 0.98;
        margin-bottom: 5px;
    }

    .fsg-slide-content p {
        font-size: 8px;
        line-height: 1.25;
        margin-bottom: 6px;
    }

    .fsg-btn {
        padding: 6px 10px;
        font-size: 9px;
    }

    .fsg-welcome,
    .fsg-video-demo,
    .fsg-push-products,
    .fsg-shop-preview {
        padding: 45px 0;
    }

    .fsg-push-card img {
        height: auto;
    }

    .home .woocommerce ul.products li.product {
        width: 100% !important;
    }
}

@media (max-width: 1100px) {

    .home .woocommerce ul.products {
        justify-content: center !important;
        gap: 34px 34px !important;
    }

    .home .woocommerce ul.products li.product {
        width: calc((100% - 102px) / 4) !important;
        min-width: 0 !important;
    }

    .fsg-shop-preview ul.products li.product {
        min-height: 360px;
    }

    .home .woocommerce ul.products li.product .woocommerce-loop-product__title {
        min-height: 58px !important;
        height: 58px !important;
        font-size: 15px;
        line-height: 19px !important;
    }

    .home .woocommerce ul.products li.product .button {
        padding: 10px 14px;
        font-size: 11px;
    }

    .woocommerce ul.products li.product a img {
        height: 180px;
    }
}

/* =========================================================
   HERO SLIDER LARGE SCREEN + FIX FLECHES
========================================================= */

@media (min-width: 1600px) {

    .fsg-slide-content {
        left: 120px;
        top: 50%;
        transform: translateY(-50%);
        max-width: 560px;
        text-align: left;
    }

    .fsg-slide-content h1,
    .fsg-slide-content h2 {
        font-size: clamp(54px, 4vw, 72px);
        line-height: 0.92;
        margin-bottom: 20px;
    }

    .fsg-slide-content p {
        font-size: 20px;
        line-height: 1.45;
        margin-bottom: 28px;
    }

    .fsg-slide-content .fsg-btn {
        font-size: 20px;
        padding: 18px 34px;
    }
}

/* FIX centrage flèches slider */
.fsg-slider-btn {
    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    font-size: 34px;
    line-height: 1;

    text-align: center;
}

.fsg-slider-btn span,
.fsg-slider-btn i,
.fsg-slider-btn svg {
    display: flex;
    align-items: center;
    justify-content: center;
}

.fsg-slider-btn.prev {
    padding-right: 3px;
}

.fsg-slider-btn.next {
    padding-left: 3px;
}

/* =========================================================
   PRODUITS MOBILE : 2 VIGNETTES PAR LIGNE
========================================================= */

@media (max-width: 900px) {

    .home .woocommerce ul.products {
        justify-content: center !important;
        gap: 26px 20px !important;
    }

    .home .woocommerce ul.products li.product {
        width: calc((100% - 20px) / 2) !important;
        min-width: 0 !important;
        padding: 12px 10px 16px !important;
    }

    .woocommerce ul.products li.product a img {
        height: 150px;
    }

    .home .woocommerce ul.products li.product .woocommerce-loop-product__title {
        min-height: 58px !important;
        height: 58px !important;
        font-size: 15px;
        line-height: 18px !important;
        margin-bottom: 10px !important;
    }

    .home .woocommerce ul.products li.product .price {
        font-size: 15px;
        margin-bottom: 16px !important;
    }

    .home .woocommerce ul.products li.product .button {
        width: 100%;
        padding: 10px 8px;
        font-size: 11px;
        line-height: 1.2;
    }

    .fsg-product-flag {
        width: 28px !important;
        height: 28px !important;
        top: -8px !important;
        left: 8px !important;
    }
}

/* =========================================================
   HERO SLIDER : MASQUER LES BOUTONS GAUCHE / DROITE
========================================================= */

.fsg-slider-btn,
.fsg-slider-btn.prev,
.fsg-slider-btn.next {
    display: none !important;
}