@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

/* =========================================================
   BASE GLOBALE
   ========================================================= */

/* Header collant en haut de page, fond transparent par défaut */
#header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: transparent;
    box-shadow: none;
}

#header .header-nav {
    background: transparent;
}

#header .mobile-header-shell,
#header .mobile-menu-toggle,
#header .mobile-header-actions {
    display: none;
}

/* Couleur de fond générale du site */
body,
#wrapper {
    background-color: #f5f3f0;
}

/* =========================================================
   DESKTOP (>= 768px)
   ========================================================= */
@media (min-width: 1200px) {

    /* Supprime la barre haute Classic qui ajoute une bande parasite */
    #header .header-top {
        display: none !important;
    }

    /* Espace vertical autour de la capsule */
    #header .header-nav {
        padding: 10px 0 !important;
    }

    /* -------------------------------------------------------
       Capsule principale (barre arrondie semi-transparente)
       ------------------------------------------------------- */
    #header .header-nav>.container {
        position: relative;
        margin: 0 12px !important;
        width: auto !important;
        max-width: none !important;
        border-radius: 30px;
        background: rgba(160, 160, 160, 0.715) !important;
        -webkit-backdrop-filter: blur(6px);
        backdrop-filter: blur(6px);
        box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
        padding-left: 16px;
        padding-right: 16px;
        overflow: visible;
    }

    #header .header-nav>.container>.row {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    /* Grille à 3 colonnes : menu | logo | compte+panier */
    #header .header-nav .hidden-lg-down {
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) !important;
        align-items: center !important;
        column-gap: 18px;
        min-height: 70px;
        background: transparent !important;
    }

    /* =========================
       GAUCHE : ETS Mega Menu
       ========================= */

    /* Conteneur du menu — calé à gauche, fond transparent */
    #header .header-nav .wrapper_menu {
        justify-self: start;
        width: 100%;
        min-width: 0;
        overflow: visible;
        background: transparent !important;
    }

    /* Reset visuel de tous les conteneurs ETS Mega Menu
       (fond, bordures, ombres, positionnement, débordement) */
    #header .wrapper_menu .ets_mm_megamenu,
    #header .wrapper_menu .ets_mm_megamenu>.container,
    #header .wrapper_menu .ets_mm_megamenu_content {
        background: transparent !important;
        border: 0 !important;
        box-shadow: none !important;
        position: static !important;
        overflow: visible !important;
    }

    #header .wrapper_menu .mm_menus_ul,
    #header .wrapper_menu .mm_menus_ul>li,
    #header .wrapper_menu .mm_menus_ul>li>a {
        background: transparent !important;
        border: 0 !important;
        box-shadow: none !important;
    }

    /* Liste horizontale des items du menu */
    #header .wrapper_menu .mm_menus_ul {
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
        overflow: visible;
        column-gap: 12px;
        min-height: 58px;
        margin: 0;
        padding: 0;
    }

    /* Style typographique des liens du menu */
    #header .wrapper_menu .mm_menus_ul>li>a {
        font-family: 'Inter', sans-serif !important;
        font-weight: 500 !important;
        font-style: normal !important;
        font-size: 0.72rem !important;
        letter-spacing: 0 !important;
        text-transform: uppercase !important;
        line-height: 1 !important;
        color: #fff !important;
        text-decoration: none !important;
        padding: 8px 10px !important;
        margin: 0 !important;
        display: inline-flex !important;
        align-items: center !important;
    }

    /* Items du menu :
       - position static pour que le dropdown prenne toute la largeur
       - padding-bottom élargi pour agrandir la zone de hover */
    #header .wrapper_menu .mm_menus_ul>li {
        position: static !important;
        padding-bottom: 16px;
        margin-bottom: -16px;
    }

    /* Panneau dropdown ETS — pleine largeur sous la capsule */
    #header .wrapper_menu .mm_columns_ul {
        left: -12px !important;
        right: auto !important;
        width: calc(100% + 24px) !important;
        max-width: none !important;
        min-width: 0 !important;
        margin-left: 0 !important;
        background: #fff !important;
        border: none !important;
        border-top: 1px solid #ececec !important;
        box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1) !important;
        padding: 24px 40px !important;
        box-sizing: border-box !important;
    }

    /* Restaure l'alignement en 3 colonnes des blocs du mega menu */
    #header .wrapper_menu .ets_mm_megamenu .mm_columns_ul>.mm_columns_li {
        float: left !important;
        display: block !important;
        min-height: 0 !important;
    }

    /* Garde une hauteur confortable uniquement pour les blocs visuels */
    #header .wrapper_menu .ets_mm_megamenu .mm_columns_ul>.mm_columns_li:has(img),
    #header .wrapper_menu .ets_mm_megamenu .mm_columns_ul>.mm_columns_li:has(picture) {
        min-height: 280px !important;
    }

    /* Pont invisible entre le lien et le dropdown (évite la fermeture au survol) */
    #header .wrapper_menu .mm_columns_ul::before {
        content: '';
        position: absolute;
        top: -20px;
        left: 0;
        right: 0;
        height: 20px;
    }

    /* =========================
       CENTRE : Logo
       ========================= */
    #header #_desktop_logo.header-center-logo {
        position: static !important;
        transform: none !important;
        top: auto !important;
        left: auto !important;
        justify-self: center;
        z-index: 10;
        margin: 0 !important;
        float: none !important;
    }

    #header #_desktop_logo.header-center-logo img {
        max-height: 80px;
        width: auto;
    }

    /* =========================
       DROITE : compte + panier
       ========================= */
    #header .header-nav .right-nav {
        justify-self: end;
        width: max-content;
        margin-left: 0 !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: flex-end;
        white-space: nowrap;
        flex-wrap: nowrap;
        gap: 22px;
        min-height: 58px;
        padding-top: 0;
        z-index: 21;
    }

    /* Bouton loupe (recherche) */
    #header .header-search-toggle {
        padding: 8px 0 !important;
        margin: 0 !important;
        background: transparent !important;
        border: 0 !important;
        box-shadow: none !important;
        color: #fff !important;
        cursor: pointer;
        display: inline-flex !important;
        align-items: center !important;
    }

    /* Blocs compte et panier — alignement flex horizontal */
    #header #_desktop_user_info,
    #header #_desktop_cart,
    #header #_desktop_user_info .user-info,
    #header #_desktop_cart .blockcart {
        float: none !important;
        display: inline-flex !important;
        align-items: center !important;
        gap: 22px !important;
        margin: 0 !important;
    }

    /* Style typographique unifié pour tous les liens/textes de la zone droite */
    #header .header-nav .right-nav a,
    #header .header-nav .right-nav .blockcart,
    #header .header-nav .right-nav span {
        font-family: 'Inter', sans-serif !important;
        font-weight: 500 !important;
        font-style: normal !important;
        font-size: 0.72rem !important;
        letter-spacing: 0 !important;
        text-transform: uppercase !important;
        line-height: 1 !important;
        color: #fff !important;
        text-decoration: none !important;
        padding: 8px 0 !important;
        margin: 0 !important;
        background: transparent !important;
        border: 0 !important;
        box-shadow: none !important;
        border-radius: 0;
        display: inline-flex !important;
        align-items: center !important;
    }

    #header #_desktop_user_info .user-info>a {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    /* Pas de changement de fond au survol des liens/panier */
    #header .header-nav .right-nav a:hover,
    #header .header-nav .right-nav .blockcart:hover {
        background: transparent !important;
    }

    /* En-tête interne du bloc panier */
    #header #_desktop_cart .header {
        display: inline-flex !important;
        align-items: center !important;
        padding: 6px 0 !important;
        margin: 0 !important;
        background: transparent !important;
        border: 0 !important;
        box-shadow: none !important;
    }

    /* Compteur d'articles dans le panier */
    #header #_desktop_cart .cart-products-count {
        display: inline-block !important;
        position: static !important;
        margin: 0 0 0 2px !important;
        line-height: 1 !important;
        vertical-align: middle;
        color: #fff !important;
    }

    /* Icônes de la zone droite en blanc */
    #header .header-nav .right-nav i {
        color: #fff !important;
    }

    /* -------------------------------------------------------
       Bande de recherche sous la capsule (fermée par défaut)
       ------------------------------------------------------- */
    #header .header-search-panel {
        display: none !important;
        width: 100%;
        padding: 0 28px;
        background: #fff;
    }

    /* Ouverture via JS (classe .is-open) */
    #header .header-search-panel.is-open {
        display: block !important;
    }

    #header .header-search-form {
        width: 100%;
        margin: 0;
        display: flex;
        align-items: center;
        position: relative;
    }

    #header .header-search-form input[type="text"] {
        width: 100%;
        height: 50px;
        border: none;
        border-bottom: 1.5px solid #111;
        border-radius: 0;
        padding: 0 40px 0 0;
        font-family: 'Inter', sans-serif;
        font-size: 0.85rem;
        font-weight: 400;
        letter-spacing: 0.05em;
        text-transform: uppercase;
        color: #111;
        background: transparent;
        outline: none;
    }

    #header .header-search-form input[type="text"]::placeholder {
        color: #888;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        font-size: 0.85rem;
    }

    #header .header-search-submit {
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 4px;
        display: flex;
        align-items: center;
    }

    #header .header-search-submit i {
        color: #111;
        font-size: 22px;
    }

    /* -------------------------------------------------------
       État "recherche ouverte" :
       fond blanc, capsule plate, texte noir
       ------------------------------------------------------- */
    #header.search-open,
    #header.search-open .header-banner,
    #header.search-open .header-nav,
    #header.search-open .header-nav>.container,
    #header.search-open .header-nav>.container>.row {
        background: #fff !important;
        -webkit-backdrop-filter: none !important;
        backdrop-filter: none !important;
        box-shadow: none !important;
    }

    #header.search-open .header-nav {
        padding: 0 !important;
    }

    #header.search-open .header-nav>.container {
        border-radius: 0;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    /* Texte et icônes passent en noir quand la recherche est ouverte */
    #header.search-open .wrapper_menu .mm_menus_ul>li>a,
    #header.search-open .header-nav .right-nav a,
    #header.search-open .header-nav .right-nav .blockcart,
    #header.search-open .header-nav .right-nav span,
    #header.search-open .header-nav .right-nav i,
    #header.search-open .header-search-toggle {
        color: #111 !important;
    }

    /* Décalage du contenu sous le header sticky */
    #wrapper {
        padding-top: 72px;
    }
}

@media (max-width: 1199px) {

    #header {
        background: transparent;
        box-shadow: none;
    }

    #header .header-nav {
        padding: 10px 0 8px !important;
        background: transparent;
    }

    #header .header-nav>.container {
        position: relative;
        margin: 0 12px !important;
        width: auto !important;
        max-width: none !important;
        padding-left: 0;
        padding-right: 0;
    }

    #header .header-nav>.container>.row {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    #header .header-nav .mobile {
        display: block !important;
        width: 100%;
    }

    #header .mobile-header-shell {
        position: relative;
        display: grid;
        grid-template-columns: 56px 1fr auto;
        align-items: center;
        min-height: 68px;
        padding: 0 14px;
        border-radius: 26px;
        background: rgba(160, 160, 160, 0.715);
        -webkit-backdrop-filter: blur(6px);
        backdrop-filter: blur(6px);
        box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
    }

    #header .mobile-menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
        padding: 0 0 2px;
        border: 0;
        border-radius: 999px;
        background: transparent;
        color: #fff;
        box-shadow: none;
        cursor: pointer;
        z-index: 2;
    }

    #header .mobile-menu-toggle i {
        font-size: 24px;
        color: inherit;
    }

    #header .mobile-header-actions {
        display: inline-flex;
        align-items: center;
        justify-content: flex-end;
        gap: 12px;
        grid-column: 3;
        grid-row: 1;
        z-index: 2;
    }

    #header #_mobile_user_info,
    #header #_mobile_cart,
    #header #_mobile_user_info .user-info,
    #header #_mobile_cart .blockcart {
        float: none !important;
        display: inline-flex !important;
        align-items: center !important;
        margin: 0 !important;
    }

    #header #_mobile_user_info .user-info>a,
    #header #_mobile_cart .blockcart,
    #header #_mobile_cart .header,
    #header #_mobile_cart .header a,
    #header #_mobile_user_info a,
    #header .mobile-search-toggle {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 0 !important;
        margin: 0 !important;
        background: transparent !important;
        color: #fff !important;
        border: 0 !important;
        box-shadow: none !important;
        text-decoration: none !important;
    }

    #header #_mobile_user_info .user-info>a {
        width: 22px;
        overflow: hidden;
        font-size: 0 !important;
        line-height: 0 !important;
        white-space: nowrap;
    }

    #header #_mobile_user_info .user-info>a i,
    #header #_mobile_user_info .user-info>a .material-icons {
        font-size: 20px !important;
        line-height: 1 !important;
    }

    #header .mobile-search-toggle {
        width: 22px;
        height: 22px;
        border-radius: 999px;
        cursor: pointer;
    }

    #header .mobile-search-toggle i {
        font-size: 21px;
        color: inherit;
    }

    #header #_mobile_cart .cart-products-count {
        color: #fff !important;
        margin-left: 2px !important;
    }

    #header #_mobile_logo {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        display: flex;
        align-items: center;
        justify-content: center;
        min-width: 0;
        z-index: 1;
        pointer-events: auto;
    }

    #header #_mobile_logo a,
    #header #_mobile_logo h1 {
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0;
    }

    #header #_mobile_logo img {
        width: auto;
        max-height: 42px;
    }

    #header .header-top {
        padding-top: 0;
        background: transparent;
    }

    #header .header-top>.container {
        padding-left: 12px;
        padding-right: 12px;
    }

    #header .header-top-right {
        display: none;
    }

    #header #search_widget,
    #header .header-top .search-widgets,
    #header .header-top .search-widget {
        display: none !important;
    }

    #header .header-search-panel {
        display: none !important;
        width: auto;
        margin: 10px 12px 0;
        padding: 0;
        background: transparent;
    }

    #header .header-search-panel.is-open {
        display: block !important;
    }

    #header .header-search-form {
        position: relative;
        display: flex;
        align-items: center;
        width: 100%;
    }

    #header .header-search-form input[type="text"] {
        width: 100%;
        height: 48px;
        padding: 0 52px 0 16px;
        border: 0;
        border-radius: 18px;
        background: #f5f3f0;
        font-family: 'Inter', sans-serif;
        font-size: 0.95rem;
        font-weight: 400;
        letter-spacing: 0;
        text-transform: none;
        color: #111;
        box-shadow: inset 0 0 0 1px rgba(17, 17, 17, 0.08);
    }

    #header .header-search-form input[type="text"]::placeholder {
        color: #7d786f;
        text-transform: none;
        letter-spacing: 0;
        font-size: 0.95rem;
    }

    #header .header-search-submit {
        position: absolute;
        top: 50%;
        right: 14px;
        transform: translateY(-50%);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 30px;
        height: 30px;
        padding: 0;
        border: 0;
        background: transparent;
        color: #111;
    }

    #header .header-search-submit i {
        font-size: 21px;
        color: inherit;
    }

    #mobile_top_menu_wrapper {
        position: fixed;
        inset: 0;
        display: none;
        margin: 0;
        padding: 88px 14px 18px !important;
        background: rgba(17, 17, 17, 0.16);
        z-index: 999;
    }

    #header.mobile-menu-open #mobile_top_menu_wrapper {
        display: block !important;
    }

    #mobile_top_menu_wrapper .mobile-megamenu-panel {
        width: 100%;
        height: calc(100vh - 106px);
        padding: 0;
        border-radius: 28px;
        background: #f5f3f0;
        box-shadow: 0 20px 44px rgba(0, 0, 0, 0.16);
        overflow: hidden;
    }

    #mobile_top_menu_wrapper .js-top-menu-bottom {
        display: none;
    }

    #mobile_top_menu_wrapper .ets_mm_megamenu,
    #mobile_top_menu_wrapper .ets_mm_megamenu .container,
    #mobile_top_menu_wrapper .ets_mm_megamenu_content {
        height: 100%;
        margin: 0 !important;
        padding: 0 !important;
        background: transparent !important;
        box-shadow: none !important;
    }

    #mobile_top_menu_wrapper .ets_mm_megamenu .ybc-menu-toggle {
        display: none !important;
    }

    #mobile_top_menu_wrapper .ets_mm_megamenu .mm_menus_ul {
        display: block !important;
        float: none !important;
        width: 100%;
        height: 100%;
        margin: 0;
        padding: 0 0 18px;
        background: #f5f3f0 !important;
        overflow: auto;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
    }

    #mobile_top_menu_wrapper .ets_mm_megamenu .mm_menus_li {
        float: none;
        width: 100%;
        border-top: 1px solid rgba(17, 17, 17, 0.08);
    }

    #mobile_top_menu_wrapper .ets_mm_megamenu .mm_menus_li:first-child {
        border-top: 0;
    }

    #mobile_top_menu_wrapper .ets_mm_megamenu .close_menu {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        padding: 20px 18px 18px;
        background: transparent;
        color: #1f1f1f;
        font-size: 0.92rem;
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
    }

    #mobile_top_menu_wrapper .ets_mm_megamenu .close_menu .pull-left,
    #mobile_top_menu_wrapper .ets_mm_megamenu .close_menu .pull-right {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        float: none;
    }

    #mobile_top_menu_wrapper .ets_mm_megamenu .close_menu .pull-left {
        visibility: hidden;
        pointer-events: none;
    }

    #mobile_top_menu_wrapper .ets_mm_megamenu .close_menu .pull-right {
        cursor: pointer;
        margin-left: auto;
    }

    #mobile_top_menu_wrapper .ets_mm_megamenu .mm_menus_back_icon {
        border-left-color: #1f1f1f;
        border-top-color: #1f1f1f;
    }

    #mobile_top_menu_wrapper .ets_mm_megamenu .mm_menus_li>a {
        display: block !important;
        width: 100%;
        padding: 18px 52px 18px 18px !important;
        font-family: 'Inter', sans-serif !important;
        font-size: 0.95rem !important;
        font-weight: 600 !important;
        letter-spacing: 0.02em !important;
        text-transform: uppercase !important;
        color: #1f1f1f !important;
        background: transparent !important;
    }

    #mobile_top_menu_wrapper .ets_mm_megamenu .arrow {
        right: 12px;
        width: 32px;
        height: 32px;
        margin-top: 10px;
    }

    #mobile_top_menu_wrapper .ets_mm_megamenu .arrow:before {
        border-left-color: #1f1f1f;
        border-top-color: #1f1f1f;
    }

    #mobile_top_menu_wrapper .ets_mm_megamenu .mm_columns_ul {
        padding: 4px 18px 18px !important;
        background: #efede8 !important;
        border: 0 !important;
    }

    #mobile_top_menu_wrapper .ets_mm_megamenu .mm_columns_ul.active {
        display: block !important;
    }

    #mobile_top_menu_wrapper .ets_mm_megamenu .mm_columns_li,
    #mobile_top_menu_wrapper .ets_mm_megamenu .mm_blocks_li {
        width: 100%;
        padding: 0 !important;
        border: 0 !important;
        margin: 0 !important;
    }

    #mobile_top_menu_wrapper .ets_mm_megamenu .ets_mm_block>h4,
    #mobile_top_menu_wrapper .ets_mm_megamenu .ets_mm_block_content a,
    #mobile_top_menu_wrapper .ets_mm_megamenu .ets_mm_categories a {
        color: #3b3833 !important;
    }

    #header.mobile-menu-open .header-search-panel {
        display: none !important;
    }

    #header.mobile-menu-open .mobile-header-shell {
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
    }

    body.yd-mobile-menu-open {
        overflow: hidden;
    }

    #wrapper {
        padding-top: 0;
    }
}

/* =========================================================
   CARTES PRODUIT — hover premium (Classic)
   Appliqué aux listes produits, produits vedettes et accessoires
   ========================================================= */

/* Conteneur relatif pour le positionnement des badges et actions */
:is(.products, .featured-products, .product-accessories) .product-miniature {
    position: relative;
}

/* Vignette : masque le débordement pour le zoom au hover */
:is(.products, .featured-products, .product-accessories) .product-miniature .product-thumbnail {
    display: block;
    overflow: hidden;
}

/* Image produit : transition douce pour le zoom */
:is(.products, .featured-products, .product-accessories) .product-miniature .product-thumbnail img {
    width: 100%;
    height: auto;
    transition: transform .25s ease, opacity .25s ease;
    will-change: transform;
}

/* Conteneur de vignette : bordure subtile + élévation au hover */
:is(.products, .featured-products, .product-accessories) .product-miniature .thumbnail-container {
    border: 1px solid rgba(0, 0, 0, .06);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
    will-change: transform;
    background: #fff;
}

:is(.products, .featured-products, .product-accessories) .product-miniature:hover .thumbnail-container {
    transform: translateY(-3px);
    border-color: rgba(0, 0, 0, .10);
    box-shadow: 0 10px 24px rgba(0, 0, 0, .10);
}

/* Léger zoom de l'image au survol */
:is(.products, .featured-products, .product-accessories) .product-miniature:hover .product-thumbnail img {
    transform: scale(1.03);
}

/* Boutons/actions qui apparaissent au hover (ajout panier, vue rapide…) */
:is(.products, .featured-products, .product-accessories) .product-miniature .highlighted-informations {
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 10px;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .18s ease, transform .18s ease;
    z-index: 3;
    pointer-events: none;
}

:is(.products, .featured-products, .product-accessories) .product-miniature:hover .highlighted-informations {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* Titre produit : léger fondu au survol */
:is(.products, .featured-products, .product-accessories) .product-miniature .product-title a {
    transition: opacity .15s ease;
}

:is(.products, .featured-products, .product-accessories) .product-miniature:hover .product-title a {
    opacity: .9;
}

/* Badges (Nouveau / Promo) — pastilles arrondies avec ombre */
:is(.products, .featured-products, .product-accessories) .product-miniature .product-flags {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 4;
}

:is(.products, .featured-products, .product-accessories) .product-miniature .product-flags .product-flag {
    margin: 0 0 6px 0;
    padding: 6px 10px;
    font-size: 12px;
    line-height: 1;
    border-radius: 999px;
    box-shadow: 0 6px 14px rgba(0, 0, 0, .10);
}

/* =========================================================
   CARROUSEL HOME (ps_imageslider — Bootstrap Carousel)
   Conserve le ratio des images et laisse la caption visible
   ========================================================= */
#carousel {
    width: min(96vw, 1860px);
    margin: 18px auto 28px;
    border-radius: 22px;
    overflow: hidden;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    background: #f7f4ef;
}

#carousel .carousel-inner {
    border-radius: 22px !important;
    overflow: hidden !important;
    background: #f7f4ef;
}

#carousel .carousel-item {
    background: #f7f4ef;
    height: auto !important;
}

#carousel .carousel-item>a,
#carousel .carousel-item figure {
    display: block;
    height: auto !important;
    margin: 0;
}

#carousel .carousel-item img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    border-radius: 22px !important;
}

#carousel .carousel-item .caption {
    position: absolute;
    left: clamp(18px, 3vw, 42px);
    right: auto;
    bottom: clamp(18px, 4vw, 42px);
    max-width: min(460px, 42%);
    margin: 0;
    padding: clamp(16px, 2vw, 24px);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.88);
    color: #1d1d1d;
    box-shadow: 0 18px 32px rgba(0, 0, 0, 0.08);
    z-index: 2;
}

#carousel .carousel-item .caption .caption-legend {
    margin-bottom: 10px;
    font-size: clamp(1.35rem, 2vw, 2rem);
    font-weight: 700;
    line-height: 1.15;
    text-transform: uppercase;
    color: #111;
}

#carousel .carousel-item .caption .caption-description,
#carousel .carousel-item .caption .caption-description p,
#carousel .carousel-item .caption .caption-description h3 {
    margin: 0;
    color: #3b3833;
    font-size: clamp(0.95rem, 1.1vw, 1.05rem);
    line-height: 1.45;
}

@media (max-width: 1199px) {
    #carousel {
        width: 97vw;
        border-radius: 18px;
    }

    #carousel,
    #carousel .carousel-inner,
    #carousel .carousel-item img {
        border-radius: 18px !important;
    }

    #carousel .carousel-item .caption {
        left: 20px;
        right: 20px;
        bottom: 20px;
        max-width: 520px;
    }
}

@media (max-width: 767px) {
    #carousel {
        width: 98vw;
        margin: 12px auto 20px;
        border-radius: 14px;
    }

    #carousel,
    #carousel .carousel-inner,
    #carousel .carousel-item img {
        border-radius: 14px !important;
    }

    #carousel .carousel-item .caption {
        position: static;
        max-width: none;
        margin: 0;
        padding: 18px 18px 22px;
        border-radius: 0;
        background: #f7f4ef;
        box-shadow: none;
    }

    #carousel .carousel-item .caption .caption-legend {
        font-size: 1.15rem;
    }
}

/* =========================================================
   CARROUSEL HOME (ps_imageslider — ResponsiveSlides)
   Même logique visuelle que le fallback Bootstrap
   ========================================================= */
.homeslider-container {
    width: min(96vw, 1860px);
    margin: 18px auto 28px;
    float: none;
    border-radius: 22px;
    overflow: hidden;
    position: relative;
    background: #f7f4ef;
}

.homeslider-container .rslides,
.homeslider-container .rslides .slide,
.homeslider-container .rslides .slide>a {
    display: block;
    margin: 0;
    padding: 0;
}

.homeslider-container .rslides {
    border-radius: 22px;
    overflow: hidden;
    background: #f7f4ef;
}

.homeslider-container .rslides .slide {
    background: #f7f4ef;
    height: auto !important;
}

.homeslider-container .rslides .slide img {
    display: block;
    width: 100%;
    height: auto !important;
    max-height: none !important;
    object-fit: contain;
    border: 0;
    border-radius: 22px;
}

.homeslider-container .caption {
    position: absolute;
    left: clamp(18px, 3vw, 42px);
    right: auto;
    bottom: clamp(18px, 4vw, 42px);
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: min(460px, 42%);
    margin: 0;
    padding: clamp(16px, 2vw, 24px);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.88);
    color: #1d1d1d;
    box-shadow: 0 18px 32px rgba(0, 0, 0, 0.08);
    z-index: 2;
}

.homeslider-container .caption-legend {
    display: block;
    margin: 0;
    font-size: clamp(1.35rem, 2vw, 2rem);
    font-weight: 700;
    line-height: 1.15;
    text-transform: uppercase;
    color: #111;
}

.homeslider-container .caption-description,
.homeslider-container .caption-description p,
.homeslider-container .caption-description h3 {
    margin: 0;
    color: #3b3833;
    font-size: clamp(0.95rem, 1.1vw, 1.05rem);
    line-height: 1.45;
}

.homeslider-container .rslides_nav {
    z-index: 4;
}

@media (max-width: 1199px) {
    .homeslider-container {
        width: 97vw;
        border-radius: 18px;
    }

    .homeslider-container,
    .homeslider-container .rslides,
    .homeslider-container .rslides .slide img {
        border-radius: 18px;
    }

    .homeslider-container .caption {
        left: 20px;
        right: 20px;
        bottom: 20px;
        max-width: 520px;
    }
}

@media (max-width: 767px) {
    .homeslider-container {
        width: 98vw;
        margin: 12px auto 20px;
        border-radius: 14px;
    }

    .homeslider-container,
    .homeslider-container .rslides,
    .homeslider-container .rslides .slide img {
        border-radius: 14px;
    }

    .homeslider-container .caption {
        position: static;
        max-width: none;
        margin: 0;
        padding: 18px 18px 22px;
        border-radius: 0;
        background: #f7f4ef;
        box-shadow: none;
    }

    .homeslider-container .caption-legend {
        font-size: 1.15rem;
    }
}

/* Cache l'ancien slider natif PrestaShop sur la home lorsque ETS prend le relais */
#index .homeslider-container,
#index #carousel {
    display: none !important;
}

/* Fallback ETS: garde la première slide visible tant que le JS n'a pas activé une slide */
.ets_multilayerslider:not(.mls-ready) .mls_slides_front>li:first-child {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Ajustements du slider ETS sur la home */
#index .ets_multilayerslider {
    width: min(calc(100vw - 120px), 1680px);
    max-width: min(calc(100vw - 120px), 1680px);
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    margin: 0 0 48px;
}

#index .ets_multilayerslider .mls_nav>div {
    width: 56px;
    height: 56px;
    border-radius: 999px;
    background: rgba(34, 34, 34, 0.78);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

#index .ets_multilayerslider .mls_slider:hover .mls_nav>div {
    width: 56px;
    height: 56px;
    line-height: 56px;
    background: rgba(34, 34, 34, 0.88);
    border-radius: 999px;
}

#index .ets_multilayerslider .mls_nav>div:before {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-width: 0;
    height: 100%;
    float: none;
    font-family: inherit;
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
    color: #fff;
}

#index .ets_multilayerslider .mls_prev:before {
    content: "\2039";
}

#index .ets_multilayerslider .mls_next:before {
    content: "\203A";
}

#index .ets_multilayerslider .mls_prev {
    margin-left: 18px;
}

#index .ets_multilayerslider .mls_next {
    margin-right: 18px;
}

@media (max-width: 991px) {
    #index .ets_multilayerslider {
        width: min(calc(100vw - 24px), 1680px);
        max-width: min(calc(100vw - 24px), 1680px);
        left: 50%;
        transform: translateX(-50%);
        margin-bottom: 36px;
    }
}

@media (max-width: 767px) {
    #index .ets_multilayerslider {
        width: min(calc(100vw - 28px), 1680px);
        max-width: min(calc(100vw - 28px), 1680px);
        margin-top: 22px;
        margin-bottom: 28px;
    }

    #index .ets_multilayerslider .sl_des,
    #index .ets_multilayerslider .sl_button,
    #index .ets_multilayerslider .mls_slider_running {
        display: none !important;
    }
}

/* =========================================================
   FICHE PRODUIT CLASSIQUE — refonte premium inspirée Mila Matcha
   Retour arrière facile : supprimer ce bloc complet.
   Exclusion : ne s'applique pas aux pages Simple Designer
   (le module ajoute la classe has-simpledesigner sur <html>)
   ========================================================= */

html:not(.has-simpledesigner) .page-product #wrapper {
    background:
        radial-gradient(circle at top left, rgba(0, 0, 0, 0.025), transparent 34%),
        linear-gradient(180deg, #fff 0%, #fbfbf8 100%);
}

html:not(.has-simpledesigner) .page-product #main {
    width: min(96vw, 1680px);
    margin: 0 auto;
    padding: 34px 0 60px;
}

html:not(.has-simpledesigner) .page-product .breadcrumb {
    margin-bottom: 26px;
    padding: 0;
    background: transparent;
    font-size: 12px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #8d8d8d;
}

html:not(.has-simpledesigner) .page-product .product-container {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
    gap: clamp(42px, 5vw, 92px);
    align-items: start;
    margin: 0;
}

html:not(.has-simpledesigner) .page-product .product-container>[class*="col-"] {
    width: auto;
    max-width: none;
    flex: none;
    padding: 0;
}

html:not(.has-simpledesigner) .page-product .product-container>.col-md-6:first-child {
    position: sticky;
    top: 108px;
}

html:not(.has-simpledesigner) .page-product #content.page-content {
    margin: 0;
}

html:not(.has-simpledesigner) .page-product .images-container {
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 22px;
    align-items: start;
}

html:not(.has-simpledesigner) .page-product .product-cover {
    position: relative;
    min-height: clamp(520px, 70vh, 860px);
    border-radius: 28px;
    overflow: hidden;
    background:
        radial-gradient(circle at top, rgba(255, 255, 255, 0.9), rgba(245, 243, 238, 0.92) 34%, rgba(236, 233, 226, 0.95) 100%);
    box-shadow:
        0 20px 70px rgba(0, 0, 0, 0.08),
        inset 0 0 0 1px rgba(0, 0, 0, 0.04);
}

html:not(.has-simpledesigner) .page-product .product-cover img,
html:not(.has-simpledesigner) .page-product .product-cover .js-qv-product-cover {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: clamp(26px, 4vw, 46px);
}

html:not(.has-simpledesigner) .page-product .product-cover .layer {
    top: 18px;
    right: 18px;
    left: auto;
    bottom: auto;
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.10);
}

html:not(.has-simpledesigner) .page-product .mask {
    order: -1;
    width: auto;
    max-height: none;
    margin: 0;
    overflow: visible;
}

html:not(.has-simpledesigner) .page-product .product-images {
    display: grid;
    gap: 14px;
    margin: 0;
}

html:not(.has-simpledesigner) .page-product .product-images>li.thumb-container {
    display: block;
}

html:not(.has-simpledesigner) .page-product .product-images>li.thumb-container .thumb {
    width: 100%;
    max-width: none;
    margin: 0;
    border: 1px solid rgba(17, 17, 17, 0.1);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

html:not(.has-simpledesigner) .page-product .product-images>li.thumb-container .thumb:hover,
html:not(.has-simpledesigner) .page-product .product-images>li.thumb-container .thumb.selected {
    transform: translateY(-2px);
    border: 1px solid #111;
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.12);
}

