/** Shopify CDN: Minification failed

Line 108:4 Unexpected "{"
Line 108:5 Expected identifier but found "%"
Line 114:4 Unexpected "{"
Line 114:5 Expected identifier but found "%"

**/
/* 1. LE BOUTON PARTENAIRE (Seul élément visible à droite) */
.menu-button {
    display: inline-block !important;
    padding: 10px 25px !important;
    background-color: #FC9432 !important; /* Ton Orange Cadenza */
    color: white !important;
    border-radius: 8px !important;
    text-decoration: none !important;
    font-weight: bold !important;
    white-space: nowrap !important;
    transition: transform 0.2s ease !important;
}

.menu-button:hover {
    transform: scale(1.05) !important;
    opacity: 0.9 !important;
}

/* 2. CACHER TOUT LE RESTE (Recherche, Compte, Localisation) */
/* Cible le header et le menu mobile */
.header__icon--search, 
.header__icon--account, 
.header__localization-form, 
.menu-drawer__utility-links,
.menu-drawer__localization,
.menu-drawer__account,
details-modal.header__search,
.header__search,
#HeaderCountryMobileForm {
    display: none !important;
}

/* 3. RÉGLAGE DES SOUS-MENUS (Pour qu'ils ne soient plus coupés) */
.header-wrapper, 
.header, 
.header--middle-left {
    overflow: visible !important;
}

/* Ajustement mobile pour le bouton */
@media screen and (max-width: 989px) {
    .menu-button {
        padding: 6px 12px !important;
        font-size: 12px !important;
    }
}
/* --- SUPPRESSION TOTALE DES POINTS DE LISTE --- */

/* Cible toutes les listes du header et du menu mobile */
.header__inline-menu ul, 
.header__inline-menu li,
.header__submenu,
.header__submenu li,
.menu-drawer__menu ul,
.menu-drawer__menu li,
.list-menu,
.list-menu li {
    list-style: none !important;
    list-style-type: none !important;
    text-decoration: none !important;
}

/* Correction spécifique pour le menu Hamburger mobile */
summary {
    list-style: none !important;
}

summary::-webkit-details-marker {
    display: none !important;
}

/* On s'assure qu'aucune puce ne reste sur les liens */
.header__menu-item, .list-menu__item {
    list-style: none !important;
}
/* --- MASQUER LES CONTRÔLES DU DIAPORAMA --- */

/* Masque les flèches Précédent/Suivant */
.slideshow__controls,
.slideshow__control-wrapper,
.slider-button--prev,
.slider-button--next,
.slideshow__button--prev,
.slideshow__button--next {
    display: none !important;
}

/* Masque les points de navigation (pagination) si tu n'en veux pas non plus */
.slider-counter,
.slideshow__pagination,
.slider-buttons {
    display: none !important;
}

/* Optionnel : Supprime l'espace réservé aux contrôles en bas de l'image */
.slideshow--placeholder {
    margin-bottom: 0 !important;
}
/* Si une seule slide, on cache tout contrôle résiduel */
    {%- if section.blocks.size <= 1 -%}
      .slideshow__arrow, 
      .slider-buttons, 
      .slideshow__controls {
        display: none !important;
      }
    {%- endif -%}