html:not(.has-simpledesigner) .page-product h1.h1 {
    margin: 0 0 16px;
    font-size: clamp(2.1rem, 3.2vw, 3.5rem);
    line-height: 0.96;
    font-weight: 800;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    color: #111;
}

html:not(.has-simpledesigner) .page-product .product-prices {
    margin-bottom: 18px;
}

html:not(.has-simpledesigner) .page-product .product-prices .current-price {
    display: inline-flex;
    align-items: baseline;
    gap: 10px;
}

html:not(.has-simpledesigner) .page-product .product-prices .current-price .current-price-value,
html:not(.has-simpledesigner) .page-product .product-prices .current-price span[itemprop="price"] {
    font-size: clamp(1.7rem, 2.2vw, 2.3rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    color: #111;
}

html:not(.has-simpledesigner) .page-product .product-information {
    padding-top: 4px;
}

html:not(.has-simpledesigner) .page-product .product-description-short,
html:not(.has-simpledesigner) .page-product #product-description-short-1,
html:not(.has-simpledesigner) .page-product .product-description {
    color: #262626;
}

html:not(.has-simpledesigner) .page-product #product-description-short-1,
html:not(.has-simpledesigner) .page-product [id^="product-description-short-"] {
    max-width: 38ch;
    margin-bottom: 26px;
    font-size: 1.08rem;
    line-height: 1.65;
    color: #2f2f2f;
}

html:not(.has-simpledesigner) .page-product [id^="product-description-short-"] p:last-child {
    margin-bottom: 0;
}

html:not(.has-simpledesigner) .page-product .product-variants>.product-variants-item {
    margin: 0 0 24px;
}

html:not(.has-simpledesigner) .page-product .product-variants>.product-variants-item label,
html:not(.has-simpledesigner) .page-product .product-variants>.product-variants-item .control-label,
html:not(.has-simpledesigner) .page-product .product-add-to-cart>.control-label {
    display: block;
    margin-bottom: 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #6e6e6e;
}

html:not(.has-simpledesigner) .page-product .product-variants select,
html:not(.has-simpledesigner) .page-product .product-variants input[type="text"],
html:not(.has-simpledesigner) .page-product .product-variants input[type="number"] {
    width: 100%;
    min-height: 58px;
    padding: 0 18px;
    border: 1px solid rgba(17, 17, 17, 0.12);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.94);
    color: #111;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

html:not(.has-simpledesigner) .page-product .product-add-to-cart {
    margin-top: 10px;
}

html:not(.has-simpledesigner) .page-product .product-add-to-cart .product-quantity {
    display: grid;
    grid-template-columns: 116px minmax(0, 1fr);
    gap: 16px;
    align-items: end;
}

html:not(.has-simpledesigner) .page-product .product-add-to-cart .qty {
    width: 100%;
}

html:not(.has-simpledesigner) .page-product #quantity_wanted {
    width: 100%;
    min-height: 62px;
    padding: 0 16px;
    border: 1px solid rgba(17, 17, 17, 0.12);
    border-radius: 20px;
    background: #fff;
    text-align: center;
    font-size: 1.05rem;
    font-weight: 600;
    color: #111;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

html:not(.has-simpledesigner) .page-product .product-add-to-cart .add {
    width: 100%;
}

html:not(.has-simpledesigner) .page-product .product-add-to-cart .add-to-cart {
    width: 100%;
    min-height: 84px;
    padding: 0 28px;
    border: 1px solid #111;
    border-radius: 999px;
    background: #111;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 18px 34px rgba(17, 17, 17, 0.18);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

html:not(.has-simpledesigner) .page-product .product-add-to-cart .add-to-cart:hover,
html:not(.has-simpledesigner) .page-product .product-add-to-cart .add-to-cart:focus {
    transform: translateY(-1px);
    background: #1d1d1d;
    box-shadow: 0 22px 42px rgba(17, 17, 17, 0.22);
}

html:not(.has-simpledesigner) .page-product .product-add-to-cart .add-to-cart i {
    margin-right: 8px;
    vertical-align: middle;
}

html:not(.has-simpledesigner) .page-product #product-availability {
    display: block;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(17, 17, 17, 0.08);
    font-size: 0.96rem;
    color: #444;
}

html:not(.has-simpledesigner) .page-product .product-additional-info {
    margin-top: 26px;
    padding-top: 22px;
    border-top: 1px solid rgba(17, 17, 17, 0.08);
}

html:not(.has-simpledesigner) .page-product .product-additional-info>*:not(:last-child) {
    margin-bottom: 14px;
}

html:not(.has-simpledesigner) .page-product #block-reassurance {
    margin-top: 22px;
    border-top: 1px solid rgba(17, 17, 17, 0.08);
}

html:not(.has-simpledesigner) .page-product #block-reassurance li {
    border-bottom-color: rgba(17, 17, 17, 0.08);
}

html:not(.has-simpledesigner) .page-product #block-reassurance li .block-reassurance-item {
    padding: 18px 0;
}

html:not(.has-simpledesigner) .page-product .tabs {
    margin-top: 42px;
    padding-top: 8px;
}

html:not(.has-simpledesigner) .page-product .tabs .nav-tabs {
    display: flex;
    gap: 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(17, 17, 17, 0.1);
}

html:not(.has-simpledesigner) .page-product .tabs .nav-tabs .nav-item {
    margin: 0;
}

html:not(.has-simpledesigner) .page-product .tabs .nav-tabs .nav-link {
    padding: 0 0 12px;
    border: 0;
    background: transparent;
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #8a8a8a;
}

html:not(.has-simpledesigner) .page-product .tabs .nav-tabs .nav-link.active,
html:not(.has-simpledesigner) .page-product .tabs .nav-tabs .nav-link:hover {
    color: #111;
    box-shadow: inset 0 -2px 0 #111;
}

html:not(.has-simpledesigner) .page-product .tabs .tab-content {
    padding: 26px 0 0;
    background: transparent;
}

html:not(.has-simpledesigner) .page-product .tabs .tab-pane {
    max-width: 72ch;
    color: #313131;
    line-height: 1.75;
}

html:not(.has-simpledesigner) .page-product .tabs .tab-pane p:last-child {
    margin-bottom: 0;
}

html:not(.has-simpledesigner) .page-product .product-accessories,
html:not(.has-simpledesigner) .page-product [id*="productcomments"],
html:not(.has-simpledesigner) .page-product .product-comment-list-item,
html:not(.has-simpledesigner) .page-product .page-footer {
    margin-top: 54px;
}

html:not(.has-simpledesigner) .page-product .product-accessories .h5,
html:not(.has-simpledesigner) .page-product .product-accessories p.h5 {
    margin-bottom: 24px;
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #111;
}

@media (max-width: 1199px) {
    html:not(.has-simpledesigner) .page-product #main {
        width: min(96vw, 1280px);
    }

    html:not(.has-simpledesigner) .page-product .product-container {
        grid-template-columns: minmax(0, 1fr) minmax(340px, 0.92fr);
        gap: 36px;
    }

    html:not(.has-simpledesigner) .page-product .product-container>.col-md-6:first-child {
        top: 92px;
    }

    html:not(.has-simpledesigner) .page-product .product-cover {
        min-height: 500px;
    }
}

@media (max-width: 991px) {
    html:not(.has-simpledesigner) .page-product #main {
        width: min(94vw, 860px);
        padding-top: 24px;
    }

    html:not(.has-simpledesigner) .page-product .product-container {
        display: block;
    }

    html:not(.has-simpledesigner) .page-product .product-container>.col-md-6:first-child {
        position: static;
        margin-bottom: 30px;
    }

    html:not(.has-simpledesigner) .page-product .images-container {
        grid-template-columns: 76px minmax(0, 1fr);
        gap: 16px;
    }

    html:not(.has-simpledesigner) .page-product h1.h1 {
        max-width: 16ch;
    }
}

@media (max-width: 767px) {
    html:not(.has-simpledesigner) .page-product #main {
        width: min(94vw, 680px);
        padding-bottom: 40px;
    }

    html:not(.has-simpledesigner) .page-product .breadcrumb {
        margin-bottom: 18px;
        font-size: 11px;
    }

    html:not(.has-simpledesigner) .page-product .images-container {
        grid-template-columns: 1fr;
    }

    html:not(.has-simpledesigner) .page-product .mask {
        order: 2;
        overflow-x: auto;
        padding-bottom: 4px;
    }

    html:not(.has-simpledesigner) .page-product .product-images {
        display: flex;
        gap: 12px;
        width: max-content;
    }

    html:not(.has-simpledesigner) .page-product .product-images>li.thumb-container {
        width: 72px;
        flex: 0 0 72px;
    }

    html:not(.has-simpledesigner) .page-product .product-cover {
        min-height: 380px;
        border-radius: 22px;
    }

    html:not(.has-simpledesigner) .page-product .product-cover img,
    html:not(.has-simpledesigner) .page-product .product-cover .js-qv-product-cover {
        padding: 22px;
    }

    html:not(.has-simpledesigner) .page-product h1.h1 {
        font-size: clamp(1.8rem, 10vw, 2.5rem);
    }

    html:not(.has-simpledesigner) .page-product [id^="product-description-short-"] {
        max-width: none;
        font-size: 1rem;
    }

    html:not(.has-simpledesigner) .page-product .product-add-to-cart .product-quantity {
        grid-template-columns: 1fr;
    }

    html:not(.has-simpledesigner) .page-product .product-add-to-cart .add-to-cart {
        min-height: 72px;
        font-size: 0.92rem;
    }

    html:not(.has-simpledesigner) .page-product .tabs {
        margin-top: 32px;
    }
}

/* Ajustements V2 : proportions desktop plus maîtrisées */
html:not(.has-simpledesigner) .page-product #main {
    width: min(92vw, 1420px);
}

html:not(.has-simpledesigner) .page-product .product-container {
    grid-template-columns: minmax(0, 760px) minmax(320px, 470px);
    justify-content: center;
    gap: clamp(24px, 2.6vw, 46px);
}

html:not(.has-simpledesigner) .page-product .product-container>.col-md-6:first-child {
    max-width: 760px;
}

html:not(.has-simpledesigner) .page-product .product-container>.col-md-6:last-child {
    max-width: 470px;
}

html:not(.has-simpledesigner) .page-product .images-container {
    grid-template-columns: 84px minmax(0, 1fr);
    gap: 16px;
}

html:not(.has-simpledesigner) .page-product .product-cover {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 0;
    aspect-ratio: 1 / 0.94;
    padding: 0;
}

html:not(.has-simpledesigner) .page-product .product-cover img,
html:not(.has-simpledesigner) .page-product .product-cover .js-qv-product-cover {
    width: auto;
    max-width: none;
    height: auto;
    max-height: none;
    padding: 8px;
    transform: scale(1.24);
    transform-origin: center 36%;
}

html:not(.has-simpledesigner) .page-product h1.h1 {
    max-width: 11ch;
    margin-bottom: 22px;
    font-size: clamp(1.95rem, 2.7vw, 3.05rem);
    line-height: 0.98;
}

html:not(.has-simpledesigner) .page-product .product-prices {
    margin-bottom: 24px;
}

html:not(.has-simpledesigner) .page-product .product-prices .current-price .current-price-value,
html:not(.has-simpledesigner) .page-product .product-prices .current-price span[itemprop="price"] {
    font-size: clamp(1.55rem, 1.8vw, 2rem);
}

html:not(.has-simpledesigner) .page-product [id^="product-description-short-"] {
    max-width: 34ch;
    margin-bottom: 30px;
    font-size: 1rem;
    line-height: 1.72;
}

html:not(.has-simpledesigner) .page-product .product-information {
    max-width: 540px;
}

html:not(.has-simpledesigner) .page-product .product-add-to-cart .add-to-cart {
    min-height: 76px;
}

@media (max-width: 1199px) {
    html:not(.has-simpledesigner) .page-product #main {
        width: min(94vw, 1240px);
    }

    html:not(.has-simpledesigner) .page-product .product-container {
        grid-template-columns: minmax(0, 660px) minmax(300px, 430px);
        gap: 24px;
    }
}

@media (max-width: 991px) {

    html:not(.has-simpledesigner) .page-product .product-container>.col-md-6:first-child,
    html:not(.has-simpledesigner) .page-product .product-container>.col-md-6:last-child,
    html:not(.has-simpledesigner) .page-product .product-information {
        max-width: none;
    }

    html:not(.has-simpledesigner) .page-product .product-cover {
        aspect-ratio: auto;
        min-height: 460px;
    }

    html:not(.has-simpledesigner) .page-product .product-cover img,
    html:not(.has-simpledesigner) .page-product .product-cover .js-qv-product-cover {
        transform: scale(1.14);
    }
}

@media (max-width: 767px) {
    html:not(.has-simpledesigner) .page-product h1.h1 {
        max-width: none;
    }

    html:not(.has-simpledesigner) .page-product .product-cover {
        min-height: 380px;
    }

    html:not(.has-simpledesigner) .page-product .product-cover img,
    html:not(.has-simpledesigner) .page-product .product-cover .js-qv-product-cover {
        transform: none;
        padding: 18px;
    }
}

/* Ajustements V3 : colonne visuelle élargie avec débordement à gauche */
@media (min-width: 992px) {
    html:not(.has-simpledesigner) .page-product #main {
        width: min(90vw, 1380px);
        overflow: visible;
    }

    html:not(.has-simpledesigner) .page-product .product-container {
        grid-template-columns: minmax(0, 1fr) 470px;
        gap: 20px;
        overflow: visible;
    }

    html:not(.has-simpledesigner) .page-product .product-container>.col-md-6:first-child {
        position: relative;
        left: -110px;
        width: calc(100% + 110px);
        max-width: none;
    }

    html:not(.has-simpledesigner) .page-product .product-container>.col-md-6:last-child {
        position: relative;
        z-index: 2;
        max-width: 470px;
    }

    html:not(.has-simpledesigner) .page-product .images-container {
        grid-template-columns: 92px minmax(0, 1fr);
        gap: 18px;
        align-items: start;
    }

    html:not(.has-simpledesigner) .page-product .product-cover {
        width: min(100%, 860px);
        aspect-ratio: 1 / 0.92;
        border-radius: 30px;
    }

    html:not(.has-simpledesigner) .page-product .product-cover img,
    html:not(.has-simpledesigner) .page-product .product-cover .js-qv-product-cover {
        transform: scale(1.16);
        transform-origin: center 34%;
    }
}

@media (min-width: 1200px) {
    html:not(.has-simpledesigner) .page-product .product-container>.col-md-6:first-child {
        left: -150px;
        width: calc(100% + 150px);
    }

    html:not(.has-simpledesigner) .page-product .product-cover {
        width: min(100%, 930px);
    }
}

/* Ajustements V4 : sortir la fiche produit du .container parent */
@media (min-width: 992px) {
    html:not(.has-simpledesigner) .page-product #main {
        width: min(96vw, 1680px) !important;
        max-width: none !important;
        margin-left: 50% !important;
        margin-right: 0 !important;
        transform: translateX(-50%);
        position: relative;
        overflow: visible;
    }

    html:not(.has-simpledesigner) .page-product .product-container {
        width: 100%;
        max-width: none;
        grid-template-columns: minmax(760px, 1fr) minmax(360px, 470px);
        gap: clamp(24px, 2.2vw, 42px);
        align-items: start;
    }

    html:not(.has-simpledesigner) .page-product .product-container>.col-md-6:first-child {
        left: 0;
        width: auto;
        min-width: 0;
        max-width: none;
    }

    html:not(.has-simpledesigner) .page-product .product-container>.col-md-6:last-child {
        max-width: 470px;
        justify-self: end;
    }

    html:not(.has-simpledesigner) .page-product .images-container {
        grid-template-columns: 96px minmax(0, 1fr);
        gap: 20px;
    }

    html:not(.has-simpledesigner) .page-product .product-cover {
        width: min(100%, 1040px);
        aspect-ratio: 1 / 0.92;
        justify-self: start;
    }

    html:not(.has-simpledesigner) .page-product .product-cover img,
    html:not(.has-simpledesigner) .page-product .product-cover .js-qv-product-cover {
        transform: scale(1.12);
        transform-origin: center 34%;
    }
}

@media (min-width: 1400px) {
    html:not(.has-simpledesigner) .page-product #main {
        width: min(97vw, 1820px) !important;
    }

    html:not(.has-simpledesigner) .page-product .product-container {
        grid-template-columns: minmax(860px, 1fr) minmax(360px, 480px);
    }

    html:not(.has-simpledesigner) .page-product .product-cover {
        width: min(100%, 1120px);
    }
}

/* =========================================================
   FICHE PRODUIT CLASSIQUE — V5 structure dédiée theme child
   Base propre sur templates/catalog/product.tpl
   ========================================================= */

html:not(.has-simpledesigner) .page-product .yd-product-main {
    width: min(96vw, 1760px);
    max-width: none;
    margin: 0 auto;
    padding: 18px 0 64px;
}

html:not(.has-simpledesigner) .page-product .yd-product-shell {
    width: 100%;
}

html:not(.has-simpledesigner) .page-product .yd-product-hero.product-container {
    display: grid;
    grid-template-columns: minmax(760px, 1fr) minmax(360px, 460px);
    gap: clamp(28px, 3vw, 54px);
    align-items: start;
    margin: 0;
}

html:not(.has-simpledesigner) .page-product .yd-product-hero>.yd-product-visual,
html:not(.has-simpledesigner) .page-product .yd-product-hero>.yd-product-summary {
    width: auto;
    max-width: none;
    flex: none;
    padding: 0;
    float: none;
}

html:not(.has-simpledesigner) .page-product .yd-product-visual {
    min-width: 0;
}

html:not(.has-simpledesigner) .page-product .yd-product-summary {
    min-width: 0;
}

html:not(.has-simpledesigner) .page-product .yd-product-summary-inner {
    max-width: 460px;
    margin-left: auto;
}

html:not(.has-simpledesigner) .page-product .yd-product-visual #content.page-content {
    margin: 0;
}

html:not(.has-simpledesigner) .page-product .yd-product-visual .images-container {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 18px;
    align-items: start;
}

html:not(.has-simpledesigner) .page-product .yd-product-visual .mask {
    order: -1;
    width: auto;
    max-height: none;
    margin: 0;
    overflow: visible;
}

html:not(.has-simpledesigner) .page-product .yd-product-visual .product-images {
    display: grid;
    gap: 14px;
    margin: 0;
}

html:not(.has-simpledesigner) .page-product .yd-product-visual .product-images>li.thumb-container {
    display: block;
}

html:not(.has-simpledesigner) .page-product .yd-product-visual .product-images>li.thumb-container .thumb {
    width: 100%;
    max-width: none;
    margin: 0;
    border: 1px solid rgba(17, 17, 17, 0.12);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
}

html:not(.has-simpledesigner) .page-product .yd-product-visual .product-cover {
    display: flex;
    align-items: center;
    justify-content: center;
    width: min(100%, 980px);
    min-height: 760px;
    margin-left: 0;
    border-radius: 30px;
    overflow: hidden;
    background:
        radial-gradient(circle at top, rgba(255, 255, 255, 0.94), rgba(246, 244, 239, 0.94) 40%, rgba(238, 235, 228, 0.96) 100%);
    box-shadow:
        0 26px 72px rgba(0, 0, 0, 0.08),
        inset 0 0 0 1px rgba(0, 0, 0, 0.04);
}

html:not(.has-simpledesigner) .page-product .yd-product-visual .product-cover img,
html:not(.has-simpledesigner) .page-product .yd-product-visual .product-cover .js-qv-product-cover {
    width: auto;
    height: auto;
    max-width: none;
    max-height: none;
    padding: 0;
    transform: scale(1.12);
    transform-origin: center 34%;
}

html:not(.has-simpledesigner) .page-product .yd-product-summary h1.h1 {
    max-width: 10.5ch;
    margin: 0 0 22px;
    font-size: clamp(2.4rem, 3vw, 4rem);
    line-height: 0.96;
    font-weight: 800;
    letter-spacing: -0.05em;
    text-transform: uppercase;
    color: #111;
}

html:not(.has-simpledesigner) .page-product .yd-product-summary .product-prices {
    margin-bottom: 24px;
}

html:not(.has-simpledesigner) .page-product .yd-product-summary .product-prices .current-price .current-price-value,
html:not(.has-simpledesigner) .page-product .yd-product-summary .product-prices .current-price span[itemprop="price"] {
    font-size: clamp(1.7rem, 1.9vw, 2.1rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    color: #111;
}

html:not(.has-simpledesigner) .page-product .yd-product-summary [id^="product-description-short-"] {
    max-width: 34ch;
    margin-bottom: 30px;
    font-size: 1rem;
    line-height: 1.72;
    color: #2e2e2e;
}

html:not(.has-simpledesigner) .page-product .yd-product-summary .product-add-to-cart .product-quantity {
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 14px;
    align-items: end;
}

html:not(.has-simpledesigner) .page-product .yd-product-summary #quantity_wanted {
    width: 100%;
    min-height: 62px;
    border-radius: 18px;
    text-align: center;
}

html:not(.has-simpledesigner) .page-product .yd-product-summary .product-add-to-cart .add-to-cart {
    width: 100%;
    min-height: 78px;
    border-radius: 999px;
}

html:not(.has-simpledesigner) .page-product .yd-product-tabs {
    max-width: 920px;
    margin-top: 48px;
    margin-left: clamp(110px, 8vw, 160px);
}

@media (min-width: 1500px) {
    html:not(.has-simpledesigner) .page-product .yd-product-hero.product-container {
        grid-template-columns: minmax(900px, 1fr) minmax(360px, 470px);
    }

    html:not(.has-simpledesigner) .page-product .yd-product-visual .product-cover {
        width: min(100%, 1120px);
        min-height: 860px;
    }
}

@media (max-width: 1199px) {
    html:not(.has-simpledesigner) .page-product .yd-product-main {
        width: min(96vw, 1360px);
    }

    html:not(.has-simpledesigner) .page-product .yd-product-hero.product-container {
        grid-template-columns: minmax(620px, 1fr) minmax(320px, 420px);
        gap: 24px;
    }

    html:not(.has-simpledesigner) .page-product .yd-product-summary-inner {
        max-width: 420px;
    }

    html:not(.has-simpledesigner) .page-product .yd-product-visual .product-cover {
        min-height: 620px;
    }
}

@media (max-width: 991px) {
    html:not(.has-simpledesigner) .page-product .yd-product-main {
        width: min(94vw, 860px);
    }

    html:not(.has-simpledesigner) .page-product .yd-product-hero.product-container {
        display: block;
    }

    html:not(.has-simpledesigner) .page-product .yd-product-summary-inner,
    html:not(.has-simpledesigner) .page-product .yd-product-tabs {
        max-width: none;
        margin-left: 0;
    }

    html:not(.has-simpledesigner) .page-product .yd-product-visual {
        margin-bottom: 28px;
    }

    html:not(.has-simpledesigner) .page-product .yd-product-visual .product-cover {
        width: 100%;
        min-height: 520px;
    }
}

@media (max-width: 767px) {
    html:not(.has-simpledesigner) .page-product .yd-product-main {
        width: min(94vw, 680px);
        padding-bottom: 40px;
    }

    html:not(.has-simpledesigner) .page-product .yd-product-visual .images-container {
        grid-template-columns: 1fr;
    }

    html:not(.has-simpledesigner) .page-product .yd-product-visual .mask {
        order: 2;
        overflow-x: auto;
        padding-bottom: 4px;
    }

    html:not(.has-simpledesigner) .page-product .yd-product-visual .product-images {
        display: flex;
        gap: 12px;
        width: max-content;
    }

    html:not(.has-simpledesigner) .page-product .yd-product-visual .product-images>li.thumb-container {
        width: 72px;
        flex: 0 0 72px;
    }

    html:not(.has-simpledesigner) .page-product .yd-product-visual .product-cover {
        min-height: 380px;
        border-radius: 22px;
    }

    html:not(.has-simpledesigner) .page-product .yd-product-visual .product-cover img,
    html:not(.has-simpledesigner) .page-product .yd-product-visual .product-cover .js-qv-product-cover {
        transform: none;
        max-width: 100%;
        padding: 18px;
    }

    html:not(.has-simpledesigner) .page-product .yd-product-summary h1.h1 {
        max-width: none;
        font-size: clamp(1.85rem, 9vw, 2.7rem);
    }

    html:not(.has-simpledesigner) .page-product .yd-product-summary .product-add-to-cart .product-quantity {
        grid-template-columns: 1fr;
    }
}

/* Ajustements V6 : hero media plus dominant a gauche */
@media (min-width: 992px) {
    html:not(.has-simpledesigner) .page-product .yd-product-main {
        width: min(98vw, 1920px);
        padding-top: 10px;
    }

    html:not(.has-simpledesigner) .page-product .yd-product-hero.product-container {
        grid-template-columns: minmax(1040px, 1fr) minmax(320px, 430px);
        gap: clamp(18px, 2vw, 34px);
    }

    html:not(.has-simpledesigner) .page-product .yd-product-visual {
        margin-left: clamp(-70px, -5vw, -140px);
    }

    html:not(.has-simpledesigner) .page-product .yd-product-visual .images-container {
        grid-template-columns: 84px minmax(0, 1fr);
        gap: 16px;
    }

    html:not(.has-simpledesigner) .page-product .yd-product-visual .product-cover {
        width: min(100%, 1240px);
        min-height: 1080px;
        height: 72vh;
        max-height: 1280px;
        border-radius: 38px;
        position: relative;
    }

    html:not(.has-simpledesigner) .page-product .yd-product-visual .product-cover img,
    html:not(.has-simpledesigner) .page-product .yd-product-visual .product-cover .js-qv-product-cover {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        max-width: none;
        max-height: none;
        object-fit: cover;
        object-position: center top;
        transform: scale(1.22);
        transform-origin: center top;
    }

    html:not(.has-simpledesigner) .page-product .yd-product-summary-inner {
        max-width: 430px;
    }

    html:not(.has-simpledesigner) .page-product .yd-product-summary h1.h1 {
        max-width: 9.5ch;
        font-size: clamp(2.25rem, 2.6vw, 3.55rem);
    }
}

@media (min-width: 1500px) {
    html:not(.has-simpledesigner) .page-product .yd-product-hero.product-container {
        grid-template-columns: minmax(1160px, 1fr) minmax(320px, 430px);
    }

    html:not(.has-simpledesigner) .page-product .yd-product-visual {
        margin-left: -150px;
    }

    html:not(.has-simpledesigner) .page-product .yd-product-visual .product-cover {
        width: min(100%, 1380px);
        min-height: 1180px;
        height: 78vh;
        max-height: 1440px;
    }

    html:not(.has-simpledesigner) .page-product .yd-product-visual .product-cover img,
    html:not(.has-simpledesigner) .page-product .yd-product-visual .product-cover .js-qv-product-cover {
        transform: scale(1.28);
    }
}

/* Override final : le picture et l'image doivent epouser le cadre hero */
@media (min-width: 992px) {
    html:not(.has-simpledesigner) .page-product .yd-product-visual .product-cover {
        width: 100% !important;
        max-width: none !important;
        min-height: 980px !important;
        height: 74vh !important;
        max-height: 1320px !important;
        position: relative !important;
        overflow: hidden !important;
    }

    html:not(.has-simpledesigner) .page-product .yd-product-visual .product-cover picture {
        position: absolute !important;
        inset: 0 !important;
        display: block !important;
        width: 100% !important;
        height: 100% !important;
    }

    html:not(.has-simpledesigner) .page-product .yd-product-visual .product-cover img,
    html:not(.has-simpledesigner) .page-product .yd-product-visual .product-cover .js-qv-product-cover {
        position: absolute !important;
        inset: 0 !important;
        display: block !important;
        width: 100% !important;
        height: 100% !important;
        max-width: none !important;
        max-height: none !important;
        object-fit: cover !important;
        object-position: center top !important;
        padding: 0 !important;
        margin: 0 !important;
        transform: scale(1.18) !important;
    }
}

@media (min-width: 1500px) {
    html:not(.has-simpledesigner) .page-product .yd-product-visual .product-cover {
        min-height: 1140px !important;
        height: 80vh !important;
        max-height: 1500px !important;
    }

    html:not(.has-simpledesigner) .page-product .yd-product-visual .product-cover img,
    html:not(.has-simpledesigner) .page-product .yd-product-visual .product-cover .js-qv-product-cover {
        transform: scale(1.24) !important;
    }
}

/* Galerie radicale - override du partial child */
html:not(.has-simpledesigner) .page-product .yd-media-stage {
    width: 100% !important;
    max-width: none !important;
    display: grid !important;
    grid-template-columns: 92px minmax(0, 1fr) !important;
    gap: 18px !important;
    align-items: start !important;
}

html:not(.has-simpledesigner) .page-product .yd-media-stage .yd-media-thumbs {
    width: auto !important;
    max-height: none !important;
    margin: 0 !important;
    overflow: visible !important;
}

html:not(.has-simpledesigner) .page-product .yd-media-stage .product-images {
    display: grid !important;
    gap: 14px !important;
    margin: 0 !important;
}

html:not(.has-simpledesigner) .page-product .yd-media-stage .product-images>li.thumb-container {
    display: block !important;
}

html:not(.has-simpledesigner) .page-product .yd-media-stage .product-images>li.thumb-container .thumb {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    border-radius: 18px !important;
}

html:not(.has-simpledesigner) .page-product .yd-media-stage .yd-media-hero {
    position: relative !important;
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
    min-height: 1080px !important;
    height: 74vh !important;
    max-height: 1320px !important;
    border-radius: 38px !important;
    overflow: hidden !important;
}

html:not(.has-simpledesigner) .page-product .yd-media-stage .yd-media-picture {
    position: absolute !important;
    inset: 0 !important;
    display: block !important;
    width: 100% !important;
    height: 100% !important;
}

html:not(.has-simpledesigner) .page-product .yd-media-stage .yd-media-picture img,
html:not(.has-simpledesigner) .page-product .yd-media-stage .yd-media-hero>img,
html:not(.has-simpledesigner) .page-product .yd-media-stage .yd-media-hero .js-qv-product-cover {
    position: absolute !important;
    inset: 0 !important;
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    max-height: none !important;
    object-fit: cover !important;
    object-position: center top !important;
    padding: 0 !important;
    margin: 0 !important;
    transform: scale(1.18) !important;
}

@media (min-width: 992px) {
    html:not(.has-simpledesigner) .page-product .yd-product-hero.product-container {
        grid-template-columns: minmax(1160px, 1fr) minmax(320px, 420px) !important;
        gap: 20px !important;
    }

    html:not(.has-simpledesigner) .page-product .yd-product-visual {
        margin-left: -120px !important;
        width: auto !important;
        max-width: none !important;
    }

    html:not(.has-simpledesigner) .page-product .yd-product-visual #content,
    html:not(.has-simpledesigner) .page-product .yd-product-visual .page-content,
    html:not(.has-simpledesigner) .page-product .yd-product-visual .images-container,
    html:not(.has-simpledesigner) .page-product .yd-media-stage {
        width: 100% !important;
        max-width: none !important;
    }
}

@media (min-width: 1500px) {
    html:not(.has-simpledesigner) .page-product .yd-product-hero.product-container {
        grid-template-columns: minmax(1320px, 1fr) minmax(320px, 420px) !important;
    }

    html:not(.has-simpledesigner) .page-product .yd-product-visual {
        margin-left: -180px !important;
    }

    html:not(.has-simpledesigner) .page-product .yd-media-stage .yd-media-hero {
        min-height: 1220px !important;
        height: 80vh !important;
        max-height: 1520px !important;
    }

    html:not(.has-simpledesigner) .page-product .yd-media-stage .yd-media-picture img,
    html:not(.has-simpledesigner) .page-product .yd-media-stage .yd-media-hero>img,
    html:not(.has-simpledesigner) .page-product .yd-media-stage .yd-media-hero .js-qv-product-cover {
        transform: scale(1.24) !important;
    }
}

@media (max-width: 991px) {
    html:not(.has-simpledesigner) .page-product .yd-media-stage {
        grid-template-columns: 1fr !important;
    }

    html:not(.has-simpledesigner) .page-product .yd-media-stage .yd-media-thumbs {
        order: 2 !important;
        overflow-x: auto !important;
    }

    html:not(.has-simpledesigner) .page-product .yd-media-stage .product-images {
        display: flex !important;
        width: max-content !important;
    }

    html:not(.has-simpledesigner) .page-product .yd-media-stage .product-images>li.thumb-container {
        width: 72px !important;
        flex: 0 0 72px !important;
    }

    html:not(.has-simpledesigner) .page-product .yd-media-stage .yd-media-hero {
        min-height: 420px !important;
        height: auto !important;
        max-height: none !important;
    }

    html:not(.has-simpledesigner) .page-product .yd-media-stage .yd-media-picture,
    html:not(.has-simpledesigner) .page-product .yd-media-stage .yd-media-picture img,
    html:not(.has-simpledesigner) .page-product .yd-media-stage .yd-media-hero>img,
    html:not(.has-simpledesigner) .page-product .yd-media-stage .yd-media-hero .js-qv-product-cover {
        position: absolute !important;
        transform: none !important;
    }
}

/* Reglage final compact : meilleur equilibre a 100% et 50% de zoom */
html:not(.has-simpledesigner) .page-product .breadcrumb {
    margin-bottom: 8px !important;
}

html:not(.has-simpledesigner) .page-product .yd-product-main {
    padding-top: 0 !important;
}

@media (min-width: 992px) {
    html:not(.has-simpledesigner) .page-product .yd-product-main {
        width: min(94vw, 1540px) !important;
    }

    html:not(.has-simpledesigner) .page-product .yd-product-hero.product-container {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
        gap: 28px !important;
        align-items: start !important;
    }

    html:not(.has-simpledesigner) .page-product .yd-product-visual {
        margin-left: 0 !important;
    }

    html:not(.has-simpledesigner) .page-product .yd-product-summary-inner {
        max-width: 520px !important;
        padding-top: 10px !important;
        margin-left: auto !important;
    }

    html:not(.has-simpledesigner) .page-product .yd-media-stage {
        grid-template-columns: 78px minmax(0, 1fr) !important;
        gap: 14px !important;
    }

    html:not(.has-simpledesigner) .page-product .yd-media-stage .yd-media-hero,
    html:not(.has-simpledesigner) .page-product .yd-product-visual .product-cover {
        min-height: 680px !important;
        height: 56vh !important;
        max-height: 840px !important;
        border-radius: 30px !important;
    }

    html:not(.has-simpledesigner) .page-product .yd-media-stage .yd-media-picture img,
    html:not(.has-simpledesigner) .page-product .yd-media-stage .yd-media-hero>img,
    html:not(.has-simpledesigner) .page-product .yd-media-stage .yd-media-hero .js-qv-product-cover,
    html:not(.has-simpledesigner) .page-product .yd-product-visual .product-cover img,
    html:not(.has-simpledesigner) .page-product .yd-product-visual .product-cover .js-qv-product-cover {
        transform: none !important;
        object-fit: contain !important;
        object-position: center center !important;
        background: #fff !important;
    }
}

@media (min-width: 1500px) {
    html:not(.has-simpledesigner) .page-product .yd-product-main {
        width: min(94vw, 1640px) !important;
    }

    html:not(.has-simpledesigner) .page-product .yd-product-hero.product-container {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
    }

    html:not(.has-simpledesigner) .page-product .yd-product-visual {
        margin-left: 0 !important;
    }

    html:not(.has-simpledesigner) .page-product .yd-media-stage .yd-media-hero,
    html:not(.has-simpledesigner) .page-product .yd-product-visual .product-cover {
        min-height: 760px !important;
        height: 60vh !important;
        max-height: 920px !important;
    }
}

/* Finition : thumbs superposes + colonne texte plus proche et plus large */
@media (min-width: 992px) {
    html:not(.has-simpledesigner) .page-product .yd-product-hero.product-container {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
        gap: 18px !important;
    }

    html:not(.has-simpledesigner) .page-product .yd-product-summary-inner {
        max-width: 620px !important;
        padding-top: 0 !important;
    }

    html:not(.has-simpledesigner) .page-product .yd-product-summary h1.h1 {
        max-width: 11ch !important;
    }

    html:not(.has-simpledesigner) .page-product .yd-product-summary [id^="product-description-short-"] {
        max-width: 44ch !important;
        margin-bottom: 22px !important;
    }

    html:not(.has-simpledesigner) .page-product .yd-product-summary .product-information {
        max-width: 620px !important;
    }

    html:not(.has-simpledesigner) .page-product .yd-media-stage {
        position: relative !important;
        display: block !important;
        padding-left: 0 !important;
    }

    html:not(.has-simpledesigner) .page-product .yd-media-stage .yd-media-hero,
    html:not(.has-simpledesigner) .page-product .yd-product-visual .product-cover {
        min-height: 700px !important;
        height: 56vh !important;
        max-height: 820px !important;
    }

    html:not(.has-simpledesigner) .page-product .yd-media-stage .yd-media-thumbs {
        position: absolute !important;
        top: 22px !important;
        left: 22px !important;
        z-index: 4 !important;
        width: 88px !important;
        overflow: visible !important;
    }

    html:not(.has-simpledesigner) .page-product .yd-media-stage .product-images {
        display: grid !important;
        gap: 12px !important;
    }

    html:not(.has-simpledesigner) .page-product .yd-media-stage .product-images>li.thumb-container .thumb {
        border-radius: 18px !important;
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08) !important;
        border: 1px solid rgba(17, 17, 17, 0.08) !important;
        background: rgba(255, 255, 255, 0.94) !important;
    }

    html:not(.has-simpledesigner) .page-product .yd-media-stage .product-images>li.thumb-container .thumb.selected {
        border-color: #111 !important;
        box-shadow: 0 16px 30px rgba(0, 0, 0, 0.12) !important;
    }
}

@media (min-width: 1500px) {
    html:not(.has-simpledesigner) .page-product .yd-product-summary-inner {
        max-width: 660px !important;
    }

    html:not(.has-simpledesigner) .page-product .yd-product-summary .product-information {
        max-width: 660px !important;
    }

    html:not(.has-simpledesigner) .page-product .yd-product-summary [id^="product-description-short-"] {
        max-width: 48ch !important;
    }
}

/* Derniers reglages : cadre blanc plus protecteur + bloc gauche plus recentre */
@media (min-width: 992px) {
    html:not(.has-simpledesigner) .page-product .yd-product-hero.product-container {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
        gap: 18px !important;
    }

    html:not(.has-simpledesigner) .page-product .yd-product-visual {
        padding-left: 34px !important;
        padding-right: 12px !important;
    }

    html:not(.has-simpledesigner) .page-product .yd-product-summary {
        margin-left: -72px !important;
    }

    html:not(.has-simpledesigner) .page-product .yd-product-summary-inner {
        max-width: none !important;
        width: min(100%, 840px) !important;
        margin-left: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    html:not(.has-simpledesigner) .page-product .yd-product-summary .product-information,
    html:not(.has-simpledesigner) .page-product .yd-product-summary [id^="product-description-short-"] {
        max-width: none !important;
        width: min(100%, 720px) !important;
    }

    html:not(.has-simpledesigner) .page-product .yd-product-summary h1.h1 {
        max-width: 13ch !important;
    }

    html:not(.has-simpledesigner) .page-product .yd-media-stage .yd-media-hero,
    html:not(.has-simpledesigner) .page-product .yd-product-visual .product-cover {
        min-height: 720px !important;
        height: 58vh !important;
        max-height: 860px !important;
        padding: 34px 34px 22px 112px !important;
        background: #fff !important;
        box-sizing: border-box !important;
    }

    html:not(.has-simpledesigner) .page-product .yd-media-stage .yd-media-picture,
    html:not(.has-simpledesigner) .page-product .yd-product-visual .product-cover picture {
        position: absolute !important;
        inset: 34px 34px 22px 112px !important;
        display: block !important;
        width: auto !important;
        height: auto !important;
    }

    html:not(.has-simpledesigner) .page-product .yd-media-stage .yd-media-picture img,
    html:not(.has-simpledesigner) .page-product .yd-media-stage .yd-media-hero>img,
    html:not(.has-simpledesigner) .page-product .yd-media-stage .yd-media-hero .js-qv-product-cover,
    html:not(.has-simpledesigner) .page-product .yd-product-visual .product-cover img,
    html:not(.has-simpledesigner) .page-product .yd-product-visual .product-cover .js-qv-product-cover {
        position: absolute !important;
        inset: 0 !important;
        width: 100% !important;
        height: 100% !important;
        object-fit: contain !important;
        object-position: center center !important;
        background: #fff !important;
    }

    html:not(.has-simpledesigner) .page-product .yd-media-stage .yd-media-thumbs {
        top: 24px !important;
        left: 24px !important;
        width: 72px !important;
    }

    html:not(.has-simpledesigner) .page-product .yd-media-stage .product-images>li.thumb-container,
    html:not(.has-simpledesigner) .page-product .yd-media-stage .product-images>li.thumb-container picture,
    html:not(.has-simpledesigner) .page-product .yd-media-stage .product-images>li.thumb-container>.thumb {
        width: 72px !important;
        height: 72px !important;
        min-width: 72px !important;
        max-width: 72px !important;
        min-height: 72px !important;
        max-height: 72px !important;
    }

    html:not(.has-simpledesigner) .page-product .yd-media-stage .product-images>li.thumb-container {
        overflow: hidden !important;
        border-radius: 18px !important;
        flex: 0 0 72px !important;
        aspect-ratio: 1 / 1 !important;
        background: #fff !important;
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08) !important;
        border: 1px solid rgba(17, 17, 17, 0.08) !important;
    }

    html:not(.has-simpledesigner) .page-product .yd-media-stage .product-images>li.thumb-container picture {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        background: #fff !important;
        padding: 8px !important;
        box-sizing: border-box !important;
    }

    html:not(.has-simpledesigner) .page-product .yd-media-stage .product-images>li.thumb-container>.thumb {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        margin: 0 !important;
        padding: 0 !important;
        border: 0 !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        background: transparent !important;
    }

    html:not(.has-simpledesigner) .page-product .yd-media-stage .product-images>li.thumb-container>.thumb img {
        display: block !important;
        width: auto !important;
        height: auto !important;
        max-width: 100% !important;
        max-height: 100% !important;
        margin: auto !important;
        object-fit: contain !important;
        object-position: center center !important;
    }
}

@media (min-width: 1500px) {
    html:not(.has-simpledesigner) .page-product .yd-product-visual {
        padding-left: 48px !important;
        padding-right: 18px !important;
    }

    html:not(.has-simpledesigner) .page-product .yd-product-summary {
        margin-left: -96px !important;
    }

    html:not(.has-simpledesigner) .page-product .yd-product-summary-inner {
        width: min(100%, 900px) !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    html:not(.has-simpledesigner) .page-product .yd-media-stage .yd-media-hero,
    html:not(.has-simpledesigner) .page-product .yd-product-visual .product-cover {
        padding-left: 126px !important;
    }

    html:not(.has-simpledesigner) .page-product .yd-media-stage .yd-media-picture,
    html:not(.has-simpledesigner) .page-product .yd-product-visual .product-cover picture {
        inset: 36px 36px 24px 126px !important;
    }
}

/* Override final : thumbs moins contraints + colonne droite rapprochee du centre */
@media (min-width: 992px) {
    html:not(.has-simpledesigner) .page-product .yd-product-summary {
        margin-left: 0 !important;
        transform: translateX(-92px) !important;
        width: calc(100% + 92px) !important;
    }

    html:not(.has-simpledesigner) .page-product .yd-product-summary-inner,
    html:not(.has-simpledesigner) .page-product .yd-product-summary .product-information,
    html:not(.has-simpledesigner) .page-product .yd-product-summary [id^="product-description-short-"] {
        width: 100% !important;
        max-width: none !important;
    }

    html:not(.has-simpledesigner) .page-product .yd-product-summary h1.h1 {
        max-width: 12.5ch !important;
    }

    html:not(.has-simpledesigner) .page-product .yd-media-stage .yd-media-thumbs {
        width: 78px !important;
    }

    html:not(.has-simpledesigner) .page-product .yd-media-stage .product-images>li.thumb-container,
    html:not(.has-simpledesigner) .page-product .yd-media-stage .product-images>li.thumb-container picture {
        width: 78px !important;
        height: 78px !important;
        min-width: 78px !important;
        max-width: 78px !important;
        min-height: 78px !important;
        max-height: 78px !important;
    }

    html:not(.has-simpledesigner) .page-product .yd-media-stage .product-images>li.thumb-container>img.thumb,
    html:not(.has-simpledesigner) .page-product .yd-media-stage .product-images>li.thumb-container picture>img.thumb {
        width: auto !important;
        height: auto !important;
        min-width: 0 !important;
        min-height: 0 !important;
        max-width: calc(100% - 16px) !important;
        max-height: calc(100% - 16px) !important;
        display: block !important;
        margin: auto !important;
        padding: 0 !important;
        object-fit: contain !important;
        object-position: center center !important;
        transform: none !important;
        position: static !important;
    }
}

@media (min-width: 1500px) {
    html:not(.has-simpledesigner) .page-product .yd-product-summary {
        transform: translateX(-118px) !important;
        width: calc(100% + 118px) !important;
    }
}

/* Override final : ancrage global plus proche du rendu cible */
@media (min-width: 992px) {
    html:not(.has-simpledesigner) .page-product .yd-product-main {
        width: min(97vw, 1640px) !important;
    }

    html:not(.has-simpledesigner) .page-product .breadcrumb {
        width: min(50%, 920px) !important;
        margin: 0 0 14px !important;
        padding-left: 10px !important;
        transform: translateX(-34px) !important;
    }

    html:not(.has-simpledesigner) .page-product .breadcrumb ol {
        margin: 0 !important;
    }

    html:not(.has-simpledesigner) .page-product .yd-product-hero.product-container {
        gap: 8px !important;
    }

    html:not(.has-simpledesigner) .page-product .yd-product-visual {
        margin-left: -30px !important;
        padding-left: 0 !important;
        padding-right: 18px !important;
    }

    html:not(.has-simpledesigner) .page-product .yd-product-summary {
        transform: translateX(-158px) !important;
        width: calc(100% + 158px) !important;
    }

    html:not(.has-simpledesigner) .page-product .yd-product-summary-inner {
        width: min(100%, 980px) !important;
    }

    html:not(.has-simpledesigner) .page-product .yd-product-summary .product-information,
    html:not(.has-simpledesigner) .page-product .yd-product-summary [id^="product-description-short-"] {
        width: min(100%, 780px) !important;
    }
}

@media (min-width: 1500px) {
    html:not(.has-simpledesigner) .page-product .breadcrumb {
        transform: translateX(-48px) !important;
    }

    html:not(.has-simpledesigner) .page-product .yd-product-visual {
        margin-left: -42px !important;
        padding-right: 24px !important;
    }

    html:not(.has-simpledesigner) .page-product .yd-product-summary {
        transform: translateX(-190px) !important;
        width: calc(100% + 190px) !important;
    }

    html:not(.has-simpledesigner) .page-product .yd-product-summary-inner {
        width: min(100%, 1040px) !important;
    }

    html:not(.has-simpledesigner) .page-product .yd-product-summary .product-information,
    html:not(.has-simpledesigner) .page-product .yd-product-summary [id^="product-description-short-"] {
        width: min(100%, 840px) !important;
    }
}

/* Override editorial final : breadcrumb a gauche, colonnes alignees, texte elargi */
@media (min-width: 992px) {
    html:not(.has-simpledesigner) .page-product .yd-product-main {
        position: relative !important;
        width: min(98vw, 1720px) !important;
        padding-top: 74px !important;
    }

    html:not(.has-simpledesigner) .page-product .breadcrumb {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        z-index: 5 !important;
        width: auto !important;
        max-width: none !important;
        margin: 0 !important;
        padding: 0 !important;
        transform: translateX(10px) !important;
        white-space: nowrap !important;
        overflow: visible !important;
    }

    html:not(.has-simpledesigner) .page-product .breadcrumb ol,
    html:not(.has-simpledesigner) .page-product .breadcrumb .breadcrumb,
    html:not(.has-simpledesigner) .page-product .breadcrumb li,
    html:not(.has-simpledesigner) .page-product .breadcrumb span,
    html:not(.has-simpledesigner) .page-product .breadcrumb a {
        white-space: nowrap !important;
    }

    html:not(.has-simpledesigner) .page-product .yd-product-hero.product-container {
        grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr) !important;
        gap: 0 !important;
        align-items: start !important;
    }

    html:not(.has-simpledesigner) .page-product .yd-product-visual {
        margin-top: 0 !important;
        margin-left: -54px !important;
        padding: 0 28px 0 0 !important;
        align-self: start !important;
    }

    html:not(.has-simpledesigner) .page-product .yd-product-visual .images-container,
    html:not(.has-simpledesigner) .page-product .yd-media-stage {
        margin-top: 0 !important;
    }

    html:not(.has-simpledesigner) .page-product .yd-product-summary {
        margin-left: 0 !important;
        transform: translateX(-242px) !important;
        width: calc(100% + 242px) !important;
        align-self: start !important;
    }

    html:not(.has-simpledesigner) .page-product .yd-product-summary-inner {
        width: min(100%, 1120px) !important;
        max-width: none !important;
        margin-top: 0 !important;
        padding: 0 !important;
    }

    html:not(.has-simpledesigner) .page-product .yd-product-summary h1.h1 {
        max-width: 14ch !important;
    }

    html:not(.has-simpledesigner) .page-product .yd-product-summary .product-information,
    html:not(.has-simpledesigner) .page-product .yd-product-summary [id^="product-description-short-"] {
        width: min(100%, 920px) !important;
        max-width: none !important;
    }
}

@media (min-width: 1500px) {
    html:not(.has-simpledesigner) .page-product .yd-product-main {
        width: min(98vw, 1800px) !important;
        padding-top: 82px !important;
    }

    html:not(.has-simpledesigner) .page-product .breadcrumb {
        transform: translateX(14px) !important;
    }

    html:not(.has-simpledesigner) .page-product .yd-product-hero.product-container {
        grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr) !important;
    }

    html:not(.has-simpledesigner) .page-product .yd-product-visual {
        margin-left: -72px !important;
        padding-right: 36px !important;
    }

    html:not(.has-simpledesigner) .page-product .yd-product-summary {
        transform: translateX(-296px) !important;
        width: calc(100% + 296px) !important;
    }

    html:not(.has-simpledesigner) .page-product .yd-product-summary-inner {
        width: min(100%, 1220px) !important;
    }

    html:not(.has-simpledesigner) .page-product .yd-product-summary .product-information,
    html:not(.has-simpledesigner) .page-product .yd-product-summary [id^="product-description-short-"] {
        width: min(100%, 980px) !important;
    }
}

/* Override final bis : breadcrumb dans le flux, image remontee, colonne droite ouverte */
@media (min-width: 992px) {
    html:not(.has-simpledesigner) .page-product .breadcrumb {
        position: static !important;
        top: auto !important;
        left: auto !important;
        transform: none !important;
        z-index: auto !important;
        display: block !important;
        width: min(98vw, 1720px) !important;
        max-width: none !important;
        margin: 0 auto 12px !important;
        padding: 0 0 0 22px !important;
        white-space: nowrap !important;
        overflow: visible !important;
    }

    html:not(.has-simpledesigner) .page-product .breadcrumb ol {
        margin: 0 !important;
        white-space: nowrap !important;
    }

    html:not(.has-simpledesigner) .page-product .yd-product-main {
        position: static !important;
        width: min(98vw, 1720px) !important;
        padding-top: 0 !important;
    }

    html:not(.has-simpledesigner) .page-product .yd-product-hero.product-container {
        grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr) !important;
        gap: 0 !important;
        align-items: start !important;
    }

    html:not(.has-simpledesigner) .page-product .yd-product-visual {
        margin-top: -44px !important;
        margin-left: -56px !important;
        padding: 0 34px 0 0 !important;
        align-self: start !important;
    }

    html:not(.has-simpledesigner) .page-product .yd-product-summary {
        transform: translateX(-286px) !important;
        width: calc(100% + 286px) !important;
        margin-left: 0 !important;
        padding-top: 0 !important;
        align-self: start !important;
    }

    html:not(.has-simpledesigner) .page-product .yd-product-summary-inner {
        width: min(100%, 1240px) !important;
        max-width: none !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    html:not(.has-simpledesigner) .page-product .yd-product-summary h1.h1 {
        max-width: 15ch !important;
        margin-top: 0 !important;
    }

    html:not(.has-simpledesigner) .page-product .yd-product-summary .product-information,
    html:not(.has-simpledesigner) .page-product .yd-product-summary [id^="product-description-short-"] {
        width: min(100%, 980px) !important;
        max-width: none !important;
    }
}

@media (min-width: 1500px) {
    html:not(.has-simpledesigner) .page-product .breadcrumb {
        width: min(98vw, 1800px) !important;
        padding-left: 26px !important;
    }

    html:not(.has-simpledesigner) .page-product .yd-product-main {
        width: min(98vw, 1800px) !important;
    }

    html:not(.has-simpledesigner) .page-product .yd-product-visual {
        margin-top: -54px !important;
        margin-left: -74px !important;
        padding-right: 44px !important;
    }

    html:not(.has-simpledesigner) .page-product .yd-product-summary {
        transform: translateX(-338px) !important;
        width: calc(100% + 338px) !important;
    }

    html:not(.has-simpledesigner) .page-product .yd-product-summary-inner {
        width: min(100%, 1340px) !important;
    }

    html:not(.has-simpledesigner) .page-product .yd-product-summary .product-information,
    html:not(.has-simpledesigner) .page-product .yd-product-summary [id^="product-description-short-"] {
        width: min(100%, 1040px) !important;
    }
}

/* Consolidation finale 2026-03-22 :
   on garde la structure Mila Matcha, mais avec un seul bloc canonique
   pour le desktop afin d'eviter les conflits de positionnement. */

html:not(.has-simpledesigner) .page-product #wrapper,
html:not(.has-simpledesigner) .page-product .yd-product-main {
    overflow: visible !important;
}

html:not(.has-simpledesigner),
html:not(.has-simpledesigner) body,
html:not(.has-simpledesigner) .page-product,
html:not(.has-simpledesigner) .page-product #wrapper {
    overflow-x: hidden !important;
}

html:not(.has-simpledesigner) .page-product .scroll-box-arrows,
html:not(.has-simpledesigner) .page-product>.breadcrumb,
html:not(.has-simpledesigner) .page-product #main>.breadcrumb,
html:not(.has-simpledesigner) .page-product .page-content>.breadcrumb {
    display: none !important;
}

html:not(.has-simpledesigner) .page-product .yd-product-breadcrumb {
    display: block !important;
}

html:not(.has-simpledesigner) .page-product .yd-product-breadcrumb .breadcrumb {
    margin: 0 0 16px !important;
    padding: 0 !important;
    background: transparent !important;
    width: 100% !important;
    max-width: 100% !important;
    font-size: 11px !important;
    line-height: 1.35 !important;
    letter-spacing: 0.02em !important;
    text-transform: none !important;
    color: #9a9a9a !important;
    white-space: normal !important;
    overflow: visible !important;
}

html:not(.has-simpledesigner) .page-product .yd-product-breadcrumb .breadcrumb ol {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 6px !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
    white-space: normal !important;
    overflow-wrap: anywhere !important;
    word-break: break-word !important;
}

html:not(.has-simpledesigner) .page-product .yd-product-breadcrumb .breadcrumb li,
html:not(.has-simpledesigner) .page-product .yd-product-breadcrumb .breadcrumb a,
html:not(.has-simpledesigner) .page-product .yd-product-breadcrumb .breadcrumb span {
    color: #9a9a9a !important;
    white-space: normal !important;
    overflow-wrap: anywhere !important;
    word-break: break-word !important;
}

@media (min-width: 992px) {
    html:not(.has-simpledesigner) .page-product .yd-product-main {
        width: min(96vw, 1720px) !important;
        padding-top: 0 !important;
        padding-left: 18px !important;
        padding-right: 0 !important;
    }

    html:not(.has-simpledesigner) .page-product .yd-product-hero.product-container {
        grid-template-columns: minmax(0, 1.06fr) minmax(540px, 0.94fr) !important;
        gap: clamp(18px, 2.2vw, 34px) !important;
        align-items: start !important;
    }

    html:not(.has-simpledesigner) .page-product .yd-product-visual {
        margin-top: -58px !important;
        margin-left: -4px !important;
        padding-right: 4px !important;
        overflow: visible !important;
    }

    html:not(.has-simpledesigner) .page-product .yd-product-visual .page-content,
    html:not(.has-simpledesigner) .page-product .yd-product-visual .images-container,
    html:not(.has-simpledesigner) .page-product .yd-media-stage {
        overflow: visible !important;
    }

    html:not(.has-simpledesigner) .page-product .yd-media-stage {
        padding: 58px 0 34px 12px !important;
        margin: -58px 0 -34px -12px !important;
    }

    html:not(.has-simpledesigner) .page-product .yd-product-summary {
        transform: translateX(-52px) !important;
        width: auto !important;
        max-width: none !important;
        margin-left: 0 !important;
        padding-top: 26px !important;
        align-self: start !important;
    }

    html:not(.has-simpledesigner) .page-product .yd-product-summary-inner {
        width: min(100%, 590px) !important;
        max-width: 590px !important;
        min-width: 0 !important;
        margin-left: 0 !important;
        padding-top: 0 !important;
    }

    html:not(.has-simpledesigner) .page-product .yd-product-summary .product-information,
    html:not(.has-simpledesigner) .page-product .yd-product-summary [id^="product-description-short-"],
    html:not(.has-simpledesigner) .page-product .yd-product-breadcrumb {
        width: 100% !important;
        min-width: 0 !important;
        max-width: 590px !important;
    }

    html:not(.has-simpledesigner) .page-product .yd-product-summary h1.h1 {
        display: block !important;
        width: 100% !important;
        max-width: 590px !important;
        margin-top: 0 !important;
        font-size: clamp(1.4rem, 1.65vw, 2.35rem) !important;
        line-height: 0.96 !important;
        letter-spacing: -0.045em !important;
    }

    html:not(.has-simpledesigner) .page-product .yd-media-stage .yd-media-hero,
    html:not(.has-simpledesigner) .page-product .yd-product-visual .product-cover {
        padding-left: 138px !important;
        margin-top: -34px !important;
        box-shadow:
            0 30px 72px rgba(0, 0, 0, 0.08),
            inset 0 0 0 1px rgba(0, 0, 0, 0.04) !important;
    }

    html:not(.has-simpledesigner) .page-product .yd-media-stage .yd-media-picture,
    html:not(.has-simpledesigner) .page-product .yd-product-visual .product-cover picture {
        inset: 30px 30px 24px 138px !important;
    }

    html:not(.has-simpledesigner) .page-product .yd-media-stage .yd-media-thumbs {
        left: 22px !important;
        top: 48px !important;
        width: 96px !important;
        overflow: visible !important;
    }

    html:not(.has-simpledesigner) .page-product .yd-media-stage .product-images {
        gap: 12px !important;
    }

    html:not(.has-simpledesigner) .page-product .yd-media-stage .product-images>li.thumb-container,
    html:not(.has-simpledesigner) .page-product .yd-media-stage .product-images>li.thumb-container picture {
        width: 96px !important;
        height: 96px !important;
        min-width: 96px !important;
        max-width: 96px !important;
        min-height: 96px !important;
        max-height: 96px !important;
    }

    html:not(.has-simpledesigner) .page-product .yd-media-stage .product-images>li.thumb-container picture {
        padding: 6px !important;
    }
}

@media (min-width: 1500px) {
    html:not(.has-simpledesigner) .page-product .yd-product-main {
        width: min(96vw, 1780px) !important;
        padding-left: 22px !important;
    }

    html:not(.has-simpledesigner) .page-product .yd-product-hero.product-container {
        grid-template-columns: minmax(0, 1.02fr) minmax(600px, 0.98fr) !important;
        gap: clamp(24px, 2.6vw, 44px) !important;
    }

    html:not(.has-simpledesigner) .page-product .yd-product-visual {
        margin-top: -68px !important;
        margin-left: -8px !important;
        padding-right: 10px !important;
    }

    html:not(.has-simpledesigner) .page-product .yd-media-stage {
        padding: 68px 0 38px 16px !important;
        margin: -68px 0 -38px -16px !important;
    }

    html:not(.has-simpledesigner) .page-product .yd-product-summary {
        transform: translateX(-66px) !important;
        padding-top: 32px !important;
    }

    html:not(.has-simpledesigner) .page-product .yd-product-summary-inner,
    html:not(.has-simpledesigner) .page-product .yd-product-summary .product-information,
    html:not(.has-simpledesigner) .page-product .yd-product-summary [id^="product-description-short-"],
    html:not(.has-simpledesigner) .page-product .yd-product-breadcrumb {
        max-width: 640px !important;
    }

    html:not(.has-simpledesigner) .page-product .yd-media-stage .yd-media-hero,
    html:not(.has-simpledesigner) .page-product .yd-product-visual .product-cover {
        padding-left: 148px !important;
        margin-top: -38px !important;
    }

    html:not(.has-simpledesigner) .page-product .yd-product-summary h1.h1 {
        max-width: 640px !important;
    }

    html:not(.has-simpledesigner) .page-product .yd-media-stage .yd-media-picture,
    html:not(.has-simpledesigner) .page-product .yd-product-visual .product-cover picture {
        inset: 34px 34px 28px 148px !important;
    }

    html:not(.has-simpledesigner) .page-product .yd-media-stage .yd-media-thumbs {
        left: 24px !important;
        top: 52px !important;
        width: 104px !important;
    }

    html:not(.has-simpledesigner) .page-product .yd-media-stage .product-images>li.thumb-container,
    html:not(.has-simpledesigner) .page-product .yd-media-stage .product-images>li.thumb-container picture {
        width: 104px !important;
        height: 104px !important;
        min-width: 104px !important;
        max-width: 104px !important;
        min-height: 104px !important;
        max-height: 104px !important;
    }
}

@media (min-width: 992px) {
    html:not(.has-simpledesigner) .page-product .yd-product-summary .product-actions {
        margin-top: 26px !important;
    }

    html:not(.has-simpledesigner) .page-product #add-to-cart-or-refresh {
        display: grid !important;
        gap: 18px !important;
        padding: 22px !important;
        border: 1px solid rgba(17, 17, 17, 0.08) !important;
        border-radius: 28px !important;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 247, 244, 0.98)) !important;
        box-shadow: 0 18px 42px rgba(17, 17, 17, 0.06) !important;
    }

    html:not(.has-simpledesigner) .page-product .product-variants,
    html:not(.has-simpledesigner) .page-product .product-variants>.product-variants-item,
    html:not(.has-simpledesigner) .page-product .product-add-to-cart {
        margin-bottom: 0 !important;
        margin-top: 0 !important;
    }

    html:not(.has-simpledesigner) .page-product .product-add-to-cart>.control-label,
    html:not(.has-simpledesigner) .page-product .product-variants>.product-variants-item>label,
    html:not(.has-simpledesigner) .page-product .product-variants>.product-variants-item .control-label {
        display: block !important;
        margin: 0 0 10px !important;
        font-size: 11px !important;
        font-weight: 700 !important;
        letter-spacing: 0.12em !important;
        text-transform: uppercase !important;
        color: #707070 !important;
    }

    html:not(.has-simpledesigner) .page-product .product-variants select,
    html:not(.has-simpledesigner) .page-product #quantity_wanted {
        min-height: 64px !important;
        border: 1px solid rgba(17, 17, 17, 0.08) !important;
        border-radius: 20px !important;
        background: #fff !important;
        box-shadow: none !important;
    }

    html:not(.has-simpledesigner) .page-product .yd-product-summary .product-add-to-cart .product-quantity {
        grid-template-columns: 96px minmax(0, 1fr) !important;
        gap: 14px !important;
        align-items: end !important;
    }

    html:not(.has-simpledesigner) .page-product .yd-product-summary .product-add-to-cart .add-to-cart {
        min-height: 64px !important;
        padding: 0 24px !important;
        border: 0 !important;
        border-radius: 20px !important;
        background: #6f92a3 !important;
        color: #fff !important;
        font-size: 0.92rem !important;
        font-weight: 700 !important;
        letter-spacing: 0.08em !important;
        box-shadow: 0 16px 28px rgba(111, 146, 163, 0.26) !important;
    }

    html:not(.has-simpledesigner) .page-product .yd-product-summary .product-add-to-cart .add-to-cart:hover,
    html:not(.has-simpledesigner) .page-product .yd-product-summary .product-add-to-cart .add-to-cart:focus {
        background: #5f8394 !important;
        transform: translateY(-1px) !important;
    }

    html:not(.has-simpledesigner) .page-product #product-availability {
        margin-top: 12px !important;
        padding-top: 12px !important;
        border-top: 1px solid rgba(17, 17, 17, 0.08) !important;
        font-size: 0.92rem !important;
    }

    html:not(.has-simpledesigner) .page-product .product-minimal-quantity {
        margin: 0 !important;
        font-size: 0.84rem !important;
        color: #7b7b7b !important;
    }

    html:not(.has-simpledesigner) .page-product .product-additional-info {
        margin-top: 0 !important;
        padding-top: 0 !important;
        border-top: 0 !important;
    }

    html:not(.has-simpledesigner) .page-product .yd-product-extra-details {
        border-top: 1px solid rgba(17, 17, 17, 0.08) !important;
        border-bottom: 1px solid rgba(17, 17, 17, 0.08) !important;
    }

    html:not(.has-simpledesigner) .page-product .yd-product-extra-details summary {
        position: relative !important;
        display: block !important;
        padding: 18px 28px 18px 0 !important;
        cursor: pointer !important;
        list-style: none !important;
        font-size: 0.9rem !important;
        font-weight: 700 !important;
        letter-spacing: 0.08em !important;
        text-transform: uppercase !important;
        color: #242424 !important;
    }

    html:not(.has-simpledesigner) .page-product .yd-product-extra-details summary::-webkit-details-marker {
        display: none !important;
    }

    html:not(.has-simpledesigner) .page-product .yd-product-extra-details summary::after {
        content: '+' !important;
        position: absolute !important;
        top: 50% !important;
        right: 0 !important;
        transform: translateY(-50%) !important;
        font-size: 1.25rem !important;
        font-weight: 400 !important;
        line-height: 1 !important;
        color: #5c5c5c !important;
    }

    html:not(.has-simpledesigner) .page-product .yd-product-extra-details[open] summary::after {
        content: '−' !important;
    }

    html:not(.has-simpledesigner) .page-product .yd-product-extra-details__content {
        padding: 0 0 18px !important;
        color: #505050 !important;
    }

    html:not(.has-simpledesigner) .page-product .yd-product-extra-details__content>*:not(:last-child) {
        margin-bottom: 14px !important;
    }

    html:not(.has-simpledesigner) .page-product .yd-product-extra-details .product-features .h6 {
        margin-bottom: 12px !important;
        font-size: 0.82rem !important;
        font-weight: 700 !important;
        letter-spacing: 0.08em !important;
        text-transform: uppercase !important;
    }

    html:not(.has-simpledesigner) .page-product .yd-product-extra-details .data-sheet {
        display: grid !important;
        grid-template-columns: minmax(120px, 168px) minmax(0, 1fr) !important;
        gap: 10px 16px !important;
        margin: 0 !important;
    }

    html:not(.has-simpledesigner) .page-product .yd-product-extra-details .data-sheet dt,
    html:not(.has-simpledesigner) .page-product .yd-product-extra-details .label {
        margin: 0 !important;
        font-size: 0.8rem !important;
        font-weight: 700 !important;
        letter-spacing: 0.04em !important;
        text-transform: uppercase !important;
        color: #767676 !important;
    }

    html:not(.has-simpledesigner) .page-product .yd-product-extra-details .data-sheet dd {
        margin: 0 !important;
        color: #303030 !important;
    }

    html:not(.has-simpledesigner) .page-product .yd-product-extra-hooks {
        margin-top: 16px !important;
    }

    html:not(.has-simpledesigner) .page-product .yd-product-tabs {
        display: none !important;
    }
}

@media (min-width: 1500px) {
    html:not(.has-simpledesigner) .page-product #add-to-cart-or-refresh {
        padding: 24px !important;
    }
}

@media (min-width: 992px) {
    html:not(.has-simpledesigner) .page-product .yd-product-summary .product-add-to-cart .product-quantity {
        display: grid !important;
        grid-template-columns: 96px minmax(0, 1fr) !important;
        gap: 18px !important;
        align-items: center !important;
    }

    html:not(.has-simpledesigner) .page-product .yd-product-summary .product-add-to-cart .qty,
    html:not(.has-simpledesigner) .page-product .yd-product-summary .product-add-to-cart .add {
        width: 100% !important;
        margin: 0 !important;
        align-self: stretch !important;
    }

    html:not(.has-simpledesigner) .page-product .yd-product-summary .product-add-to-cart .input-group.bootstrap-touchspin {
        display: flex !important;
        align-items: stretch !important;
        width: 100% !important;
        min-height: 64px !important;
        border: 1px solid rgba(17, 17, 17, 0.08) !important;
        border-radius: 20px !important;
        overflow: hidden !important;
        background: #fff !important;
    }

    html:not(.has-simpledesigner) .page-product .yd-product-summary .product-add-to-cart .bootstrap-touchspin-prefix,
    html:not(.has-simpledesigner) .page-product .yd-product-summary .product-add-to-cart .bootstrap-touchspin-postfix {
        display: none !important;
    }

    html:not(.has-simpledesigner) .page-product .yd-product-summary .product-add-to-cart .input-group-btn-vertical {
        display: flex !important;
        flex-direction: column !important;
        width: 26px !important;
        min-width: 26px !important;
        border-left: 1px solid rgba(17, 17, 17, 0.08) !important;
        background: #f6f4ef !important;
    }

    html:not(.has-simpledesigner) .page-product .yd-product-summary .product-add-to-cart .btn-touchspin {
        flex: 1 1 50% !important;
        width: 26px !important;
        min-height: 0 !important;
        padding: 0 !important;
        border: 0 !important;
        border-radius: 0 !important;
        background: transparent !important;
        color: #5d7480 !important;
        box-shadow: none !important;
    }

    html:not(.has-simpledesigner) .page-product .yd-product-summary #quantity_wanted {
        min-height: 62px !important;
        height: 62px !important;
        border: 0 !important;
        border-radius: 0 !important;
        text-align: center !important;
        box-shadow: none !important;
    }

    html:not(.has-simpledesigner) .page-product .yd-product-summary .product-add-to-cart .add-to-cart {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100% !important;
        min-height: 64px !important;
        height: 64px !important;
        margin: 0 !important;
    }

    html:not(.has-simpledesigner) .page-product .yd-product-summary .wishlist-button-add.wishlist-button-product {
        display: none !important;
    }

    html:not(.has-simpledesigner) .page-product .yd-media-stage .yd-media-wishlist {
        position: absolute !important;
        top: 24px !important;
        right: 24px !important;
        z-index: 4 !important;
    }

    html:not(.has-simpledesigner) .page-product .yd-media-stage .yd-media-wishlist .wishlist-button-add.wishlist-button-product {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 52px !important;
        height: 52px !important;
        padding: 0 !important;
        border: 1px solid rgba(17, 17, 17, 0.08) !important;
        border-radius: 999px !important;
        background: rgba(255, 255, 255, 0.94) !important;
        box-shadow: 0 14px 28px rgba(17, 17, 17, 0.12) !important;
        color: #202020 !important;
    }

    html:not(.has-simpledesigner) .page-product .yd-media-stage .yd-media-wishlist .wishlist-button-add.wishlist-button-product i {
        font-size: 1.5rem !important;
        line-height: 1 !important;
    }

    html:not(.has-simpledesigner) .page-product .yd-media-stage .layer.hidden-sm-down {
        display: none !important;
    }
}

@media (min-width: 992px) {
    html:not(.has-simpledesigner) .page-product .yd-variant-group .yd-variant-options {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 10px !important;
        margin: 0 !important;
        padding: 0 !important;
        list-style: none !important;
    }

    html:not(.has-simpledesigner) .page-product .yd-variant-group .yd-variant-option-item {
        margin: 0 !important;
        padding: 0 !important;
        float: none !important;
    }

    html:not(.has-simpledesigner) .page-product .yd-variant-group .yd-variant-option-item label {
        display: block !important;
        margin: 0 !important;
        cursor: pointer !important;
    }

    html:not(.has-simpledesigner) .page-product .yd-variant-group input[type="radio"] {
        position: absolute !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }

    html:not(.has-simpledesigner) .page-product .yd-variant-chip {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        min-width: 46px !important;
        min-height: 46px !important;
        padding: 0 14px !important;
        border: 1px solid rgba(17, 17, 17, 0.14) !important;
        background: #fff !important;
        color: #222 !important;
        transition: all 0.2s ease !important;
    }

    html:not(.has-simpledesigner) .page-product .yd-variant-chip.is-selected,
    html:not(.has-simpledesigner) .page-product .yd-variant-group input[type="radio"]:checked+.yd-variant-chip {
        border-color: #6f92a3 !important;
        background: #eef4f7 !important;
        box-shadow: 0 8px 18px rgba(111, 146, 163, 0.16) !important;
        color: #1e2e35 !important;
    }

    html:not(.has-simpledesigner) .page-product .yd-variant-chip--size {
        width: 46px !important;
        min-width: 46px !important;
        padding: 0 !important;
        border-radius: 999px !important;
        font-size: 0.92rem !important;
        font-weight: 700 !important;
        text-transform: uppercase !important;
    }

    html:not(.has-simpledesigner) .page-product .yd-variant-chip--color {
        position: relative !important;
        width: 46px !important;
        min-width: 46px !important;
        padding: 0 !important;
        border-radius: 999px !important;
        background-size: cover !important;
        background-position: center !important;
        color: transparent !important;
    }

    html:not(.has-simpledesigner) .page-product .yd-variant-chip--color::after {
        content: '' !important;
        position: absolute !important;
        inset: 8px !important;
        border: 1px solid rgba(255, 255, 255, 0.7) !important;
        border-radius: 999px !important;
    }

    html:not(.has-simpledesigner) .page-product .yd-variant-chip--material,
    html:not(.has-simpledesigner) .page-product .yd-variant-chip--default {
        border-radius: 16px !important;
        font-size: 0.9rem !important;
        font-weight: 600 !important;
    }

    html:not(.has-simpledesigner) .page-product .product-comments-additional-info,
    html:not(.has-simpledesigner) .page-product #product-comments-list-header,
    html:not(.has-simpledesigner) .page-product #product-comments-list,
    html:not(.has-simpledesigner) .page-product #product-comments-list-footer,
    html:not(.has-simpledesigner) .page-product #empty-product-comment,
    html:not(.has-simpledesigner) .page-product .post-product-comment,
    html:not(.has-simpledesigner) .page-product .btn-comment,
    html:not(.has-simpledesigner) .page-product [data-link-action="post-product-comment"] {
        display: none !important;
    }
}


@media (min-width: 992px) {
    html:not(.has-simpledesigner) .page-product .yd-variant-group--color .yd-variant-chip--color {
        background: unset !important;
        background-color: transparent !important;
    }
}

@media (min-width: 992px) {
    html:not(.has-simpledesigner) .page-product .yd-variant-group--color .yd-variant-chip--color::after {
        content: none !important;
    }

    html:not(.has-simpledesigner) .page-product .yd-variant-group--color input[type="radio"]:checked+.yd-variant-chip--color,
    html:not(.has-simpledesigner) .page-product .yd-variant-group--color .yd-variant-chip--color.is-selected {
        background: unset !important;
        background-color: inherit !important;
        box-shadow: 0 0 0 2px #ffffff, 0 0 0 3px #6f92a3 !important;
        border-color: #6f92a3 !important;
    }
}

@media (min-width: 992px) {
    html:not(.has-simpledesigner) .page-product .yd-variant-group--color .yd-variant-options {
        gap: 12px !important;
        overflow: visible !important;
    }

    html:not(.has-simpledesigner) .page-product .yd-variant-group--color .yd-variant-option-item,
    html:not(.has-simpledesigner) .page-product .yd-variant-group--color .yd-variant-option-item label {
        padding: 3px !important;
        overflow: visible !important;
    }

    html:not(.has-simpledesigner) .page-product .yd-variant-group--color .yd-variant-chip--color {
        width: 46px !important;
        height: 46px !important;
        min-width: 46px !important;
        min-height: 46px !important;
        border-radius: 999px !important;
        background-size: cover !important;
        background-position: center !important;
        box-shadow: none !important;
    }

    html:not(.has-simpledesigner) .page-product .yd-variant-group--color .yd-variant-chip--color::after {
        content: none !important;
    }

    html:not(.has-simpledesigner) .page-product .yd-variant-group--color input[type="radio"]:checked+.yd-variant-chip--color,
    html:not(.has-simpledesigner) .page-product .yd-variant-group--color .yd-variant-chip--color.is-selected {
        border-color: #6f92a3 !important;
        box-shadow: 0 8px 18px rgba(111, 146, 163, 0.16) !important;
        outline: 1px solid rgba(111, 146, 163, 0.28) !important;
        outline-offset: 0 !important;
    }
}

html:not(.has-simpledesigner) .page-product .yd-product-crossselling {
    width: min(96vw, 1720px);
    margin: 56px auto 0;
}

html:not(.has-simpledesigner) .page-product .yd-product-crossselling>section {
    padding-top: 28px;
    border-top: 1px solid rgba(17, 17, 17, 0.08);
}

html:not(.has-simpledesigner) .page-product .yd-product-crossselling h2 {
    margin: 0 0 22px;
    font-size: clamp(1.2rem, 1.8vw, 1.8rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    color: #171717;
}

html:not(.has-simpledesigner) .page-product .yd-product-crossselling .products {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

@media (max-width: 1199px) {
    html:not(.has-simpledesigner) .page-product .yd-product-crossselling .products {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }
}

@media (max-width: 767px) {
    html:not(.has-simpledesigner) .page-product .yd-product-crossselling {
        width: min(94vw, 680px);
        margin-top: 40px;
    }

    html:not(.has-simpledesigner) .page-product .yd-product-crossselling .products {
        grid-template-columns: 1fr;
    }
}

html:not(.has-simpledesigner) .page-product .yd-product-recommendations {
    width: min(96vw, 1720px);
    margin: 56px auto 0;
}

html:not(.has-simpledesigner) .page-product .yd-product-recommendations>section,
html:not(.has-simpledesigner) .page-product .yd-product-recommendations__inner {
    padding-top: 28px;
    border-top: 1px solid rgba(17, 17, 17, 0.08);
}

html:not(.has-simpledesigner) .page-product .yd-product-recommendations h2,
html:not(.has-simpledesigner) .page-product .yd-product-recommendations .h5,
html:not(.has-simpledesigner) .page-product .yd-product-recommendations p.h5 {
    margin: 0 0 22px !important;
    font-size: clamp(1.2rem, 1.8vw, 1.8rem) !important;
    font-weight: 700 !important;
    letter-spacing: -0.03em !important;
    text-transform: none !important;
    color: #171717 !important;
}

html:not(.has-simpledesigner) .page-product .yd-product-recommendations .products,
html:not(.has-simpledesigner) .page-product .yd-product-recommendations section>div:last-child {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

html:not(.has-simpledesigner) .page-product .yd-product-recommendations .products.row {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

html:not(.has-simpledesigner) .page-product .yd-product-recommendations .products>article,
html:not(.has-simpledesigner) .page-product .yd-product-recommendations .products>.js-product-miniature,
html:not(.has-simpledesigner) .page-product .yd-product-recommendations section>div:last-child>article,
html:not(.has-simpledesigner) .page-product .yd-product-recommendations section>div:last-child>.js-product-miniature {
    width: auto !important;
    max-width: none !important;
    flex: none !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

@media (max-width: 1199px) {

    html:not(.has-simpledesigner) .page-product .yd-product-recommendations .products,
    html:not(.has-simpledesigner) .page-product .yd-product-recommendations section>div:last-child {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }
}

@media (max-width: 767px) {
    html:not(.has-simpledesigner) .page-product .yd-product-recommendations {
        width: min(94vw, 680px);
        margin-top: 40px;
    }

    html:not(.has-simpledesigner) .page-product .yd-product-recommendations .products,
    html:not(.has-simpledesigner) .page-product .yd-product-recommendations section>div:last-child {
        grid-template-columns: 1fr;
    }
}

html:not(.has-simpledesigner) .page-product .yd-product-recommendations {
    width: min(96vw, 1720px);
    margin: 56px auto 0;
}

html:not(.has-simpledesigner) .page-product .yd-product-recommendations__section,
html:not(.has-simpledesigner) .page-product .yd-product-recommendations__inner {
    padding-top: 28px;
    border-top: 1px solid rgba(17, 17, 17, 0.08);
}

html:not(.has-simpledesigner) .page-product .yd-product-recommendations__section>h2,
html:not(.has-simpledesigner) .page-product .yd-product-recommendations__inner>h2 {
    margin: 0 0 22px !important;
    font-size: clamp(1.2rem, 1.8vw, 1.8rem) !important;
    font-weight: 700 !important;
    letter-spacing: -0.03em !important;
    text-transform: none !important;
    color: #171717 !important;
}

html:not(.has-simpledesigner) .page-product .yd-product-recommendations .products.row {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

html:not(.has-simpledesigner) .page-product .yd-product-recommendations .products.row>[class*='col-'] {
    width: 100% !important;
    max-width: 100% !important;
    flex: none !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

html:not(.has-simpledesigner) .page-product .yd-product-recommendations .thumbnail-container {
    height: 100% !important;
}

html:not(.has-simpledesigner) .page-product .yd-product-recommendations .product-description,
html:not(.has-simpledesigner) .page-product .yd-product-recommendations .highlighted-informations,
html:not(.has-simpledesigner) .page-product .yd-product-recommendations .variant-links,
html:not(.has-simpledesigner) .page-product .yd-product-recommendations .product-variants,
html:not(.has-simpledesigner) .page-product .yd-product-recommendations .product-add-to-cart,
html:not(.has-simpledesigner) .page-product .yd-product-recommendations .wishlist-button-add,
html:not(.has-simpledesigner) .page-product .yd-product-recommendations .functional-buttons,
html:not(.has-simpledesigner) .page-product .yd-product-recommendations .comments-note {
    display: none !important;
}

html:not(.has-simpledesigner) .page-product .yd-product-recommendations .product-miniature {
    margin-bottom: 0 !important;
}

html:not(.has-simpledesigner) .page-product .yd-product-recommendations .product-title {
    min-height: 2.8em;
}

@media (max-width: 1199px) {
    html:not(.has-simpledesigner) .page-product .yd-product-recommendations .products.row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }
}

@media (max-width: 767px) {
    html:not(.has-simpledesigner) .page-product .yd-product-recommendations {
        width: min(94vw, 680px);
        margin-top: 40px;
    }

    html:not(.has-simpledesigner) .page-product .yd-product-recommendations .products.row {
        grid-template-columns: 1fr;
    }
}

html:not(.has-simpledesigner) .page-product .yd-product-recommendations .yd-reco-grid {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 24px !important;
    margin: 0 !important;
}

html:not(.has-simpledesigner) .page-product .yd-product-recommendations .yd-reco-item {
    width: 100% !important;
    max-width: 100% !important;
    flex: none !important;
    padding: 0 !important;
}

html:not(.has-simpledesigner) .page-product .yd-product-recommendations .yd-reco-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 18px;
    border: 1px solid rgba(17, 17, 17, 0.08);
    border-radius: 26px;
    background: #fff;
    box-shadow: 0 18px 40px rgba(17, 17, 17, 0.06);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

html:not(.has-simpledesigner) .page-product .yd-product-recommendations .yd-reco-card:hover {
    transform: translateY(-3px);
    border-color: rgba(95, 131, 148, 0.25);
    box-shadow: 0 24px 50px rgba(17, 17, 17, 0.1);
}

html:not(.has-simpledesigner) .page-product .yd-product-recommendations .yd-reco-card__media {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1 / 1;
    padding: 18px;
    border-radius: 22px;
    background: #fbfbfa;
    overflow: hidden;
}

html:not(.has-simpledesigner) .page-product .yd-product-recommendations .yd-reco-card__media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform .22s ease;
}

html:not(.has-simpledesigner) .page-product .yd-product-recommendations .yd-reco-card:hover .yd-reco-card__media img {
    transform: scale(1.03);
}

html:not(.has-simpledesigner) .page-product .yd-product-recommendations .yd-reco-card__body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    gap: 12px;
    padding-top: 16px;
}

html:not(.has-simpledesigner) .page-product .yd-product-recommendations .yd-reco-card__title {
    margin: 0;
    font-size: 1rem;
    line-height: 1.35;
    font-weight: 700;
    letter-spacing: -0.02em;
}

html:not(.has-simpledesigner) .page-product .yd-product-recommendations .yd-reco-card__title a {
    color: #171717;
    text-decoration: none;
}

html:not(.has-simpledesigner) .page-product .yd-product-recommendations .yd-reco-card__price {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-top: auto;
}

html:not(.has-simpledesigner) .page-product .yd-product-recommendations .yd-reco-card__price-current {
    font-size: 1.08rem;
    font-weight: 800;
    color: #171717;
}

html:not(.has-simpledesigner) .page-product .yd-product-recommendations .yd-reco-card__price-regular {
    font-size: 0.92rem;
    color: #8d8d8d;
    text-decoration: line-through;
}

html:not(.has-simpledesigner) .page-product .yd-product-recommendations .yd-reco-card__actions {
    margin-top: 4px;
}

html:not(.has-simpledesigner) .page-product .yd-product-recommendations .yd-reco-card__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 48px;
    padding: 0 18px;
    border: 0;
    border-radius: 999px;
    background: #7f9fb1;
    color: #fff;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-decoration: none;
    box-shadow: 0 14px 28px rgba(127, 159, 177, 0.2);
    transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

html:not(.has-simpledesigner) .page-product .yd-product-recommendations .yd-reco-card__cta:hover,
html:not(.has-simpledesigner) .page-product .yd-product-recommendations .yd-reco-card__cta:focus {
    background: #6d8d9f;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 18px 34px rgba(127, 159, 177, 0.26);
}

html:not(.has-simpledesigner) .page-product .yd-product-recommendations .yd-reco-card__cta--view {
    background: #f4f2ed;
    color: #171717;
    box-shadow: none;
}

html:not(.has-simpledesigner) .page-product .yd-product-recommendations .yd-reco-card__cta--view:hover,
html:not(.has-simpledesigner) .page-product .yd-product-recommendations .yd-reco-card__cta--view:focus {
    background: #ece8e1;
    color: #171717;
    box-shadow: none;
}

@media (max-width: 1199px) {
    html:not(.has-simpledesigner) .page-product .yd-product-recommendations .yd-reco-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 18px !important;
    }
}

@media (max-width: 767px) {
    html:not(.has-simpledesigner) .page-product .yd-product-recommendations .yd-reco-grid {
        grid-template-columns: 1fr !important;
    }
}

html:not(.has-simpledesigner) .footer-container .block_newsletter {
    float: none !important;
    width: min(100%, 1120px) !important;
    max-width: 1120px !important;
    margin: 24px auto 0 !important;
    padding: 0 !important;
}

html:not(.has-simpledesigner) .footer-container .block_newsletter>.row {
    display: grid !important;
    grid-template-columns: minmax(260px, 0.95fr) minmax(420px, 1.45fr);
    gap: 28px !important;
    align-items: center;
    margin: 0 !important;
    padding: 34px 38px !important;
    border: 1px solid rgba(17, 17, 17, 0.08);
    border-radius: 28px;
    background:
        radial-gradient(circle at top left, rgba(127, 159, 177, 0.14), transparent 42%),
        linear-gradient(135deg, #ffffff 0%, #faf7f2 100%);
    box-shadow: 0 22px 44px rgba(17, 17, 17, 0.07);
}

html:not(.has-simpledesigner) .footer-container .block_newsletter>.row>[class*='col-'] {
    float: none !important;
    width: auto !important;
    max-width: none !important;
    min-width: 0;
    padding: 0 !important;
}

html:not(.has-simpledesigner) .footer-container .block_newsletter #block-newsletter-label {
    margin: 0 !important;
    color: #171717;
    font-size: clamp(1.65rem, 2.2vw, 2.35rem);
    line-height: 1.02;
    font-weight: 800;
    letter-spacing: -0.04em;
    text-wrap: balance;
}

html:not(.has-simpledesigner) .footer-container .block_newsletter form {
    margin: 0;
}

html:not(.has-simpledesigner) .footer-container .block_newsletter form>.row {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
    margin: 0 !important;
}

html:not(.has-simpledesigner) .footer-container .block_newsletter form>.row>.col-xs-12 {
    float: none !important;
    width: 100% !important;
    max-width: none !important;
    padding: 0 !important;
}

html:not(.has-simpledesigner) .footer-container .block_newsletter .input-wrapper {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    align-items: stretch;
}

html:not(.has-simpledesigner) .footer-container .block_newsletter input[type='email'] {
    width: 100%;
    min-height: 62px;
    padding: 0 22px;
    border: 1px solid rgba(23, 23, 23, 0.1);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: #171717;
    font-size: 1rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

html:not(.has-simpledesigner) .footer-container .block_newsletter input[type='email']::placeholder {
    color: #818181;
}

html:not(.has-simpledesigner) .footer-container .block_newsletter input[type='email']:focus {
    outline: none;
    border-color: rgba(127, 159, 177, 0.55);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(127, 159, 177, 0.14);
}

html:not(.has-simpledesigner) .footer-container .block_newsletter input[type='submit'].btn {
    float: none !important;
    min-width: 190px;
    min-height: 62px;
    padding: 0 28px;
    border: 0;
    border-radius: 999px;
    background: #7f9fb1;
    color: #fff;
    font-size: 0.96rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    box-shadow: 0 16px 30px rgba(127, 159, 177, 0.22);
    transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

html:not(.has-simpledesigner) .footer-container .block_newsletter input[type='submit'].btn:hover,
html:not(.has-simpledesigner) .footer-container .block_newsletter input[type='submit'].btn:focus {
    background: #6d8d9f;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 20px 34px rgba(127, 159, 177, 0.28);
}

html:not(.has-simpledesigner) .footer-container .block_newsletter .hidden-sm-up {
    display: none !important;
}

html:not(.has-simpledesigner) .footer-container .block_newsletter .hidden-xs-down {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
}

html:not(.has-simpledesigner) .footer-container .block_newsletter p:not(#block-newsletter-label) {
    margin: 0;
    color: #6d6d6d;
    font-size: 0.98rem;
    line-height: 1.65;
}

html:not(.has-simpledesigner) .footer-container .block_newsletter .alert {
    margin-top: 6px;
    border-radius: 18px;
}

@media (max-width: 991px) {
    html:not(.has-simpledesigner) .footer-container .block_newsletter>.row {
        grid-template-columns: 1fr;
        gap: 20px !important;
        padding: 28px 24px !important;
    }

    html:not(.has-simpledesigner) .footer-container .block_newsletter #block-newsletter-label {
        max-width: 16ch;
    }
}

@media (max-width: 767px) {
    html:not(.has-simpledesigner) .footer-container .block_newsletter {
        width: min(94vw, 680px) !important;
        margin-top: 18px !important;
    }

    html:not(.has-simpledesigner) .footer-container .block_newsletter>.row {
        padding: 24px 20px !important;
        border-radius: 24px;
    }

    html:not(.has-simpledesigner) .footer-container .block_newsletter .input-wrapper {
        grid-template-columns: 1fr;
    }

    html:not(.has-simpledesigner) .footer-container .block_newsletter .hidden-xs-down {
        display: none !important;
    }

    html:not(.has-simpledesigner) .footer-container .block_newsletter .hidden-sm-up {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        width: 100%;
    }

    html:not(.has-simpledesigner) .footer-container .block_newsletter input[type='submit'].btn {
        min-width: 0;
        width: 100%;
    }
}

html:not(.has-simpledesigner) #footer.is-footer .block_newsletter,
html:not(.has-simpledesigner) #footer .block_newsletter {
    float: none !important;
    width: min(100%, 1120px) !important;
    max-width: 1120px !important;
    margin: 24px auto 0 !important;
    padding: 0 !important;
}

html:not(.has-simpledesigner) #footer.is-footer .block_newsletter>.row,
html:not(.has-simpledesigner) #footer .block_newsletter>.row {
    display: grid !important;
    grid-template-columns: minmax(260px, 0.95fr) minmax(420px, 1.45fr);
    gap: 28px !important;
    align-items: center;
    margin: 0 !important;
    padding: 34px 38px !important;
    border: 1px solid rgba(17, 17, 17, 0.08);
    border-radius: 28px;
    background:
        radial-gradient(circle at top left, rgba(127, 159, 177, 0.14), transparent 42%),
        linear-gradient(135deg, #ffffff 0%, #faf7f2 100%);
    box-shadow: 0 22px 44px rgba(17, 17, 17, 0.07);
}

html:not(.has-simpledesigner) #footer.is-footer .block_newsletter>.row>[class*='col-'],
html:not(.has-simpledesigner) #footer .block_newsletter>.row>[class*='col-'] {
    float: none !important;
    width: auto !important;
    max-width: none !important;
    min-width: 0;
    padding: 0 !important;
}

html:not(.has-simpledesigner) #footer.is-footer .block_newsletter #block-newsletter-label,
html:not(.has-simpledesigner) #footer .block_newsletter #block-newsletter-label {
    margin: 0 !important;
    color: #171717;
    font-size: clamp(1.65rem, 2.2vw, 2.35rem);
    line-height: 1.02;
    font-weight: 800;
    letter-spacing: -0.04em;
    text-wrap: balance;
}

html:not(.has-simpledesigner) #footer.is-footer .block_newsletter form,
html:not(.has-simpledesigner) #footer .block_newsletter form {
    margin: 0;
}

html:not(.has-simpledesigner) #footer.is-footer .block_newsletter form>.row,
html:not(.has-simpledesigner) #footer .block_newsletter form>.row {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
    margin: 0 !important;
}

html:not(.has-simpledesigner) #footer.is-footer .block_newsletter form>.row>.col-xs-12,
html:not(.has-simpledesigner) #footer .block_newsletter form>.row>.col-xs-12 {
    float: none !important;
    width: 100% !important;
    max-width: none !important;
    padding: 0 !important;
}

html:not(.has-simpledesigner) #footer.is-footer .block_newsletter .input-wrapper,
html:not(.has-simpledesigner) #footer .block_newsletter .input-wrapper {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    align-items: stretch;
}

html:not(.has-simpledesigner) #footer.is-footer .block_newsletter input[type='email'],
html:not(.has-simpledesigner) #footer .block_newsletter input[type='email'] {
    width: 100%;
    min-height: 62px;
    padding: 0 22px;
    border: 1px solid rgba(23, 23, 23, 0.1);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: #171717;
    font-size: 1rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

html:not(.has-simpledesigner) #footer.is-footer .block_newsletter input[type='email']::placeholder,
html:not(.has-simpledesigner) #footer .block_newsletter input[type='email']::placeholder {
    color: #818181;
}

html:not(.has-simpledesigner) #footer.is-footer .block_newsletter input[type='email']:focus,
html:not(.has-simpledesigner) #footer .block_newsletter input[type='email']:focus {
    outline: none;
    border-color: rgba(127, 159, 177, 0.55);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(127, 159, 177, 0.14);
}

html:not(.has-simpledesigner) #footer.is-footer .block_newsletter input[type='submit'].btn,
html:not(.has-simpledesigner) #footer .block_newsletter input[type='submit'].btn {
    float: none !important;
    min-width: 190px;
    min-height: 62px;
    padding: 0 28px;
    border: 0;
    border-radius: 999px;
    background: #7f9fb1;
    color: #fff;
    font-size: 0.96rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    box-shadow: 0 16px 30px rgba(127, 159, 177, 0.22);
    transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

html:not(.has-simpledesigner) #footer.is-footer .block_newsletter input[type='submit'].btn:hover,
html:not(.has-simpledesigner) #footer.is-footer .block_newsletter input[type='submit'].btn:focus,
html:not(.has-simpledesigner) #footer .block_newsletter input[type='submit'].btn:hover,
html:not(.has-simpledesigner) #footer .block_newsletter input[type='submit'].btn:focus {
    background: #6d8d9f;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 20px 34px rgba(127, 159, 177, 0.28);
}

html:not(.has-simpledesigner) #footer.is-footer .block_newsletter .hidden-sm-up,
html:not(.has-simpledesigner) #footer .block_newsletter .hidden-sm-up {
    display: none !important;
}

html:not(.has-simpledesigner) #footer.is-footer .block_newsletter .hidden-xs-down,
html:not(.has-simpledesigner) #footer .block_newsletter .hidden-xs-down {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
}

html:not(.has-simpledesigner) #footer.is-footer .block_newsletter p:not(#block-newsletter-label),
html:not(.has-simpledesigner) #footer .block_newsletter p:not(#block-newsletter-label) {
    margin: 0;
    color: #6d6d6d;
    font-size: 0.98rem;
    line-height: 1.65;
}

html:not(.has-simpledesigner) #footer.is-footer .block_newsletter .alert,
html:not(.has-simpledesigner) #footer .block_newsletter .alert {
    margin-top: 6px;
    border-radius: 18px;
}

@media (max-width: 991px) {

    html:not(.has-simpledesigner) #footer.is-footer .block_newsletter>.row,
    html:not(.has-simpledesigner) #footer .block_newsletter>.row {
        grid-template-columns: 1fr;
        gap: 20px !important;
        padding: 28px 24px !important;
    }

    html:not(.has-simpledesigner) #footer.is-footer .block_newsletter #block-newsletter-label,
    html:not(.has-simpledesigner) #footer .block_newsletter #block-newsletter-label {
        max-width: 16ch;
    }
}

@media (max-width: 767px) {

    html:not(.has-simpledesigner) #footer.is-footer .block_newsletter,
    html:not(.has-simpledesigner) #footer .block_newsletter {
        width: min(94vw, 680px) !important;
        margin-top: 18px !important;
    }

    html:not(.has-simpledesigner) #footer.is-footer .block_newsletter>.row,
    html:not(.has-simpledesigner) #footer .block_newsletter>.row {
        padding: 24px 20px !important;
        border-radius: 24px;
    }

    html:not(.has-simpledesigner) #footer.is-footer .block_newsletter .input-wrapper,
    html:not(.has-simpledesigner) #footer .block_newsletter .input-wrapper {
        grid-template-columns: 1fr;
    }

    html:not(.has-simpledesigner) #footer.is-footer .block_newsletter .hidden-xs-down,
    html:not(.has-simpledesigner) #footer .block_newsletter .hidden-xs-down {
        display: none !important;
    }

    html:not(.has-simpledesigner) #footer.is-footer .block_newsletter .hidden-sm-up,
    html:not(.has-simpledesigner) #footer .block_newsletter .hidden-sm-up {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        width: 100%;
    }

    html:not(.has-simpledesigner) #footer.is-footer .block_newsletter input[type='submit'].btn,
    html:not(.has-simpledesigner) #footer .block_newsletter input[type='submit'].btn {
        min-width: 0;
        width: 100%;
    }
}

html:not(.has-simpledesigner) #footer.is-footer .block_newsletter>.row,
html:not(.has-simpledesigner) #footer .block_newsletter>.row {
    background: #ffffff !important;
    border: 1px solid rgba(17, 17, 17, 0.08) !important;
    border-radius: 30px !important;
    box-shadow: 0 20px 40px rgba(17, 17, 17, 0.06) !important;
}

html:not(.has-simpledesigner) #footer.is-footer .block_newsletter form>.row,
html:not(.has-simpledesigner) #footer .block_newsletter form>.row {
    gap: 16px !important;
}

html:not(.has-simpledesigner) #footer.is-footer .block_newsletter .input-wrapper,
html:not(.has-simpledesigner) #footer .block_newsletter .input-wrapper {
    grid-template-columns: minmax(0, 1fr) auto !important;
    gap: 14px !important;
}

html:not(.has-simpledesigner) #footer.is-footer .block_newsletter input[type='email'],
html:not(.has-simpledesigner) #footer .block_newsletter input[type='email'] {
    min-height: 64px !important;
    background: #ffffff !important;
    border: 1px solid rgba(17, 17, 17, 0.1) !important;
    box-shadow: none !important;
}

html:not(.has-simpledesigner) #footer.is-footer .block_newsletter input[type='submit'].btn,
html:not(.has-simpledesigner) #footer .block_newsletter input[type='submit'].btn {
    order: 2;
    min-width: 210px !important;
    min-height: 64px !important;
    border-radius: 22px !important;
    box-shadow: none !important;
}

html:not(.has-simpledesigner) #footer.is-footer .block_newsletter .hidden-xs-down,
html:not(.has-simpledesigner) #footer .block_newsletter .hidden-xs-down {
    align-self: stretch;
}

@media (max-width: 767px) {

    html:not(.has-simpledesigner) #footer.is-footer .block_newsletter>.row,
    html:not(.has-simpledesigner) #footer .block_newsletter>.row {
        border-radius: 26px !important;
    }

    html:not(.has-simpledesigner) #footer.is-footer .block_newsletter .input-wrapper,
    html:not(.has-simpledesigner) #footer .block_newsletter .input-wrapper {
        grid-template-columns: 1fr !important;
    }

    html:not(.has-simpledesigner) #footer.is-footer .block_newsletter input[type='submit'].btn,
    html:not(.has-simpledesigner) #footer .block_newsletter input[type='submit'].btn {
        order: initial;
        border-radius: 20px !important;
    }
}

html:not(.has-simpledesigner) #footer.is-footer .block_newsletter,
html:not(.has-simpledesigner) #footer .block_newsletter {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    overflow: visible !important;
}

html:not(.has-simpledesigner) #footer.is-footer .block_newsletter>.row,
html:not(.has-simpledesigner) #footer .block_newsletter>.row {
    overflow: hidden !important;
    border-radius: 30px !important;
    background: #ffffff !important;
    box-shadow: 0 18px 42px rgba(17, 17, 17, 0.06) !important;
}

html:not(.has-simpledesigner) #footer.is-footer .block_newsletter form>.row,
html:not(.has-simpledesigner) #footer .block_newsletter form>.row {
    gap: 12px !important;
}

html:not(.has-simpledesigner) #footer.is-footer .block_newsletter form>.row>.col-xs-12:first-child,
html:not(.has-simpledesigner) #footer .block_newsletter form>.row>.col-xs-12:first-child {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    gap: 14px !important;
    align-items: center !important;
}

html:not(.has-simpledesigner) #footer.is-footer .block_newsletter .input-wrapper,
html:not(.has-simpledesigner) #footer .block_newsletter .input-wrapper {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
}

html:not(.has-simpledesigner) #footer.is-footer .block_newsletter input[type='email'],
html:not(.has-simpledesigner) #footer .block_newsletter input[type='email'] {
    min-height: 64px !important;
    border: 1px solid rgba(17, 17, 17, 0.08) !important;
    border-radius: 20px !important;
    background: #fff !important;
    box-shadow: none !important;
}

html:not(.has-simpledesigner) #footer.is-footer .block_newsletter .hidden-xs-down,
html:not(.has-simpledesigner) #footer .block_newsletter .hidden-xs-down {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: auto !important;
}

html:not(.has-simpledesigner) #footer.is-footer .block_newsletter input[type='submit'].btn,
html:not(.has-simpledesigner) #footer .block_newsletter input[type='submit'].btn {
    min-width: 210px !important;
    min-height: 64px !important;
    padding: 0 26px !important;
    border-radius: 20px !important;
    background: #6f92a3 !important;
    color: #fff !important;
    font-size: 0.92rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.08em !important;
    box-shadow: 0 16px 28px rgba(111, 146, 163, 0.26) !important;
}

html:not(.has-simpledesigner) #footer.is-footer .block_newsletter input[type='submit'].btn:hover,
html:not(.has-simpledesigner) #footer.is-footer .block_newsletter input[type='submit'].btn:focus,
html:not(.has-simpledesigner) #footer .block_newsletter input[type='submit'].btn:hover,
html:not(.has-simpledesigner) #footer .block_newsletter input[type='submit'].btn:focus {
    background: #5f8394 !important;
    transform: translateY(-1px) !important;
}

html:not(.has-simpledesigner) #footer.is-footer .block_newsletter .clearfix,
html:not(.has-simpledesigner) #footer .block_newsletter .clearfix {
    display: none !important;
}

@media (max-width: 767px) {

    html:not(.has-simpledesigner) #footer.is-footer .block_newsletter>.row,
    html:not(.has-simpledesigner) #footer .block_newsletter>.row {
        border-radius: 26px !important;
    }

    html:not(.has-simpledesigner) #footer.is-footer .block_newsletter form>.row>.col-xs-12:first-child,
    html:not(.has-simpledesigner) #footer .block_newsletter form>.row>.col-xs-12:first-child {
        grid-template-columns: 1fr !important;
    }

    html:not(.has-simpledesigner) #footer.is-footer .block_newsletter .hidden-xs-down,
    html:not(.has-simpledesigner) #footer .block_newsletter .hidden-xs-down {
        display: none !important;
    }

    html:not(.has-simpledesigner) #footer.is-footer .block_newsletter .hidden-sm-up,
    html:not(.has-simpledesigner) #footer .block_newsletter .hidden-sm-up {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100% !important;
    }

    html:not(.has-simpledesigner) #footer.is-footer .block_newsletter input[type='submit'].btn,
    html:not(.has-simpledesigner) #footer .block_newsletter input[type='submit'].btn {
        min-width: 0 !important;
        width: 100% !important;
    }
}

html:not(.has-simpledesigner) .page-product .yd-product-recommendations .yd-reco-card__media {
    padding: 12px !important;
}

html:not(.has-simpledesigner) .page-product .yd-product-recommendations .yd-reco-card__media img {
    width: 108% !important;
    height: 108% !important;
    max-width: none !important;
    max-height: none !important;
}

html:not(.has-simpledesigner) .page-product .yd-product-recommendations .yd-reco-card__media {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 10px !important;
    overflow: hidden !important;
}

html:not(.has-simpledesigner) .page-product .yd-product-recommendations .yd-reco-card__media picture {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    height: 100% !important;
}

html:not(.has-simpledesigner) .page-product .yd-product-recommendations .yd-reco-card__media img {
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: contain !important;
    object-position: center center !important;
    transform: scale(1.12) !important;
    transform-origin: center center !important;
}

html:not(.has-simpledesigner) .page-product .yd-product-recommendations .yd-reco-card:hover .yd-reco-card__media img {
    transform: scale(1.15) !important;
}

/* =========================================================
   SIMPLEDESIGNER — harmonisation avec le design YouDesign
   ========================================================= */
html.has-simpledesigner .page-product #wrapper {
    background:
        radial-gradient(circle at top left, rgba(0, 0, 0, 0.025), transparent 34%),
        linear-gradient(180deg, #fff 0%, #fbfbf8 100%);
}

html.has-simpledesigner .page-product #main {
    width: min(96vw, 1680px);
    margin: 0 auto;
    padding: 34px 0 60px;
}

html.has-simpledesigner .page-product .yd-product-shell {
    display: block;
}

html.has-simpledesigner .page-product .yd-product-designer,
html.has-simpledesigner .page-product #sd-stage.sd-stage {
    width: 100%;
}

html.has-simpledesigner .page-product #sd-stage.sd-stage {
    position: relative;
    padding: clamp(20px, 2vw, 30px);
    border: 1px solid rgba(17, 17, 17, 0.08);
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 24px 60px rgba(17, 17, 17, 0.08);
    backdrop-filter: blur(12px);
}

html.has-simpledesigner .page-product #sd-topbar.sd-topbar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: start;
    margin: 0 0 26px;
    padding: 0 0 22px;
    border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

html.has-simpledesigner .page-product #sd-topbar .sd-topbar__main {
    min-width: 0;
}

html.has-simpledesigner .page-product #sd-topbar .sd-topbar__aside {
    display: grid;
    justify-items: end;
    gap: 12px;
    min-width: max-content;
    text-align: right;
}

html.has-simpledesigner .page-product #sd-topbar .sd-topbar__price {
    display: grid;
    gap: 4px;
    justify-items: end;
}

html.has-simpledesigner .page-product #sd-topbar .sd-topbar__wishlist {
    display: flex;
    justify-content: flex-end;
    width: 100%;
}

html.has-simpledesigner .page-product #sd-topbar h1 {
    margin: 0;
    font-size: clamp(2.2rem, 3.2vw, 3.7rem);
    line-height: 0.94;
    font-weight: 800;
    letter-spacing: -0.05em;
    text-transform: uppercase;
    color: #111;
}

html.has-simpledesigner .page-product #sd-topbar .product-prices,
html.has-simpledesigner .page-product #sd-topbar .current-price {
    margin: 0;
}

html.has-simpledesigner .page-product #sd-topbar .current-price-value,
html.has-simpledesigner .page-product #sd-topbar span[itemprop="price"] {
    font-size: clamp(1.5rem, 2vw, 2.1rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    color: #111;
}

html.has-simpledesigner .page-product #sd-topbar .wishlist-button-add,
html.has-simpledesigner .page-product #sd-topbar button.wishlist-button-add,
html.has-simpledesigner .page-product #sd-topbar .wishlist-button-add button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border: 1px solid rgba(17, 17, 17, 0.12);
    border-radius: 999px;
    background: #fff;
    box-shadow: 0 12px 24px rgba(17, 17, 17, 0.08);
}

html.has-simpledesigner .page-product .simpledesigner__title {
    margin: 0 0 8px;
    font-size: 0.86rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #6f92a3;
}

html.has-simpledesigner .page-product .simpledesigner__hint,
html.has-simpledesigner .page-product .simpledesigner__note,
html.has-simpledesigner .page-product #sd-validation-note {
    color: #666;
    font-size: 0.96rem;
    line-height: 1.6;
}

html.has-simpledesigner .page-product .simpledesigner__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
    gap: clamp(28px, 3vw, 42px);
    align-items: start;
}

html.has-simpledesigner .page-product .simpledesigner__preview {
    position: sticky;
    top: 102px;
}

html.has-simpledesigner .page-product .simpledesigner__mockup {
    max-width: none;
    min-height: clamp(560px, 70vh, 860px);
    aspect-ratio: auto;
    border: 1px solid rgba(17, 17, 17, 0.08);
    border-radius: 30px;
    background:
        radial-gradient(circle at top, rgba(255, 255, 255, 0.9), rgba(245, 243, 238, 0.92) 34%, rgba(236, 233, 226, 0.95) 100%);
    box-shadow:
        0 20px 70px rgba(0, 0, 0, 0.08),
        inset 0 0 0 1px rgba(255, 255, 255, 0.35);
    overflow: hidden;
}

html.has-simpledesigner .page-product .sd-faces {
    display: inline-flex;
    gap: 10px;
    padding: 8px;
    margin: 0 0 16px;
    border: 1px solid rgba(17, 17, 17, 0.08);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 12px 28px rgba(17, 17, 17, 0.06);
}

html.has-simpledesigner .page-product .sd-face-btn {
    min-width: 120px;
    min-height: 48px;
    padding: 0 18px;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: #6e6e6e;
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

html.has-simpledesigner .page-product .sd-face-btn.is-active {
    background: #111;
    color: #fff;
    box-shadow: 0 16px 30px rgba(17, 17, 17, 0.18);
}

html.has-simpledesigner .page-product .simpledesigner__controls {
    padding: 24px;
    border: 1px solid rgba(17, 17, 17, 0.08);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 40px rgba(17, 17, 17, 0.06);
}

html.has-simpledesigner .page-product .simpledesigner__label,
html.has-simpledesigner .page-product .product-variants>.product-variants-item label,
html.has-simpledesigner .page-product .product-variants>.product-variants-item .control-label,
html.has-simpledesigner .page-product .product-add-to-cart>.control-label {
    display: block;
    margin-bottom: 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #6e6e6e;
}

html.has-simpledesigner .page-product #sd-variants-slot {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

html.has-simpledesigner .page-product .product-variants>.product-variants-item {
    margin-bottom: 22px;
}

html.has-simpledesigner .page-product .product-variants input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

html.has-simpledesigner .page-product .product-variants label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 16px;
    margin: 6px 8px 0 0;
    border: 1px solid rgba(17, 17, 17, 0.12);
    border-radius: 999px;
    background: #fff;
    color: #1f1f1f;
    font-size: 0.88rem;
    font-weight: 700;
    line-height: 1;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

html.has-simpledesigner .page-product .product-variants input[type="radio"]:checked+span,
html.has-simpledesigner .page-product .product-variants input[type="radio"]:checked+.radio-label,
html.has-simpledesigner .page-product .product-variants input[type="radio"]:checked+.color {
    color: inherit;
}

html.has-simpledesigner .page-product .product-variants label:has(input[type="radio"]:checked) {
    border-color: #6f92a3;
    background: #f4f8fa;
    box-shadow: 0 10px 22px rgba(111, 146, 163, 0.16);
}

html.has-simpledesigner .page-product .product-variants select,
html.has-simpledesigner .page-product .product-variants input[type="text"],
html.has-simpledesigner .page-product .product-variants input[type="number"],
html.has-simpledesigner .page-product .simpledesigner input.form-control,
html.has-simpledesigner .page-product .simpledesigner textarea.form-control,
html.has-simpledesigner .page-product .sd-dd__btn,
html.has-simpledesigner .page-product #quantity_wanted {
    width: 100%;
    min-height: 58px;
    padding: 0 18px;
    border: 1px solid rgba(17, 17, 17, 0.12) !important;
    border-radius: 18px !important;
    background: rgba(255, 255, 255, 0.96) !important;
    color: #111;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

html.has-simpledesigner .page-product .simpledesigner input.form-control:focus,
html.has-simpledesigner .page-product .simpledesigner textarea.form-control:focus,
html.has-simpledesigner .page-product .sd-dd__btn:focus,
html.has-simpledesigner .page-product #quantity_wanted:focus {
    outline: none;
    border-color: rgba(127, 159, 177, 0.55) !important;
    box-shadow: 0 0 0 4px rgba(127, 159, 177, 0.14) !important;
}

html.has-simpledesigner .page-product .sd-layer-card {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(17, 17, 17, 0.08) !important;
}

html.has-simpledesigner .page-product .sd-thumbs {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(86px, 86px)) !important;
    gap: 10px !important;
    justify-content: start;
}

html.has-simpledesigner .page-product .sd-thumbs>button {
    width: 86px !important;
    min-width: 86px !important;
    max-width: 86px !important;
    min-height: 86px !important;
    aspect-ratio: 1 / 1;
    margin: 0 !important;
    padding: 8px !important;
    border: 1px solid rgba(17, 17, 17, 0.1) !important;
    border-radius: 18px !important;
    background: #fff !important;
    box-shadow: 0 10px 22px rgba(17, 17, 17, 0.05);
    display: inline-flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    overflow: hidden !important;
    vertical-align: top;
}

html.has-simpledesigner .page-product .sd-thumbs>button img {
    width: 72% !important;
    height: 72% !important;
    object-fit: contain !important;
    display: block !important;
}

html.has-simpledesigner .page-product .sd-thumbs>button>div {
    display: none !important;
}

html.has-simpledesigner .page-product .sd-thumbs>button[aria-pressed="true"],
html.has-simpledesigner .page-product .sd-thumbs>button.is-active {
    border-color: #6f92a3 !important;
    box-shadow: 0 14px 28px rgba(111, 146, 163, 0.18) !important;
}

html.has-simpledesigner .page-product .sd-textblock-info {
    margin-bottom: 14px;
    padding: 14px 16px !important;
    border: 1px solid rgba(111, 146, 163, 0.18);
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(111, 146, 163, 0.09), rgba(111, 146, 163, 0.03));
    color: #557280 !important;
}

html.has-simpledesigner .page-product #sd-cart-slot {
    margin-top: 22px;
    padding-top: 20px;
    border-top: 1px solid rgba(17, 17, 17, 0.08);
}

html.has-simpledesigner .page-product .product-add-to-cart .product-quantity {
    display: grid;
    grid-template-columns: 116px minmax(0, 1fr);
    gap: 16px;
    align-items: end;
}

html.has-simpledesigner .page-product .product-add-to-cart .add-to-cart {
    width: 100%;
    min-height: 64px;
    border: 0;
    border-radius: 22px;
    background: #6f92a3;
    color: #fff;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 16px 28px rgba(111, 146, 163, 0.26);
}

html.has-simpledesigner .page-product .product-add-to-cart .add-to-cart:hover,
html.has-simpledesigner .page-product .product-add-to-cart .add-to-cart:focus {
    background: #5f8394;
    color: #fff;
    transform: translateY(-1px);
}

html.has-simpledesigner .page-product .product-add-to-cart .add-to-cart i {
    margin-right: 8px;
}

html.has-simpledesigner .page-product .product-additional-info,
html.has-simpledesigner .page-product #block-reassurance {
    margin-top: 22px;
    padding-top: 22px;
    border-top: 1px solid rgba(17, 17, 17, 0.08);
}

html.has-simpledesigner .footer-container .block_newsletter,
html.has-simpledesigner #footer.is-footer .block_newsletter,
html.has-simpledesigner #footer .block_newsletter {
    width: min(96vw, 1320px) !important;
    margin: 44px auto 0 !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    overflow: visible !important;
}

html.has-simpledesigner .footer-container .block_newsletter>.row,
html.has-simpledesigner #footer.is-footer .block_newsletter>.row,
html.has-simpledesigner #footer .block_newsletter>.row {
    display: grid !important;
    grid-template-columns: minmax(280px, 400px) minmax(0, 1fr) !important;
    gap: 28px !important;
    align-items: center !important;
    padding: 30px 34px !important;
    overflow: hidden !important;
    border: 1px solid rgba(17, 17, 17, 0.08) !important;
    border-radius: 30px !important;
    background: #ffffff !important;
    box-shadow: 0 18px 42px rgba(17, 17, 17, 0.06) !important;
}

html.has-simpledesigner .footer-container .block_newsletter>.row>[class*='col-'],
html.has-simpledesigner #footer.is-footer .block_newsletter>.row>[class*='col-'],
html.has-simpledesigner #footer .block_newsletter>.row>[class*='col-'] {
    float: none !important;
    width: 100% !important;
    max-width: none !important;
    padding: 0 !important;
}

html.has-simpledesigner .footer-container .block_newsletter #block-newsletter-label,
html.has-simpledesigner #footer.is-footer .block_newsletter #block-newsletter-label,
html.has-simpledesigner #footer .block_newsletter #block-newsletter-label {
    margin: 0 !important;
    font-size: clamp(1.7rem, 2.4vw, 2.5rem) !important;
    line-height: 0.95 !important;
    font-weight: 800 !important;
    letter-spacing: -0.05em !important;
    color: #171717 !important;
}

html.has-simpledesigner .footer-container .block_newsletter p:not(#block-newsletter-label),
html.has-simpledesigner #footer.is-footer .block_newsletter p:not(#block-newsletter-label),
html.has-simpledesigner #footer .block_newsletter p:not(#block-newsletter-label) {
    margin: 0 !important;
    color: #6d6d6d !important;
    font-size: 0.98rem !important;
    line-height: 1.65 !important;
}

html.has-simpledesigner .footer-container .block_newsletter form,
html.has-simpledesigner #footer.is-footer .block_newsletter form,
html.has-simpledesigner #footer .block_newsletter form {
    width: 100%;
}

html.has-simpledesigner .footer-container .block_newsletter form>.row,
html.has-simpledesigner #footer.is-footer .block_newsletter form>.row,
html.has-simpledesigner #footer .block_newsletter form>.row {
    gap: 12px !important;
}

html.has-simpledesigner .footer-container .block_newsletter form>.row>.col-xs-12:first-child,
html.has-simpledesigner #footer.is-footer .block_newsletter form>.row>.col-xs-12:first-child,
html.has-simpledesigner #footer .block_newsletter form>.row>.col-xs-12:first-child {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    gap: 14px !important;
    align-items: center !important;
}

html.has-simpledesigner .footer-container .block_newsletter .input-wrapper,
html.has-simpledesigner #footer.is-footer .block_newsletter .input-wrapper,
html.has-simpledesigner #footer .block_newsletter .input-wrapper {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
}

html.has-simpledesigner .footer-container .block_newsletter input[type='email'],
html.has-simpledesigner #footer.is-footer .block_newsletter input[type='email'],
html.has-simpledesigner #footer .block_newsletter input[type='email'] {
    min-height: 64px !important;
    padding: 0 22px !important;
    border: 1px solid rgba(17, 17, 17, 0.08) !important;
    border-radius: 20px !important;
    background: #fff !important;
    box-shadow: none !important;
}

html.has-simpledesigner .footer-container .block_newsletter input[type='submit'].btn,
html.has-simpledesigner #footer.is-footer .block_newsletter input[type='submit'].btn,
html.has-simpledesigner #footer .block_newsletter input[type='submit'].btn {
    min-width: 210px !important;
    min-height: 64px !important;
    padding: 0 26px !important;
    border-radius: 20px !important;
    background: #6f92a3 !important;
    color: #fff !important;
    font-size: 0.92rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.08em !important;
    box-shadow: 0 16px 28px rgba(111, 146, 163, 0.26) !important;
}

html.has-simpledesigner .footer-container .block_newsletter input[type='submit'].btn:hover,
html.has-simpledesigner .footer-container .block_newsletter input[type='submit'].btn:focus,
html.has-simpledesigner #footer.is-footer .block_newsletter input[type='submit'].btn:hover,
html.has-simpledesigner #footer.is-footer .block_newsletter input[type='submit'].btn:focus,
html.has-simpledesigner #footer .block_newsletter input[type='submit'].btn:hover,
html.has-simpledesigner #footer .block_newsletter input[type='submit'].btn:focus {
    background: #5f8394 !important;
    transform: translateY(-1px) !important;
}

html.has-simpledesigner .footer-container .block_newsletter .clearfix,
html.has-simpledesigner #footer.is-footer .block_newsletter .clearfix,
html.has-simpledesigner #footer .block_newsletter .clearfix {
    display: none !important;
}

html.has-simpledesigner .footer-container .block_newsletter .hidden-sm-up,
html.has-simpledesigner #footer.is-footer .block_newsletter .hidden-sm-up,
html.has-simpledesigner #footer .block_newsletter .hidden-sm-up {
    display: none !important;
}

html.has-simpledesigner .footer-container .block_newsletter .hidden-xs-down,
html.has-simpledesigner #footer.is-footer .block_newsletter .hidden-xs-down,
html.has-simpledesigner #footer .block_newsletter .hidden-xs-down {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

@media (max-width: 1199px) {
    html.has-simpledesigner .page-product .simpledesigner__grid {
        grid-template-columns: minmax(0, 1fr) minmax(340px, 0.9fr);
    }

    html.has-simpledesigner .page-product .simpledesigner__preview {
        top: 90px;
    }
}

@media (max-width: 991px) {
    html.has-simpledesigner .page-product #main {
        width: min(94vw, 860px);
        padding-top: 24px;
    }

    html.has-simpledesigner .page-product #sd-topbar.sd-topbar,
    html.has-simpledesigner .page-product .simpledesigner__grid,
    html.has-simpledesigner .page-product .product-add-to-cart .product-quantity,
    html.has-simpledesigner .footer-container .block_newsletter>.row,
    html.has-simpledesigner #footer.is-footer .block_newsletter>.row,
    html.has-simpledesigner #footer .block_newsletter>.row {
        grid-template-columns: 1fr !important;
    }

    html.has-simpledesigner .page-product .simpledesigner__preview {
        position: static;
    }

    html.has-simpledesigner .page-product #sd-topbar .sd-topbar__aside,
    html.has-simpledesigner .page-product #sd-topbar .sd-topbar__price,
    html.has-simpledesigner .page-product #sd-topbar .sd-topbar__wishlist {
        justify-items: start;
        justify-content: flex-start;
        text-align: left;
    }

    html.has-simpledesigner .footer-container .block_newsletter>.row,
    html.has-simpledesigner #footer.is-footer .block_newsletter>.row,
    html.has-simpledesigner #footer .block_newsletter>.row {
        padding: 28px 24px !important;
        gap: 20px !important;
    }
}

@media (max-width: 767px) {

    html.has-simpledesigner .page-product #main,
    html.has-simpledesigner .footer-container .block_newsletter,
    html.has-simpledesigner #footer.is-footer .block_newsletter,
    html.has-simpledesigner #footer .block_newsletter {
        width: min(94vw, 680px) !important;
    }

    html.has-simpledesigner .page-product #sd-stage.sd-stage,
    html.has-simpledesigner .page-product .simpledesigner__controls,
    html.has-simpledesigner .page-product .simpledesigner__mockup,
    html.has-simpledesigner .footer-container .block_newsletter>.row,
    html.has-simpledesigner #footer.is-footer .block_newsletter>.row,
    html.has-simpledesigner #footer .block_newsletter>.row {
        border-radius: 26px !important;
    }

    html.has-simpledesigner .page-product #sd-topbar.sd-topbar {
        grid-template-columns: 1fr;
        align-items: start;
    }

    html.has-simpledesigner .page-product .sd-faces {
        width: 100%;
        justify-content: space-between;
    }

    html.has-simpledesigner .page-product .sd-face-btn {
        flex: 1 1 0;
        min-width: 0;
    }

    html.has-simpledesigner .page-product .simpledesigner__mockup {
        min-height: 420px;
    }

    html.has-simpledesigner .footer-container .block_newsletter form>.row>.col-xs-12:first-child,
    html.has-simpledesigner #footer.is-footer .block_newsletter form>.row>.col-xs-12:first-child,
    html.has-simpledesigner #footer .block_newsletter form>.row>.col-xs-12:first-child {
        grid-template-columns: 1fr !important;
    }

    html.has-simpledesigner .footer-container .block_newsletter .hidden-xs-down,
    html.has-simpledesigner #footer.is-footer .block_newsletter .hidden-xs-down,
    html.has-simpledesigner #footer .block_newsletter .hidden-xs-down {
        display: none !important;
    }

    html.has-simpledesigner .footer-container .block_newsletter .hidden-sm-up,
    html.has-simpledesigner #footer.is-footer .block_newsletter .hidden-sm-up,
    html.has-simpledesigner #footer .block_newsletter .hidden-sm-up {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100% !important;
    }

    html.has-simpledesigner .footer-container .block_newsletter input[type='submit'].btn,
    html.has-simpledesigner #footer.is-footer .block_newsletter input[type='submit'].btn,
    html.has-simpledesigner #footer .block_newsletter input[type='submit'].btn {
        width: 100% !important;
        min-width: 0 !important;
    }
}

/* =========================================================
   SIMPLEDESIGNER — correctifs largeur + scroll naturel
   ========================================================= */
html.has-simpledesigner .page-product #wrapper,
html.has-simpledesigner .page-product,
html.has-simpledesigner .page-product #main {
    overflow-x: clip;
}

html.has-simpledesigner .page-product #main {
    width: min(94vw, 1680px);
    max-width: calc(100vw - 32px);
}

html.has-simpledesigner .page-product .yd-product-designer,
html.has-simpledesigner .page-product #sd-stage.sd-stage,
html.has-simpledesigner .page-product .simpledesigner,
html.has-simpledesigner .page-product .simpledesigner__grid {
    width: 100%;
    max-width: 100%;
}

html.has-simpledesigner .page-product #sd-stage.sd-stage,
html.has-simpledesigner .page-product .simpledesigner__controls,
html.has-simpledesigner .page-product .simpledesigner__mockup {
    box-sizing: border-box;
}

html.has-simpledesigner .page-product .simpledesigner__grid {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
}

html.has-simpledesigner .page-product .simpledesigner__preview {
    min-width: 0;
    align-self: start;
}

html.has-simpledesigner .page-product .simpledesigner__controls {
    min-width: 0;
    max-height: none !important;
    overflow: visible !important;
    padding-right: 0;
    scrollbar-gutter: auto;
}

@media (max-width: 1199px) {
    html.has-simpledesigner .page-product .simpledesigner__grid {
        grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
    }
}

@media (max-width: 991px) {
    html.has-simpledesigner .page-product #main {
        width: min(94vw, 860px);
        max-width: calc(100vw - 24px);
    }

    html.has-simpledesigner .page-product .simpledesigner__controls {
        padding-right: 0;
    }
}

/* =========================================================
   SIMPLEDESIGNER — overrides desktop anti-debordement
   ========================================================= */
@media (min-width: 992px) {
    html.has-simpledesigner .page-product #sd-stage.sd-stage {
        margin-left: 0 !important;
        margin-right: 0 !important;
        left: auto !important;
        transform: none !important;
        padding-left: 24px !important;
        padding-right: 24px !important;
        overflow: hidden !important;
    }

    html.has-simpledesigner .page-product .simpledesigner__grid {
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) minmax(320px, 420px) !important;
        gap: 24px !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    html.has-simpledesigner .page-product .simpledesigner__preview,
    html.has-simpledesigner .page-product .simpledesigner__controls,
    html.has-simpledesigner .page-product .simpledesigner__mockup,
    html.has-simpledesigner .page-product #sd-mockup-wrap {
        min-width: 0 !important;
        max-width: 100% !important;
    }

    html.has-simpledesigner .page-product .simpledesigner__controls {
        width: 100% !important;
        max-height: none !important;
        overflow: visible !important;
        border-left: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    html.has-simpledesigner .page-product .simpledesigner__mockup,
    html.has-simpledesigner .page-product #sd-mockup-wrap {
        width: 100% !important;
    }
}

/* =========================================================
   SIMPLEDESIGNER — layout desktop robuste
   ========================================================= */
@media (min-width: 992px) {
    html.has-simpledesigner .page-product #sd-stage.sd-stage {
        overflow: hidden !important;
    }

    html.has-simpledesigner .page-product .simpledesigner__grid {
        display: flex !important;
        align-items: flex-start !important;
        gap: 24px !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    html.has-simpledesigner .page-product .simpledesigner__preview {
        flex: 1 1 auto !important;
        width: auto !important;
        min-width: 0 !important;
        max-width: calc(100% - 444px) !important;
        position: sticky !important;
        top: 102px !important;
        align-self: flex-start !important;
    }

    html.has-simpledesigner .page-product .simpledesigner__controls {
        flex: 0 0 420px !important;
        width: 420px !important;
        min-width: 0 !important;
        max-width: 420px !important;
        max-height: none !important;
        overflow: visible !important;
        align-self: flex-start !important;
    }

    html.has-simpledesigner .page-product .simpledesigner__mockup,
    html.has-simpledesigner .page-product #sd-mockup-wrap {
        width: 100% !important;
        max-width: 100% !important;
    }

    html.has-simpledesigner .page-product .simpledesigner__controls *,
    html.has-simpledesigner .page-product #sd-variants-slot *,
    html.has-simpledesigner .page-product #sd-controls * {
        max-width: 100%;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    html.has-simpledesigner .page-product .simpledesigner__preview {
        max-width: calc(100% - 404px) !important;
    }

    html.has-simpledesigner .page-product .simpledesigner__controls {
        flex-basis: 380px !important;
        width: 380px !important;
        max-width: 380px !important;
    }
}

/* =========================================================
   SIMPLEDESIGNER — recentrage structurel + sticky restore
   ========================================================= */
@media (min-width: 992px) {
    html.has-simpledesigner .page-product #wrapper {
        overflow-x: hidden !important;
    }

    html.has-simpledesigner .page-product #main {
        width: 100% !important;
        max-width: none !important;
        margin: 0 !important;
        padding: 34px 0 60px !important;
        overflow: visible !important;
    }

    html.has-simpledesigner .page-product #sd-stage.sd-stage {
        width: min(94vw, 1680px) !important;
        max-width: min(94vw, 1680px) !important;
        margin: 0 auto !important;
        padding: 24px !important;
        overflow: visible !important;
        box-sizing: border-box !important;
    }

    html.has-simpledesigner .page-product .simpledesigner__grid {
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) 380px !important;
        gap: 24px !important;
        align-items: start !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    html.has-simpledesigner .page-product .simpledesigner__preview {
        position: sticky !important;
        top: 102px !important;
        align-self: start !important;
        min-width: 0 !important;
        max-width: 100% !important;
    }

    html.has-simpledesigner .page-product .simpledesigner__controls {
        width: 380px !important;
        max-width: 380px !important;
        min-width: 0 !important;
        max-height: none !important;
        overflow: visible !important;
        align-self: start !important;
    }
}

@media (min-width: 992px) and (min-width: 1400px) {
    html.has-simpledesigner .page-product #sd-stage.sd-stage {
        width: min(92vw, 1600px) !important;
        max-width: min(92vw, 1600px) !important;
    }

    html.has-simpledesigner .page-product .simpledesigner__grid {
        grid-template-columns: minmax(0, 1fr) 360px !important;
    }

    html.has-simpledesigner .page-product .simpledesigner__controls {
        width: 360px !important;
        max-width: 360px !important;
    }
}

/* =========================================================
   SIMPLEDESIGNER — largeur desktop + newsletter alignée site
   ========================================================= */
@media (min-width: 992px) {
    html.has-simpledesigner .page-product #sd-stage.sd-stage {
        width: min(96vw, 1760px) !important;
        max-width: min(96vw, 1760px) !important;
        padding: 28px !important;
    }

    html.has-simpledesigner .page-product .simpledesigner__grid {
        grid-template-columns: minmax(0, 1fr) 400px !important;
        gap: 28px !important;
    }

    html.has-simpledesigner .page-product .simpledesigner__controls {
        width: 400px !important;
        max-width: 400px !important;
    }

    html.has-simpledesigner .footer-container .block_newsletter,
    html.has-simpledesigner #footer.is-footer .block_newsletter,
    html.has-simpledesigner #footer .block_newsletter {
        width: min(96vw, 1120px) !important;
        max-width: min(96vw, 1120px) !important;
        margin: 54px auto 0 !important;
    }

    html.has-simpledesigner .footer-container .block_newsletter>.row,
    html.has-simpledesigner #footer.is-footer .block_newsletter>.row,
    html.has-simpledesigner #footer .block_newsletter>.row {
        grid-template-columns: minmax(260px, 0.92fr) minmax(0, 1.08fr) !important;
        gap: 34px !important;
        padding: 34px 38px !important;
        border-radius: 30px !important;
    }

    html.has-simpledesigner .footer-container .block_newsletter #block-newsletter-label,
    html.has-simpledesigner #footer.is-footer .block_newsletter #block-newsletter-label,
    html.has-simpledesigner #footer .block_newsletter #block-newsletter-label {
        max-width: 10ch !important;
        font-size: clamp(2.35rem, 3.2vw, 3.3rem) !important;
        line-height: 0.92 !important;
    }

    html.has-simpledesigner .footer-container .block_newsletter form>.row>.col-xs-12:first-child,
    html.has-simpledesigner #footer.is-footer .block_newsletter form>.row>.col-xs-12:first-child,
    html.has-simpledesigner #footer .block_newsletter form>.row>.col-xs-12:first-child {
        grid-template-columns: minmax(0, 1fr) auto !important;
        gap: 16px !important;
        align-items: start !important;
    }

    html.has-simpledesigner .footer-container .block_newsletter input[type='email'],
    html.has-simpledesigner #footer.is-footer .block_newsletter input[type='email'],
    html.has-simpledesigner #footer .block_newsletter input[type='email'] {
        min-height: 64px !important;
        border-radius: 999px !important;
        padding: 0 24px !important;
    }

    html.has-simpledesigner .footer-container .block_newsletter input[type='submit'].btn,
    html.has-simpledesigner #footer.is-footer .block_newsletter input[type='submit'].btn,
    html.has-simpledesigner #footer .block_newsletter input[type='submit'].btn {
        min-width: 170px !important;
        min-height: 64px !important;
        border-radius: 999px !important;
        padding: 0 28px !important;
    }
}

@media (min-width: 1400px) {
    html.has-simpledesigner .page-product #sd-stage.sd-stage {
        width: min(96vw, 1840px) !important;
        max-width: min(96vw, 1840px) !important;
    }

    html.has-simpledesigner .page-product .simpledesigner__grid {
        grid-template-columns: minmax(0, 1fr) 380px !important;
    }

    html.has-simpledesigner .page-product .simpledesigner__controls {
        width: 380px !important;
        max-width: 380px !important;
    }
}

/* =========================================================
   SIMPLEDESIGNER — final desktop width + sticky recovery
   ========================================================= */
@media (min-width: 992px) {

    html.has-simpledesigner .page-product #wrapper,
    html.has-simpledesigner .page-product #main,
    html.has-simpledesigner .page-product .product-container,
    html.has-simpledesigner .page-product .product-container.js-product-container,
    html.has-simpledesigner .page-product #sd-stage.sd-stage,
    html.has-simpledesigner .page-product .simpledesigner__grid {
        overflow: visible !important;
    }

    html.has-simpledesigner .page-product #main {
        width: 100% !important;
        max-width: none !important;
        margin: 0 !important;
        padding: 34px 0 60px !important;
    }

    html.has-simpledesigner .page-product #sd-stage.sd-stage {
        width: min(98vw, 1900px) !important;
        max-width: min(98vw, 1900px) !important;
        margin: 0 auto !important;
        padding: 28px 30px !important;
        box-sizing: border-box !important;
    }

    html.has-simpledesigner .page-product .simpledesigner__grid {
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) 340px !important;
        gap: 30px !important;
        align-items: start !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    html.has-simpledesigner .page-product .simpledesigner__preview {
        position: sticky !important;
        top: 104px !important;
        align-self: start !important;
        min-width: 0 !important;
        max-width: 100% !important;
    }

    html.has-simpledesigner .page-product .simpledesigner__preview>* {
        max-width: 100% !important;
    }

    html.has-simpledesigner .page-product .simpledesigner__mockup,
    html.has-simpledesigner .page-product .simpledesigner__canvas-wrap,
    html.has-simpledesigner .page-product .simpledesigner__canvas,
    html.has-simpledesigner .page-product .konvajs-content,
    html.has-simpledesigner .page-product canvas {
        max-width: 100% !important;
    }

    html.has-simpledesigner .page-product .simpledesigner__controls {
        width: 340px !important;
        max-width: 340px !important;
        min-width: 340px !important;
        max-height: none !important;
        overflow: visible !important;
        align-self: start !important;
    }
}

@media (min-width: 1400px) {
    html.has-simpledesigner .page-product #sd-stage.sd-stage {
        width: min(98vw, 1980px) !important;
        max-width: min(98vw, 1980px) !important;
    }

    html.has-simpledesigner .page-product .simpledesigner__grid {
        grid-template-columns: minmax(0, 1fr) 360px !important;
        gap: 34px !important;
    }

    html.has-simpledesigner .page-product .simpledesigner__controls {
        width: 360px !important;
        max-width: 360px !important;
        min-width: 360px !important;
    }
}

/* =========================================================
   SIMPLEDESIGNER — desktop recentre et layout equilibre
   ========================================================= */
@media (min-width: 1400px) {

    html.has-simpledesigner .page-product #wrapper>.container,
    html.has-simpledesigner .page-product #wrapper>.container>.row {
        width: 100% !important;
        max-width: none !important;
    }

    html.has-simpledesigner .page-product #wrapper>.container>.row {
        display: block !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    html.has-simpledesigner .page-product #left-column,
    html.has-simpledesigner .page-product #right-column {
        display: none !important;
    }

    html.has-simpledesigner .page-product #content-wrapper,
    html.has-simpledesigner .page-product #main>#content-wrapper,
    html.has-simpledesigner .page-product .js-content-wrapper#content-wrapper {
        display: block !important;
        float: none !important;
        clear: both !important;
        left: auto !important;
        right: auto !important;
        width: 100% !important;
        max-width: 100% !important;
        flex: none !important;
        margin-left: auto !important;
        margin-right: auto !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    html.has-simpledesigner .page-product #main {
        width: min(calc(100vw - 96px), 1680px) !important;
        max-width: min(calc(100vw - 96px), 1680px) !important;
        margin: 0 auto !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        overflow: visible !important;
    }

    html.has-simpledesigner .page-product .yd-product-shell,
    html.has-simpledesigner .page-product .yd-product-designer,
    html.has-simpledesigner .page-product #sd-stage.sd-stage {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    html.has-simpledesigner .page-product #sd-stage.sd-stage {
        padding: 28px 26px !important;
        overflow: visible !important;
    }

    html.has-simpledesigner .page-product #content,
    html.has-simpledesigner .page-product #content.page-content,
    html.has-simpledesigner .page-product .page-content {
        margin: 0 !important;
    }

    html.has-simpledesigner .page-product .simpledesigner__grid {
        grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr) !important;
        gap: 28px !important;
    }

    html.has-simpledesigner .page-product .simpledesigner__preview {
        position: sticky !important;
        top: 104px !important;
        align-self: start !important;
    }

    html.has-simpledesigner .page-product .simpledesigner__mockup {
        min-height: clamp(520px, 64vh, 760px) !important;
    }

    html.has-simpledesigner .page-product .simpledesigner__controls {
        width: auto !important;
        max-width: none !important;
        min-width: 0 !important;
        overflow: visible !important;
        max-height: none !important;
    }
}

/* =========================================================
   SIMPLEDESIGNER — newsletter alignee au reste du site
   ========================================================= */
html.has-simpledesigner .footer-container .block_newsletter,
html.has-simpledesigner #footer.is-footer .block_newsletter,
html.has-simpledesigner #footer .block_newsletter {
    float: none !important;
    width: min(100%, 1120px) !important;
    max-width: 1120px !important;
    margin: 24px auto 0 !important;
    padding: 0 !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    overflow: visible !important;
}

html.has-simpledesigner .footer-container .block_newsletter>.row,
html.has-simpledesigner #footer.is-footer .block_newsletter>.row,
html.has-simpledesigner #footer .block_newsletter>.row {
    display: grid !important;
    grid-template-columns: minmax(260px, 0.95fr) minmax(420px, 1.45fr) !important;
    gap: 28px !important;
    align-items: center !important;
    margin: 0 !important;
    padding: 34px 38px !important;
    border: 1px solid rgba(17, 17, 17, 0.08) !important;
    border-radius: 28px !important;
    background:
        radial-gradient(circle at top left, rgba(127, 159, 177, 0.14), transparent 42%),
        linear-gradient(135deg, #ffffff 0%, #faf7f2 100%) !important;
    box-shadow: 0 22px 44px rgba(17, 17, 17, 0.07) !important;
}

html.has-simpledesigner .footer-container .block_newsletter>.row>[class*='col-'],
html.has-simpledesigner #footer.is-footer .block_newsletter>.row>[class*='col-'],
html.has-simpledesigner #footer .block_newsletter>.row>[class*='col-'] {
    float: none !important;
    width: auto !important;
    max-width: none !important;
    min-width: 0 !important;
    padding: 0 !important;
}

html.has-simpledesigner .footer-container .block_newsletter #block-newsletter-label,
html.has-simpledesigner #footer.is-footer .block_newsletter #block-newsletter-label,
html.has-simpledesigner #footer .block_newsletter #block-newsletter-label {
    margin: 0 !important;
    color: #171717 !important;
    max-width: none !important;
    font-size: clamp(1.65rem, 2.2vw, 2.35rem) !important;
    line-height: 1.02 !important;
    font-weight: 800 !important;
    letter-spacing: -0.04em !important;
    text-wrap: balance !important;
}

html.has-simpledesigner .footer-container .block_newsletter p:not(#block-newsletter-label),
html.has-simpledesigner #footer.is-footer .block_newsletter p:not(#block-newsletter-label),
html.has-simpledesigner #footer .block_newsletter p:not(#block-newsletter-label) {
    margin: 0 !important;
    color: #6d6d6d !important;
    font-size: 0.98rem !important;
    line-height: 1.65 !important;
}

html.has-simpledesigner .footer-container .block_newsletter form,
html.has-simpledesigner #footer.is-footer .block_newsletter form,
html.has-simpledesigner #footer .block_newsletter form {
    margin: 0 !important;
    width: 100% !important;
}

html.has-simpledesigner .footer-container .block_newsletter form>.row,
html.has-simpledesigner #footer.is-footer .block_newsletter form>.row,
html.has-simpledesigner #footer .block_newsletter form>.row {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 14px !important;
    margin: 0 !important;
}

html.has-simpledesigner .footer-container .block_newsletter form>.row>.col-xs-12,
html.has-simpledesigner #footer.is-footer .block_newsletter form>.row>.col-xs-12,
html.has-simpledesigner #footer .block_newsletter form>.row>.col-xs-12 {
    float: none !important;
    width: 100% !important;
    max-width: none !important;
    padding: 0 !important;
}

html.has-simpledesigner .footer-container .block_newsletter form>.row>.col-xs-12:first-child,
html.has-simpledesigner #footer.is-footer .block_newsletter form>.row>.col-xs-12:first-child,
html.has-simpledesigner #footer .block_newsletter form>.row>.col-xs-12:first-child {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    gap: 14px !important;
    align-items: center !important;
}

html.has-simpledesigner .footer-container .block_newsletter .input-wrapper,
html.has-simpledesigner #footer.is-footer .block_newsletter .input-wrapper,
html.has-simpledesigner #footer .block_newsletter .input-wrapper {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 0 !important;
    order: 1 !important;
}

html.has-simpledesigner .footer-container .block_newsletter .hidden-xs-down,
html.has-simpledesigner #footer.is-footer .block_newsletter .hidden-xs-down,
html.has-simpledesigner #footer .block_newsletter .hidden-xs-down {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    order: 2 !important;
    align-self: stretch !important;
}

html.has-simpledesigner .footer-container .block_newsletter .hidden-sm-up,
html.has-simpledesigner #footer.is-footer .block_newsletter .hidden-sm-up,
html.has-simpledesigner #footer .block_newsletter .hidden-sm-up {
    display: none !important;
}

html.has-simpledesigner .footer-container .block_newsletter input[type='email'],
html.has-simpledesigner #footer.is-footer .block_newsletter input[type='email'],
html.has-simpledesigner #footer .block_newsletter input[type='email'] {
    width: 100% !important;
    min-height: 64px !important;
    padding: 0 22px !important;
    border: 1px solid rgba(17, 17, 17, 0.08) !important;
    border-radius: 20px !important;
    background: #fff !important;
    color: #171717 !important;
    box-shadow: none !important;
}

html.has-simpledesigner .footer-container .block_newsletter input[type='submit'].btn,
html.has-simpledesigner #footer.is-footer .block_newsletter input[type='submit'].btn,
html.has-simpledesigner #footer .block_newsletter input[type='submit'].btn {
    float: none !important;
    min-width: 210px !important;
    min-height: 64px !important;
    padding: 0 26px !important;
    border: 0 !important;
    border-radius: 20px !important;
    background: #6f92a3 !important;
    color: #fff !important;
    font-size: 0.92rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
    box-shadow: 0 16px 28px rgba(111, 146, 163, 0.26) !important;
}

html.has-simpledesigner .footer-container .block_newsletter input[type='submit'].btn:hover,
html.has-simpledesigner .footer-container .block_newsletter input[type='submit'].btn:focus,
html.has-simpledesigner #footer.is-footer .block_newsletter input[type='submit'].btn:hover,
html.has-simpledesigner #footer.is-footer .block_newsletter input[type='submit'].btn:focus,
html.has-simpledesigner #footer .block_newsletter input[type='submit'].btn:hover,
html.has-simpledesigner #footer .block_newsletter input[type='submit'].btn:focus {
    background: #5f8394 !important;
    color: #fff !important;
    transform: translateY(-1px) !important;
}

html.has-simpledesigner .footer-container .block_newsletter .clearfix,
html.has-simpledesigner #footer.is-footer .block_newsletter .clearfix,
html.has-simpledesigner #footer .block_newsletter .clearfix {
    display: none !important;
}

@media (max-width: 991px) {

    html.has-simpledesigner .footer-container .block_newsletter>.row,
    html.has-simpledesigner #footer.is-footer .block_newsletter>.row,
    html.has-simpledesigner #footer .block_newsletter>.row {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        padding: 28px 24px !important;
    }

    html.has-simpledesigner .footer-container .block_newsletter #block-newsletter-label,
    html.has-simpledesigner #footer.is-footer .block_newsletter #block-newsletter-label,
    html.has-simpledesigner #footer .block_newsletter #block-newsletter-label {
        max-width: 16ch !important;
    }
}

@media (max-width: 767px) {

    html.has-simpledesigner .footer-container .block_newsletter,
    html.has-simpledesigner #footer.is-footer .block_newsletter,
    html.has-simpledesigner #footer .block_newsletter {
        width: min(94vw, 680px) !important;
        margin-top: 18px !important;
    }

    html.has-simpledesigner .footer-container .block_newsletter>.row,
    html.has-simpledesigner #footer.is-footer .block_newsletter>.row,
    html.has-simpledesigner #footer .block_newsletter>.row {
        padding: 24px 20px !important;
        border-radius: 24px !important;
    }

    html.has-simpledesigner .footer-container .block_newsletter form>.row>.col-xs-12:first-child,
    html.has-simpledesigner #footer.is-footer .block_newsletter form>.row>.col-xs-12:first-child,
    html.has-simpledesigner #footer .block_newsletter form>.row>.col-xs-12:first-child {
        grid-template-columns: 1fr !important;
    }

    html.has-simpledesigner .footer-container .block_newsletter .hidden-xs-down,
    html.has-simpledesigner #footer.is-footer .block_newsletter .hidden-xs-down,
    html.has-simpledesigner #footer .block_newsletter .hidden-xs-down {
        display: none !important;
    }

    html.has-simpledesigner .footer-container .block_newsletter .hidden-sm-up,
    html.has-simpledesigner #footer.is-footer .block_newsletter .hidden-sm-up,
    html.has-simpledesigner #footer .block_newsletter .hidden-sm-up {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100% !important;
    }

    html.has-simpledesigner .footer-container .block_newsletter input[type='submit'].btn,
    html.has-simpledesigner #footer.is-footer .block_newsletter input[type='submit'].btn,
    html.has-simpledesigner #footer .block_newsletter input[type='submit'].btn {
        min-width: 0 !important;
        width: 100% !important;
    }
}

/* =========================================================
   SIMPLEDESIGNER — panneau premium droite
   ========================================================= */

html.has-simpledesigner .page-product .simpledesigner.sd-premium-pending .simpledesigner__controls,
html.has-simpledesigner .page-product .simpledesigner.sd-premium-pending #sd-topbar {
    opacity: 0;
    pointer-events: none;
}

html.has-simpledesigner .page-product .simpledesigner.sd-premium-ready .simpledesigner__controls,
html.has-simpledesigner .page-product .simpledesigner.sd-premium-ready #sd-topbar {
    opacity: 1;
    pointer-events: auto;
}

html.has-simpledesigner-premium-ui .page-product .simpledesigner__controls {
    display: grid;
    gap: 12px;
    padding: 0 !important;
}

html.has-simpledesigner-premium-ui .page-product .simpledesigner__controls .product-variants,
html.has-simpledesigner-premium-ui .page-product .simpledesigner__controls #sd-variants-slot {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

html.has-simpledesigner-premium-ui .page-product .simpledesigner__controls .product-variants>.product-variants-item:first-child,
html.has-simpledesigner-premium-ui .page-product .simpledesigner__controls #sd-variants-slot>.product-variants>.product-variants-item:first-child,
html.has-simpledesigner-premium-ui .page-product .simpledesigner__controls #sd-variants-slot>.product-variants-item:first-child,
html.has-simpledesigner-premium-ui .page-product .simpledesigner__controls #sd-variants-slot>.sd-panel:first-child {
    margin-top: 0 !important;
}

html.has-simpledesigner-premium-ui .page-product #sd-loading,
html.has-simpledesigner-premium-ui .page-product #sd-validation-note {
    margin: 0;
}

html.has-simpledesigner-premium-ui .page-product #sd-variants-slot,
html.has-simpledesigner-premium-ui .page-product #sd-layer-controls,
html.has-simpledesigner-premium-ui .page-product #sd-textblocks {
    display: grid;
    gap: 10px;
    margin: 0 !important;
    padding: 0 !important;
}

html.has-simpledesigner-premium-ui .page-product .sd-variant-panels-host {
    display: grid;
    gap: 10px;
}

html.has-simpledesigner-premium-ui .page-product .sd-panel {
    position: relative;
    margin: 0 !important;
    padding: 0 !important;
    border: 1px solid rgba(17, 17, 17, 0.08) !important;
    border-radius: 22px !important;
    background:
        radial-gradient(circle at top left, rgba(127, 159, 177, 0.08), transparent 44%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 247, 242, 0.96)) !important;
    box-shadow: 0 14px 32px rgba(17, 17, 17, 0.06) !important;
    overflow: hidden;
}

html.has-simpledesigner-premium-ui .page-product .sd-panel__header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 20px;
    border: 0;
    background: transparent;
    color: #171717;
    cursor: pointer;
    text-align: left;
}

html.has-simpledesigner-premium-ui .page-product .sd-panel__title {
    display: block;
    min-width: 0;
    font-size: 0.83rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #6f92a3;
}

html.has-simpledesigner-premium-ui .page-product .sd-panel__toggle {
    flex: 0 0 auto;
    color: #6a6a6a;
    font-size: 1rem;
    transition: transform 0.24s ease;
}

html.has-simpledesigner-premium-ui .page-product .sd-panel.is-collapsed .sd-panel__toggle {
    transform: rotate(-90deg);
}

html.has-simpledesigner-premium-ui .page-product .sd-panel__content {
    padding: 0 20px 20px;
}

html.has-simpledesigner-premium-ui .page-product .sd-panel.is-collapsed .sd-panel__content {
    display: none;
}

html.has-simpledesigner-premium-ui .page-product .sd-panel__content>.simpledesigner__label {
    display: none !important;
}

html.has-simpledesigner-premium-ui .page-product .sd-panel--text .sd-panel__content,
html.has-simpledesigner-premium-ui .page-product .sd-panel--variant .sd-panel__content,
html.has-simpledesigner-premium-ui .page-product .sd-panel--layer .sd-panel__content {
    display: grid;
    gap: 10px;
}

html.has-simpledesigner-premium-ui .page-product .sd-panel--text .sd-panel__content>div,
html.has-simpledesigner-premium-ui .page-product .sd-panel--variant .sd-panel__content>div,
html.has-simpledesigner-premium-ui .page-product .sd-panel--layer .sd-panel__content>div {
    min-width: 0;
}

html.has-simpledesigner-premium-ui .page-product .simpledesigner__controls .product-variants>.product-variants-item {
    margin: 0 !important;
}

html.has-simpledesigner-premium-ui .page-product .simpledesigner__controls .product-variants>.product-variants-item>.control-label,
html.has-simpledesigner-premium-ui .page-product .simpledesigner__controls .product-variants>.product-variants-item>label,
html.has-simpledesigner-premium-ui .page-product .simpledesigner__controls .product-variants>.product-variants-item>.form-control-label {
    display: none !important;
}

html.has-simpledesigner-premium-ui .page-product .sd-options--text,
html.has-simpledesigner-premium-ui .page-product .sd-options--visual,
html.has-simpledesigner-premium-ui .page-product .sd-choice-grid--visual {
    width: 100%;
}

html.has-simpledesigner-premium-ui .page-product .sd-options--text ul,
html.has-simpledesigner-premium-ui .page-product .sd-options--text .input-container,
html.has-simpledesigner-premium-ui .page-product .sd-options--text fieldset,
html.has-simpledesigner-premium-ui .page-product .sd-options--text {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: flex-start;
}

html.has-simpledesigner-premium-ui .page-product .sd-options--colors,
html.has-simpledesigner-premium-ui .page-product .sd-options--colors ul,
html.has-simpledesigner-premium-ui .page-product .sd-options--colors .input-container,
html.has-simpledesigner-premium-ui .page-product .sd-options--colors fieldset {
    display: flex !important;
    flex-wrap: nowrap !important;
    flex-direction: row !important;
    gap: 12px !important;
    align-items: center !important;
    justify-content: center !important;
    width: fit-content !important;
    max-width: 100%;
    margin: 0 auto !important;
}

html.has-simpledesigner-premium-ui .page-product .sd-choice--text,
html.has-simpledesigner-premium-ui .page-product .sd-options--text label {
    display: inline-flex !important;
    align-items: center !important;
    min-height: 46px !important;
    padding: 0 16px !important;
    margin: 0 !important;
    border: 1px solid rgba(17, 17, 17, 0.1) !important;
    border-radius: 999px !important;
    background: rgba(255, 255, 255, 0.94) !important;
    box-shadow: none !important;
    color: #171717 !important;
    font-size: 0.92rem !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    text-align: center !important;
    justify-content: center !important;
    vertical-align: middle !important;
    cursor: pointer !important;
}

html.has-simpledesigner-premium-ui .page-product .sd-choice--color,
html.has-simpledesigner-premium-ui .page-product .sd-options--colors label {
    position: relative;
    display: inline-flex !important;
    flex: 0 0 58px !important;
    align-items: center !important;
    justify-content: center !important;
    width: 58px !important;
    min-width: 58px !important;
    height: 58px !important;
    min-height: 58px !important;
    padding: 8px !important;
    margin: 0 !important;
    border: 1px solid rgba(17, 17, 17, 0.12) !important;
    border-radius: 12px !important;
    background: #fbfdff !important;
    box-shadow: none !important;
    overflow: hidden !important;
}

html.has-simpledesigner-premium-ui .page-product .sd-choice--color .yd-variant-chip--color,
html.has-simpledesigner-premium-ui .page-product .sd-choice--color .color,
html.has-simpledesigner-premium-ui .page-product .sd-choice--color img,
html.has-simpledesigner-premium-ui .page-product .sd-choice--color .sd-choice__media,
html.has-simpledesigner-premium-ui .page-product .sd-options--colors label .yd-variant-chip--color,
html.has-simpledesigner-premium-ui .page-product .sd-options--colors label .color,
html.has-simpledesigner-premium-ui .page-product .sd-options--colors label img,
html.has-simpledesigner-premium-ui .page-product .sd-options--colors label .sd-choice__media,
html.has-simpledesigner-premium-ui .page-product .sd-options--colors label .radio-label,
html.has-simpledesigner-premium-ui .page-product .sd-options--colors label .attribute-name,
html.has-simpledesigner-premium-ui .page-product .sd-options--colors label span:not(.sd-choice__color-dot) {
    display: none !important;
}

html.has-simpledesigner-premium-ui .page-product .sd-choice__color-dot {
    display: block;
    width: 30px;
    height: 30px;
    border-radius: 999px;
    background-size: cover;
    background-position: center;
    box-shadow: inset 0 0 0 1px rgba(17, 17, 17, 0.06);
}

html.has-simpledesigner-premium-ui .page-product .sd-choice__color-dot.is-light {
    box-shadow: inset 0 0 0 1px rgba(17, 17, 17, 0.18);
}

html.has-simpledesigner-premium-ui .page-product .sd-options--text label:has(input[type="radio"]:checked),
html.has-simpledesigner-premium-ui .page-product .sd-options--text label:has(input[type="checkbox"]:checked) {
    border-color: #7f9fb1 !important;
    background: #f1f6f8 !important;
    box-shadow: 0 12px 24px rgba(127, 159, 177, 0.14) !important;
}

html.has-simpledesigner-premium-ui .page-product .sd-options--colors label:has(input[type="radio"]:checked),
html.has-simpledesigner-premium-ui .page-product .sd-options--colors label:has(input[type="checkbox"]:checked) {
    border: 2px solid #2fb5d2 !important;
    background: #fbfdff !important;
    box-shadow: 0 0 0 2px rgba(47, 181, 210, 0.18) !important;
}

html.has-simpledesigner-premium-ui .page-product .sd-choice--color.sd-choice--forced-active,
html.has-simpledesigner-premium-ui .page-product .sd-options--colors label.sd-choice--forced-active {
    border: 2px solid #2fb5d2 !important;
    background: #fbfdff !important;
    box-shadow: 0 0 0 2px rgba(47, 181, 210, 0.18) !important;
}

html.has-simpledesigner-premium-ui .page-product .sd-choice--forced-active {
    border-color: #7f9fb1 !important;
    background: #f1f6f8 !important;
    box-shadow: 0 12px 24px rgba(127, 159, 177, 0.14) !important;
}

html.has-simpledesigner-premium-ui .page-product .sd-choice--mockup,
html.has-simpledesigner-premium-ui .page-product .sd-options--text label.sd-choice--mockup {
    min-height: 64px !important;
    padding: 6px !important;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

html.has-simpledesigner-premium-ui .page-product .sd-choice__media {
    display: block;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    pointer-events: none;
}

html.has-simpledesigner-premium-ui .page-product .sd-choice--mockup span:not(.sd-choice__media),
html.has-simpledesigner-premium-ui .page-product .sd-choice--mockup .radio-label,
html.has-simpledesigner-premium-ui .page-product .sd-choice--mockup .attribute-name,
html.has-simpledesigner-premium-ui .page-product .sd-choice--mockup .color {
    display: none !important;
}

html.has-simpledesigner-premium-ui .page-product .sd-choice-grid--visual,
html.has-simpledesigner-premium-ui .page-product .sd-options--visual {
    display: grid !important;
    grid-template-columns: repeat(var(--sd-grid-cols, 6), minmax(0, 1fr));
    gap: 12px !important;
    justify-content: center;
}

html.has-simpledesigner-premium-ui .page-product .sd-choice--visual,
html.has-simpledesigner-premium-ui .page-product .sd-options--visual label {
    position: relative;
    width: 100% !important;
    min-width: 0 !important;
    min-height: 0 !important;
    padding: 8px !important;
    margin: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 1px solid rgba(17, 17, 17, 0.12) !important;
    border-radius: 999px !important;
    background: rgba(255, 255, 255, 0.96) !important;
    box-shadow: 0 8px 18px rgba(17, 17, 17, 0.05) !important;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

html.has-simpledesigner-premium-ui .page-product .sd-choice--visual img,
html.has-simpledesigner-premium-ui .page-product .sd-options--visual label img {
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    max-height: none !important;
    object-fit: contain !important;
    display: block !important;
}

html.has-simpledesigner-premium-ui .page-product .sd-choice--visual .sd-choice__caption,
html.has-simpledesigner-premium-ui .page-product .sd-choice--visual div:not(:first-child),
html.has-simpledesigner-premium-ui .page-product .sd-options--visual label span:not(.color),
html.has-simpledesigner-premium-ui .page-product .sd-options--visual label .radio-label,
html.has-simpledesigner-premium-ui .page-product .sd-options--visual label .attribute-name {
    display: none !important;
}

html.has-simpledesigner-premium-ui .page-product .sd-choice--visual[style*="outline: 2px solid"],
html.has-simpledesigner-premium-ui .page-product .sd-options--visual label:has(input[type="radio"]:checked),
html.has-simpledesigner-premium-ui .page-product .sd-options--visual label:has(input[type="checkbox"]:checked) {
    border-color: #7f9fb1 !important;
    box-shadow:
        0 0 0 3px rgba(127, 159, 177, 0.16),
        0 14px 28px rgba(127, 159, 177, 0.18) !important;
}

html.has-simpledesigner-premium-ui .page-product .sd-panel--layer .sd-choice-grid--visual,
html.has-simpledesigner-premium-ui .page-product .sd-panel--layer .sd-options--visual {
    gap: 10px !important;
}

html.has-simpledesigner-premium-ui .page-product .sd-panel--layer .sd-thumbs {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(86px, 86px)) !important;
    gap: 10px !important;
    justify-content: start !important;
}

html.has-simpledesigner-premium-ui .page-product .sd-panel--layer .sd-thumbs>button {
    width: 86px !important;
    min-width: 86px !important;
    max-width: 86px !important;
    min-height: 86px !important;
    aspect-ratio: 1 / 1;
    padding: 8px !important;
    display: inline-flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    overflow: hidden !important;
}

html.has-simpledesigner-premium-ui .page-product .sd-panel--layer .sd-thumbs>button img {
    width: 72% !important;
    height: 72% !important;
    object-fit: contain !important;
}

html.has-simpledesigner-premium-ui .page-product .sd-panel--layer .sd-thumbs>button>div {
    display: none !important;
}

html.has-simpledesigner-premium-ui .page-product .sd-panel--layer .sd-choice--visual,
html.has-simpledesigner-premium-ui .page-product .sd-panel--layer .sd-options--visual label {
    width: 86px !important;
    min-width: 86px !important;
    max-width: 86px !important;
    min-height: 86px !important;
    padding: 8px !important;
    justify-self: start !important;
    box-shadow: 0 6px 14px rgba(17, 17, 17, 0.04) !important;
}

html.has-simpledesigner-premium-ui .page-product .sd-panel--layer .sd-choice--visual img,
html.has-simpledesigner-premium-ui .page-product .sd-panel--layer .sd-options--visual label img {
    width: 72% !important;
    height: 72% !important;
    object-fit: contain !important;
}

html.has-simpledesigner-premium-ui .page-product .sd-panel--text input.form-control,
html.has-simpledesigner-premium-ui .page-product .sd-panel--text textarea.form-control,
html.has-simpledesigner-premium-ui .page-product .sd-panel--text .sd-dd__btn {
    min-height: 58px !important;
    border: 1px solid rgba(17, 17, 17, 0.1) !important;
    border-radius: 18px !important;
    background: rgba(255, 255, 255, 0.96) !important;
    box-shadow: none !important;
}

html.has-simpledesigner-premium-ui .page-product .sd-panel--text .simpledesigner__row {
    display: grid;
    gap: 8px;
}

html.has-simpledesigner-premium-ui .page-product .sd-dd__menu {
    border-radius: 18px !important;
    border: 1px solid rgba(17, 17, 17, 0.1) !important;
    box-shadow: 0 18px 40px rgba(17, 17, 17, 0.12) !important;
    padding: 8px !important;
}

html.has-simpledesigner-premium-ui .page-product .sd-dd__opt {
    border-radius: 12px;
    font-size: 1rem;
}

html.has-simpledesigner-premium-ui .page-product .sd-dd__opt:hover {
    background: #f3f6f8 !important;
}

html.has-simpledesigner-premium-ui .page-product #sd-cart-slot {
    margin-top: 18px;
    padding: 18px 8px 0;
    border-top: 1px solid rgba(17, 17, 17, 0.08);
}

html.has-simpledesigner-premium-ui .page-product #sd-cart-slot .product-add-to-cart {
    display: grid;
    gap: 12px;
    padding: 0 8px 10px;
}

html.has-simpledesigner-premium-ui .page-product #sd-cart-slot .product-add-to-cart>.control-label {
    margin: 0;
}

html.has-simpledesigner-premium-ui .page-product #sd-cart-slot .product-add-to-cart .product-quantity {
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 20px;
    align-items: center;
}

html.has-simpledesigner-premium-ui .page-product #sd-cart-slot .qty,
html.has-simpledesigner-premium-ui .page-product #sd-cart-slot .add {
    width: 100%;
}

html.has-simpledesigner-premium-ui .page-product #sd-cart-slot .input-group.bootstrap-touchspin {
    position: relative;
    display: grid !important;
    grid-template-columns: 1fr 30px;
    align-items: stretch !important;
    min-height: 56px;
    overflow: hidden;
    border: 1px solid rgba(17, 17, 17, 0.1) !important;
    border-radius: 18px !important;
    background: rgba(255, 255, 255, 0.96) !important;
    box-shadow: none !important;
}

html.has-simpledesigner-premium-ui .page-product #sd-cart-slot .bootstrap-touchspin-prefix,
html.has-simpledesigner-premium-ui .page-product #sd-cart-slot .bootstrap-touchspin-postfix {
    display: none !important;
}

html.has-simpledesigner-premium-ui .page-product #sd-cart-slot #quantity_wanted {
    min-height: 56px !important;
    height: 56px !important;
    padding: 0 16px !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    background: transparent !important;
    text-align: center !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
}

html.has-simpledesigner-premium-ui .page-product #sd-cart-slot .input-group-btn-vertical {
    display: grid !important;
    grid-template-rows: 1fr 1fr;
    width: 30px;
    border-left: 1px solid rgba(17, 17, 17, 0.08);
}

html.has-simpledesigner-premium-ui .page-product #sd-cart-slot .btn-touchspin {
    min-height: 0 !important;
    height: 100% !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: rgba(17, 17, 17, 0.02) !important;
    color: #4f4f4f !important;
    box-shadow: none !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

html.has-simpledesigner-premium-ui .page-product #sd-cart-slot .btn-touchspin:hover,
html.has-simpledesigner-premium-ui .page-product #sd-cart-slot .btn-touchspin:focus {
    background: rgba(127, 159, 177, 0.12) !important;
}

html.has-simpledesigner-premium-ui .page-product #sd-cart-slot .add-to-cart {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100%;
    min-height: 64px;
    border-radius: 20px !important;
    box-shadow: 0 16px 28px rgba(111, 146, 163, 0.22) !important;
    padding: 0 30px !important;
}

html.has-simpledesigner-premium-ui .page-product #sd-cart-slot .sd-cart-note {
    margin: 0 8px 14px;
    color: #5f6f79;
    font-size: 0.93rem;
    line-height: 1.55;
}

html.has-simpledesigner-premium-ui .page-product .sd-faces--premium {
    margin-bottom: 18px;
}

html.has-simpledesigner-premium-ui .page-product .sd-faces--premium.sd-faces--in-panel {
    margin: 16px 0 0;
}

html.has-simpledesigner-premium-ui .page-product .sd-faces--premium.is-hidden-when-single {
    display: none !important;
}

html.has-simpledesigner-premium-ui .page-product .sd-faces--premium .sd-face-btn {
    color: #7a97a8 !important;
    outline: none !important;
}

html.has-simpledesigner-premium-ui .page-product .sd-faces--premium .sd-face-btn.is-active,
html.has-simpledesigner-premium-ui .page-product .sd-faces--premium .sd-face-btn[aria-pressed="true"] {
    color: #111111 !important;
}

html.has-simpledesigner-premium-ui .page-product .sd-faces--premium .sd-face-btn:focus,
html.has-simpledesigner-premium-ui .page-product .sd-faces--premium .sd-face-btn:focus-visible {
    outline: none !important;
    box-shadow: none !important;
}

html.has-simpledesigner-premium-ui .page-product .simpledesigner__mockup {
    position: relative;
}

html.has-simpledesigner-premium-ui .page-product .sd-preview-wishlist {
    display: none !important;
}

html.has-simpledesigner-premium-ui .page-product .sd-preview-wishlist .wishlist-button-add,
html.has-simpledesigner-premium-ui .page-product .sd-preview-wishlist button.wishlist-button-add,
html.has-simpledesigner-premium-ui .page-product .sd-preview-wishlist .wishlist-button-add button {
    margin: 0 !important;
}

html.has-simpledesigner-premium-ui .page-product #sd-topbar .wishlist-button-add,
html.has-simpledesigner-premium-ui .page-product #sd-topbar button.wishlist-button-add {
    display: inline-flex !important;
}

html.has-simpledesigner-premium-ui .page-product #sd-topbar .sd-topbar__wishlist .wishlist-button-add,
html.has-simpledesigner-premium-ui .page-product #sd-topbar .sd-topbar__wishlist button.wishlist-button-add,
html.has-simpledesigner-premium-ui .page-product #sd-topbar .sd-topbar__wishlist .wishlist-button-add button {
    width: 52px;
    height: 52px;
    margin: 0 !important;
}

html.has-simpledesigner-premium-ui .page-product .sd-textblock-info {
    display: none !important;
}

html.has-simpledesigner-premium-ui .page-product .sd-panel--materials-merged {
    display: none !important;
}

html.has-simpledesigner-premium-ui .page-product .sd-panel--hidden-by-ux {
    display: none !important;
}

html.has-simpledesigner-premium-ui .page-product .sd-variant-cache {
    display: none !important;
}

html.has-simpledesigner-premium-ui .page-product .sd-support-native {
    display: none !important;
}

html.has-simpledesigner-premium-ui .page-product .sd-merged-support {
    display: grid !important;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 10px !important;
}

html.has-simpledesigner-premium-ui .page-product .sd-merged-support__choice {
    cursor: pointer;
}

html.has-simpledesigner-premium-ui .page-product .sd-impression-native {
    display: none !important;
}

html.has-simpledesigner-premium-ui .page-product .sd-impression-help {
    margin: 0;
    color: #6b6b6b;
    font-size: 0.94rem;
    line-height: 1.45;
}

html.has-simpledesigner-premium-ui .page-product .sd-impression-select {
    width: 100%;
    min-height: 56px;
    border: 1px solid rgba(17, 17, 17, 0.1) !important;
    border-radius: 18px !important;
    background: rgba(255, 255, 255, 0.96) !important;
    box-shadow: none !important;
    padding: 0 18px !important;
    font-size: 0.98rem !important;
    font-weight: 600 !important;
    color: #1d1d1d !important;
}

@media (max-width: 1199px) {

    html.has-simpledesigner-premium-ui .page-product .sd-choice-grid--visual,
    html.has-simpledesigner-premium-ui .page-product .sd-options--visual {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }

    html.has-simpledesigner-premium-ui .page-product .sd-merged-support {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    html.has-simpledesigner-premium-ui .page-product .sd-panel__header {
        padding: 16px 16px 14px;
    }

    html.has-simpledesigner-premium-ui .page-product .sd-panel__content {
        padding: 0 16px 16px;
    }

    html.has-simpledesigner-premium-ui .page-product .sd-choice-grid--visual,
    html.has-simpledesigner-premium-ui .page-product .sd-options--visual {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 10px !important;
    }

    html.has-simpledesigner-premium-ui .page-product .sd-merged-support {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    html.has-simpledesigner-premium-ui .page-product #sd-cart-slot .product-add-to-cart .product-quantity {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   PAGES LISTING / CATEGORIES / RECHERCHE
   Harmonisation visuelle avec la fiche produit
   Retour arrière facile : supprimer ce bloc complet.
   ========================================================= */

:is(body#category,
    body#search,
    body#prices-drop,
    body#new-products,
    body#best-sales,
    body#manufacturer,
    body#supplier) #wrapper {
    background:
        radial-gradient(circle at top left, rgba(0, 0, 0, 0.025), transparent 34%),
        linear-gradient(180deg, #fbfaf7 0%, #f5f3f0 100%);
}

:is(body#category,
    body#search,
    body#prices-drop,
    body#new-products,
    body#best-sales,
    body#manufacturer,
    body#supplier) #wrapper>.container {
    width: min(96vw, 1720px);
    max-width: none;
    padding-left: clamp(16px, 2vw, 28px);
    padding-right: clamp(16px, 2vw, 28px);
}

:is(body#category,
    body#search,
    body#prices-drop,
    body#new-products,
    body#best-sales,
    body#manufacturer,
    body#supplier) .breadcrumb {
    margin-bottom: 22px;
    padding: 0;
    background: transparent;
    font-size: 12px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #8d8d8d;
}

:is(body#category,
    body#search,
    body#prices-drop,
    body#new-products,
    body#best-sales,
    body#manufacturer,
    body#supplier) .breadcrumb li::after {
    color: rgba(17, 17, 17, 0.34);
}

:is(body#category,
    body#search,
    body#prices-drop,
    body#new-products,
    body#best-sales,
    body#manufacturer,
    body#supplier) #left-column,
:is(body#category,
    body#search,
    body#prices-drop,
    body#new-products,
    body#best-sales,
    body#manufacturer,
    body#supplier) #content-wrapper {
    padding-left: 15px;
    padding-right: 15px;
}

@media (min-width: 992px) {

    :is(body#category,
        body#search,
        body#prices-drop,
        body#new-products,
        body#best-sales,
        body#manufacturer,
        body#supplier) #left-column {
        width: 320px;
        position: sticky;
        top: 110px;
        align-self: start;
    }

    :is(body#category,
        body#search,
        body#prices-drop,
        body#new-products,
        body#best-sales,
        body#manufacturer,
        body#supplier) #content-wrapper {
        width: calc(100% - 320px);
    }
}

:is(body#category,
    body#search,
    body#prices-drop,
    body#new-products,
    body#best-sales,
    body#manufacturer,
    body#supplier) #left-column>*+* {
    margin-top: 18px;
}

:is(body#category,
    body#search,
    body#prices-drop,
    body#new-products,
    body#best-sales,
    body#manufacturer,
    body#supplier) #left-column .block-categories,
:is(body#category,
    body#search,
    body#prices-drop,
    body#new-products,
    body#best-sales,
    body#manufacturer,
    body#supplier) #left-column #search_filters {
    border: 1px solid rgba(17, 17, 17, 0.06);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.74);
    overflow: hidden;
}

:is(body#category,
    body#search,
    body#prices-drop,
    body#new-products,
    body#best-sales,
    body#manufacturer,
    body#supplier) .block-categories {
    padding: 24px 24px 20px;
}

:is(body#category,
    body#search,
    body#prices-drop,
    body#new-products,
    body#best-sales,
    body#manufacturer,
    body#supplier) .category-top-menu {
    margin: 0;
}

:is(body#category,
    body#search,
    body#prices-drop,
    body#new-products,
    body#best-sales,
    body#manufacturer,
    body#supplier) .category-top-menu>li>a {
    display: inline-block;
    margin-bottom: 14px;
    font-size: 2rem;
    font-weight: 800;
    line-height: 0.96;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    color: #111;
}

:is(body#category,
    body#search,
    body#prices-drop,
    body#new-products,
    body#best-sales,
    body#manufacturer,
    body#supplier) .category-sub-menu {
    margin: 0;
}

:is(body#category,
    body#search,
    body#prices-drop,
    body#new-products,
    body#best-sales,
    body#manufacturer,
    body#supplier) .category-sub-menu li {
    position: relative;
    padding: 10px 0;
    border-top: 1px solid rgba(17, 17, 17, 0.08);
}

:is(body#category,
    body#search,
    body#prices-drop,
    body#new-products,
    body#best-sales,
    body#manufacturer,
    body#supplier) .category-sub-menu li:first-child {
    border-top: 0;
}

:is(body#category,
    body#search,
    body#prices-drop,
    body#new-products,
    body#best-sales,
    body#manufacturer,
    body#supplier) .category-sub-menu a {
    display: block;
    padding-right: 34px;
    font-weight: 600;
    color: #202020;
    line-height: 1.4;
}

:is(body#category,
    body#search,
    body#prices-drop,
    body#new-products,
    body#best-sales,
    body#manufacturer,
    body#supplier) .category-sub-menu .collapse-icons,
:is(body#category,
    body#search,
    body#prices-drop,
    body#new-products,
    body#best-sales,
    body#manufacturer,
    body#supplier) .category-sub-menu .arrows {
    position: absolute;
    top: 10px;
    right: 0;
    color: #111;
}

:is(body#category,
    body#search,
    body#prices-drop,
    body#new-products,
    body#best-sales,
    body#manufacturer,
    body#supplier) #search_filters {
    position: relative;
    padding: 52px 0 10px;
}

:is(body#category,
    body#search,
    body#prices-drop,
    body#new-products,
    body#best-sales,
    body#manufacturer,
    body#supplier) #search_filters::before {
    content: "Filtres";
    position: absolute;
    top: 10px;
    left: 24px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #8b8377;
}

:is(body#category,
    body#search,
    body#prices-drop,
    body#new-products,
    body#best-sales,
    body#manufacturer,
    body#supplier) #search_filters .facet {
    padding: 0 24px;
    border-top: 1px solid rgba(17, 17, 17, 0.08);
}

:is(body#category,
    body#search,
    body#prices-drop,
    body#new-products,
    body#best-sales,
    body#manufacturer,
    body#supplier) #search_filters .facet:first-child {
    border-top: 0;
}

:is(body#category,
    body#search,
    body#prices-drop,
    body#new-products,
    body#best-sales,
    body#manufacturer,
    body#supplier) #search_filters .facet .title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 16px 0;
    cursor: pointer;
    transition: color 0.2s ease;
}

:is(body#category,
    body#search,
    body#prices-drop,
    body#new-products,
    body#best-sales,
    body#manufacturer,
    body#supplier) #search_filters .facet .facet-title,
:is(body#category,
    body#search,
    body#prices-drop,
    body#new-products,
    body#best-sales,
    body#manufacturer,
    body#supplier) #search_filters .facet .h6 {
    margin: 0;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #6d6d6d;
}

:is(body#category,
    body#search,
    body#prices-drop,
    body#new-products,
    body#best-sales,
    body#manufacturer,
    body#supplier) #search_filters .facet:hover .facet-title,
:is(body#category,
    body#search,
    body#prices-drop,
    body#new-products,
    body#best-sales,
    body#manufacturer,
    body#supplier) #search_filters .facet:hover .h6 {
    color: #111;
}

:is(body#category,
    body#search,
    body#prices-drop,
    body#new-products,
    body#best-sales,
    body#manufacturer,
    body#supplier) #search_filters .facet ul {
    margin: 0 0 18px;
}

:is(body#category,
    body#search,
    body#prices-drop,
    body#new-products,
    body#best-sales,
    body#manufacturer,
    body#supplier) #search_filters .facet ul li {
    padding: 8px 0;
    border-top: 0;
}

:is(body#category,
    body#search,
    body#prices-drop,
    body#new-products,
    body#best-sales,
    body#manufacturer,
    body#supplier) #search_filters label,
:is(body#category,
    body#search,
    body#prices-drop,
    body#new-products,
    body#best-sales,
    body#manufacturer,
    body#supplier) #search_filters .facet-label a {
    font-size: 0.97rem;
    color: #252525;
}

:is(body#category,
    body#search,
    body#prices-drop,
    body#new-products,
    body#best-sales,
    body#manufacturer,
    body#supplier) #search_filters .facet-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    border-radius: 12px;
    transition: background-color 0.2s ease, color 0.2s ease;
}

:is(body#category,
    body#search,
    body#prices-drop,
    body#new-products,
    body#best-sales,
    body#manufacturer,
    body#supplier) #search_filters .facet-label:hover,
:is(body#category,
    body#search,
    body#prices-drop,
    body#new-products,
    body#best-sales,
    body#manufacturer,
    body#supplier) #search_filters label:hover {
    color: #111;
}

:is(body#category,
    body#search,
    body#prices-drop,
    body#new-products,
    body#best-sales,
    body#manufacturer,
    body#supplier) #search_filters .custom-checkbox input[type="checkbox"]+span {
    top: 1px;
    width: 18px;
    height: 18px;
    border: 1px solid rgba(17, 17, 17, 0.18);
    border-radius: 6px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

:is(body#category,
    body#search,
    body#prices-drop,
    body#new-products,
    body#best-sales,
    body#manufacturer,
    body#supplier) #search_filters .custom-checkbox input[type="checkbox"]:checked+span {
    border-color: #111;
    background: #111;
}

:is(body#category,
    body#search,
    body#prices-drop,
    body#new-products,
    body#best-sales,
    body#manufacturer,
    body#supplier) #search_filters .custom-checkbox input[type="checkbox"]:checked+span .checkbox-checked {
    color: #fff;
}

:is(body#category,
    body#search,
    body#prices-drop,
    body#new-products,
    body#best-sales,
    body#manufacturer,
    body#supplier) #search_filters .facet .navbar-toggler {
    padding: 0;
    color: #111;
}

:is(body#category,
    body#search,
    body#prices-drop,
    body#new-products,
    body#best-sales,
    body#manufacturer,
    body#supplier) .block-category,
:is(body#category,
    body#search,
    body#prices-drop,
    body#new-products,
    body#best-sales,
    body#manufacturer,
    body#supplier) #subcategories {
    margin-bottom: 22px;
    border: 1px solid rgba(17, 17, 17, 0.06);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 22px 44px rgba(0, 0, 0, 0.06);
    min-height: 0 !important;
}

:is(body#category,
    body#search,
    body#prices-drop,
    body#new-products,
    body#best-sales,
    body#manufacturer,
    body#supplier) .yd-category-hero {
    padding: clamp(18px, 2vw, 24px) clamp(24px, 2.4vw, 30px);
}

:is(body#category,
    body#search,
    body#prices-drop,
    body#new-products,
    body#best-sales,
    body#manufacturer,
    body#supplier) .yd-category-hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    align-items: center;
}

:is(body#category,
    body#search,
    body#prices-drop,
    body#new-products,
    body#best-sales,
    body#manufacturer,
    body#supplier) .yd-category-hero--with-media .yd-category-hero__inner {
    grid-template-columns: minmax(0, 1fr) minmax(220px, 320px);
    gap: clamp(18px, 2.2vw, 28px);
}

:is(body#category,
    body#search,
    body#prices-drop,
    body#new-products,
    body#best-sales,
    body#manufacturer,
    body#supplier) .yd-category-hero h1,
:is(body#category,
    body#search,
    body#prices-drop,
    body#new-products,
    body#best-sales,
    body#manufacturer,
    body#supplier) #main h1.h1 {
    margin: 0;
    font-size: clamp(1.9rem, 2.8vw, 2.9rem);
    line-height: 0.96;
    font-weight: 800;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    color: #111;
}

:is(body#category,
    body#search,
    body#prices-drop,
    body#new-products,
    body#best-sales,
    body#manufacturer,
    body#supplier) .yd-category-hero__description,
:is(body#category,
    body#search,
    body#prices-drop,
    body#new-products,
    body#best-sales,
    body#manufacturer,
    body#supplier) #category-description {
    display: none;
}

:is(body#category,
    body#search,
    body#prices-drop,
    body#new-products,
    body#best-sales,
    body#manufacturer,
    body#supplier) .yd-category-hero__content>:last-child {
    margin-bottom: 0;
}

:is(body#category,
    body#search,
    body#prices-drop,
    body#new-products,
    body#best-sales,
    body#manufacturer,
    body#supplier) .yd-category-hero__media {
    justify-self: end;
}

:is(body#category,
    body#search,
    body#prices-drop,
    body#new-products,
    body#best-sales,
    body#manufacturer,
    body#supplier) .yd-category-hero__media img {
    width: 100%;
    max-width: 320px;
    border-radius: 24px;
    object-fit: cover;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

:is(body#category,
    body#search,
    body#prices-drop,
    body#new-products,
    body#best-sales,
    body#manufacturer,
    body#supplier) #subcategories {
    padding: clamp(22px, 3vw, 34px);
}

:is(body#category,
    body#search,
    body#prices-drop,
    body#new-products,
    body#best-sales,
    body#manufacturer,
    body#supplier) .subcategory-heading {
    display: none;
}

:is(body#category,
    body#search,
    body#prices-drop,
    body#new-products,
    body#best-sales,
    body#manufacturer,
    body#supplier) .yd-subcategories__list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin: 0;
}

:is(body#category,
    body#search,
    body#prices-drop,
    body#new-products,
    body#best-sales,
    body#manufacturer,
    body#supplier) .yd-subcategories__item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
    min-height: 100%;
    min-height: 112px;
    padding: 18px 14px;
    border: 1px solid rgba(17, 17, 17, 0.08);
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 247, 243, 0.96));
    transition: background-color 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
    -webkit-tap-highlight-color: transparent;
}

:is(body#category,
    body#search,
    body#prices-drop,
    body#new-products,
    body#best-sales,
    body#manufacturer,
    body#supplier) .yd-subcategories__item:focus-within {
    border-color: rgba(17, 17, 17, 0.08);
    background: rgba(249, 247, 243, 0.92);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px) scale(1.015);
}

:is(body#category,
    body#search,
    body#prices-drop,
    body#new-products,
    body#best-sales,
    body#manufacturer,
    body#supplier) .yd-subcategories__item:hover {
    border-color: rgba(17, 17, 17, 0.08);
    background: rgba(249, 247, 243, 0.92);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px) scale(1.015);
}

:is(body#category,
    body#search,
    body#prices-drop,
    body#new-products,
    body#best-sales,
    body#manufacturer,
    body#supplier) .yd-subcategories__item a:focus,
:is(body#category,
    body#search,
    body#prices-drop,
    body#new-products,
    body#best-sales,
    body#manufacturer,
    body#supplier) .yd-subcategories__item a:focus-visible,
:is(body#category,
    body#search,
    body#prices-drop,
    body#new-products,
    body#best-sales,
    body#manufacturer,
    body#supplier) .yd-subcategories__item .img:focus,
:is(body#category,
    body#search,
    body#prices-drop,
    body#new-products,
    body#best-sales,
    body#manufacturer,
    body#supplier) .yd-subcategories__item .img:focus-visible {
    outline: none;
    box-shadow: none;
}

:is(body#category,
    body#search,
    body#prices-drop,
    body#new-products,
    body#best-sales,
    body#manufacturer,
    body#supplier) .subcategory-name {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #111 !important;
    text-decoration: none !important;
    line-height: 1.2;
}

:is(body#category,
    body#search,
    body#prices-drop,
    body#new-products,
    body#best-sales,
    body#manufacturer,
    body#supplier) .cat_desc {
    display: none;
}

:is(body#category,
    body#search,
    body#prices-drop,
    body#new-products,
    body#best-sales,
    body#manufacturer,
    body#supplier) #js-product-list-top {
    margin: 0 0 22px;
    padding: 18px 22px;
    border: 1px solid rgba(17, 17, 17, 0.06);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
}

:is(body#category,
    body#search,
    body#prices-drop,
    body#new-products,
    body#best-sales,
    body#manufacturer,
    body#supplier) #js-product-list-top .total-products p,
:is(body#category,
    body#search,
    body#prices-drop,
    body#new-products,
    body#best-sales,
    body#manufacturer,
    body#supplier) #js-product-list-top .showing {
    margin: 0;
    font-size: 0.92rem;
    color: #676767;
}

:is(body#category,
    body#search,
    body#prices-drop,
    body#new-products,
    body#best-sales,
    body#manufacturer,
    body#supplier) .sort-by-row {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
}

:is(body#category,
    body#search,
    body#prices-drop,
    body#new-products,
    body#best-sales,
    body#manufacturer,
    body#supplier) .sort-by {
    display: inline-flex;
    align-items: center;
    min-height: 58px;
    margin: 0;
    padding-top: 0;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #6d6d6d;
}

:is(body#category,
    body#search,
    body#prices-drop,
    body#new-products,
    body#best-sales,
    body#manufacturer,
    body#supplier) .products-sort-order {
    float: none;
}

:is(body#category,
    body#search,
    body#prices-drop,
    body#new-products,
    body#best-sales,
    body#manufacturer,
    body#supplier) .yd-results-per-page-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

:is(body#category,
    body#search,
    body#prices-drop,
    body#new-products,
    body#best-sales,
    body#manufacturer,
    body#supplier) .yd-results-per-page-label {
    white-space: nowrap;
}

:is(body#category,
    body#search,
    body#prices-drop,
    body#new-products,
    body#best-sales,
    body#manufacturer,
    body#supplier) .yd-results-per-page-dropdown {
    min-width: 180px;
}

:is(body#category,
    body#search,
    body#prices-drop,
    body#new-products,
    body#best-sales,
    body#manufacturer,
    body#supplier) .products-sort-order .select-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 58px;
    padding: 0 20px;
    border: 1px solid rgba(17, 17, 17, 0.12);
    border-radius: 18px;
    background: #fff;
    color: #111;
    font-weight: 600;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

:is(body#category,
    body#search,
    body#prices-drop,
    body#new-products,
    body#best-sales,
    body#manufacturer,
    body#supplier) .products-sort-order .dropdown-menu {
    min-width: 100%;
    margin-top: 10px;
    border: 1px solid rgba(17, 17, 17, 0.08);
    border-radius: 18px;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.12);
    overflow: hidden;
}

:is(body#category,
    body#search,
    body#prices-drop,
    body#new-products,
    body#best-sales,
    body#manufacturer,
    body#supplier) .products-sort-order .select-list {
    padding: 12px 18px;
    color: #1f1f1f;
}

:is(body#category,
    body#search,
    body#prices-drop,
    body#new-products,
    body#best-sales,
    body#manufacturer,
    body#supplier) .products-sort-order .select-list:hover,
:is(body#category,
    body#search,
    body#prices-drop,
    body#new-products,
    body#best-sales,
    body#manufacturer,
    body#supplier) .products-sort-order .select-list.current {
    background: #f6f3ee;
    color: #111;
}

:is(body#category,
    body#search,
    body#prices-drop,
    body#new-products,
    body#best-sales,
    body#manufacturer,
    body#supplier) .yd-mobile-listing-tools {
    margin-bottom: 14px;
}

:is(body#category,
    body#search,
    body#prices-drop,
    body#new-products,
    body#best-sales,
    body#manufacturer,
    body#supplier) .yd-mobile-listing-tools__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

:is(body#category,
    body#search,
    body#prices-drop,
    body#new-products,
    body#best-sales,
    body#manufacturer,
    body#supplier) .yd-mobile-listing-tools__item,
:is(body#category,
    body#search,
    body#prices-drop,
    body#new-products,
    body#best-sales,
    body#manufacturer,
    body#supplier) .yd-mobile-listing-tools__item.products-sort-order {
    width: 100%;
}

:is(body#category,
    body#search,
    body#prices-drop,
    body#new-products,
    body#best-sales,
    body#manufacturer,
    body#supplier) .yd-mobile-listing-tools .filter-button {
    width: 100%;
    margin-top: 10px;
    padding-left: 0;
}

:is(body#category,
    body#search,
    body#prices-drop,
    body#new-products,
    body#best-sales,
    body#manufacturer,
    body#supplier) .yd-mobile-listing-tools .filter-button .btn {
    width: 100%;
}

:is(body#category,
    body#search,
    body#prices-drop,
    body#new-products,
    body#best-sales,
    body#manufacturer,
    body#supplier) .active_filters {
    margin: -4px 0 18px;
    padding: 0;
    background: transparent;
}

:is(body#category,
    body#search,
    body#prices-drop,
    body#new-products,
    body#best-sales,
    body#manufacturer,
    body#supplier) .active_filters .active-filter-title {
    margin-right: 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #6d6d6d;
}

:is(body#category,
    body#search,
    body#prices-drop,
    body#new-products,
    body#best-sales,
    body#manufacturer,
    body#supplier) .active_filters .filter-block {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 8px 8px 0;
    padding: 10px 14px;
    border: 1px solid rgba(17, 17, 17, 0.1);
    border-radius: 999px;
    background: #fff;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.04);
}

:is(body#category,
    body#search,
    body#prices-drop,
    body#new-products,
    body#best-sales,
    body#manufacturer,
    body#supplier) #js-product-list .products {
    margin-left: -8px;
    margin-right: -8px;
}

:is(body#category,
    body#search,
    body#prices-drop,
    body#new-products,
    body#best-sales,
    body#manufacturer,
    body#supplier) #js-product-list .products>.js-product {
    padding-left: 8px;
    padding-right: 8px;
    margin-bottom: 18px;
    width: 33.333333% !important;
    flex: 0 0 33.333333% !important;
    max-width: 33.333333% !important;
}

:is(body#category,
    body#search,
    body#prices-drop,
    body#new-products,
    body#best-sales,
    body#manufacturer,
    body#supplier) #js-product-list .product-miniature .thumbnail-container {
    height: 100%;
    border-radius: 24px;
    max-width: none !important;
    width: 100%;
}

:is(body#category,
    body#search,
    body#prices-drop,
    body#new-products,
    body#best-sales,
    body#manufacturer,
    body#supplier) #js-product-list .product-miniature .product-description {
    padding: 14px 14px 18px;
}

:is(body#category,
    body#search,
    body#prices-drop,
    body#new-products,
    body#best-sales,
    body#manufacturer,
    body#supplier) #js-product-list .product-miniature .product-title {
    min-height: 2.8em;
    margin-bottom: 10px;
}

:is(body#category,
    body#search,
    body#prices-drop,
    body#new-products,
    body#best-sales,
    body#manufacturer,
    body#supplier) #js-product-list .product-miniature .product-title a {
    color: #161616;
    font-size: 0.97rem;
    font-weight: 700;
    line-height: 1.4;
}

:is(body#category,
    body#search,
    body#prices-drop,
    body#new-products,
    body#best-sales,
    body#manufacturer,
    body#supplier) #js-product-list .product-miniature .price {
    font-size: 1.08rem;
    font-weight: 800;
    color: #111;
}

:is(body#category,
    body#search,
    body#prices-drop,
    body#new-products,
    body#best-sales,
    body#manufacturer,
    body#supplier) .pagination {
    margin-top: 10px;
}

:is(body#category,
    body#search,
    body#prices-drop,
    body#new-products,
    body#best-sales,
    body#manufacturer,
    body#supplier) .page-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

:is(body#category,
    body#search,
    body#prices-drop,
    body#new-products,
    body#best-sales,
    body#manufacturer,
    body#supplier) .page-list li {
    margin: 0;
}

:is(body#category,
    body#search,
    body#prices-drop,
    body#new-products,
    body#best-sales,
    body#manufacturer,
    body#supplier) .page-list a,
:is(body#category,
    body#search,
    body#prices-drop,
    body#new-products,
    body#best-sales,
    body#manufacturer,
    body#supplier) .page-list span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 14px;
    border: 1px solid rgba(17, 17, 17, 0.08);
    border-radius: 999px;
    background: #fff;
    color: #111;
}

@media (min-width: 992px) {

    :is(body#category,
        body#search,
        body#prices-drop,
        body#new-products,
        body#best-sales,
        body#manufacturer,
        body#supplier) #wrapper>.container {
        width: min(98vw, 1860px);
    }

    :is(body#category,
        body#search,
        body#prices-drop,
        body#new-products,
        body#best-sales,
        body#manufacturer,
        body#supplier) #content-wrapper {
        padding-left: 4px;
    }

    :is(body#category,
        body#search,
        body#prices-drop,
        body#new-products,
        body#best-sales,
        body#manufacturer,
        body#supplier) #js-product-list .products>.js-product {
        width: 33.333333% !important;
        flex: 0 0 33.333333% !important;
        max-width: 33.333333% !important;
    }

    :is(body#category,
        body#search,
        body#prices-drop,
        body#new-products,
        body#best-sales,
        body#manufacturer,
        body#supplier) .yd-back-to-top {
        position: fixed;
        right: 22px;
        bottom: 22px;
        z-index: 40;
        margin-top: 0;
        text-align: right;
    }

    :is(body#category,
        body#search,
        body#prices-drop,
        body#new-products,
        body#best-sales,
        body#manufacturer,
        body#supplier) #subcategories {
        padding: 16px 18px;
    }
}

:is(body#category,
    body#search,
    body#prices-drop,
    body#new-products,
    body#best-sales,
    body#manufacturer,
    body#supplier) .yd-back-to-top {
    margin-top: 18px;
    text-align: right;
}

:is(body#category,
    body#search,
    body#prices-drop,
    body#new-products,
    body#best-sales,
    body#manufacturer,
    body#supplier) .yd-back-to-top .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 46px;
    padding: 0 18px;
    border: 1px solid rgba(17, 17, 17, 0.1);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.95);
    color: #111;
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.05);
    cursor: pointer;
}

@media (max-width: 1199px) {

    :is(body#category,
        body#search,
        body#prices-drop,
        body#new-products,
        body#best-sales,
        body#manufacturer,
        body#supplier) #wrapper>.container {
        width: min(97vw, 1500px);
    }

    :is(body#category,
        body#search,
        body#prices-drop,
        body#new-products,
        body#best-sales,
        body#manufacturer,
        body#supplier) .yd-subcategories__list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 991px) {

    :is(body#category,
        body#search,
        body#prices-drop,
        body#new-products,
        body#best-sales,
        body#manufacturer,
        body#supplier) #wrapper>.container {
        width: min(94vw, 860px);
    }

    :is(body#category,
        body#search,
        body#prices-drop,
        body#new-products,
        body#best-sales,
        body#manufacturer,
        body#supplier) #left-column,
    :is(body#category,
        body#search,
        body#prices-drop,
        body#new-products,
        body#best-sales,
        body#manufacturer,
        body#supplier) #content-wrapper {
        width: 100%;
    }

    :is(body#category,
        body#search,
        body#prices-drop,
        body#new-products,
        body#best-sales,
        body#manufacturer,
        body#supplier) .yd-category-hero__inner {
        grid-template-columns: 1fr;
    }

    :is(body#category,
        body#search,
        body#prices-drop,
        body#new-products,
        body#best-sales,
        body#manufacturer,
        body#supplier) .yd-category-hero__media {
        justify-self: start;
    }

    :is(body#category,
        body#search,
        body#prices-drop,
        body#new-products,
        body#best-sales,
        body#manufacturer,
        body#supplier) .yd-subcategories__list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {

    :is(body#category,
        body#search,
        body#prices-drop,
        body#new-products,
        body#best-sales,
        body#manufacturer,
        body#supplier) #wrapper>.container {
        width: min(94vw, 680px);
        padding-left: 0;
        padding-right: 0;
    }

    :is(body#category,
        body#search,
        body#prices-drop,
        body#new-products,
        body#best-sales,
        body#manufacturer,
        body#supplier) .breadcrumb {
        margin-bottom: 16px;
        font-size: 11px;
    }

    :is(body#category,
        body#search,
        body#prices-drop,
        body#new-products,
        body#best-sales,
        body#manufacturer,
        body#supplier) #left-column,
    :is(body#category,
        body#search,
        body#prices-drop,
        body#new-products,
        body#best-sales,
        body#manufacturer,
        body#supplier) #content-wrapper {
        padding-left: 12px;
        padding-right: 12px;
    }

    :is(body#category,
        body#search,
        body#prices-drop,
        body#new-products,
        body#best-sales,
        body#manufacturer,
        body#supplier) #left-column {
        margin-bottom: 16px;
    }

    :is(body#category,
        body#search,
        body#prices-drop,
        body#new-products,
        body#best-sales,
        body#manufacturer,
        body#supplier) #left-column .block-categories,
    :is(body#category,
        body#search,
        body#prices-drop,
        body#new-products,
        body#best-sales,
        body#manufacturer,
        body#supplier) #left-column #search_filters {
        border-radius: 22px;
    }

    :is(body#category,
        body#search,
        body#prices-drop,
        body#new-products,
        body#best-sales,
        body#manufacturer,
        body#supplier) .block-categories {
        padding: 18px 18px 16px;
    }

    :is(body#category,
        body#search,
        body#prices-drop,
        body#new-products,
        body#best-sales,
        body#manufacturer,
        body#supplier) .category-top-menu>li>a {
        margin-bottom: 10px;
        font-size: 1.55rem;
    }

    :is(body#category,
        body#search,
        body#prices-drop,
        body#new-products,
        body#best-sales,
        body#manufacturer,
        body#supplier) #search_filters_wrapper {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    :is(body#category,
        body#search,
        body#prices-drop,
        body#new-products,
        body#best-sales,
        body#manufacturer,
        body#supplier) #search_filter_controls {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 18px 14px;
    }

    :is(body#category,
        body#search,
        body#prices-drop,
        body#new-products,
        body#best-sales,
        body#manufacturer,
        body#supplier) #search_filter_controls .ok,
    :is(body#category,
        body#search,
        body#prices-drop,
        body#new-products,
        body#best-sales,
        body#manufacturer,
        body#supplier) #search_filter_toggler {
        min-height: 52px;
        padding: 0 18px;
        border: 1px solid #111;
        border-radius: 999px;
        background: #111;
        color: #fff;
        font-size: 0.88rem;
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
    }

    :is(body#category,
        body#search,
        body#prices-drop,
        body#new-products,
        body#best-sales,
        body#manufacturer,
        body#supplier) #js-product-list-top {
        padding: 14px 16px;
        border-radius: 20px;
    }

    :is(body#category,
        body#search,
        body#prices-drop,
        body#new-products,
        body#best-sales,
        body#manufacturer,
        body#supplier) .sort-by-row {
        justify-content: space-between;
        gap: 10px;
    }

    :is(body#category,
        body#search,
        body#prices-drop,
        body#new-products,
        body#best-sales,
        body#manufacturer,
        body#supplier) #subcategories {
        padding: 18px;
        border-radius: 24px;
    }

    :is(body#category,
        body#search,
        body#prices-drop,
        body#new-products,
        body#best-sales,
        body#manufacturer,
        body#supplier) .yd-subcategories__list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    :is(body#category,
        body#search,
        body#prices-drop,
        body#new-products,
        body#best-sales,
        body#manufacturer,
        body#supplier) #js-product-list .products {
        margin-left: -8px;
        margin-right: -8px;
    }

    :is(body#category,
        body#search,
        body#prices-drop,
        body#new-products,
        body#best-sales,
        body#manufacturer,
        body#supplier) #js-product-list .products>.js-product {
        width: 50%;
        padding-left: 8px;
        padding-right: 8px;
        margin-bottom: 16px;
    }

    :is(body#category,
        body#search,
        body#prices-drop,
        body#new-products,
        body#best-sales,
        body#manufacturer,
        body#supplier) #js-product-list .product-miniature .thumbnail-container {
        border-radius: 20px;
    }

    :is(body#category,
        body#search,
        body#prices-drop,
        body#new-products,
        body#best-sales,
        body#manufacturer,
        body#supplier) #js-product-list .product-miniature .product-description {
        padding: 12px 12px 16px;
    }

    :is(body#category,
        body#search,
        body#prices-drop,
        body#new-products,
        body#best-sales,
        body#manufacturer,
        body#supplier) #js-product-list .product-miniature .product-title a {
        font-size: 0.9rem;
    }

    :is(body#category,
        body#search,
        body#prices-drop,
        body#new-products,
        body#best-sales,
        body#manufacturer,
        body#supplier) .yd-category-hero {
        padding: 20px 18px;
    }

    :is(body#category,
        body#search,
        body#prices-drop,
        body#new-products,
        body#best-sales,
        body#manufacturer,
        body#supplier) .yd-category-hero h1,
    :is(body#category,
        body#search,
        body#prices-drop,
        body#new-products,
        body#best-sales,
        body#manufacturer,
        body#supplier) #main h1.h1 {
        font-size: clamp(1.95rem, 9vw, 2.45rem);
        line-height: 1;
    }

    :is(body#category,
        body#search,
        body#prices-drop,
        body#new-products,
        body#best-sales,
        body#manufacturer,
        body#supplier) .yd-back-to-top {
        position: static;
        text-align: center;
    }

    :is(body#category,
        body#search,
        body#prices-drop,
        body#new-products,
        body#best-sales,
        body#manufacturer,
        body#supplier) .yd-subcategories__item {
        min-height: 82px;
        padding: 14px 10px;
    }
}

@media (max-width: 420px) {

    :is(body#category,
        body#search,
        body#prices-drop,
        body#new-products,
        body#best-sales,
        body#manufacturer,
        body#supplier) .yd-mobile-listing-tools__grid {
        grid-template-columns: 1fr;
    }

    :is(body#category,
        body#search,
        body#prices-drop,
        body#new-products,
        body#best-sales,
        body#manufacturer,
        body#supplier) .yd-subcategories__list {
        gap: 10px;
    }

    :is(body#category,
        body#search,
        body#prices-drop,
        body#new-products,
        body#best-sales,
        body#manufacturer,
        body#supplier) .products-sort-order {
        width: calc(100% - 94px);
    }

    :is(body#category,
        body#search,
        body#prices-drop,
        body#new-products,
        body#best-sales,
        body#manufacturer,
        body#supplier) .filter-button {
        width: 84px;
    }
}

html.has-simpledesigner-premium-ui .page-product .simpledesigner.sd-empty-state #sd-faces,
html.has-simpledesigner-premium-ui .page-product .simpledesigner.sd-empty-state #sd-layer-controls,
html.has-simpledesigner-premium-ui .page-product .simpledesigner.sd-empty-state #sd-text-controls,
html.has-simpledesigner-premium-ui .page-product .simpledesigner.sd-empty-state #sd-validation-note,
html.has-simpledesigner-premium-ui .page-product .simpledesigner.sd-empty-state #sd-cart-slot,
html.has-simpledesigner-premium-ui .page-product .simpledesigner .sd-panel--hidden-by-empty,
html.has-simpledesigner-premium-ui .page-product .simpledesigner .sd-hidden-by-empty-state {
    display: none !important;
}

html.has-simpledesigner-premium-ui .page-product .simpledesigner.sd-empty-state .simpledesigner__mockup,
html.has-simpledesigner-premium-ui .page-product .simpledesigner.sd-empty-state .simpledesigner__preview {
    background: #fff !important;
}

html.has-simpledesigner-premium-ui .page-product .simpledesigner.sd-empty-state .simpledesigner__mockup {
    min-height: clamp(360px, 56vh, 700px);
}

html.has-simpledesigner-premium-ui .page-product .simpledesigner.sd-empty-state #sd-konva-A,
html.has-simpledesigner-premium-ui .page-product .simpledesigner.sd-empty-state #sd-konva-B,
html.has-simpledesigner-premium-ui .page-product .simpledesigner.sd-empty-state canvas,
html.has-simpledesigner-premium-ui .page-product .simpledesigner.sd-empty-state .konvajs-content {
    opacity: 0 !important;
}

@media (max-width: 1366px) and (min-width: 992px) {
    html.has-simpledesigner-premium-ui .page-product .simpledesigner {
        gap: 22px;
        align-items: start;
    }

    html.has-simpledesigner-premium-ui .page-product .simpledesigner__preview {
        min-width: 0;
        flex: 1 1 54%;
    }

    html.has-simpledesigner-premium-ui .page-product .simpledesigner__controls {
        min-width: 0;
        flex: 1 1 46%;
    }

    html.has-simpledesigner-premium-ui .page-product .simpledesigner__mockup {
        min-height: clamp(420px, 52vw, 760px);
    }
}

@media (max-width: 1180px) and (min-width: 992px) {
    html.has-simpledesigner-premium-ui .page-product .simpledesigner {
        gap: 18px;
    }

    html.has-simpledesigner-premium-ui .page-product .simpledesigner__preview {
        flex-basis: 50%;
    }

    html.has-simpledesigner-premium-ui .page-product .simpledesigner__controls {
        flex-basis: 50%;
    }

    html.has-simpledesigner-premium-ui .page-product .simpledesigner__mockup {
        min-height: clamp(360px, 48vw, 640px);
    }
}

@media (max-width: 991px) {
    html.has-simpledesigner-premium-ui .page-product .simpledesigner__mockup {
        min-height: clamp(280px, 62vw, 520px);
    }
}

html.has-simpledesigner-premium-ui .page-product .simpledesigner__mockup,
html.has-simpledesigner-premium-ui .page-product .simpledesigner__preview,
html.has-simpledesigner-premium-ui .page-product .simpledesigner__controls {
    transition: opacity 0.2s ease, transform 0.2s ease;
}

html.has-simpledesigner-premium-ui .page-product .simpledesigner__preview,
html.has-simpledesigner-premium-ui .page-product .simpledesigner__mockup,
html.has-simpledesigner-premium-ui .page-product #sd-mockup-wrap,
html.has-simpledesigner-premium-ui .page-product #sd-konva-A,
html.has-simpledesigner-premium-ui .page-product #sd-konva-B,
html.has-simpledesigner-premium-ui .page-product .konvajs-content {
    background: #fff !important;
}

html.has-simpledesigner-premium-ui .page-product .simpledesigner {
    --sd-device-vh: 100vh;
    --sd-device-vw: 100vw;
}

html.has-simpledesigner-premium-ui .page-product .simpledesigner.sd-preview-loading .simpledesigner__mockup {
    opacity: 0;
}

html.has-simpledesigner-premium-ui .page-product .simpledesigner.sd-density-tight {
    gap: 18px !important;
}

html.has-simpledesigner-premium-ui .page-product .simpledesigner.sd-density-tight .sd-panel__header {
    padding: 16px 18px 12px;
}

html.has-simpledesigner-premium-ui .page-product .simpledesigner.sd-density-tight .sd-panel__content {
    padding: 0 18px 18px;
}

html.has-simpledesigner-premium-ui .page-product .simpledesigner.sd-density-tight .simpledesigner__mockup {
    min-height: clamp(360px, 46vw, 620px) !important;
}

html.has-simpledesigner-premium-ui .page-product .simpledesigner.sd-density-tight .sd-options {
    gap: 10px;
}

html.has-simpledesigner-premium-ui .page-product .simpledesigner.sd-density-tight .sd-choice {
    min-width: 72px;
}

html.has-simpledesigner-premium-ui .page-product .simpledesigner.sd-density-compact {
    gap: 14px !important;
}

html.has-simpledesigner-premium-ui .page-product .simpledesigner.sd-density-compact .simpledesigner__preview {
    flex-basis: 48% !important;
}

html.has-simpledesigner-premium-ui .page-product .simpledesigner.sd-density-compact .simpledesigner__controls {
    flex-basis: 52% !important;
}

html.has-simpledesigner-premium-ui .page-product .simpledesigner.sd-density-compact .simpledesigner__mockup {
    min-height: clamp(320px, 42vw, 560px) !important;
}

html.has-simpledesigner-premium-ui .page-product .simpledesigner.sd-density-compact .sd-panel__header {
    padding: 14px 16px 10px;
}

html.has-simpledesigner-premium-ui .page-product .simpledesigner.sd-density-compact .sd-panel__content {
    padding: 0 16px 16px;
}

html.has-simpledesigner-premium-ui .page-product .simpledesigner.sd-density-compact .sd-panel__title {
    font-size: 0.92rem;
}

html.has-simpledesigner-premium-ui .page-product .simpledesigner.sd-density-compact .sd-choice {
    min-width: 64px;
}

html.has-simpledesigner-premium-ui .page-product .simpledesigner.sd-density-compact .sd-choice__thumb {
    width: 56px;
    height: 56px;
}

html.has-simpledesigner-premium-ui .page-product .simpledesigner.sd-density-micro {
    gap: 12px !important;
}

html.has-simpledesigner-premium-ui .page-product .simpledesigner.sd-density-micro .simpledesigner__mockup {
    min-height: clamp(280px, 38vw, 500px) !important;
}

html.has-simpledesigner-premium-ui .page-product .simpledesigner.sd-density-micro .sd-panel__header {
    padding: 12px 14px 10px;
}

html.has-simpledesigner-premium-ui .page-product .simpledesigner.sd-density-micro .sd-panel__content {
    padding: 0 14px 14px;
}

html.has-simpledesigner-premium-ui .page-product .simpledesigner.sd-density-micro .sd-choice__thumb {
    width: 50px;
    height: 50px;
}

html.has-simpledesigner-premium-ui .page-product .simpledesigner.sd-density-micro .sd-options {
    gap: 8px;
}

html.has-simpledesigner-premium-ui .page-product {
    --sd-support-choice-size: clamp(62px, 5.2vw, 82px);
}

html.has-simpledesigner-premium-ui .page-product .sd-merged-support {
    grid-template-columns: repeat(auto-fit, minmax(var(--sd-support-choice-size), var(--sd-support-choice-size))) !important;
    gap: clamp(8px, 1.4vw, 12px) !important;
    align-items: stretch !important;
    justify-content: center !important;
}

html.has-simpledesigner-premium-ui .page-product .sd-merged-support__choice {
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
    aspect-ratio: 1 / 1;
}

html.has-simpledesigner-premium-ui .page-product .sd-merged-support__choice .sd-choice__media,
html.has-simpledesigner-premium-ui .page-product .sd-merged-support__choice img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
}

html.has-simpledesigner-premium-ui .page-product .simpledesigner.sd-density-tight {
    --sd-support-choice-size: clamp(58px, 4.8vw, 74px);
}

html.has-simpledesigner-premium-ui .page-product .simpledesigner.sd-density-compact {
    --sd-support-choice-size: clamp(62px, 5.6vw, 80px);
}

html.has-simpledesigner-premium-ui .page-product .simpledesigner.sd-density-micro {
    --sd-support-choice-size: clamp(54px, 5vw, 72px);
}

@media (max-width: 991px) {
    html.has-simpledesigner .page-product .simpledesigner__grid {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }

    html.has-simpledesigner .page-product .simpledesigner__preview,
    html.has-simpledesigner .page-product .simpledesigner__controls {
        grid-column: 1 / -1 !important;
        width: 100% !important;
        min-width: 0 !important;
    }

    html.has-simpledesigner .page-product .simpledesigner__preview {
        position: sticky !important;
        top: 68px !important;
        z-index: 8 !important;
        align-self: start !important;
    }

    html.has-simpledesigner-premium-ui .page-product .simpledesigner__mockup {
        min-height: calc(clamp(180px, 34vh, 300px) * var(--sd-mobile-preview-scale, 1)) !important;
        max-height: 42vh !important;
    }

    html.has-simpledesigner .page-product #wrapper>.container,
    html.has-simpledesigner .page-product #wrapper>.container>.row,
    html.has-simpledesigner .page-product #content-wrapper,
    html.has-simpledesigner .page-product #main,
    html.has-simpledesigner .page-product #content,
    html.has-simpledesigner .page-product #content.page-content {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: auto !important;
        margin-right: auto !important;
        left: auto !important;
        right: auto !important;
        float: none !important;
    }

    html.has-simpledesigner .page-product #main {
        width: min(calc(100vw - 20px), 860px) !important;
        max-width: min(calc(100vw - 20px), 860px) !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    html.has-simpledesigner .page-product #sd-stage.sd-stage {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: auto !important;
        margin-right: auto !important;
        padding: 16px 12px 24px !important;
        box-sizing: border-box !important;
    }

    html.has-simpledesigner .page-product .simpledesigner,
    html.has-simpledesigner .page-product .simpledesigner__grid,
    html.has-simpledesigner .page-product .simpledesigner__preview,
    html.has-simpledesigner .page-product .simpledesigner__controls {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    html.has-simpledesigner-premium-ui .page-product {
        --sd-support-choice-size: clamp(58px, 18vw, 78px);
    }
}

@media (max-width: 991px) and (orientation: portrait) {
    html.has-simpledesigner .page-product .simpledesigner__grid {
        grid-template-columns: 1fr !important;
    }

    html.has-simpledesigner .page-product .simpledesigner__preview {
        position: relative !important;
        top: auto !important;
        z-index: 1 !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    html.has-simpledesigner-premium-ui .page-product .simpledesigner__mockup {
        width: 100% !important;
        min-height: clamp(260px, 42vh, 420px) !important;
        max-height: none !important;
    }
}

html.has-simpledesigner-premium-ui .page-product .simpledesigner.sd-device-mobile-portrait .simpledesigner__grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
}

html.has-simpledesigner-premium-ui .page-product .simpledesigner.sd-device-mobile-portrait .simpledesigner__preview,
html.has-simpledesigner-premium-ui .page-product .simpledesigner.sd-device-mobile-portrait .simpledesigner__controls {
    grid-column: 1 / -1 !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
}

html.has-simpledesigner-premium-ui .page-product .simpledesigner.sd-device-mobile-portrait .simpledesigner__preview {
    position: sticky !important;
    top: 68px !important;
    z-index: 8 !important;
    align-self: start !important;
}

html.has-simpledesigner-premium-ui .page-product .simpledesigner.sd-device-mobile-portrait .simpledesigner__mockup {
    width: 100% !important;
    min-height: calc(clamp(220px, 34vh, 340px) * var(--sd-mobile-preview-scale, 1)) !important;
    max-height: calc(var(--sd-device-vh) - 96px) !important;
    overflow: hidden !important;
}

html.has-simpledesigner-premium-ui .page-product .simpledesigner.sd-device-mobile-portrait #sd-mockup-wrap,
html.has-simpledesigner-premium-ui .page-product .simpledesigner.sd-device-mobile-portrait #sd-konva-A,
html.has-simpledesigner-premium-ui .page-product .simpledesigner.sd-device-mobile-portrait #sd-konva-B {
    max-height: calc(var(--sd-device-vh) - 96px) !important;
    overflow: hidden !important;
}

@media (max-width: 767px) {
    html.has-simpledesigner-premium-ui .page-product {
        --sd-support-choice-size: clamp(56px, 17vw, 72px);
    }

    html.has-simpledesigner-premium-ui .page-product .sd-merged-support {
        gap: 8px !important;
    }
}

@media (max-width: 991px) and (orientation: landscape) {
    html.has-simpledesigner .page-product .simpledesigner__grid {
        grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr) !important;
        gap: 12px !important;
        align-items: start !important;
    }

    html.has-simpledesigner .page-product .simpledesigner__preview,
    html.has-simpledesigner .page-product .simpledesigner__controls {
        grid-column: auto !important;
        min-width: 0 !important;
    }

    html.has-simpledesigner .page-product .simpledesigner__preview {
        position: sticky !important;
        top: 62px !important;
        z-index: 4 !important;
    }

    html.has-simpledesigner-premium-ui .page-product .simpledesigner__mockup {
        min-height: clamp(150px, 24vh, 210px) !important;
        max-height: 26vh !important;
    }

    html.has-simpledesigner .page-product #main {
        width: min(calc(100vw - 28px), 960px) !important;
        max-width: min(calc(100vw - 28px), 960px) !important;
    }

    html.has-simpledesigner-premium-ui .page-product {
        --sd-support-choice-size: clamp(52px, 11vw, 68px);
    }
}

html.has-simpledesigner-premium-ui .page-product .simpledesigner.sd-device-mobile-landscape .simpledesigner__grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr) !important;
    gap: 12px !important;
    align-items: start !important;
}

html.has-simpledesigner-premium-ui .page-product .simpledesigner.sd-device-mobile-landscape .simpledesigner__preview,
html.has-simpledesigner-premium-ui .page-product .simpledesigner.sd-device-mobile-landscape .simpledesigner__controls {
    grid-column: auto !important;
    min-width: 0 !important;
}

html.has-simpledesigner-premium-ui .page-product .simpledesigner.sd-device-mobile-landscape .simpledesigner__preview {
    position: sticky !important;
    top: 62px !important;
    z-index: 4 !important;
}

html.has-simpledesigner-premium-ui .page-product .simpledesigner.sd-device-mobile-landscape .simpledesigner__mockup {
    min-height: clamp(150px, 24vh, 210px) !important;
    max-height: min(26vh, calc(var(--sd-device-vh) - 92px)) !important;
    overflow: hidden !important;
}

@media (max-width: 991px) and (orientation: landscape) and (max-height: 520px) {
    html.has-simpledesigner .page-product .simpledesigner__grid {
        grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr) !important;
        gap: 10px !important;
    }

    html.has-simpledesigner .page-product .simpledesigner__preview {
        top: 58px !important;
    }

    html.has-simpledesigner-premium-ui .page-product .simpledesigner__mockup {
        min-height: clamp(132px, 22vh, 180px) !important;
        max-height: calc(100vh - 92px) !important;
        overflow: hidden !important;
    }

    html.has-simpledesigner-premium-ui .page-product #sd-mockup-wrap,
    html.has-simpledesigner-premium-ui .page-product #sd-konva-A,
    html.has-simpledesigner-premium-ui .page-product #sd-konva-B {
        max-height: calc(100vh - 92px) !important;
        overflow: hidden !important;
    }

    html.has-simpledesigner-premium-ui .page-product {
        --sd-support-choice-size: clamp(48px, 9vw, 60px);
    }
}

html.has-simpledesigner-premium-ui .page-product .simpledesigner.sd-device-mobile-landscape-compact .simpledesigner__grid {
    grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr) !important;
    gap: 10px !important;
}

html.has-simpledesigner-premium-ui .page-product .simpledesigner.sd-device-mobile-landscape-compact .simpledesigner__preview {
    top: 58px !important;
}

html.has-simpledesigner-premium-ui .page-product .simpledesigner.sd-device-mobile-landscape-compact .simpledesigner__mockup {
    min-height: clamp(132px, 22vh, 180px) !important;
    max-height: calc(var(--sd-device-vh) - 92px) !important;
    overflow: hidden !important;
}

html.has-simpledesigner-premium-ui .page-product .simpledesigner.sd-device-mobile-landscape-compact #sd-mockup-wrap,
html.has-simpledesigner-premium-ui .page-product .simpledesigner.sd-device-mobile-landscape-compact #sd-konva-A,
html.has-simpledesigner-premium-ui .page-product .simpledesigner.sd-device-mobile-landscape-compact #sd-konva-B {
    max-height: calc(var(--sd-device-vh) - 92px) !important;
    overflow: hidden !important;
}

@media (max-width: 991px) {

    html.has-simpledesigner .page-product #wrapper>.container,
    html.has-simpledesigner .page-product #wrapper>.container>.row,
    html.has-simpledesigner .page-product #content-wrapper,
    html.has-simpledesigner .page-product #main,
    html.has-simpledesigner .page-product #content,
    html.has-simpledesigner .page-product #content.page-content {
        width: 100vw !important;
        max-width: 100vw !important;
        margin-left: calc(50% - 50vw) !important;
        margin-right: calc(50% - 50vw) !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        box-sizing: border-box !important;
    }

    html.has-simpledesigner .page-product #sd-stage.sd-stage {
        width: 100vw !important;
        max-width: 100vw !important;
        margin-left: calc(50% - 50vw) !important;
        margin-right: calc(50% - 50vw) !important;
        padding-left: max(10px, env(safe-area-inset-left)) !important;
        padding-right: max(10px, env(safe-area-inset-right)) !important;
    }

    html.has-simpledesigner-premium-ui .page-product .simpledesigner {
        --sd-mobile-preview-scale: 1;
    }

    html.has-simpledesigner-premium-ui .page-product .simpledesigner__preview {
        position: sticky !important;
        top: 74px !important;
        z-index: 8 !important;
        align-self: start !important;
    }

    html.has-simpledesigner-premium-ui .page-product .simpledesigner__mockup {
        min-height: calc(clamp(220px, 46vh, 360px) * var(--sd-mobile-preview-scale, 1)) !important;
        transition: min-height 0.22s ease, opacity 0.2s ease, transform 0.2s ease !important;
    }

    html.has-simpledesigner-premium-ui .page-product .simpledesigner.sd-mobile-preview-compact .simpledesigner__preview,
    html.has-simpledesigner-premium-ui .page-product .simpledesigner.sd-mobile-preview-pinned .simpledesigner__preview {
        top: 68px !important;
    }

    html.has-simpledesigner-premium-ui .page-product .simpledesigner.sd-mobile-preview-compact .simpledesigner__mockup {
        box-shadow: 0 18px 42px rgba(17, 17, 17, 0.10) !important;
    }

    html.has-simpledesigner-premium-ui .page-product .simpledesigner__mockup,
    html.has-simpledesigner-premium-ui .page-product #sd-mockup-wrap,
    html.has-simpledesigner-premium-ui .page-product #sd-konva-A,
    html.has-simpledesigner-premium-ui .page-product #sd-konva-B,
    html.has-simpledesigner-premium-ui .page-product .konvajs-content,
    html.has-simpledesigner-premium-ui .page-product .konvajs-content canvas {
        touch-action: pan-y pinch-zoom !important;
    }

    html.has-simpledesigner-premium-ui .page-product .simpledesigner.sd-text-interacting #sd-mockup-wrap,
    html.has-simpledesigner-premium-ui .page-product .simpledesigner.sd-text-interacting #sd-konva-A,
    html.has-simpledesigner-premium-ui .page-product .simpledesigner.sd-text-interacting #sd-konva-B,
    html.has-simpledesigner-premium-ui .page-product .simpledesigner.sd-text-interacting .konvajs-content,
    html.has-simpledesigner-premium-ui .page-product .simpledesigner.sd-text-interacting .konvajs-content canvas {
        touch-action: none !important;
    }

}

@media (max-width: 991px) and (orientation: landscape) {
    html.has-simpledesigner-premium-ui .page-product {
        --sd-support-choice-size: clamp(52px, 11vw, 68px);
    }
}

.sd-product-miniature--designer .thumbnail-top {
    min-height: 320px;
    background: #fff;
}

.sd-product-miniature--designer .product-thumbnail.sd-catalog-thumb {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 320px;
    padding: 0;
    background: #fff;
    overflow: hidden;
    border-radius: 28px;
}

.sd-product-miniature--designer .sd-catalog-thumb__media {
    display: block;
    width: 100%;
    height: 320px;
    min-height: 320px;
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transition: opacity .18s ease, transform .18s ease;
}

.sd-product-miniature--designer .sd-catalog-thumb.is-loading .sd-catalog-thumb__media {
    opacity: .45;
}

.sd-product-miniature--designer .highlighted-informations.no-variants {
    transform: translateY(1rem);
    opacity: 0;
    pointer-events: none;
}

.sd-product-miniature--designer .product-description {
    padding-top: 1rem;
}

.sd-product-miniature--designer .product-price-and-shipping {
    display: none !important;
}

@media (max-width: 767px) {

    .sd-product-miniature--designer .thumbnail-top,
    .sd-product-miniature--designer .product-thumbnail.sd-catalog-thumb,
    .sd-product-miniature--designer .sd-catalog-thumb__media {
        min-height: 240px;
        height: 240px;
    }

    .sd-product-miniature--designer .product-thumbnail.sd-catalog-thumb {
        border-radius: 24px;
    }
}