:root {
    --ee-navy: #123b5d;
    --ee-navy-dark: #0b2941;
    --ee-orange: #f28c28;
    --ee-orange-dark: #b85f0e;
    --ee-teal: #287b78;
    --ee-ink: #17242d;
    --ee-muted: #5f6c76;
    --ee-line: #d8e0e5;
    --ee-soft: #f3f6f7;
    --ee-warm: #fff3e7;
    --ee-white: #ffffff;
    --ee-radius: 6px;
    --ee-shell: 1180px;
    --ee-focus: #0d6efd;
    --ee-shadow: 0 12px 30px rgba(18, 59, 93, 0.08);
}

/* Accueil 0.9 */
.ee-front-page {
    overflow: hidden;
}

.ee-front-page .ee-entry__content > * {
    margin-top: 0;
    margin-bottom: 0;
}

.ee-front-page .ee-entry__content > :not(.alignfull) {
    width: min(var(--ee-shell), calc(100% - 40px));
    max-width: none;
    margin-right: auto;
    margin-left: auto;
}

.ee-home-hero {
    position: relative;
    isolation: isolate;
    display: grid;
    align-items: center;
    min-height: 590px;
    padding: 72px 0;
    overflow: hidden;
    color: var(--ee-white);
    background: var(--ee-navy-dark);
}

.ee-home-hero::after {
    position: absolute;
    inset: 0;
    z-index: -1;
    content: "";
    background: rgba(11, 41, 65, 0.74);
}

.ee-home-hero__media {
    position: absolute;
    inset: 0;
    z-index: -2;
    width: 100%;
    max-width: none !important;
    height: 100%;
    margin: 0 !important;
}

.ee-home-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 42%;
}

.ee-home-hero__inner {
    position: relative;
    width: min(var(--ee-shell), calc(100% - 40px));
    margin: 0 auto;
}

.ee-home-eyebrow {
    margin: 0 0 12px;
    color: var(--ee-orange-dark);
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
}

.ee-home-hero .ee-home-eyebrow,
.ee-home-custom .ee-home-eyebrow {
    color: #ffb45f;
}

.ee-home-hero h1 {
    max-width: 760px;
    margin: 0;
    color: var(--ee-white);
    font-size: 58px;
    line-height: 1.04;
}

.ee-home-hero__lead {
    max-width: 680px;
    margin: 24px 0 0;
    color: #f3f7f9;
    font-size: 23px;
    line-height: 1.45;
}

.ee-home-hero__buttons {
    margin-top: 30px;
}

.ee-home-hero .wp-block-button.is-style-outline .wp-block-button__link,
.ee-home-custom .wp-block-button.is-style-outline .wp-block-button__link {
    border-color: rgba(255, 255, 255, 0.78);
    color: var(--ee-white);
    background: transparent;
}

.ee-button-orange .wp-block-button__link {
    border-color: var(--ee-orange);
    color: var(--ee-navy-dark);
    background: #ffac4c;
}

.ee-home-hero__facts {
    margin-top: 42px;
    gap: 10px 22px;
}

.ee-home-hero__facts p {
    position: relative;
    margin: 0;
    padding-left: 19px;
    color: #f5f8fa;
    font-size: 14px;
    font-weight: 700;
}

.ee-home-hero__facts p::before {
    position: absolute;
    top: 0.62em;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    content: "";
    background: var(--ee-orange);
}

.ee-home-section {
    padding: 88px 0;
}

.ee-home-section h2,
.ee-home-custom h2,
.ee-home-final h2 {
    max-width: 800px;
    margin: 0;
    font-size: 42px;
    line-height: 1.12;
}

.ee-home-section__intro {
    max-width: 760px;
    margin: 18px 0 0;
    color: var(--ee-muted);
    font-size: 19px;
}

.ee-home-services {
    background: #f5f8fa;
}

.ee-front-page .wp-block-columns.ee-home-service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 40px;
    gap: 22px;
}

.ee-front-page .ee-home-service-grid > .wp-block-column,
.ee-front-page .ee-home-step-grid > .wp-block-column {
    flex-basis: auto;
    margin: 0;
}

.ee-home-service-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid #cfd9df;
    border-top: 5px solid var(--ee-orange);
    border-radius: var(--ee-radius);
    background: var(--ee-white);
    box-shadow: 0 10px 24px rgba(18, 59, 93, 0.06);
}

.ee-home-service-card:nth-child(3n + 2) {
    border-top-color: var(--ee-teal);
}

.ee-home-service-card:nth-child(3n) {
    border-top-color: var(--ee-navy);
}

.ee-home-service-card figure {
    aspect-ratio: 16 / 10;
    margin: 0;
    overflow: hidden;
    background: var(--ee-soft);
}

.ee-home-service-card figure img {
    width: 100%;
    height: 100%;
    transition: transform 220ms ease;
    object-fit: cover;
}

.ee-home-service-card:hover figure img {
    transform: scale(1.025);
}

.ee-home-service-card__body {
    padding: 22px;
}

.ee-home-service-card__tag {
    margin: 0 0 6px;
    color: var(--ee-orange-dark);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.ee-home-service-card h3 {
    margin: 0;
    color: var(--ee-navy);
    font-size: 23px;
    line-height: 1.2;
}

.ee-home-service-card h3 a {
    color: inherit;
    text-decoration: none;
}

.ee-home-service-card__body > p:last-child {
    margin: 12px 0 0;
    color: var(--ee-muted);
    font-size: 15px;
    line-height: 1.55;
}

.ee-home-custom {
    padding: 76px 0;
    color: var(--ee-white);
    background: var(--ee-navy);
}

.ee-home-custom h2 {
    color: var(--ee-white);
}

.ee-home-custom .wp-block-group > p:not(.ee-home-eyebrow) {
    max-width: 760px;
    color: #e7eef2;
    font-size: 19px;
}

.ee-front-page .wp-block-columns.ee-home-step-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 42px;
    gap: 28px;
}

.ee-home-step-grid .wp-block-column {
    position: relative;
    min-width: 0;
    padding-top: 58px;
    border-top: 2px solid var(--ee-line);
}

.ee-home-step-grid .ee-home-step-number {
    position: absolute;
    top: -24px;
    left: 0;
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border: 4px solid var(--ee-white);
    border-radius: 50%;
    color: var(--ee-white);
    background: var(--ee-navy);
    font-size: 20px;
    line-height: 1;
}

.ee-home-step-grid .wp-block-column:nth-child(even) .ee-home-step-number {
    background: var(--ee-teal);
}

.ee-home-step-grid h3 {
    margin: 0;
    color: var(--ee-navy);
    font-size: 20px;
}

.ee-home-step-grid p {
    margin: 9px 0 0;
    color: var(--ee-muted);
    font-size: 15px;
}

.ee-home-delivery {
    border-top: 1px solid #f0d9bf;
    border-bottom: 1px solid #f0d9bf;
    background: #fff7ed;
}

.ee-home-delivery .wp-block-columns {
    gap: 64px;
}

.ee-home-delivery__tool {
    padding: 28px;
    border: 1px solid #e5c59e;
    border-radius: var(--ee-radius);
    background: var(--ee-white);
    box-shadow: var(--ee-shadow);
}

.ee-home-checks {
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
}

.ee-home-checks li {
    position: relative;
    padding-left: 26px;
}

.ee-home-checks li + li {
    margin-top: 7px;
}

.ee-home-checks li::before {
    position: absolute;
    top: 0.15em;
    left: 0;
    color: var(--ee-teal);
    content: "✓";
    font-weight: 900;
}

.ee-home-reviews {
    text-align: center;
}

.ee-home-reviews h2,
.ee-home-reviews p {
    margin-right: auto;
    margin-left: auto;
}

.ee-home-reviews .wp-block-buttons {
    margin-top: 24px;
}

.ee-home-final {
    padding: 72px 0;
    color: var(--ee-white);
    text-align: center;
    background: var(--ee-navy-dark);
}

.ee-home-final h2 {
    margin-right: auto;
    margin-left: auto;
    color: var(--ee-white);
}

.ee-home-final p {
    max-width: 700px;
    margin: 18px auto 0;
    color: #dce7ed;
    font-size: 18px;
}

.ee-home-final .wp-block-buttons {
    margin-top: 28px;
}

@media (max-width: 980px) {
    .ee-front-page .wp-block-columns.ee-home-service-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ee-front-page .wp-block-columns.ee-home-step-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        row-gap: 58px;
    }
}

@media (max-width: 700px) {
    .ee-home-hero {
        min-height: 540px;
        padding: 58px 0;
    }

    .ee-home-hero::after {
        background: rgba(11, 41, 65, 0.78);
    }

    .ee-home-hero h1 {
        font-size: 40px;
    }

    .ee-home-hero__lead {
        font-size: 19px;
    }

    .ee-home-hero__facts {
        margin-top: 30px;
    }

    .ee-home-section,
    .ee-home-custom,
    .ee-home-final {
        padding: 64px 0;
    }

    .ee-home-section h2,
    .ee-home-custom h2,
    .ee-home-final h2 {
        font-size: 34px;
    }

    .ee-front-page .wp-block-columns.ee-home-service-grid,
    .ee-front-page .wp-block-columns.ee-home-step-grid {
        grid-template-columns: 1fr;
    }

    .ee-home-step-grid {
        row-gap: 52px;
    }

    .ee-home-delivery .wp-block-columns {
        gap: 34px;
    }
}

/* PartyFi: expose le fonctionnement et les formules sans alourdir le hero. */
.ee-partyfi-visual-note {
    position: absolute;
    z-index: 2;
    right: 22px;
    bottom: 22px;
    max-width: calc(100% - 44px);
    padding: 7px 10px;
    border-radius: 4px;
    color: #fff;
    background: rgba(8, 43, 68, 0.9);
    font-size: 12px;
    font-weight: 750;
    line-height: 1.25;
}

.ee-partyfi-highlights,
.ee-partyfi-formulas {
    width: 100%;
    margin-top: 52px;
    padding: 34px;
    border: 1px solid #cbdde2;
    border-radius: 6px;
}

.ee-partyfi-highlights {
    background: #edf6f5;
}

.ee-partyfi-highlights__intro {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
    column-gap: 54px;
    align-items: end;
}

.ee-partyfi-highlights__intro .ee-product-relation-eyebrow {
    grid-column: 1 / -1;
}

.ee-partyfi-highlights__intro h2,
.ee-partyfi-formulas__heading h2 {
    margin: 7px 0 0;
    color: var(--ee-navy);
    font-size: 32px;
    line-height: 1.16;
}

.ee-partyfi-highlights__intro > p:last-child,
.ee-partyfi-formulas__heading > p {
    margin: 0;
    color: var(--ee-muted);
    font-size: 17px;
    line-height: 1.55;
}

.ee-partyfi-highlights__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}

.ee-partyfi-highlights__grid li {
    display: grid;
    align-content: start;
    min-width: 0;
    padding: 19px 18px 20px;
    border: 1px solid #c7d9df;
    border-top: 4px solid var(--ee-teal);
    border-radius: 4px;
    background: #fff;
}

.ee-partyfi-highlights__grid li:nth-child(even) {
    border-top-color: var(--ee-orange);
}

.ee-partyfi-highlights__grid strong {
    color: var(--ee-navy);
    font-size: 17px;
    line-height: 1.25;
}

.ee-partyfi-highlights__grid span {
    margin-top: 8px;
    color: var(--ee-muted);
    font-size: 14px;
    line-height: 1.5;
}

.ee-partyfi-formulas {
    background: #fff8ef;
    border-color: #f0d4b4;
}

.ee-partyfi-formulas__heading {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
    gap: 54px;
    align-items: end;
}

.ee-partyfi-formulas__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin: 28px 0 24px;
}

.ee-partyfi-formulas__grid article {
    display: grid;
    align-content: start;
    min-width: 0;
    padding: 20px 18px;
    border: 1px solid #e8cba9;
    border-radius: 4px;
    background: #fff;
}

.ee-partyfi-formulas__grid h3 {
    margin: 0;
    color: var(--ee-navy);
    font-size: 17px;
    line-height: 1.25;
}

.ee-partyfi-formulas__grid strong {
    margin-top: 12px;
    color: #9a4700;
    font-size: 27px;
    line-height: 1;
}

.ee-partyfi-formulas__grid span {
    margin-top: 9px;
    color: var(--ee-muted);
    font-size: 13px;
    line-height: 1.45;
}

.ee-partyfi-formulas > .ee-button {
    width: fit-content;
}

@media (max-width: 900px) {
    .ee-partyfi-highlights__intro,
    .ee-partyfi-formulas__heading {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .ee-partyfi-highlights__grid,
    .ee-partyfi-formulas__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 620px) {
    .ee-partyfi-highlights,
    .ee-partyfi-formulas {
        margin-top: 34px;
        padding: 24px 18px;
    }

    .ee-partyfi-highlights__intro h2,
    .ee-partyfi-formulas__heading h2 {
        font-size: 27px;
    }

    .ee-partyfi-highlights__grid,
    .ee-partyfi-formulas__grid {
        grid-template-columns: 1fr;
    }

    .ee-partyfi-formulas > .ee-button {
        width: 100%;
    }
}

@media (min-width: 1101px) {
    .ee-site-header__inner {
        grid-template-columns: minmax(185px, 220px) minmax(0, 1fr);
        gap: 18px;
    }

    .ee-navigation-panel {
        gap: 12px;
    }

    .ee-menu-list a,
    .ee-primary-nav .menu a {
        padding-right: 8px;
        padding-left: 8px;
        font-size: 14px;
    }

    .ee-search-field {
        width: 135px;
    }
}

@media (max-width: 440px) {
    .ee-home-hero h1 {
        font-size: 34px;
    }

    .ee-home-service-card__body,
    .ee-home-delivery__tool {
        padding: 20px;
    }
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ee-ink);
    background: var(--ee-white);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 17px;
    line-height: 1.65;
}

body,
button,
input,
select,
textarea {
    letter-spacing: 0;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: var(--ee-navy);
    text-underline-offset: 0.18em;
}

a:hover {
    color: var(--ee-orange-dark);
}

button,
input,
select,
textarea {
    font: inherit;
}

button,
input[type="button"],
input[type="submit"] {
    cursor: pointer;
}

:focus-visible {
    outline: 3px solid var(--ee-focus);
    outline-offset: 3px;
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.ee-shell {
    width: min(var(--ee-shell), calc(100% - 40px));
    margin-inline: auto;
}

.ee-skip-link {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 1000;
    padding: 10px 14px;
    color: var(--ee-white);
    background: var(--ee-navy-dark);
    transform: translateY(-160%);
}

.ee-skip-link:focus {
    color: var(--ee-white);
    transform: translateY(0);
}

.ee-service-bar {
    color: var(--ee-white);
    background: var(--ee-navy-dark);
    font-size: 14px;
}

.ee-service-bar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 36px;
    gap: 20px;
}

.ee-service-bar p {
    margin: 0;
}

.ee-service-bar a {
    color: var(--ee-white);
    font-weight: 700;
}

.ee-site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--ee-line);
    background: rgba(255, 255, 255, 0.98);
}

.admin-bar .ee-site-header {
    top: 32px;
}

.ee-site-header__inner {
    display: grid;
    grid-template-columns: minmax(190px, 260px) minmax(0, 1fr);
    align-items: center;
    min-height: 82px;
    gap: 28px;
}

.ee-brand,
.ee-brand .custom-logo-link {
    display: inline-flex;
    align-items: center;
    min-width: 0;
}

.ee-brand .custom-logo {
    width: auto;
    max-width: 250px;
    max-height: 62px;
    object-fit: contain;
}

.ee-brand-text {
    color: var(--ee-navy);
    font-size: 25px;
    font-weight: 800;
    text-decoration: none;
}

.ee-brand-text span {
    color: var(--ee-orange-dark);
}

.ee-navigation-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 20px;
}

.ee-menu-list,
.ee-primary-nav .menu,
.ee-page-menu ul {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 2px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.ee-page-menu {
    margin: 0;
}

.ee-menu-list li,
.ee-primary-nav .menu li,
.ee-page-menu li {
    position: relative;
    margin: 0;
}

.ee-menu-list a,
.ee-primary-nav .menu a,
.ee-page-menu a {
    display: flex;
    align-items: center;
    min-height: 42px;
    padding: 8px 10px;
    color: var(--ee-ink);
    border-bottom: 3px solid transparent;
    font-size: 15px;
    font-weight: 650;
    line-height: 1.2;
    text-decoration: none;
}

.ee-menu-list a:hover,
.ee-menu-list .current-menu-item > a,
.ee-primary-nav .menu a:hover,
.ee-page-menu a:hover {
    color: var(--ee-navy);
    border-bottom-color: var(--ee-orange);
}

.ee-menu-list .sub-menu,
.ee-primary-nav .menu .children,
.ee-page-menu .children {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    z-index: 110;
    display: grid;
    width: 270px;
    margin: 0;
    padding: 8px;
    visibility: hidden;
    list-style: none;
    border: 1px solid var(--ee-line);
    border-radius: var(--ee-radius);
    background: var(--ee-white);
    box-shadow: var(--ee-shadow);
    opacity: 0;
    transform: translateY(-4px);
    transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.ee-menu-list li:hover > .sub-menu,
.ee-menu-list li:focus-within > .sub-menu,
.ee-primary-nav .menu li:hover > .children,
.ee-primary-nav .menu li:focus-within > .children,
.ee-page-menu li:hover > .children,
.ee-page-menu li:focus-within > .children {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.ee-menu-list .sub-menu a,
.ee-primary-nav .menu .children a,
.ee-page-menu .children a {
    min-height: 40px;
    border-bottom: 0;
    border-radius: 4px;
}

.ee-menu-list .sub-menu a:hover,
.ee-primary-nav .menu .children a:hover,
.ee-page-menu .children a:hover {
    background: var(--ee-soft);
}

.ee-header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ee-search-form {
    display: flex;
    align-items: stretch;
    min-width: 0;
}

.ee-search-form label {
    display: block;
}

.ee-search-field {
    width: 160px;
    min-height: 42px;
    padding: 8px 10px;
    border: 1px solid var(--ee-line);
    border-radius: var(--ee-radius) 0 0 var(--ee-radius);
    color: var(--ee-ink);
    background: var(--ee-white);
}

.ee-search-submit {
    min-height: 42px;
    padding: 8px 12px;
    border: 1px solid var(--ee-navy);
    border-radius: 0 var(--ee-radius) var(--ee-radius) 0;
    color: var(--ee-white);
    background: var(--ee-navy);
    font-size: 14px;
    font-weight: 700;
}

.ee-selection-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 8px 10px 8px 14px;
    gap: 9px;
    border: 1px solid var(--ee-orange-dark);
    border-radius: var(--ee-radius);
    color: var(--ee-navy-dark);
    background: var(--ee-warm);
    font-size: 14px;
    font-weight: 750;
    text-decoration: none;
}

.ee-selection-count {
    display: inline-grid;
    place-items: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    color: var(--ee-white);
    background: var(--ee-orange-dark);
    font-size: 13px;
}

.ee-menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
    padding: 8px 10px;
    gap: 9px;
    border: 1px solid var(--ee-line);
    border-radius: var(--ee-radius);
    color: var(--ee-navy);
    background: var(--ee-white);
    font-weight: 750;
}

.ee-menu-toggle__icon {
    display: grid;
    gap: 4px;
}

.ee-menu-toggle__icon i {
    display: block;
    width: 18px;
    height: 2px;
    background: currentColor;
}

.ee-site-main {
    min-height: 55vh;
}

.ee-page-shell {
    width: min(var(--ee-shell), calc(100% - 40px));
    margin-inline: auto;
    padding-block: 64px 80px;
}

.ee-entry__header,
.ee-entry__content > :not(.alignwide):not(.alignfull),
.ee-entry__featured {
    width: min(760px, 100%);
    margin-right: auto;
    margin-left: auto;
}

.ee-entry__header {
    margin-bottom: 32px;
}

.ee-entry__header h1,
.ee-listing-header h1,
.ee-empty-state h1 {
    margin: 0;
    color: var(--ee-navy);
    font-size: 44px;
    line-height: 1.12;
}

.ee-entry__meta {
    margin: 0 0 8px;
    color: var(--ee-muted);
    font-size: 14px;
}

.ee-entry__featured {
    margin-bottom: 32px;
}

.ee-entry__featured img {
    width: 100%;
    max-height: 620px;
    border-radius: var(--ee-radius);
    object-fit: cover;
}

.ee-entry__content h2,
.ee-entry__content h3 {
    color: var(--ee-navy);
    line-height: 1.2;
}

.ee-entry__content h2 {
    margin-top: 48px;
    font-size: 31px;
}

.ee-entry__content h3 {
    margin-top: 32px;
    font-size: 23px;
}

.ee-entry__content p,
.ee-entry__content ul,
.ee-entry__content ol {
    margin-top: 0;
    margin-bottom: 24px;
}

.ee-entry__content .alignwide {
    width: min(var(--ee-shell), 100%);
    margin-right: auto;
    margin-left: auto;
}

.ee-entry__content .alignfull {
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
}

.ee-button,
.wp-element-button,
.wp-block-button__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 11px 18px;
    border: 1px solid var(--ee-navy);
    border-radius: var(--ee-radius);
    color: var(--ee-white);
    background: var(--ee-navy);
    font-weight: 750;
    line-height: 1.2;
    text-decoration: none;
}

.ee-button:hover,
.wp-element-button:hover,
.wp-block-button__link:hover {
    color: var(--ee-white);
    background: var(--ee-navy-dark);
}

.ee-listing-header {
    margin-bottom: 36px;
}

.ee-listing-description {
    max-width: 760px;
    color: var(--ee-muted);
}

.ee-post-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.ee-post-card {
    padding: 22px;
    border: 1px solid var(--ee-line);
    border-radius: var(--ee-radius);
    background: var(--ee-white);
}

.ee-post-card h2 {
    margin: 0 0 12px;
    color: var(--ee-navy);
    font-size: 22px;
    line-height: 1.25;
}

.ee-post-card h2 a {
    text-decoration: none;
}

.ee-product-shell {
    width: min(var(--ee-shell), calc(100% - 40px));
    margin-inline: auto;
}

.ee-product-page {
    padding-block: 30px 80px;
    background: var(--ee-white);
    overflow-x: clip;
}

.ee-catalogue-page {
    padding-block: 30px 80px;
    background: var(--ee-white);
}

.ee-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
    color: var(--ee-muted);
    font-size: 14px;
}

.ee-breadcrumb a {
    font-weight: 700;
    text-decoration: none;
}

.ee-product-hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
    align-items: center;
    gap: 58px;
    padding-block: 38px 68px;
    isolation: isolate;
}

.ee-product-hero::before {
    position: absolute;
    z-index: 0;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 100vw;
    border-block: 1px solid #d5e2e8;
    background: #f3f8fa;
    box-shadow: inset 0 6px 0 var(--ee-orange);
    content: "";
    transform: translateX(-50%);
}

.ee-product-hero > * {
    position: relative;
    z-index: 1;
}

.ee-product-hero__media {
    display: grid;
    width: 100%;
    aspect-ratio: 4 / 3;
    margin: 0;
    overflow: hidden;
    place-items: center;
    border: 1px solid var(--ee-line);
    border-radius: var(--ee-radius);
    background: var(--ee-soft);
    box-shadow: 10px 10px 0 #f5b05f;
}

.ee-product-hero__image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.ee-product-hero__placeholder,
.ee-product-card__placeholder {
    color: var(--ee-muted);
    font-size: 14px;
    font-weight: 700;
}

.ee-product-families,
.ee-feature-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.ee-family-link {
    display: inline-flex;
    min-height: 30px;
    align-items: center;
    padding: 4px 9px;
    border: 1px solid #a9cfcd;
    border-radius: 4px;
    color: #185d59;
    background: #eef8f7;
    font-size: 14px;
    font-weight: 750;
    text-decoration: none;
}

.ee-family-link + .ee-family-link::before {
    content: none;
}

.ee-product-hero h1 {
    margin: 12px 0 18px;
    padding-left: 16px;
    border-left: 6px solid var(--ee-orange);
    color: var(--ee-navy);
    font-size: 48px;
    line-height: 1.08;
}

.ee-product-lead {
    margin: 0 0 24px;
    color: var(--ee-ink);
    font-size: 19px;
    line-height: 1.55;
}

.ee-product-price-row,
.ee-product-card__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.ee-product-price-row {
    margin-bottom: 28px;
}

.ee-value-chip {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 7px 12px;
    border: 2px solid #cbd8df;
    border-radius: 4px;
    color: var(--ee-navy);
    background: var(--ee-white);
    font-size: 14px;
    font-weight: 750;
    line-height: 1;
}

.ee-value-chip--price {
    color: var(--ee-navy-dark);
    border-color: var(--ee-orange);
    background: var(--ee-orange);
    font-size: 17px;
}

.ee-value-chip--type {
    color: #175f5b;
    border-color: #a9cfcd;
    background: #eef8f7;
}

.ee-product-deposit-note,
.ee-product-card__deposit {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    align-items: baseline;
    margin: -15px 0 20px;
    color: #5a6f7a;
    font-size: 13px;
    line-height: 1.45;
}

.ee-product-deposit-note {
    margin-top: -16px;
    padding: 10px 12px;
    border-left: 4px solid #a9cfcd;
    background: #f4fbfa;
}

.ee-product-deposit-note strong,
.ee-product-card__deposit {
    color: var(--ee-navy);
    font-weight: 850;
}

.ee-product-card__deposit span,
.ee-product-practical dd span {
    color: #6d7f8a;
    font-weight: 650;
}

.ee-product-quick-facts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 0 0 28px;
}

.ee-product-quick-facts div {
    padding: 12px 14px;
    border: 1px solid #cfdde4;
    border-top: 4px solid var(--ee-teal);
    border-radius: 4px;
    background: var(--ee-white);
}

.ee-product-quick-facts div:nth-child(even) {
    border-top-color: var(--ee-orange);
}

.ee-product-quick-facts dt,
.ee-product-practical dt {
    color: var(--ee-muted);
    font-size: 13px;
    font-weight: 700;
}

.ee-product-quick-facts dd,
.ee-product-practical dd {
    margin: 2px 0 0;
    color: var(--ee-ink);
    font-weight: 700;
}

.ee-product-decision {
    margin: 0 0 26px;
    padding: 18px;
    border: 1px solid #cbdde4;
    border-left: 5px solid var(--ee-teal);
    border-radius: 4px;
    background: linear-gradient(135deg, #ffffff 0%, #f5fbfa 100%);
    box-shadow: 0 10px 24px rgba(18, 59, 93, 0.08);
}

.ee-product-decision h2 {
    margin: 0 0 12px;
    color: var(--ee-navy);
    font-size: 20px;
    line-height: 1.2;
}

.ee-product-decision__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 0;
}

.ee-product-decision__fact {
    min-width: 0;
    padding: 10px 11px;
    border: 1px solid #d7e5ea;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.82);
}

.ee-product-decision__fact:nth-child(3n + 2) {
    border-color: #f0bc83;
    background: #fff8f1;
}

.ee-product-decision__fact dt {
    margin: 0 0 3px;
    color: var(--ee-muted);
    font-size: 12px;
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
}

.ee-product-decision__fact dd {
    margin: 0;
    color: var(--ee-ink);
    font-size: 14px;
    font-weight: 760;
    line-height: 1.35;
}

.ee-product-quote-button {
    width: 100%;
    color: var(--ee-navy-dark);
    border-color: var(--ee-orange);
    background: var(--ee-orange);
}

.ee-product-quote-button:hover {
    color: var(--ee-white);
    border-color: var(--ee-navy);
    background: var(--ee-navy);
}

.ee-product-availability {
    margin: 10px 0 0;
    color: var(--ee-muted);
    font-size: 13px;
    text-align: center;
}

.ee-product-content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    align-items: start;
    gap: 72px;
    padding-block: 58px;
}

.ee-product-main-copy {
    max-width: 730px;
}

.ee-product-section + .ee-product-section {
    margin-top: 44px;
    padding-top: 40px;
    border-top: 1px solid var(--ee-line);
}

.ee-product-section h2,
.ee-product-practical h2,
.ee-product-features h2 {
    margin: 0 0 18px;
    color: var(--ee-navy);
    font-size: 28px;
    line-height: 1.2;
}

.ee-product-section h2::after,
.ee-product-features h2::after {
    display: block;
    width: 46px;
    height: 4px;
    margin-top: 9px;
    background: var(--ee-orange);
    content: "";
}

.ee-product-section p:last-child,
.ee-product-condition p:last-child {
    margin-bottom: 0;
}

.ee-product-main-copy .ee-entry__content > * {
    width: auto;
    margin-right: 0;
    margin-left: 0;
}

.ee-product-practical {
    padding: 24px;
    border: 1px solid #f0c99d;
    border-top: 5px solid var(--ee-orange);
    border-radius: var(--ee-radius);
    background: #fff8f1;
    box-shadow: 0 12px 28px rgba(18, 59, 93, 0.08);
}

.ee-product-practical dl {
    margin: 0;
}

.ee-product-practical dl div {
    padding-block: 13px;
    border-top: 1px solid var(--ee-line);
}

.ee-product-condition {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--ee-line);
}

.ee-product-condition h3 {
    margin: 0 0 8px;
    color: var(--ee-navy);
    font-size: 18px;
}

.ee-product-condition p {
    color: var(--ee-muted);
    font-size: 14px;
}

.ee-product-features {
    padding: 34px 0 10px;
    border-top: 1px solid var(--ee-line);
}

.ee-product-relations {
    padding-block: 54px;
    border-top: 1px solid var(--ee-line);
}

.ee-product-relation-section + .ee-product-relation-section {
    margin-top: 62px;
    padding-top: 54px;
    border-top: 4px solid var(--ee-navy);
}

.ee-product-relation-eyebrow {
    margin: 0 0 5px;
    color: var(--ee-orange-dark);
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
}

.ee-product-relation-section h2 {
    margin: 0 0 8px;
    color: var(--ee-navy);
    font-size: 30px;
    line-height: 1.2;
}

.ee-product-relation-section > p:not(.ee-product-relation-eyebrow) {
    max-width: 720px;
    margin: 0;
    color: var(--ee-muted);
}

.ee-product-grid--related {
    margin-top: 26px;
}

.ee-product-grid--related .ee-product-card__body {
    min-height: 250px;
}

.ee-feature-chip {
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    padding: 6px 10px;
    border: 1px solid #a9cfcd;
    border-radius: 4px;
    color: #185d59;
    background: #eef8f7;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.ee-feature-chip:nth-child(3n + 2) {
    color: var(--ee-orange-dark);
    border-color: #f0bc83;
    background: var(--ee-warm);
}

.ee-feature-chip:nth-child(3n) {
    color: var(--ee-navy);
    border-color: #b9cad8;
    background: #eef3f7;
}

.ee-catalogue-header {
    max-width: 780px;
    margin-bottom: 34px;
}

.ee-catalogue-header__eyebrow {
    margin: 0 0 6px;
    color: var(--ee-orange-dark);
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
}

.ee-catalogue-header h1 {
    margin: 0 0 12px;
    color: var(--ee-navy);
    font-size: 42px;
    line-height: 1.12;
}

.ee-catalogue-header > p:last-child,
.ee-catalogue-header__description {
    color: var(--ee-muted);
    font-size: 18px;
}

.ee-catalogue-filters {
    display: grid;
    grid-template-columns: minmax(220px, 1.5fr) repeat(3, minmax(150px, 1fr)) auto;
    align-items: end;
    gap: 14px;
    margin-bottom: 20px;
    padding: 20px;
    border-block: 1px solid #cfdde4;
    background: #f3f8fa;
}

.ee-catalogue-filter label {
    display: block;
    margin-bottom: 5px;
    color: var(--ee-navy);
    font-size: 13px;
    font-weight: 750;
}

.ee-catalogue-filter input,
.ee-catalogue-filter select {
    width: 100%;
    min-height: 46px;
    padding: 8px 10px;
    border: 1px solid #b9cad4;
    border-radius: 4px;
    color: var(--ee-ink);
    background: var(--ee-white);
}

.ee-catalogue-filter-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ee-catalogue-filter-actions .ee-button {
    min-width: 100px;
}

.ee-catalogue-filter-actions a:not(.ee-button) {
    color: var(--ee-muted);
    font-size: 13px;
    font-weight: 700;
}

.ee-catalogue-results {
    margin: 0 0 18px;
    color: var(--ee-muted);
    font-size: 14px;
    font-weight: 700;
}

.ee-catalogue-empty {
    max-width: 720px;
    padding-block: 42px;
    border-top: 4px solid var(--ee-orange);
}

.ee-catalogue-empty h2 {
    margin: 0 0 10px;
    color: var(--ee-navy);
    font-size: 30px;
}

.ee-animations-page {
    background: var(--ee-white);
}

.ee-animations-intro {
    position: relative;
    display: grid;
    min-height: 520px;
    align-items: center;
    color: var(--ee-white);
    background-color: var(--ee-navy-dark);
    background-position: center;
    background-size: cover;
    isolation: isolate;
}

.ee-animations-intro::before {
    position: absolute;
    z-index: -1;
    inset: 0;
    background: rgba(11, 41, 65, 0.76);
    content: "";
}

.ee-animations-intro .ee-product-shell {
    padding-block: 78px 86px;
}

.ee-animations-eyebrow,
.ee-section-heading > p {
    margin: 0 0 7px;
    color: var(--ee-orange);
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
}

.ee-animations-intro h1 {
    max-width: 820px;
    margin: 0 0 22px;
    color: var(--ee-white);
    font-size: 52px;
    line-height: 1.08;
}

.ee-animations-intro .ee-product-shell > p:not(.ee-animations-eyebrow) {
    max-width: 760px;
    margin: 0;
    color: rgba(255, 255, 255, 0.92);
    font-size: 20px;
}

.ee-animations-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
}

.ee-animations-intro .ee-button {
    color: var(--ee-navy-dark);
    border-color: var(--ee-orange);
    background: var(--ee-orange);
}

.ee-animations-intro .ee-button--secondary {
    color: var(--ee-white);
    border-color: rgba(255, 255, 255, 0.7);
    background: transparent;
}

.ee-animations-intro .ee-button:hover {
    color: var(--ee-white);
    border-color: var(--ee-white);
    background: var(--ee-navy);
}

.ee-animations-profiles,
.ee-animations-method {
    padding-block: 72px;
}

.ee-section-heading {
    max-width: 760px;
    margin-bottom: 30px;
}

.ee-section-heading h2 {
    margin: 0;
    color: var(--ee-navy);
    font-size: 38px;
    line-height: 1.15;
}

.ee-profile-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.ee-profile-card {
    display: flex;
    min-height: 310px;
    flex-direction: column;
    padding: 26px;
    border: 1px solid var(--ee-line);
    border-top: 5px solid var(--ee-orange);
    border-radius: var(--ee-radius);
    background: var(--ee-white);
}

.ee-profile-card:nth-child(even) {
    border-top-color: var(--ee-teal);
}

.ee-profile-card:last-child:nth-child(odd) {
    min-height: 250px;
    grid-column: 1 / -1;
}

.ee-profile-card h3 {
    margin: 0 0 12px;
    color: var(--ee-navy);
    font-size: 25px;
    line-height: 1.2;
}

.ee-profile-card > p {
    margin: 0 0 22px;
    color: var(--ee-muted);
}

.ee-profile-card dl {
    margin: 0 0 24px;
    padding-top: 16px;
    border-top: 1px solid var(--ee-line);
}

.ee-profile-card dt {
    color: var(--ee-muted);
    font-size: 13px;
    font-weight: 750;
}

.ee-profile-card dd {
    margin: 3px 0 0;
    font-weight: 650;
}

.ee-profile-card > a {
    margin-top: auto;
    color: var(--ee-navy);
    font-weight: 800;
    text-decoration: none;
}

.ee-animations-method {
    border-block: 1px solid #d5e2e8;
    background: #f3f8fa;
}

.ee-method-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: ee-method;
}

.ee-method-steps li {
    position: relative;
    padding: 56px 0 0 18px;
    border-left: 4px solid var(--ee-teal);
    counter-increment: ee-method;
}

.ee-method-steps li::before {
    position: absolute;
    top: 0;
    left: 18px;
    color: var(--ee-orange-dark);
    content: "0" counter(ee-method);
    font-size: 34px;
    font-weight: 850;
}

.ee-method-steps strong,
.ee-method-steps span {
    display: block;
}

.ee-method-steps strong {
    margin-bottom: 7px;
    color: var(--ee-navy);
    font-size: 19px;
}

.ee-method-steps span {
    color: var(--ee-muted);
}

.ee-animations-closing {
    color: var(--ee-white);
    background: var(--ee-navy);
}

.ee-animations-closing .ee-product-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 48px;
    padding-block: 52px;
}

.ee-animations-closing h2 {
    margin: 0 0 8px;
    color: var(--ee-white);
    font-size: 31px;
}

.ee-animations-closing p:not(.ee-animations-eyebrow) {
    max-width: 760px;
    margin: 0;
    color: rgba(255, 255, 255, 0.84);
}

.ee-animations-closing .ee-button {
    color: var(--ee-navy-dark);
    border-color: var(--ee-orange);
    background: var(--ee-orange);
}

.ee-animations-editorial {
    padding-block: 64px;
    border-bottom: 1px solid var(--ee-line);
    background: var(--ee-white);
}

.ee-animations-editorial .ee-entry__content {
    max-width: 920px;
    margin-inline: auto;
}

.ee-profile-card {
    min-height: 0;
    overflow: hidden;
    padding: 0;
}

.ee-profile-card__media {
    display: grid;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    place-items: center;
    border-bottom: 1px solid var(--ee-line);
    color: var(--ee-white);
    background: var(--ee-navy);
    text-decoration: none;
}

.ee-profile-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 180ms ease;
}

.ee-profile-card:hover .ee-profile-card__media img {
    transform: scale(1.025);
}

.ee-profile-card__media span {
    color: var(--ee-orange);
    font-size: 18px;
    font-weight: 850;
}

.ee-profile-card__body {
    display: flex;
    min-height: 270px;
    flex: 1;
    flex-direction: column;
    padding: 26px;
}

.ee-profile-card__body h3 a {
    color: inherit;
    text-decoration: none;
}

.ee-profile-card__body > p:not(.ee-profile-card__status) {
    margin: 0 0 24px;
    color: var(--ee-muted);
}

.ee-profile-card__status {
    align-self: flex-start;
    margin: 0 0 9px;
    padding: 3px 8px;
    border: 1px solid #d7a464;
    border-radius: 4px;
    color: #6d3c05;
    background: #fff3df;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.ee-profile-card__link {
    margin-top: auto;
    color: var(--ee-navy);
    font-weight: 800;
    text-decoration: none;
}

.ee-animations-admin-note {
    padding: 22px;
    border: 1px dashed var(--ee-line-strong);
    background: var(--ee-soft);
}

.ee-animation-guide__hero {
    position: relative;
    display: grid;
    min-height: 440px;
    align-items: end;
    isolation: isolate;
    color: var(--ee-white);
    background-color: var(--ee-navy-dark);
    background-position: center;
    background-size: cover;
}

.ee-animation-guide__hero::before {
    position: absolute;
    z-index: -1;
    inset: 0;
    background: rgba(11, 41, 65, 0.78);
    content: "";
}

.ee-animation-guide__hero .ee-product-shell {
    padding-block: 54px 64px;
}

.ee-animation-guide__back {
    display: inline-flex;
    gap: 7px;
    margin-bottom: 30px;
    color: var(--ee-orange);
    font-weight: 800;
    text-decoration: none;
}

.ee-animation-guide__hero h1 {
    max-width: 880px;
    margin: 0;
    color: var(--ee-white);
    font-size: 52px;
    line-height: 1.08;
}

.ee-animation-guide__hero p {
    max-width: 760px;
    margin: 20px 0 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 20px;
}

.ee-animation-guide__content {
    width: min(920px, calc(100% - 40px));
    min-height: 220px;
    margin-inline: auto;
    padding-block: 72px;
}

.ee-animation-guide__footer {
    border-top: 1px solid var(--ee-line);
    background: #f3f8fa;
}

.ee-animation-guide__footer .ee-product-shell {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding-block: 34px;
}

.ee-product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.ee-product-card {
    display: grid;
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--ee-line);
    border-radius: var(--ee-radius);
    background: var(--ee-white);
    box-shadow: 0 8px 24px rgba(18, 59, 93, 0.06);
}

.ee-product-card__media {
    display: grid;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    place-items: center;
    border-bottom: 1px solid var(--ee-line);
    background: var(--ee-soft);
}

.ee-product-card__image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 180ms ease;
}

.ee-product-card:hover .ee-product-card__image {
    transform: scale(1.025);
}

.ee-product-card__body {
    display: flex;
    min-height: 290px;
    flex-direction: column;
    padding: 20px;
}

.ee-product-card__chips {
    margin-bottom: 15px;
}

.ee-product-card h2 {
    margin: 0 0 10px;
    color: var(--ee-navy);
    font-size: 22px;
    line-height: 1.2;
}

.ee-product-card h2 a {
    text-decoration: none;
}

.ee-product-card__excerpt {
    color: var(--ee-muted);
    font-size: 15px;
}

.ee-product-card__excerpt p {
    margin: 0 0 18px;
}

.ee-product-card__link {
    margin-top: auto;
    color: var(--ee-navy);
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
}

.ee-empty-state {
    max-width: 760px;
    margin-inline: auto;
    padding-block: 32px;
}

.ee-empty-state__code {
    margin: 0 0 8px;
    color: var(--ee-orange-dark);
    font-size: 18px;
    font-weight: 800;
}

.navigation.pagination {
    margin-top: 36px;
}

.nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.page-numbers {
    display: inline-grid;
    place-items: center;
    min-width: 42px;
    min-height: 42px;
    padding: 6px 10px;
    border: 1px solid var(--ee-line);
    border-radius: var(--ee-radius);
    text-decoration: none;
}

.page-numbers.current {
    color: var(--ee-white);
    border-color: var(--ee-navy);
    background: var(--ee-navy);
}

.ee-site-footer {
    color: rgba(255, 255, 255, 0.82);
    background: var(--ee-navy-dark);
}

.ee-site-footer__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 52px;
    padding-block: 48px 36px;
}

.ee-site-footer strong {
    display: block;
    margin-bottom: 12px;
    color: var(--ee-white);
    font-size: 18px;
}

.ee-site-footer__brand p {
    max-width: 430px;
    margin: 0 0 20px;
}

.ee-footer-cta {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    padding: 9px 14px;
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: var(--ee-radius);
    color: var(--ee-white);
    font-weight: 700;
    text-decoration: none;
}

.ee-footer-menu,
.ee-legal-menu {
    margin: 0;
    padding: 0;
    list-style: none;
}

.ee-footer-menu li + li {
    margin-top: 7px;
}

.ee-site-footer a {
    color: var(--ee-white);
}

.ee-site-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 62px;
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    font-size: 14px;
}

.ee-legal-menu {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

@media (max-width: 1120px) {
    .ee-site-header__inner {
        grid-template-columns: minmax(170px, 220px) minmax(0, 1fr);
        gap: 16px;
    }

    .ee-navigation-panel {
        gap: 12px;
    }

    .ee-menu-list a,
    .ee-primary-nav .menu a,
    .ee-page-menu a {
        padding-right: 7px;
        padding-left: 7px;
        font-size: 14px;
    }

    .ee-search-field {
        width: 130px;
    }

    .ee-catalogue-filters {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ee-catalogue-filter-actions {
        grid-column: 1 / -1;
    }

    .ee-selection-link > span:first-child {
        display: none;
    }

    .ee-selection-link {
        padding-left: 9px;
    }
}

@media (max-width: 980px) {
    .admin-bar .ee-site-header {
        top: 46px;
    }

    .ee-service-bar {
        display: none;
    }

    .ee-site-header__inner {
        grid-template-columns: minmax(0, 1fr) auto;
        min-height: 72px;
    }

    .ee-brand .custom-logo {
        max-width: min(250px, 60vw);
        max-height: 54px;
    }

    .ee-menu-toggle {
        display: inline-flex;
    }

    .ee-navigation-panel {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        display: none;
        max-height: calc(100vh - 72px);
        padding: 16px 20px 22px;
        overflow-y: auto;
        border-top: 1px solid var(--ee-line);
        border-bottom: 1px solid var(--ee-line);
        background: var(--ee-white);
        box-shadow: var(--ee-shadow);
    }

    .ee-navigation-panel.is-open {
        display: grid;
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .ee-menu-list,
    .ee-primary-nav .menu,
    .ee-page-menu ul {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0;
    }

    .ee-menu-list a,
    .ee-primary-nav .menu a,
    .ee-page-menu a {
        min-height: 46px;
        padding: 10px 4px;
        border-bottom: 1px solid var(--ee-line);
        font-size: 16px;
    }

    .ee-menu-list .sub-menu,
    .ee-primary-nav .menu .children,
    .ee-page-menu .children {
        position: static;
        display: grid;
        width: auto;
        padding: 0 0 0 18px;
        visibility: visible;
        border: 0;
        box-shadow: none;
        opacity: 1;
        transform: none;
    }

    .ee-header-actions {
        align-items: stretch;
    }

    .ee-search-form {
        flex: 1;
    }

    .ee-search-form label,
    .ee-search-field {
        width: 100%;
    }

    .ee-selection-link > span:first-child {
        display: inline;
    }

    .ee-post-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ee-product-hero {
        grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
        gap: 34px;
    }

    .ee-product-content-grid {
        grid-template-columns: minmax(0, 1fr) 290px;
        gap: 38px;
    }

    .ee-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ee-site-footer__grid {
        grid-template-columns: 1.3fr 1fr 1fr;
        gap: 28px;
    }
}

@media (max-width: 700px) {
    .ee-shell,
    .ee-page-shell {
        width: min(100% - 28px, var(--ee-shell));
    }

    .ee-page-shell {
        padding-block: 44px 60px;
    }

    .ee-product-shell {
        width: min(100% - 28px, var(--ee-shell));
    }

    .ee-product-page,
    .ee-catalogue-page {
        padding-block: 20px 60px;
    }

    .ee-product-hero,
    .ee-product-content-grid {
        grid-template-columns: 1fr;
    }

    .ee-product-hero {
        gap: 28px;
        padding-block: 30px 48px;
    }

    .ee-product-hero__media {
        box-shadow: 6px 6px 0 #f5b05f;
    }

    .ee-product-hero h1,
    .ee-catalogue-header h1 {
        font-size: 34px;
    }

    .ee-product-decision {
        padding: 16px;
    }

    .ee-product-decision__grid {
        grid-template-columns: 1fr;
    }

    .ee-product-content-grid {
        gap: 42px;
        padding-block: 42px;
    }

    .ee-product-relations {
        padding-block: 42px;
    }

    .ee-product-relation-section + .ee-product-relation-section {
        margin-top: 44px;
        padding-top: 40px;
    }

    .ee-product-relation-section h2 {
        font-size: 26px;
    }

    .ee-product-practical {
        padding: 20px;
    }

    .ee-product-grid {
        grid-template-columns: 1fr;
    }

    .ee-catalogue-filters,
    .ee-profile-grid,
    .ee-method-steps,
    .ee-animations-closing .ee-product-shell {
        grid-template-columns: 1fr;
    }

    .ee-catalogue-filters {
        padding: 16px;
    }

    .ee-catalogue-filter-actions {
        align-items: flex-start;
        flex-direction: column;
    }

    .ee-catalogue-filter-actions .ee-button {
        width: 100%;
    }

    .ee-animations-intro {
        min-height: 540px;
    }

    .ee-animations-intro .ee-product-shell {
        padding-block: 58px 64px;
    }

    .ee-animations-intro h1 {
        font-size: 38px;
    }

    .ee-animations-intro .ee-product-shell > p:not(.ee-animations-eyebrow) {
        font-size: 18px;
    }

    .ee-animations-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .ee-animations-actions .ee-button {
        width: 100%;
    }

    .ee-animations-profiles,
    .ee-animations-method {
        padding-block: 52px;
    }

    .ee-section-heading h2 {
        font-size: 31px;
    }

    .ee-profile-card {
        min-height: 0;
        padding: 0;
    }

    .ee-profile-card__body {
        min-height: 0;
        padding: 22px;
    }

    .ee-animation-guide__hero {
        min-height: 360px;
    }

    .ee-animation-guide__hero .ee-product-shell {
        padding-block: 40px 46px;
    }

    .ee-animation-guide__hero h1 {
        font-size: 38px;
    }

    .ee-animation-guide__content {
        width: min(100% - 30px, 920px);
        padding-block: 48px;
    }

    .ee-method-steps {
        gap: 34px;
    }

    .ee-animations-closing .ee-product-shell {
        gap: 24px;
    }

    .ee-product-card__body {
        min-height: 0;
    }

    .ee-entry__header h1,
    .ee-listing-header h1,
    .ee-empty-state h1 {
        font-size: 34px;
    }

    .ee-entry__content h2 {
        margin-top: 40px;
        font-size: 27px;
    }

    .ee-entry__content h3 {
        font-size: 21px;
    }

    .ee-post-list,
    .ee-site-footer__grid {
        grid-template-columns: 1fr;
    }

    .ee-site-footer__grid {
        gap: 28px;
        padding-block: 38px 30px;
    }

    .ee-site-footer__bottom {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        padding-block: 16px;
    }
}

@media (max-width: 480px) {
    .ee-menu-toggle__label {
        display: none;
    }

    .ee-header-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .ee-selection-link {
        justify-content: space-between;
    }
}

/* Date et disponibilité */
.ee-selection-date {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 250px;
    align-items: end;
    margin-bottom: 24px;
    padding: 22px;
    gap: 18px 28px;
    border: 1px solid #b7cdd5;
    border-left: 7px solid var(--ee-teal);
    border-radius: var(--ee-radius);
    background: #f3f8fa;
}

.ee-selection-date__step {
    margin: 0 0 5px;
    color: #246b65;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.ee-selection-date h2 {
    margin: 0 0 7px;
    color: var(--ee-navy);
    font-size: 25px;
}

.ee-selection-date > div > p:last-child {
    margin: 0;
    color: var(--ee-muted);
}

.ee-selection-date label {
    display: grid;
    gap: 7px;
    color: var(--ee-navy);
    font-weight: 800;
}

.ee-selection-date input {
    width: 100%;
    min-height: 48px;
    padding: 8px 11px;
    border: 2px solid #7fa6b4;
    border-radius: var(--ee-radius);
    color: var(--ee-navy-dark);
    background: var(--ee-white);
    font: inherit;
    font-weight: 700;
}

.ee-selection-date__period {
    grid-column: 1 / -1;
    margin: 0;
    padding: 10px 12px;
    border-left: 4px solid #7fa6b4;
    color: var(--ee-muted);
    background: var(--ee-white);
    font-size: 14px;
    font-weight: 700;
}

.ee-selection-date__period--clear {
    border-left-color: var(--ee-teal);
    color: #185d59;
}

.ee-selection-date__period--attention {
    border-left-color: var(--ee-orange);
    color: #75430c;
    background: #fff8ec;
}

.ee-selection-date__period--conflict,
.ee-selection-date__period--invalid {
    border-left-color: #ad4529;
    color: #7f2e1b;
    background: #fdf0eb;
}

.ee-selection-row__availability {
    margin: 10px 0 0;
    padding: 8px 10px;
    border-left: 4px solid var(--ee-teal);
    color: #185d59;
    background: #eef8f7;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.4;
}

.ee-selection-row__availability--attention {
    border-left-color: var(--ee-orange);
    color: #75430c;
    background: #fff8ec;
}

.ee-selection-row__availability--conflict {
    border-left-color: #ad4529;
    color: #7f2e1b;
    background: #fdf0eb;
}

.ee-quantity-stepper button:disabled {
    color: #8a9aa3;
    background: #edf1f3;
    cursor: not-allowed;
}

.ee-selection-continue.is-disabled {
    color: #60717b;
    border-color: #b5c1c7;
    background: #dfe5e8;
    cursor: not-allowed;
}

@media (max-width: 700px) {
    .ee-selection-date {
        grid-template-columns: 1fr;
        align-items: start;
        padding: 18px;
    }

    .ee-selection-date__period {
        grid-column: auto;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}

/* Selection client */
.ee-selection-page [hidden] {
    display: none !important;
}

.ee-product-card__footer {
    display: grid;
    margin-top: auto;
    gap: 14px;
}

.ee-product-picker {
    position: relative;
    display: flex;
    min-width: 0;
    align-items: stretch;
    gap: 9px;
}

.ee-product-picker--card {
    flex-direction: column;
}

.ee-product-picker--detail {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
}

.ee-product-picker--detail .ee-selection-add:only-child {
    grid-column: 1 / -1;
}

.ee-quantity-stepper {
    display: grid;
    width: 126px;
    min-width: 126px;
    height: 46px;
    grid-template-columns: 38px 50px 38px;
    overflow: hidden;
    border: 1px solid #9eb4c0;
    border-radius: var(--ee-radius);
    background: var(--ee-white);
}

.ee-quantity-stepper button,
.ee-quantity-stepper input {
    width: 100%;
    min-width: 0;
    height: 44px;
    padding: 0;
    border: 0;
    border-radius: 0;
    color: var(--ee-navy);
    background: transparent;
    font: inherit;
    font-weight: 800;
    text-align: center;
}

.ee-quantity-stepper button {
    cursor: pointer;
    font-size: 20px;
}

.ee-quantity-stepper button:hover {
    color: var(--ee-white);
    background: var(--ee-navy);
}

.ee-quantity-stepper input {
    border-right: 1px solid #cad7de;
    border-left: 1px solid #cad7de;
    appearance: textfield;
}

.ee-quantity-stepper input::-webkit-inner-spin-button,
.ee-quantity-stepper input::-webkit-outer-spin-button {
    margin: 0;
    appearance: none;
}

.ee-selection-add {
    flex: 1;
    min-width: 0;
    color: var(--ee-navy-dark);
    border-color: var(--ee-orange);
    background: var(--ee-orange);
}

.ee-selection-add:hover {
    color: var(--ee-white);
    border-color: var(--ee-navy);
    background: var(--ee-navy);
}

.ee-product-picker__feedback {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

.ee-product-picker__feedback.is-warning {
    color: #8b3f12;
}

.ee-product-variant-label {
    grid-column: 1 / -1;
    color: var(--ee-navy-dark);
    font-size: 13px;
    font-weight: 700;
}

.ee-product-variant-select {
    grid-column: 1 / -1;
    width: 100%;
    min-width: 0;
    min-height: 42px;
    padding: 8px 34px 8px 10px;
    color: var(--ee-navy-dark);
    border: 1px solid #adc1cc;
    border-radius: 4px;
    background: #fff;
    font: inherit;
}

.ee-product-variant-select:focus-visible {
    border-color: var(--ee-teal);
    outline: 3px solid rgba(27, 127, 123, .18);
    outline-offset: 1px;
}

.ee-product-picker--card.ee-product-picker--has-variants {
    display: grid;
    grid-template-columns: 1fr;
}

.ee-product-picker--card.ee-product-picker--has-variants .ee-selection-add {
    width: 100%;
}

.ee-selection-page {
    padding-block: 30px 84px;
    background: var(--ee-white);
}

.ee-selection-header {
    max-width: 790px;
    margin-bottom: 34px;
}

.ee-selection-header__eyebrow,
.ee-selection-suggestions__heading > p {
    margin: 0 0 8px;
    color: #246b65;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
}

.ee-selection-header h1 {
    margin: 0 0 14px;
    padding-left: 16px;
    border-left: 6px solid var(--ee-orange);
    color: var(--ee-navy);
    font-size: 48px;
    line-height: 1.08;
}

.ee-selection-header > p:last-child {
    margin: 0;
    color: var(--ee-muted);
    font-size: 18px;
    line-height: 1.55;
}

.ee-selection-message {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 22px;
    padding: 13px 15px;
    gap: 12px;
    border-left: 4px solid var(--ee-orange);
    color: var(--ee-navy-dark);
    background: #fff4df;
    font-weight: 700;
}

.ee-selection-message--warning {
    border-left-color: #1b7f7b;
    background: #eef8f7;
}

.ee-selection-toast.is-warning {
    border-left: 5px solid #1b7f7b;
    background: #fffaf1;
}

.ee-selection-cleanup,
.ee-selection-remove {
    padding: 0;
    border: 0;
    color: #9a3d23;
    background: transparent;
    font: inherit;
    font-weight: 800;
    text-decoration: underline;
    cursor: pointer;
}

.ee-selection-empty {
    max-width: 720px;
    padding: 34px;
    border: 1px solid #b8d5d2;
    border-top: 6px solid var(--ee-teal);
    border-radius: var(--ee-radius);
    background: #f2faf9;
}

.ee-selection-empty h2 {
    margin-top: 0;
    color: var(--ee-navy);
    font-size: 30px;
}

.ee-selection-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    align-items: start;
    gap: 34px;
}

.ee-selection-main {
    display: grid;
    min-width: 0;
    gap: 24px;
}

.ee-selection-items {
    display: grid;
    gap: 14px;
}

.ee-selection-row {
    display: grid;
    min-width: 0;
    grid-template-columns: 120px minmax(0, 1fr) 136px 100px;
    align-items: center;
    gap: 18px;
    padding: 14px;
    border: 1px solid var(--ee-line);
    border-left: 5px solid var(--ee-teal);
    border-radius: var(--ee-radius);
    background: var(--ee-white);
    box-shadow: 0 7px 18px rgba(18, 59, 93, 0.05);
}

.ee-selection-row:nth-child(even) {
    border-left-color: var(--ee-orange);
}

.ee-selection-row__media {
    display: grid;
    width: 120px;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    place-items: center;
    border: 1px solid var(--ee-line);
    border-radius: 4px;
    color: var(--ee-muted);
    background: var(--ee-soft);
    font-size: 12px;
    text-decoration: none;
}

.ee-selection-row__media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.ee-selection-row__body {
    min-width: 0;
}

.ee-selection-row__family {
    margin: 0 0 4px;
    color: #246b65;
    font-size: 12px;
    font-weight: 800;
}

.ee-selection-row h2 {
    margin: 0 0 7px;
    color: var(--ee-navy);
    font-size: 20px;
    line-height: 1.2;
}

.ee-selection-row h2 a {
    text-decoration: none;
}

.ee-selection-row__price {
    margin: 0;
    color: var(--ee-muted);
    font-size: 14px;
}

.ee-selection-row__actions {
    display: grid;
    justify-items: start;
    gap: 9px;
}

.ee-selection-row__quantity {
    display: grid;
    gap: 5px;
}

.ee-selection-row__quantity-label {
    color: var(--ee-muted);
    font-size: 12px;
    font-weight: 700;
}

.ee-selection-row__total {
    color: var(--ee-navy-dark);
    font-size: 17px;
    text-align: right;
}

.ee-selection-supports {
    padding: 22px;
    border: 1px solid #edc38f;
    border-left: 6px solid var(--ee-orange);
    border-radius: var(--ee-radius);
    background: #fff8ef;
}

.ee-selection-supports__heading {
    margin-bottom: 17px;
    padding-bottom: 15px;
    border-bottom: 1px solid #efd5b4;
}

.ee-selection-supports__heading > p:first-child,
.ee-selection-support__eyebrow {
    margin: 0 0 5px;
    color: #9a4f0d;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.ee-selection-supports__heading h2 {
    margin: 0 0 6px;
    color: var(--ee-navy);
    font-size: 25px;
    line-height: 1.2;
}

.ee-selection-supports__heading > p:last-child {
    max-width: 720px;
    margin: 0;
    color: var(--ee-muted);
    line-height: 1.5;
}

.ee-selection-support-list {
    display: grid;
    gap: 12px;
}

.ee-selection-support {
    display: grid;
    min-width: 0;
    grid-template-columns: 116px minmax(0, 1fr);
    overflow: hidden;
    border: 1px solid #e5c69f;
    border-radius: 5px;
    background: var(--ee-white);
}

.ee-selection-support__media {
    display: grid;
    min-height: 164px;
    place-items: center;
    border-right: 1px solid var(--ee-line);
    color: var(--ee-muted);
    background: var(--ee-soft);
    font-size: 12px;
    text-decoration: none;
}

.ee-selection-support__media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.ee-selection-support__body {
    display: flex;
    min-width: 0;
    flex-direction: column;
    align-items: flex-start;
    padding: 17px;
}

.ee-selection-support h3 {
    margin: 0 0 7px;
    color: var(--ee-navy);
    font-size: 20px;
    line-height: 1.2;
}

.ee-selection-support h3 a {
    text-decoration: none;
}

.ee-selection-support__explanation {
    margin: 0 0 8px;
    color: var(--ee-ink);
    line-height: 1.45;
}

.ee-selection-support__price {
    margin: 0 0 13px;
    color: var(--ee-navy-dark);
    font-weight: 800;
}

.ee-selection-support__add {
    min-height: 40px;
    margin-top: auto;
    padding: 8px 13px;
    font-size: 13px;
}

.ee-selection-summary {
    position: sticky;
    top: 112px;
    padding: 24px;
    border: 1px solid #9ebfc9;
    border-top: 7px solid var(--ee-orange);
    border-radius: var(--ee-radius);
    background: #f3f8fa;
}

.ee-selection-summary h2 {
    margin: 0 0 18px;
    color: var(--ee-navy);
    font-size: 25px;
}

.ee-selection-summary dl {
    margin: 0 0 22px;
}

.ee-selection-summary dl div {
    display: flex;
    justify-content: space-between;
    padding: 11px 0;
    gap: 16px;
    border-bottom: 1px solid #c8d8df;
}

.ee-selection-summary dt {
    color: var(--ee-muted);
}

.ee-selection-summary dd {
    margin: 0;
    color: var(--ee-navy-dark);
    font-weight: 800;
    text-align: right;
}

.ee-selection-support-summary {
    margin: -4px 0 15px;
    padding: 11px 12px;
    border-left: 4px solid var(--ee-orange);
    background: #fff5e7;
}

.ee-selection-support-summary strong,
.ee-selection-support-summary a {
    display: block;
}

.ee-selection-support-summary strong {
    color: var(--ee-navy-dark);
    font-size: 13px;
}

.ee-selection-support-summary a {
    margin-top: 3px;
    color: #8c4709;
    font-size: 12px;
    font-weight: 800;
}

.ee-selection-continue {
    width: 100%;
    text-align: center;
}

.ee-selection-summary > p {
    margin: 13px 0 0;
    color: var(--ee-muted);
    font-size: 12px;
    line-height: 1.45;
}

.ee-selection-suggestions {
    margin-top: 58px;
    padding-top: 44px;
    border-top: 1px solid var(--ee-line);
}

.ee-selection-suggestions__heading h2 {
    margin: 0 0 24px;
    color: var(--ee-navy);
    font-size: 31px;
}

.ee-selection-suggestion-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.ee-selection-suggestion {
    display: grid;
    min-width: 0;
    grid-template-columns: 112px minmax(0, 1fr);
    overflow: hidden;
    border: 1px solid var(--ee-line);
    border-radius: var(--ee-radius);
    background: var(--ee-white);
}

.ee-selection-suggestion__media {
    display: grid;
    min-height: 168px;
    place-items: center;
    background: var(--ee-soft);
}

.ee-selection-suggestion__media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.ee-selection-suggestion__body {
    display: flex;
    min-width: 0;
    flex-direction: column;
    padding: 15px;
}

.ee-selection-suggestion__reason {
    margin: 0 0 5px;
    color: #246b65;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.ee-selection-suggestion h3 {
    margin: 0 0 7px;
    color: var(--ee-navy);
    font-size: 17px;
    line-height: 1.2;
}

.ee-selection-suggestion h3 a {
    text-decoration: none;
}

.ee-selection-suggestion__price {
    margin: 0 0 12px;
    color: var(--ee-muted);
    font-size: 14px;
    font-weight: 700;
}

.ee-selection-suggestion__add {
    min-height: 40px;
    margin-top: auto;
    padding: 8px 10px;
    font-size: 13px;
}

@media (max-width: 1080px) {
    .ee-selection-layout {
        grid-template-columns: minmax(0, 1fr) 290px;
        gap: 22px;
    }

    .ee-selection-row {
        grid-template-columns: 96px minmax(0, 1fr) 136px;
    }

    .ee-selection-row__media {
        width: 96px;
    }

    .ee-selection-row__total {
        grid-column: 2;
        text-align: left;
    }

    .ee-selection-suggestion-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 780px) {
    .ee-product-picker--detail,
    .ee-selection-layout {
        grid-template-columns: 1fr;
    }

    .ee-selection-summary {
        position: static;
    }

    .ee-selection-header h1 {
        font-size: 38px;
    }

    .ee-selection-row {
        grid-template-columns: 88px minmax(0, 1fr);
        align-items: start;
        gap: 14px;
    }

    .ee-selection-row__media {
        width: 88px;
    }

    .ee-selection-row__actions,
    .ee-selection-row__total {
        grid-column: 2;
    }

    .ee-selection-suggestion-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .ee-product-picker--detail {
        display: flex;
        flex-direction: column;
    }

    .ee-product-picker--detail .ee-quantity-stepper {
        width: 100%;
        grid-template-columns: 1fr 56px 1fr;
    }

    .ee-selection-page {
        padding-block: 20px 58px;
    }

    .ee-selection-row {
        grid-template-columns: 72px minmax(0, 1fr);
        padding: 11px;
    }

    .ee-selection-row__media {
        width: 72px;
    }

    .ee-selection-suggestion {
        grid-template-columns: 94px minmax(0, 1fr);
    }

    .ee-selection-supports {
        padding: 15px;
    }

    .ee-selection-support {
        grid-template-columns: 88px minmax(0, 1fr);
    }

    .ee-selection-support__media {
        min-height: 142px;
    }

    .ee-selection-support__body {
        padding: 13px;
    }

    .ee-selection-support__add {
        width: 100%;
    }
}

/* Guides éditoriaux reliés au catalogue */
.ee-catalogue-guide__hero {
    position: relative;
    display: grid;
    min-height: min(560px, 62vh);
    align-items: end;
    overflow: hidden;
    padding-block: clamp(92px, 12vh, 150px) 64px;
    color: #fff;
    background-color: #173562;
    background-position: center;
    background-size: cover;
}

.ee-catalogue-guide__hero::before {
    position: absolute;
    inset: 0;
    content: "";
    background: rgba(13, 31, 59, 0.72);
}

.ee-catalogue-guide__hero .ee-product-shell {
    position: relative;
    z-index: 1;
}

.ee-breadcrumb--light,
.ee-breadcrumb--light a {
    color: #fff;
}

.ee-catalogue-guide__eyebrow {
    margin: 42px 0 10px;
    color: #ff9c2b;
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
}

.ee-catalogue-guide__hero h1 {
    max-width: 900px;
    margin: 0;
    color: #fff;
    font-size: 64px;
    line-height: 1.02;
    letter-spacing: 0;
}

.ee-catalogue-guide__intro {
    max-width: 760px;
    margin: 24px 0 0;
    color: #fff;
    font-size: 21px;
    line-height: 1.55;
}

.ee-catalogue-guide__content {
    width: min(var(--ee-shell), calc(100% - 36px));
    margin-inline: auto;
    padding-block: 54px 84px;
}

.ee-catalogue-guide__content > .has-large-font-size {
    max-width: 850px;
    margin: 0 auto 32px;
    color: #223047;
    text-align: center;
}

.ee-auto-catalogue {
    margin-block: 46px 58px;
}

.ee-auto-catalogue > h2 {
    max-width: 760px;
    margin: 0 0 26px;
    color: #173562;
    font-size: 34px;
    letter-spacing: 0;
}

.ee-auto-catalogue__empty {
    padding: 22px;
    border-left: 4px solid #ff8b16;
    background: #fff4e8;
}

.ee-auto-catalogue__fallback {
    padding: 20px;
    border: 1px solid #dce2ea;
    border-radius: 6px;
    background: #fff;
}

@media (max-width: 700px) {
    .ee-catalogue-guide__hero {
        min-height: 480px;
        padding-block: 76px 42px;
    }

    .ee-catalogue-guide__eyebrow {
        margin-top: 30px;
    }

    .ee-catalogue-guide__hero h1 {
        font-size: 42px;
    }

    .ee-catalogue-guide__intro {
        font-size: 18px;
    }

    .ee-catalogue-guide__content {
        width: min(100% - 24px, var(--ee-shell));
        padding-block: 38px 62px;
    }

    .ee-auto-catalogue > h2 {
        font-size: 29px;
    }
}

/* Demande de devis */
.ee-quote-page {
    padding-bottom: 92px;
    background: var(--ee-white);
}

.ee-quote-hero {
    padding-block: 40px 56px;
    color: var(--ee-white);
    background: var(--ee-navy-dark);
    border-bottom: 6px solid var(--ee-orange);
}

.ee-quote-hero .ee-breadcrumb,
.ee-quote-hero .ee-breadcrumb a {
    color: var(--ee-white);
}

.ee-quote-hero__eyebrow,
.ee-quote-selection__heading p,
.ee-quote-reassurance__eyebrow {
    margin: 28px 0 8px;
    color: var(--ee-orange);
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
}

.ee-quote-hero h1 {
    max-width: 780px;
    margin: 0;
    color: var(--ee-white);
    font-size: 56px;
    line-height: 1.06;
    letter-spacing: 0;
}

.ee-quote-hero > .ee-product-shell > p:last-child {
    max-width: 760px;
    margin: 20px 0 0;
    color: var(--ee-white);
    font-size: 20px;
}

.ee-quote-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    align-items: start;
    gap: 58px;
    padding-top: 58px;
}

.ee-quote-content {
    min-width: 0;
}

.ee-quote-content > :first-child {
    margin-top: 0;
}

.ee-quote-content > .has-large-font-size {
    color: var(--ee-navy);
    font-size: 21px !important;
    line-height: 1.55;
}

.ee-quote-content h2 {
    margin-top: 48px;
    color: var(--ee-navy);
    font-size: 32px;
    line-height: 1.2;
    letter-spacing: 0;
}

.ee-quote-reassurance {
    position: sticky;
    top: 132px;
    padding: 26px;
    border: 1px solid var(--ee-line);
    border-top: 5px solid var(--ee-orange);
    border-radius: var(--ee-radius);
    background: var(--ee-white);
    box-shadow: var(--ee-shadow);
}

.ee-quote-reassurance__eyebrow {
    margin-top: 0;
}

.ee-quote-reassurance h2 {
    margin: 0 0 20px;
    color: var(--ee-navy);
    font-size: 23px;
    line-height: 1.25;
    letter-spacing: 0;
}

.ee-quote-reassurance ul {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.ee-quote-reassurance li {
    position: relative;
    padding-left: 25px;
}

.ee-quote-reassurance li::before {
    position: absolute;
    top: 0.15em;
    left: 0;
    color: var(--ee-teal);
    content: "✓";
    font-weight: 900;
}

.ee-quote-reassurance > p:last-child {
    margin: 24px 0 0;
    padding-top: 20px;
    border-top: 1px solid var(--ee-line);
}

.ee-quote-selection {
    margin-block: 34px 46px;
    padding-block: 26px;
    border-top: 2px solid var(--ee-navy);
    border-bottom: 1px solid var(--ee-line);
}

.ee-quote-selection__heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 22px;
}

.ee-quote-selection__heading p {
    margin-top: 0;
}

.ee-quote-selection__heading h2 {
    margin: 0;
    font-size: 28px;
}

.ee-quote-selection__heading > a {
    flex: 0 0 auto;
    font-weight: 750;
}

.ee-quote-selection__status {
    margin: 0;
    color: var(--ee-muted);
}

.ee-quote-selection__facts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 0 0 20px;
    border: 1px solid var(--ee-line);
    border-radius: var(--ee-radius);
    background: var(--ee-soft);
}

.ee-quote-selection__facts > div {
    min-width: 0;
    padding: 16px;
}

.ee-quote-selection__facts > div + div {
    border-left: 1px solid var(--ee-line);
}

.ee-quote-selection__facts dt {
    color: var(--ee-muted);
    font-size: 13px;
    font-weight: 700;
}

.ee-quote-selection__facts dd {
    margin: 3px 0 0;
    color: var(--ee-navy);
    font-size: 18px;
    font-weight: 850;
}

.ee-quote-selection__items {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.ee-quote-selection__items li {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 9px 0;
    border-bottom: 1px solid var(--ee-line);
}

.ee-quote-selection__items strong {
    color: var(--ee-navy);
}

.ee-quote-selection__empty p {
    margin-top: 0;
}

.ee-quote-selection__empty .ee-button {
    display: inline-flex;
}

.ee-quote-form-notice {
    padding: 18px;
    border-left: 4px solid var(--ee-orange);
    background: var(--ee-warm);
}

.ee-quote-form-privacy {
    max-width: 720px;
    margin: 16px 0 0;
    color: var(--ee-muted);
    font-size: 13px;
    line-height: 1.55;
}

.ee-quote-form-privacy a {
    font-weight: 700;
}

.ee-quote-content .fluentform {
    margin-top: 26px;
}

.ee-quote-content .ff-el-group {
    margin-bottom: 22px;
}

.ee-quote-content .ff-el-group[hidden] {
    display: none;
}

.ee-quote-content .ff-el-input--label label {
    color: var(--ee-ink);
    font-size: 15px;
    font-weight: 750;
}

.ee-quote-content .ff-el-form-control {
    min-height: 50px;
    border: 1px solid #aebbc4;
    border-radius: 4px;
    color: var(--ee-ink);
    background: var(--ee-white);
}

.ee-quote-content textarea.ff-el-form-control {
    min-height: 125px;
}

.ee-quote-content .ff-el-form-control:focus {
    border-color: var(--ee-navy);
    box-shadow: 0 0 0 3px rgba(18, 59, 93, 0.14);
}

.ee-quote-content .ff-btn-submit {
    min-height: 52px;
    padding: 12px 22px;
    border: 1px solid var(--ee-orange-dark);
    border-radius: 4px;
    color: var(--ee-white);
    background: var(--ee-orange-dark);
    font-weight: 800;
}

.ee-quote-content .ff-btn-submit:hover {
    color: var(--ee-white);
    background: var(--ee-navy);
    border-color: var(--ee-navy);
}

@media (max-width: 900px) {
    .ee-quote-layout {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .ee-quote-reassurance {
        position: static;
        max-width: 680px;
    }
}

@media (max-width: 620px) {
    .ee-quote-page {
        padding-bottom: 62px;
        background: var(--ee-white);
    }

    .ee-quote-hero {
        padding-block: 26px 40px;
    }

    .ee-quote-hero h1 {
        font-size: 39px;
    }

    .ee-quote-hero > .ee-product-shell > p:last-child {
        font-size: 18px;
    }

    .ee-quote-layout {
        gap: 34px;
        padding-top: 38px;
    }

    .ee-quote-selection__heading {
        display: block;
    }

    .ee-quote-selection__heading > a {
        display: inline-block;
        margin-top: 10px;
    }

    .ee-quote-selection__facts {
        grid-template-columns: 1fr;
    }

    .ee-quote-selection__facts > div + div {
        border-top: 1px solid var(--ee-line);
        border-left: 0;
    }

    .ee-quote-selection__items li {
        display: block;
    }

    .ee-quote-selection__items li span {
        display: block;
        margin-top: 2px;
    }
}

/* Direction visuelle 1.0 : pages éditoriales, accueil-catalogue et fiches */
html {
    scroll-padding-top: 122px;
}

body {
    color: #1e2b34;
    background: #fff;
}

/* Récapitulatif persistant de la demande de devis */
.ee-quote-sidebar {
    position: sticky;
    top: 112px;
    display: grid;
    gap: 22px;
}

.ee-quote-sidebar .ee-quote-selection {
    position: static;
    margin: 0;
    padding: 24px;
    border: 1px solid #9ebfc9;
    border-top: 7px solid var(--ee-orange);
    border-radius: var(--ee-radius);
    background: #f3f8fa;
}

.ee-quote-sidebar .ee-quote-selection__heading {
    align-items: center;
    flex-wrap: wrap;
    row-gap: 4px;
    margin: 0 0 10px;
}

.ee-quote-sidebar .ee-quote-selection__heading h2 {
    margin: 0;
    font-size: 25px;
}

.ee-quote-sidebar .ee-quote-selection__heading > a {
    max-width: 100%;
    font-size: 13px;
    overflow-wrap: anywhere;
}

.ee-quote-sidebar .ee-quote-selection__status {
    margin: 10px 0;
    font-size: 13px;
}

.ee-quote-sidebar .ee-quote-selection__facts {
    display: block;
    margin: 0;
    border: 0;
    background: transparent;
}

.ee-quote-sidebar .ee-quote-selection__facts > div,
.ee-quote-sidebar .ee-quote-selection__facts > div + div {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 11px 0;
    border: 0;
    border-bottom: 1px solid #c8d8df;
}

.ee-quote-sidebar .ee-quote-selection__facts dt {
    color: var(--ee-muted);
    font-size: 16px;
    font-weight: 400;
}

.ee-quote-sidebar .ee-quote-selection__facts dd {
    margin: 0;
    color: var(--ee-navy-dark);
    font-size: 17px;
    font-weight: 800;
    text-align: right;
}

.ee-quote-selection__note {
    margin: 14px 0 0;
    color: var(--ee-muted);
    font-size: 12px;
    line-height: 1.45;
}

.ee-quote-sidebar .ee-quote-selection__items[hidden] {
    display: none;
}

.ee-quote-sidebar .ee-quote-reassurance {
    position: static;
}

@media (max-width: 900px) {
    .ee-quote-sidebar {
        display: contents;
    }

    .ee-quote-sidebar .ee-quote-selection {
        order: -1;
        max-width: 680px;
    }

    .ee-quote-sidebar .ee-quote-reassurance {
        order: 1;
    }
}

/* Accueil 1.4: contact immédiat et parcours de première visite. */
.ee-service-bar__contacts {
    display: flex;
    align-items: center;
    gap: 22px;
}

.ee-service-bar__contacts > a {
    display: inline-flex;
    align-items: baseline;
    gap: 7px;
    text-decoration: none;
}

.ee-service-bar__contacts span {
    color: #b9cbd7;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
}

.ee-service-bar__contacts strong {
    color: #fff;
    font-size: 14px;
}

.ee-service-bar__quote {
    padding: 7px 12px;
    border-radius: 4px;
    color: var(--ee-navy-dark) !important;
    background: #ffad4f;
}

.ee-service-bar__quote:hover {
    background: #ffc37b;
}

.ee-home-hero--v2 {
    min-height: 610px;
    padding-block: 76px;
}

.ee-home-hero--v2::after {
    background: linear-gradient(90deg, rgba(6, 29, 47, 0.94) 0%, rgba(8, 35, 56, 0.82) 48%, rgba(8, 35, 56, 0.56) 100%);
}

.ee-home-hero--v2 .ee-home-hero__media img {
    object-position: center 38%;
}

.ee-home-hero--v2 h1 {
    max-width: 850px;
    font-size: 54px;
}

.ee-home-pathways {
    background: #f5f8f8;
}

.ee-front-page .wp-block-columns.ee-home-pathway-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 34px;
    gap: 20px;
}

.ee-home-pathway-card {
    display: flex;
    min-width: 0;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid #d3dfe3;
    border-top: 4px solid var(--ee-orange);
    border-radius: 6px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(18, 59, 93, 0.07);
}

.ee-home-pathway-card:nth-child(2) {
    border-top-color: var(--ee-teal);
}

.ee-home-pathway-card:nth-child(3) {
    border-top-color: var(--ee-navy);
}

.ee-home-pathway-card .wp-block-image {
    position: relative;
    display: block;
    aspect-ratio: 16 / 10;
    margin: 0;
    overflow: hidden;
    border-bottom: 1px solid #dbe4e8;
    background: #edf3f4;
}

.ee-home-pathway-card .wp-block-image a {
    display: block;
    width: 100%;
    height: 100%;
}

.ee-home-pathway-card .wp-block-image img {
    display: block;
    width: 100%;
    height: 100%;
    padding: 8px;
    object-fit: contain;
    object-position: center;
}

.ee-home-pathway-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 22px 23px 24px;
}

.ee-home-pathway-card__tag {
    margin: 0 0 8px;
    color: #246b65;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.ee-home-pathway-card h3 {
    margin: 0;
    font-size: 24px;
    line-height: 1.2;
}

.ee-home-pathway-card h3 a {
    color: var(--ee-navy-dark);
    text-decoration: none;
}

.ee-home-pathway-card__body > p:not(.ee-home-pathway-card__tag):not(.ee-home-pathway-card__link) {
    margin: 12px 0 0;
    color: var(--ee-muted);
    line-height: 1.55;
}

.ee-home-pathway-card__link {
    margin: auto 0 0;
    padding-top: 18px;
}

.ee-home-pathway-card__link a,
.ee-home-story__link a,
.ee-home-map-card__body a {
    color: var(--ee-navy);
    font-weight: 800;
    text-underline-offset: 3px;
}

.ee-home-topic-links {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #d2dee2;
}

.ee-home-topic-links__label {
    margin: 0 0 12px;
    color: var(--ee-muted);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.ee-home-topic-links__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px 20px;
}

.ee-home-topic-links__grid a {
    position: relative;
    padding: 7px 20px 7px 0;
    border-bottom: 1px solid #dce5e8;
    color: var(--ee-navy-dark);
    font-weight: 750;
    text-decoration: none;
}

.ee-home-topic-links__grid a::after {
    position: absolute;
    right: 2px;
    content: "→";
    color: var(--ee-orange-dark);
}

.ee-home-catalogue {
    border: 0;
    background: #fff;
}

.ee-home-catalogue__actions {
    margin-top: 30px;
}

.ee-home-steps--v2 {
    color: #edf5f7;
    background: var(--ee-navy-dark);
}

.ee-home-steps--v2 h2,
.ee-home-steps--v2 h3 {
    color: #fff;
}

.ee-home-steps--v2 .ee-home-eyebrow {
    color: #ffb45f;
}

.ee-front-page .ee-home-steps--v2 .wp-block-columns.ee-home-step-grid {
    width: 100% !important;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 34px !important;
    gap: 18px;
}

.ee-home-steps--v2 .ee-home-step-grid .wp-block-column {
    min-height: 0;
    padding: 25px;
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.07);
}

.ee-home-steps--v2 .ee-home-step-grid p {
    color: #d9e6eb;
}

.ee-home-story {
    background: #fff;
}

.ee-home-story__layout {
    gap: 64px;
}

.ee-home-story__media {
    min-width: 0;
}

.ee-home-story__image,
.ee-home-story__video {
    display: grid;
    width: 100%;
    aspect-ratio: 4 / 3;
    margin: 0;
    overflow: hidden;
    place-items: center;
    border: 1px solid #d3dfe3;
    border-radius: 6px;
    background: #edf3f4;
    box-shadow: var(--ee-shadow);
}

.ee-home-story__image img {
    display: block;
    width: 100%;
    height: 100%;
    padding: 8px;
    object-fit: contain;
    object-position: center;
}

.ee-home-story__video iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.ee-home-story__lead {
    color: var(--ee-navy);
    font-size: 19px;
    font-weight: 750;
    line-height: 1.55;
}

.ee-home-story__link {
    margin-top: 22px;
}

.ee-home-seo--v2 {
    border-block: 1px solid #d9e4e7;
    background: #f3f7f7;
}

.ee-home-seo--v2 .wp-block-columns {
    gap: 62px;
}

.ee-home-seo--v2 p {
    color: var(--ee-muted);
    line-height: 1.7;
}

.ee-home-seo__points {
    padding: 28px 30px;
    border-left: 4px solid var(--ee-teal);
    background: #fff;
}

.ee-home-seo__points h3 {
    margin-top: 0;
    color: var(--ee-navy-dark);
    font-size: 23px;
}

.ee-home-local {
    background: #fff;
}

.ee-front-page .wp-block-columns.ee-home-local__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    margin-top: 34px;
    gap: 22px;
}

.ee-home-map-card,
.ee-home-local .ee-home-delivery__tool {
    overflow: hidden;
    border: 1px solid #c9dadd;
    border-radius: 6px;
    background: #f5f9f9;
    box-shadow: 0 8px 24px rgba(18, 59, 93, 0.06);
}

.ee-home-map {
    width: 100%;
    height: 330px;
    background: #dfe9eb;
}

.ee-home-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

.ee-home-map-card__body {
    padding: 23px 25px 25px;
}

.ee-home-map-card__body h3,
.ee-home-local .ee-home-delivery__tool > h3 {
    margin: 0;
    color: var(--ee-navy-dark);
    font-size: 23px;
}

.ee-home-map-card__body p,
.ee-home-local .ee-home-delivery__tool > p {
    color: var(--ee-muted);
}

.ee-home-local .ee-home-delivery__tool {
    padding: 27px;
}

.ee-home-reviews--v2 {
    color: #eef6f7;
    border: 0;
    background: var(--ee-navy);
}

.ee-home-reviews--v2 h2,
.ee-home-reviews--v2 p {
    color: inherit;
}

.ee-home-reviews--v2 .ee-home-eyebrow {
    color: #ffbd70;
}

.ee-home-reviews--v2 .wp-block-columns {
    gap: 60px;
}

.ee-home-reviews__action {
    display: grid;
    justify-items: center;
}

.ee-home-reviews__stars {
    margin: 0 0 14px;
    color: #ffc15f !important;
    font-size: 30px;
    letter-spacing: 0;
}

.ee-home-final--v2 {
    color: #fff;
    background: var(--ee-navy-dark);
}

.ee-home-final--v2 h2,
.ee-home-final--v2 p {
    color: #fff;
}

.ee-home-final--v2 .ee-home-eyebrow {
    color: #ffbd70;
}

.ee-home-final--v2 .wp-block-buttons {
    justify-content: center;
}

.ee-home-final--v2 .is-style-outline .wp-block-button__link {
    border-color: rgba(255, 255, 255, 0.75);
    color: #fff;
    background: transparent;
}

.ee-home-final__contact {
    display: flex;
    justify-content: center;
    margin: 25px 0 0;
    gap: 10px;
    font-size: 20px;
    font-weight: 800;
}

.ee-home-final__contact a {
    color: #fff;
    text-underline-offset: 4px;
}

@media (max-width: 980px) {
    .ee-service-bar {
        display: block;
    }

    .ee-service-bar__inner {
        min-height: 48px;
    }

    .ee-service-bar__promise,
    .ee-service-bar__quote {
        display: none !important;
    }

    .ee-service-bar__contacts {
        display: grid;
        width: 100%;
        grid-template-columns: auto auto;
        justify-content: space-between;
        gap: 12px;
    }

    .ee-service-bar__contacts > a {
        gap: 5px;
    }

    .ee-service-bar__contacts strong {
        font-size: 13px;
    }

    .ee-front-page .wp-block-columns.ee-home-pathway-grid,
    .ee-home-topic-links__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ee-front-page .ee-home-steps--v2 .wp-block-columns.ee-home-step-grid {
        width: 100% !important;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .ee-home-story__layout {
        gap: 38px;
    }
}

@media (max-width: 700px) {
    .ee-service-bar__inner {
        width: calc(100% - 24px);
    }

    .ee-service-bar__contacts span {
        display: none;
    }

    .ee-service-bar__contacts strong {
        font-size: 12px;
    }

    .ee-home-hero--v2 {
        min-height: 560px;
        padding-block: 56px;
    }

    .ee-home-hero--v2::after {
        background: rgba(7, 31, 50, 0.8);
    }

    .ee-home-hero--v2 h1 {
        font-size: 36px;
    }

    .ee-front-page .wp-block-columns.ee-home-pathway-grid,
    .ee-home-topic-links__grid,
    .ee-front-page .ee-home-steps--v2 .wp-block-columns.ee-home-step-grid,
    .ee-front-page .wp-block-columns.ee-home-local__grid {
        grid-template-columns: 1fr;
    }

    .ee-home-topic-links__grid {
        gap: 0;
    }

    .ee-home-story__layout,
    .ee-home-seo--v2 .wp-block-columns,
    .ee-home-reviews--v2 .wp-block-columns {
        gap: 30px;
    }

    .ee-home-story__content {
        order: -1;
    }

    .ee-home-seo__points,
    .ee-home-local .ee-home-delivery__tool {
        padding: 23px;
    }

    .ee-home-map {
        height: 290px;
    }

    .ee-home-final__contact {
        flex-direction: column;
        align-items: center;
        gap: 5px;
        font-size: 17px;
    }

    .ee-home-final__contact span {
        display: none;
    }
}

.ee-button,
.wp-element-button,
.wp-block-button__link,
.ee-button-orange .wp-block-button__link,
.ee-selection-add,
.ee-product-quote-button {
    min-height: 44px;
    padding: 10px 17px;
    color: #fff;
    border-color: var(--ee-navy);
    border-radius: 5px;
    background: var(--ee-navy);
    box-shadow: none;
    font-size: 15px;
}

.ee-button:hover,
.wp-element-button:hover,
.wp-block-button__link:hover,
.ee-button-orange .wp-block-button__link:hover,
.ee-selection-add:hover,
.ee-product-quote-button:hover {
    color: #fff;
    border-color: var(--ee-teal);
    background: var(--ee-teal);
}

.wp-block-button.is-style-outline .wp-block-button__link {
    color: var(--ee-navy);
    border-color: #8aa2b4;
    background: transparent;
}

.wp-block-button.is-style-outline .wp-block-button__link:hover {
    color: #fff;
    border-color: var(--ee-navy);
    background: var(--ee-navy);
}

.ee-site-header__inner {
    grid-template-columns: minmax(170px, 205px) minmax(0, 1fr);
    min-height: 76px;
    gap: 16px;
}

.ee-brand .custom-logo {
    max-width: 200px;
    max-height: 56px;
}

.ee-navigation-panel {
    gap: 12px;
}

.ee-menu-list,
.ee-primary-nav .menu {
    flex-wrap: nowrap;
}

.ee-menu-list a,
.ee-primary-nav .menu a {
    padding-inline: 8px;
    font-size: 14px;
}

.ee-search-field {
    width: 132px;
}

.ee-front-page .ee-entry__content {
    color: #26343d;
}

.ee-front-page .ee-entry__content > .alignfull {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
}

.ee-front-page .ee-entry__content .alignwide {
    width: min(var(--ee-shell), calc(100% - 40px));
    max-width: none;
    margin-right: auto;
    margin-left: auto;
}

.ee-home-hero {
    min-height: 540px;
    padding-block: 68px;
}

.ee-home-hero::after {
    background: rgba(8, 35, 56, 0.78);
}

.ee-home-hero h1 {
    max-width: 780px;
    font-size: 52px;
    line-height: 1.08;
}

.ee-home-hero__lead {
    max-width: 760px;
    font-size: 20px;
    line-height: 1.55;
}

.ee-home-hero__buttons {
    margin-top: 26px;
}

.ee-home-hero .wp-block-button:not(.is-style-outline) .wp-block-button__link {
    color: var(--ee-navy-dark);
    border-color: #ffc37b;
    background: #ffad4f;
}

.ee-home-hero .wp-block-button:not(.is-style-outline) .wp-block-button__link:hover {
    color: #fff;
    border-color: var(--ee-teal);
    background: var(--ee-teal);
}

.ee-home-section {
    padding-block: 76px;
}

.ee-home-section h2,
.ee-home-custom h2,
.ee-home-final h2 {
    max-width: 820px;
    font-size: 38px;
    line-height: 1.18;
}

.ee-home-section__intro {
    font-size: 18px;
    line-height: 1.65;
}

.ee-home-services {
    background: #f4f7f8;
}

.ee-front-page .wp-block-columns.ee-home-service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.ee-front-page .ee-home-service-grid > .ee-home-service-card {
    overflow: hidden;
    padding: 0;
    border: 1px solid #d5dee3;
    border-radius: 6px;
    background: #fff;
    box-shadow: 0 6px 18px rgba(18, 59, 93, 0.05);
}

.ee-home-service-card:nth-child(3n + 2) {
    border-top: 3px solid var(--ee-teal);
}

.ee-home-service-card:nth-child(3n + 1) {
    border-top: 3px solid var(--ee-orange);
}

.ee-home-service-card:nth-child(3n) {
    border-top: 3px solid var(--ee-navy);
}

.ee-home-service-card .wp-block-image {
    aspect-ratio: 16 / 10;
    border-bottom: 1px solid #e0e7ea;
    background: #eef3f5;
}

.ee-home-service-card .wp-block-image img {
    object-fit: cover;
}

.ee-home-service-card__body {
    padding: 18px 19px 20px;
}

.ee-home-service-card__tag {
    color: #246b65;
    font-size: 12px;
}

.ee-home-service-card h3 {
    font-size: 20px;
}

.ee-home-service-card p:not(.ee-home-service-card__tag) {
    font-size: 15px;
    line-height: 1.55;
}

.ee-home-company {
    background: #fff;
}

.ee-home-company__layout {
    gap: 68px;
}

.ee-home-company__lead {
    color: var(--ee-navy);
    font-size: 19px;
    font-weight: 700;
    line-height: 1.55;
}

.ee-home-company__proofs {
    padding: 30px;
    border-left: 5px solid var(--ee-orange);
    border-radius: 0 6px 6px 0;
    color: #edf5f7;
    background: var(--ee-navy-dark);
}

.ee-home-company__proofs h3 {
    margin: 0 0 17px;
    color: #fff;
    font-size: 23px;
}

.ee-home-company__proofs ul {
    margin: 0;
    padding-left: 22px;
}

.ee-home-company__proofs li + li {
    margin-top: 9px;
}

.ee-home-company__link {
    margin: 23px 0 0;
}

.ee-home-company__link a {
    color: #ffc078;
    font-weight: 800;
}

.ee-home-catalogue {
    border-block: 1px solid #d9e4e7;
    background: #eef5f5;
}

.ee-home-catalogue .ee-auto-catalogue {
    margin: 36px 0 0;
}

.ee-home-custom {
    padding-block: 70px;
    border-bottom: 5px solid var(--ee-orange);
    background: var(--ee-navy);
}

.ee-home-step-grid .wp-block-column {
    padding-top: 50px;
}

.ee-home-delivery {
    border-color: #cfe0df;
    background: #f2f8f7;
}

.ee-home-delivery__tool {
    border-color: #b9d3d1;
    box-shadow: 0 8px 24px rgba(18, 59, 93, 0.06);
}

.ee-home-faq {
    background: #fff;
}

.ee-home-faq__list,
.ee-guide-faq__list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 30px;
}

.ee-home-faq details,
.ee-guide-faq details {
    align-self: start;
    margin: 0;
    border: 1px solid #d4dee3;
    border-radius: 5px;
    background: #fff;
}

.ee-home-faq summary,
.ee-guide-faq summary {
    padding: 17px 48px 17px 18px;
    color: var(--ee-navy);
    font-weight: 800;
    cursor: pointer;
}

.ee-home-faq details p,
.ee-guide-faq details p {
    margin: 0;
    padding: 0 18px 19px;
    color: var(--ee-muted);
    font-size: 15px;
    line-height: 1.6;
}

.ee-home-reviews {
    border-top: 1px solid #e0e7ea;
    background: #f7f9fa;
}

.ee-home-final {
    padding-block: 66px;
}

.ee-catalogue-guide {
    background: #fff;
}

.ee-catalogue-guide__hero {
    min-height: 440px;
    padding-block: 92px 54px;
    background-color: var(--ee-navy-dark);
}

.ee-catalogue-guide__hero::before {
    background: rgba(8, 32, 52, 0.79);
}

.ee-catalogue-guide__eyebrow {
    margin-top: 30px;
    color: #ffb45f;
    font-size: 13px;
}

.ee-catalogue-guide__hero h1 {
    max-width: 860px;
    font-size: 48px;
    line-height: 1.08;
}

.ee-catalogue-guide__intro {
    max-width: 800px;
    margin-top: 18px;
    font-size: 19px;
    line-height: 1.55;
}

.ee-catalogue-guide__content {
    width: 100%;
    max-width: none;
    padding: 0;
}

.ee-guide-section {
    width: min(var(--ee-shell), calc(100% - 40px));
    margin: 0 auto;
    padding-block: 68px;
}

.ee-guide-section + .ee-guide-section {
    border-top: 1px solid #e0e7ea;
}

.ee-guide-section h2 {
    max-width: 800px;
    margin: 0 0 18px;
    color: var(--ee-navy);
    font-size: 35px;
    line-height: 1.18;
}

.ee-guide-kicker {
    margin: 0 0 9px;
    color: #246b65;
    font-size: 13px;
    font-weight: 850;
    text-transform: uppercase;
}

.ee-guide-lead {
    max-width: 880px;
    margin: 0 0 14px;
    color: #243640;
    font-size: 20px;
    line-height: 1.58;
}

.ee-guide-introduction > p:not(.ee-guide-kicker, .ee-guide-lead) {
    max-width: 850px;
    color: var(--ee-muted);
}

.ee-guide-facts {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 34px;
    gap: 12px;
}

.ee-guide-facts p {
    margin: 0;
    padding: 18px;
    border: 1px solid #d7e1e5;
    border-top: 3px solid var(--ee-teal);
    border-radius: 5px;
    background: #f8fafb;
    color: var(--ee-muted);
    font-size: 14px;
    line-height: 1.5;
}

.ee-guide-facts p:nth-child(even) {
    border-top-color: var(--ee-orange);
}

.ee-guide-facts strong {
    color: var(--ee-navy);
    font-size: 15px;
}

.ee-catalogue-guide__content .wp-block-columns.ee-guide-card-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 30px;
    gap: 14px;
}

.ee-guide-card {
    min-width: 0;
    padding: 23px 21px;
    border: 1px solid #d7e1e5;
    border-radius: 5px;
    background: #fff;
}

.ee-guide-card:nth-child(odd) {
    border-top: 4px solid var(--ee-orange);
}

.ee-guide-card:nth-child(even) {
    border-top: 4px solid var(--ee-teal);
}

.ee-guide-card__number {
    margin: 0 0 12px;
    color: #778b97;
    font-size: 13px;
    font-weight: 850;
}

.ee-guide-card h3 {
    margin: 0 0 9px;
    color: var(--ee-navy);
    font-size: 19px;
    line-height: 1.25;
}

.ee-guide-card p:last-child {
    margin: 0;
    color: var(--ee-muted);
    font-size: 14px;
    line-height: 1.55;
}

.ee-guide-catalogue {
    width: min(var(--ee-shell), calc(100% - 40px));
}

.ee-guide-catalogue .ee-auto-catalogue {
    margin: 0;
}

.ee-guide-catalogue .ee-auto-catalogue > h2 {
    font-size: 35px;
}

.ee-guide-process {
    width: 100%;
    max-width: none;
    padding-inline: max(20px, calc((100vw - var(--ee-shell)) / 2));
    border-block: 1px solid #cfe0df;
    background: #eef6f5;
}

.ee-guide-faq {
    width: min(960px, calc(100% - 40px));
}

.ee-guide-related {
    padding-top: 50px;
}

.ee-guide-related__links {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 25px 0 0;
    padding: 0;
    gap: 12px;
    list-style: none;
}

.ee-guide-related__links li {
    display: flex;
    min-width: 0;
    align-items: center;
    justify-content: space-between;
    padding: 15px 16px;
    gap: 12px;
    border-left: 4px solid var(--ee-orange);
    background: #f5f8f9;
}

.ee-guide-related__links li:nth-child(even) {
    border-left-color: var(--ee-teal);
}

.ee-guide-related__links a {
    color: var(--ee-navy);
    font-weight: 800;
    text-decoration: none;
}

.ee-guide-final {
    width: 100vw;
    max-width: none;
    margin: 0 0 0 calc(50% - 50vw);
    padding: 62px max(20px, calc((100vw - var(--ee-shell)) / 2));
    color: #edf4f7;
    border-bottom: 5px solid var(--ee-orange);
    background: var(--ee-navy-dark);
}

.ee-guide-final h2 {
    color: #fff;
}

.ee-guide-final p {
    max-width: 760px;
}

.ee-guide-final .wp-block-button__link {
    color: var(--ee-navy-dark);
    border-color: #ffc078;
    background: #ffad4f;
}

.ee-product-card {
    border-color: #d3dde2;
    box-shadow: 0 5px 16px rgba(18, 59, 93, 0.045);
}

.ee-product-card:hover {
    border-color: #9eb7c3;
    box-shadow: 0 9px 22px rgba(18, 59, 93, 0.08);
}

.ee-product-picker .ee-selection-add {
    color: #fff;
    border-color: var(--ee-navy);
    background: var(--ee-navy);
}

.ee-product-picker .ee-selection-add:hover {
    border-color: var(--ee-teal);
    background: var(--ee-teal);
}

.ee-product-page {
    background: #fff;
}

.ee-product-hero::before {
    border-block-color: #d9e4e8;
    background: #f3f7f8;
    box-shadow: inset 0 4px 0 var(--ee-orange);
}

.ee-product-hero__media {
    border-color: #cfdde3;
    box-shadow: 9px 9px 0 #dbeae9;
}

.ee-product-hero h1 {
    padding-left: 14px;
    border-left-width: 4px;
    font-size: 44px;
}

.ee-value-chip--price {
    color: var(--ee-navy-dark);
    border-color: #f2a04d;
    background: #fff2e2;
}

.ee-product-practical {
    border-color: #bad3d2;
    border-top-color: var(--ee-teal);
    background: #f1f8f7;
    box-shadow: none;
}

.ee-product-video__frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border: 1px solid #cbd9df;
    border-radius: 6px;
    background: #0b2941;
}

.ee-product-video__frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 1100px) {
    .ee-site-header__inner {
        grid-template-columns: minmax(170px, 220px) auto;
    }

    .ee-menu-list,
    .ee-primary-nav .menu {
        flex-wrap: wrap;
    }

    .ee-guide-facts,
    .ee-catalogue-guide__content .wp-block-columns.ee-guide-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 800px) {
    .ee-home-hero {
        min-height: 500px;
    }

    .ee-home-hero h1 {
        font-size: 42px;
    }

    .ee-home-company__layout {
        gap: 34px;
    }

    .ee-front-page .wp-block-columns.ee-home-service-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ee-home-faq__list,
    .ee-guide-faq__list,
    .ee-guide-related__links {
        grid-template-columns: 1fr;
    }

    .ee-catalogue-guide__hero h1 {
        font-size: 40px;
    }

    .ee-catalogue-guide__hero {
        min-height: 400px;
    }
}

@media (max-width: 620px) {
    .ee-home-hero {
        min-height: 520px;
        padding-block: 52px;
    }

    .ee-home-hero h1 {
        font-size: 36px;
    }

    .ee-home-hero__lead {
        font-size: 18px;
    }

    .ee-home-section,
    .ee-guide-section {
        padding-block: 54px;
    }

    .ee-home-section h2,
    .ee-home-custom h2,
    .ee-home-final h2,
    .ee-guide-section h2 {
        font-size: 30px;
    }

    .ee-front-page .wp-block-columns.ee-home-service-grid,
    .ee-guide-facts,
    .ee-catalogue-guide__content .wp-block-columns.ee-guide-card-grid {
        grid-template-columns: 1fr;
    }

    .ee-home-company__proofs {
        padding: 24px;
    }

    .ee-catalogue-guide__hero {
        min-height: 380px;
        padding-block: 70px 40px;
    }

    .ee-catalogue-guide__hero h1 {
        font-size: 34px;
    }

    .ee-catalogue-guide__intro,
    .ee-guide-lead {
        font-size: 17px;
    }

    .ee-guide-section,
    .ee-guide-faq,
    .ee-guide-catalogue {
        width: min(100% - 26px, var(--ee-shell));
    }

    .ee-guide-process {
        width: 100%;
        padding-inline: 13px;
    }

    .ee-product-hero h1 {
        font-size: 36px;
    }
}

/* Guide et catalogue 1.1 */
.ee-catalogue-guide__content > .ee-guide-section {
    width: min(var(--ee-shell), calc(100% - 40px)) !important;
    max-width: var(--ee-shell) !important;
    margin-right: auto !important;
    margin-left: auto !important;
}

.ee-catalogue-guide__content > .ee-guide-process {
    padding: 48px 0;
    border-top: 1px solid #cad9de;
    border-bottom: 1px solid #cad9de;
    background: transparent;
}

.ee-guide-process > h2 {
    max-width: 720px;
    margin-bottom: 12px;
}

.ee-guide-process > p {
    max-width: 780px;
    color: var(--ee-muted);
}

.ee-catalogue-guide__content .ee-guide-process .wp-block-columns.ee-guide-card-grid {
    display: grid;
    width: 100% !important;
    max-width: none !important;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin: 30px 0 0 !important;
    gap: 14px;
}

.ee-guide-process .ee-guide-card {
    min-width: 0;
    padding: 21px 20px 22px;
    border: 1px solid #d7e1e5;
    border-top: 3px solid var(--ee-orange);
    border-radius: 5px;
    background: #fff;
    word-break: normal;
    overflow-wrap: normal;
    hyphens: none;
}

.ee-guide-process .ee-guide-card:nth-child(even) {
    border-top-color: var(--ee-teal);
}

.ee-guide-process .ee-guide-card__number {
    display: inline-grid;
    width: 34px;
    height: 34px;
    place-items: center;
    margin: 0 0 15px;
    border-radius: 50%;
    color: #fff;
    background: var(--ee-navy);
    font-size: 12px;
}

.ee-guide-process .ee-guide-card:nth-child(even) .ee-guide-card__number {
    background: var(--ee-teal);
}

.ee-guide-process .ee-guide-card h3 {
    margin-bottom: 8px;
    font-size: 18px;
    line-height: 1.3;
}

.ee-guide-process .ee-guide-card p:last-child {
    font-size: 14px;
    line-height: 1.55;
}

.ee-catalogue-guide__content > .ee-guide-final {
    width: min(var(--ee-shell), calc(100% - 40px)) !important;
    max-width: var(--ee-shell) !important;
    margin: 0 auto 68px !important;
    padding: 48px !important;
    border-radius: 6px;
}

.ee-product-card {
    height: 100%;
    grid-template-rows: 154px 1fr;
}

.ee-product-card__media {
    position: relative;
    display: block;
    height: 154px;
    aspect-ratio: auto;
    padding: 8px;
    background: #fff;
}

.ee-product-card__image {
    position: absolute;
    inset: 8px;
    width: calc(100% - 16px);
    height: calc(100% - 16px);
    object-fit: contain;
    object-position: center;
}

.ee-guide-catalogue {
    width: min(var(--ee-shell), calc(100% - 40px)) !important;
    max-width: var(--ee-shell) !important;
}

.ee-guide-catalogue > .ee-auto-catalogue,
.ee-guide-catalogue .ee-product-grid {
    width: 100% !important;
    max-width: none !important;
}

.ee-fort-packs {
    width: min(var(--ee-shell), calc(100% - 40px)) !important;
    max-width: var(--ee-shell) !important;
}

.ee-fort-packs > p:not(.ee-guide-kicker, .ee-guide-lead) {
    max-width: 850px;
    color: var(--ee-muted);
}

.ee-fort-packs > .ee-auto-catalogue {
    width: 100%;
    max-width: none;
    margin-top: 30px;
}

.ee-fort-packs .ee-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.ee-fort-packs .ee-product-card {
    border-top: 4px solid var(--ee-orange);
}

.ee-fort-packs .ee-product-card:nth-child(even) {
    border-top-color: var(--ee-teal);
}

.ee-fort-packs .ee-product-card,
.ee-fort-packs .ee-product-card__media {
    grid-template-rows: 270px 1fr;
}

.ee-fort-packs .ee-product-card__media {
    height: 270px;
    padding: 14px;
}

.ee-fort-packs .ee-product-card__image {
    inset: 14px;
    width: calc(100% - 28px);
    height: calc(100% - 28px);
}

.ee-fort-packs .ee-product-card__body {
    padding: 22px 24px 24px;
}

.ee-fort-packs .ee-product-card h2 {
    font-size: 24px;
}

.ee-fort-organisation .ee-guide-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

.ee-product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.ee-product-card__body {
    min-width: 0;
    min-height: 0;
    padding: 14px;
}

.ee-product-card__chips {
    margin-bottom: 8px;
}

.ee-product-card h2 {
    margin-bottom: 6px;
    font-size: 18px;
}

.ee-product-card__excerpt {
    min-width: 0;
    display: block;
    overflow: visible;
    overflow-wrap: anywhere;
    color: var(--ee-muted);
    font-size: 14px;
    line-height: 1.5;
}

.ee-product-card__excerpt p {
    margin-bottom: 8px;
}

.ee-product-card__footer {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ee-product-card__link {
    flex: 0 0 auto;
    white-space: nowrap;
}

.ee-product-card__configure {
    min-height: 40px;
    margin-left: auto;
    padding: 8px 12px;
    text-align: center;
}

.ee-product-picker--card {
    flex: 1 1 auto;
    flex-direction: row;
    gap: 6px;
}

.ee-product-picker--card .ee-quantity-stepper {
    width: 94px;
    min-width: 94px;
    height: 40px;
    grid-template-columns: 28px 38px 28px;
}

.ee-product-picker--card .ee-quantity-stepper button,
.ee-product-picker--card .ee-quantity-stepper input {
    height: 38px;
}

.ee-product-picker--card .ee-selection-add {
    min-height: 40px;
    padding: 8px 12px;
    font-size: 14px;
}

.ee-product-hero__media {
    position: relative;
    padding: 14px;
    background: #fff;
}

.ee-product-hero__image {
    position: absolute;
    inset: 14px;
    display: block;
    width: calc(100% - 28px);
    height: calc(100% - 28px);
    max-width: none;
    max-height: none;
    object-fit: contain;
    object-position: center;
}

@media (max-width: 1000px) {
    .ee-catalogue-guide__content .ee-guide-process .wp-block-columns.ee-guide-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ee-product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .ee-fort-packs .ee-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .ee-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 620px) {
    .ee-catalogue-guide__content > .ee-guide-section,
    .ee-catalogue-guide__content > .ee-guide-final {
        width: calc(100% - 26px) !important;
    }

    .ee-catalogue-guide__content > .ee-guide-process {
        padding: 40px 0;
    }

    .ee-catalogue-guide__content .ee-guide-process .wp-block-columns.ee-guide-card-grid {
        grid-template-columns: 1fr;
    }

    .ee-fort-organisation .ee-guide-card-grid {
        grid-template-columns: 1fr !important;
    }

    .ee-catalogue-guide__content > .ee-guide-final {
        margin-bottom: 48px !important;
        padding: 30px 24px !important;
    }

    .ee-guide-catalogue {
        width: calc(100% - 26px) !important;
    }

    .ee-product-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .ee-fort-packs .ee-product-grid {
        grid-template-columns: 1fr;
    }

    .ee-fort-packs .ee-product-card {
        grid-template-rows: auto;
    }

    .ee-fort-packs .ee-product-card__media {
        width: 118px;
        height: 100%;
        min-height: 194px;
        padding: 8px;
        grid-template-rows: auto;
    }

    .ee-fort-packs .ee-product-card__image {
        inset: 8px;
        width: calc(100% - 16px);
        height: calc(100% - 16px);
    }

    .ee-fort-packs .ee-product-card__body {
        padding: 12px;
    }

    .ee-fort-packs .ee-product-card h2 {
        font-size: 17px;
    }

    .ee-product-card {
        min-height: 194px;
        grid-template-columns: 118px minmax(0, 1fr);
        grid-template-rows: auto;
    }

    .ee-product-card__media {
        width: 118px;
        height: 100%;
        min-height: 194px;
        border-right: 1px solid var(--ee-line);
        border-bottom: 0;
    }

    .ee-product-card__body {
        width: 100%;
        min-width: 0;
        padding: 12px;
    }

    .ee-product-card__chips {
        gap: 5px;
    }

    .ee-product-card .ee-value-chip {
        min-height: 30px;
        padding: 5px 8px;
        border-width: 1px;
        font-size: 12px;
    }

    .ee-product-card .ee-value-chip--price {
        font-size: 14px;
    }

    .ee-product-card h2 {
        font-size: 17px;
    }

    .ee-product-card__excerpt {
        display: block;
        font-size: 13px;
        line-height: 1.45;
    }

    .ee-product-card__footer,
    .ee-product-picker--card {
        width: 100%;
        min-width: 0;
    }

    .ee-product-picker--card .ee-selection-add {
        width: 100%;
        min-width: 0;
    }

    .ee-product-card__configure {
        width: 100%;
        margin-left: 0;
    }

    .ee-product-card__link {
        display: none;
    }

    .ee-product-picker--card .ee-selection-add {
        white-space: normal;
    }
}
.ee-selection-row__configured-option {
    margin: .35rem 0 0;
    color: #536777;
    font-weight: 700;
}

.ee-quote-selection__option {
    display: block;
    margin-top: .2rem;
    color: #5d7180;
    font-size: .82em;
    font-weight: 600;
}

/* Animation pages: profile-first navigation and editorial layouts. */
.ee-menu-list .menu-item-has-children > a::after {
    margin-left: 3px;
    color: var(--ee-orange-dark);
    content: "\25BE";
    font-size: 12px;
}

.ee-menu-list .sub-menu {
    width: 320px;
}

.ee-menu-list .sub-menu a {
    white-space: normal;
}

.ee-animations-hero-proofs {
    display: grid;
    max-width: 850px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 42px;
    border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.ee-animations-hero-proofs span {
    display: grid;
    padding: 18px 24px 0 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
}

.ee-animations-hero-proofs strong {
    color: var(--ee-white);
    font-size: 16px;
}

.ee-animations-profiles {
    border-bottom: 1px solid var(--ee-line);
    background: #f4f8f9;
}

.ee-section-heading > span {
    display: block;
    max-width: 720px;
    margin-top: 13px;
    color: var(--ee-muted);
    font-size: 17px;
}

.ee-profile-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

.ee-profile-card {
    grid-column: span 2;
}

.ee-profile-card:nth-child(4) {
    grid-column: 2 / span 2;
}

.ee-profile-card:nth-child(5),
.ee-profile-card:last-child:nth-child(odd) {
    min-height: 0;
    grid-column: 4 / span 2;
}

.ee-profile-card__media {
    aspect-ratio: 16 / 10;
    background: #edf3f5;
}

.ee-profile-card__media img {
    object-fit: contain;
}

.ee-profile-card__body {
    min-height: 235px;
}

.ee-animations-editorial {
    padding-block: 0;
    border-bottom: 0;
}

.ee-animations-editorial .ee-entry__content,
.ee-animation-guide__content {
    width: 100%;
    max-width: none;
    padding-block: 0;
}

.ee-animations-editorial .ee-animation-magic-band,
.ee-animation-guide__content .ee-animation-magic-band,
.ee-animations-editorial .ee-guide-final,
.ee-animation-guide__content .ee-guide-final {
    width: 100%;
    margin-left: 0;
}

.ee-animations-editorial .ee-guide-section,
.ee-animation-guide__content .ee-guide-section {
    width: min(var(--ee-shell), calc(100% - 40px));
}

.ee-animation-proof-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 32px;
    border-block: 1px solid var(--ee-line);
}

.ee-animation-proof-grid p {
    margin: 0;
    padding: 20px;
    color: var(--ee-muted);
    border-left: 4px solid var(--ee-teal);
}

.ee-animation-proof-grid p:nth-child(even) {
    border-left-color: var(--ee-orange);
}

.ee-animation-proof-grid strong {
    color: var(--ee-navy);
}

.ee-guide-editorial-image {
    width: min(var(--ee-shell), calc(100% - 40px));
    margin: 0 auto 18px;
}

.ee-guide-editorial-image img {
    display: block;
    width: 100%;
    max-height: 590px;
    object-fit: contain;
    border: 1px solid var(--ee-line);
    border-radius: 6px;
    background: #f2f6f7;
}

.ee-animation-solution-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 30px;
    gap: 18px;
}

.ee-animation-solution-grid > .wp-block-column {
    padding: 24px;
    border-top: 4px solid var(--ee-teal);
    background: #f4f8f9;
}

.ee-animation-solution-grid > .wp-block-column:nth-child(even) {
    border-top-color: var(--ee-orange);
}

.ee-animation-solution-grid h3 {
    margin-top: 0;
    color: var(--ee-navy);
}

.ee-animation-magic-band {
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    padding: 66px max(20px, calc((100vw - var(--ee-shell)) / 2));
    color: #eff5f7;
    border-block: 1px solid #31566e;
    background: var(--ee-navy-dark);
}

.ee-animation-magic-band h2 {
    color: var(--ee-white);
}

.ee-animation-magic-band .wp-block-button__link {
    color: var(--ee-white);
    border-color: rgba(255, 255, 255, 0.72);
}

.ee-animation-guide__content .wp-block-columns.ee-guide-card-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 30px;
    gap: 14px;
}

.ee-animation-offer-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 30px;
    gap: 18px;
}

.ee-animation-offer {
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--ee-line);
    border-radius: 6px;
    background: var(--ee-white);
}

.ee-animation-offer__media {
    display: grid;
    height: 270px;
    margin: 0;
    place-items: center;
    border-bottom: 1px solid var(--ee-line);
    background: #f2f6f7;
}

.ee-animation-offer__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.ee-animation-offer__body {
    padding: 24px;
}

.ee-animation-offer__label {
    margin: 0 0 7px;
    color: var(--ee-orange-dark);
    font-size: 13px;
    font-weight: 850;
    text-transform: uppercase;
}

.ee-animation-offer h3 {
    margin: 0 0 10px;
    color: var(--ee-navy);
    font-size: 24px;
}

.ee-animation-offer__body > p:not(.ee-animation-offer__label) {
    color: var(--ee-muted);
}

.ee-animation-offer ul {
    margin: 18px 0 0;
    padding: 16px 0 0 20px;
    border-top: 1px solid var(--ee-line);
}

@media (max-width: 980px) {
    .ee-profile-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ee-profile-card,
    .ee-profile-card:nth-child(4),
    .ee-profile-card:nth-child(5),
    .ee-profile-card:last-child:nth-child(odd) {
        grid-column: auto;
    }

    .ee-profile-card:last-child:nth-child(odd) {
        grid-column: 1 / -1;
    }

    .ee-animation-guide__content .wp-block-columns.ee-guide-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 620px) {
    .ee-menu-list .menu-item-has-children > a::after {
        margin-left: auto;
    }

    .ee-animations-intro {
        min-height: 0;
    }

    .ee-animations-hero-proofs,
    .ee-animation-proof-grid,
    .ee-profile-grid,
    .ee-animation-solution-grid,
    .ee-animation-offer-grid,
    .ee-animation-guide__content .wp-block-columns.ee-guide-card-grid {
        grid-template-columns: 1fr;
    }

    .ee-profile-card:last-child:nth-child(odd) {
        grid-column: auto;
    }

    .ee-animations-hero-proofs span {
        padding-top: 14px;
    }

    .ee-animation-proof-grid p {
        border-left-width: 3px;
    }

    .ee-guide-editorial-image,
    .ee-animations-editorial .ee-guide-section,
    .ee-animation-guide__content .ee-guide-section {
        width: min(100% - 26px, var(--ee-shell));
    }

    .ee-animation-offer__media {
        height: 220px;
    }

    .ee-animation-magic-band {
        padding-block: 52px;
    }
}

/* Content media must stay fully visible, whatever the source image ratio. */
.ee-home-service-card .wp-block-image,
.ee-profile-card__media,
.ee-animation-offer__media {
    position: relative;
    display: block;
    overflow: hidden;
}

.ee-home-service-card .wp-block-image img,
.ee-profile-card__media img,
.ee-animation-offer__media img {
    position: absolute;
    inset: 8px;
    display: block;
    width: calc(100% - 16px);
    height: calc(100% - 16px);
    max-width: none;
    max-height: none;
    object-fit: contain;
    object-position: center;
    transform: none;
}

.ee-home-service-card:hover figure img,
.ee-profile-card:hover .ee-profile-card__media img,
.ee-product-card:hover .ee-product-card__image {
    transform: none;
}

.ee-entry__featured {
    display: grid;
    overflow: hidden;
    place-items: center;
    background: var(--ee-soft);
}

.ee-entry__featured img,
.ee-guide-editorial-image img {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 620px;
    margin-right: auto;
    margin-left: auto;
    object-fit: contain;
    object-position: center;
}

/* The four-step component is shared by catalogue and animation pages. */
.ee-site-main .ee-guide-process {
    width: min(var(--ee-shell), calc(100% - 40px)) !important;
    max-width: var(--ee-shell) !important;
    margin-right: auto !important;
    margin-left: auto !important;
    padding: 48px 0;
}

.ee-site-main .ee-guide-process .wp-block-columns.ee-guide-card-grid {
    display: grid !important;
    width: 100% !important;
    max-width: none !important;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin: 30px 0 0 !important;
    gap: 16px;
}

.ee-front-page .wp-block-columns.ee-home-step-grid {
    width: 100% !important;
    max-width: none !important;
}

@media (max-width: 1000px) {
    .ee-site-main .ee-guide-process .wp-block-columns.ee-guide-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 620px) {
    .ee-site-main .ee-guide-process {
        width: calc(100% - 26px) !important;
    }

    .ee-site-main .ee-guide-process .wp-block-columns.ee-guide-card-grid {
        grid-template-columns: 1fr;
    }
}

/* Balanced outer spacing for every editorial four-column block. */
.ee-site-main .ee-guide-process {
    box-sizing: border-box;
    padding: 56px 32px 60px;
}

.ee-front-page .wp-block-columns.ee-home-step-grid {
    width: calc(100% - 48px) !important;
    margin-right: auto !important;
    margin-left: auto !important;
}

.ee-animations-editorial .ee-guide-section,
.ee-animation-guide__content .ee-guide-section {
    width: min(var(--ee-shell), calc(100% - 40px)) !important;
    max-width: var(--ee-shell) !important;
    margin-right: auto !important;
    margin-left: auto !important;
}

.ee-site-main .ee-guide-section:not(.ee-guide-process) .wp-block-columns.ee-guide-card-grid {
    display: grid !important;
    width: calc(100% - 48px) !important;
    max-width: none !important;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    margin: 30px auto 0 !important;
    gap: 18px;
}

@media (max-width: 1000px) {
    .ee-site-main .ee-guide-process {
        padding: 48px 24px 52px;
    }

    .ee-front-page .wp-block-columns.ee-home-step-grid,
    .ee-site-main .ee-guide-section:not(.ee-guide-process) .wp-block-columns.ee-guide-card-grid {
        width: calc(100% - 40px) !important;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 620px) {
    .ee-site-main .ee-guide-process {
        padding: 40px 14px 44px;
    }

    .ee-front-page .wp-block-columns.ee-home-step-grid,
    .ee-site-main .ee-guide-section:not(.ee-guide-process) .wp-block-columns.ee-guide-card-grid {
        width: calc(100% - 28px) !important;
        grid-template-columns: 1fr;
    }
}

/* Keep the homepage variants above the legacy homepage rules in the cascade. */

/* WordPress adds late grid presets to constrained blocks. Keep the editorial
 * grids aligned with their real number of visible cards. */
.ee-site-main .ee-guide-facts {
    width: 100% !important;
    max-width: none !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}

.ee-site-main .ee-animation-proof-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

.ee-site-main .ee-animation-solution-grid,
.ee-site-main .ee-animation-offer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

.ee-site-main .ee-profile-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
}

body.page-template-page-photobooth .ee-site-main .ee-photo-section--uses > .wp-block-columns {
    width: 100% !important;
    max-width: none !important;
}

@media (max-width: 1100px) {
    .ee-site-main .ee-guide-facts {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 980px) {
    .ee-site-main .ee-profile-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 620px) {
    .ee-site-main .ee-guide-facts,
    .ee-site-main .ee-animation-proof-grid,
    .ee-site-main .ee-animation-solution-grid,
    .ee-site-main .ee-animation-offer-grid,
    .ee-site-main .ee-profile-grid {
        grid-template-columns: 1fr !important;
    }
}
.ee-home-hero.ee-home-hero--v2 {
    min-height: 610px;
    padding-block: 76px;
}

.ee-home-hero.ee-home-hero--v2::after {
    background: linear-gradient(90deg, rgba(6, 29, 47, 0.94) 0%, rgba(8, 35, 56, 0.82) 48%, rgba(8, 35, 56, 0.56) 100%);
}

.ee-home-hero.ee-home-hero--v2 h1 {
    max-width: 850px;
    font-size: 54px;
}

.ee-home-catalogue {
    border: 0;
    background: #fff;
}

.ee-home-reviews.ee-home-reviews--v2 {
    color: #eef6f7;
    border: 0;
    background: var(--ee-navy);
}

.ee-home-final.ee-home-final--v2 {
    color: #fff;
    background: var(--ee-navy-dark);
}

.ee-home-final.ee-home-final--v2 h2,
.ee-home-final.ee-home-final--v2 p,
.ee-home-final.ee-home-final--v2 a {
    color: #fff;
}

.ee-home-topic-links .ee-home-topic-links__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px 20px;
}

.ee-home-topic-links .ee-home-topic-links__grid a {
    display: block;
}

@media (max-width: 700px) {
    .ee-home-topic-links .ee-home-topic-links__grid {
        grid-template-columns: 1fr;
    }

    .ee-home-hero.ee-home-hero--v2 {
        min-height: 560px;
        padding-block: 56px;
    }

    .ee-home-hero.ee-home-hero--v2::after {
        background: rgba(7, 31, 50, 0.8);
    }

    .ee-home-hero.ee-home-hero--v2 h1 {
        font-size: 36px;
    }
}

/* Homepage catalogue navigation and consistent desktop content widths. */
.ee-home-families {
    scroll-margin-top: 118px;
    border-top: 1px solid #d9e4e6;
    border-bottom: 1px solid #d9e4e6;
    background: #edf4f3;
}

.ee-home-family-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 34px;
    gap: 22px;
}

.ee-home-family-card {
    display: flex;
    min-width: 0;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid #cfdcdf;
    border-top: 4px solid var(--ee-orange);
    border-radius: 6px;
    color: var(--ee-navy-dark);
    background: #fff;
    box-shadow: 0 9px 24px rgba(18, 59, 93, 0.07);
    text-decoration: none;
    transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.ee-home-family-card:nth-child(3n + 2) {
    border-top-color: var(--ee-teal);
}

.ee-home-family-card:nth-child(3n) {
    border-top-color: var(--ee-navy);
}

.ee-home-family-card:hover,
.ee-home-family-card:focus-visible {
    border-color: #aebfc4;
    box-shadow: 0 14px 30px rgba(18, 59, 93, 0.13);
    transform: translateY(-2px);
}

.ee-home-family-card__media {
    display: grid;
    width: 100%;
    aspect-ratio: 16 / 10;
    place-items: center;
    overflow: hidden;
    border-bottom: 1px solid #d9e4e6;
    background: #f4f7f7;
}

.ee-home-family-card__media img {
    display: block;
    width: 100%;
    height: 100%;
    padding: 8px;
    object-fit: contain;
    object-position: center;
}

.ee-home-family-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 21px 22px 24px;
}

.ee-home-family-card__body small {
    margin-bottom: 7px;
    color: #25736b;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.ee-home-family-card__body strong {
    font-size: 23px;
    line-height: 1.18;
}

.ee-home-family-card__body > span {
    margin-top: 11px;
    color: var(--ee-muted);
    line-height: 1.55;
}

.ee-home-reviews.ee-home-reviews--v2 {
    color: var(--ee-text);
    border-top: 1px solid #d6e1e3;
    border-bottom: 1px solid #d6e1e3;
    background: #f1f6f5;
}

.ee-home-reviews.ee-home-reviews--v2 h2 {
    color: var(--ee-navy-dark);
}

.ee-home-reviews.ee-home-reviews--v2 .ee-home-eyebrow {
    color: #25736b;
}

.ee-google-reviews-widget {
    width: 100%;
    margin-top: 32px;
    color: var(--ee-text);
}

.ee-google-reviews-fallback {
    margin-top: 30px;
    padding: 28px;
    border: 1px solid #cddadd;
    border-radius: 6px;
    text-align: center;
    background: #fff;
}

.ee-google-reviews-fallback__stars {
    margin: 0 0 10px;
    color: #f28a21;
    font-size: 28px;
    letter-spacing: 0;
}

.ee-google-reviews-fallback p:last-child {
    margin-bottom: 0;
}

@media (min-width: 981px) {
    .ee-front-page .ee-entry__content > .ee-home-section > .alignwide,
    .ee-front-page .ee-home-pathways > .alignwide,
    .ee-front-page .ee-home-families > .alignwide,
    .ee-front-page .ee-home-catalogue > .alignwide,
    .ee-front-page .ee-home-steps > .alignwide,
    .ee-front-page .ee-home-story > .alignwide,
    .ee-front-page .ee-home-seo > .alignwide,
    .ee-front-page .ee-home-local > .alignwide,
    .ee-front-page .ee-home-faq > .alignwide,
    .ee-front-page .ee-home-reviews > .alignwide,
    .ee-front-page .ee-home-final > .alignwide,
    .ee-catalogue-guide__content > .ee-guide-editorial-image {
        width: min(var(--ee-shell), calc(100% - 64px)) !important;
        max-width: var(--ee-shell) !important;
        margin-right: auto !important;
        margin-left: auto !important;
    }

    .ee-front-page .wp-block-columns.ee-home-pathway-grid,
    .ee-front-page .ee-home-family-grid,
    .ee-front-page .ee-home-catalogue .ee-auto-catalogue,
    .ee-front-page .ee-home-catalogue .ee-product-grid,
    .ee-front-page .wp-block-columns.ee-home-local__grid {
        width: 100% !important;
        max-width: none !important;
    }

    .ee-site-main .ee-guide-section > .alignwide,
    .ee-site-main .ee-guide-section .ee-auto-catalogue,
    .ee-site-main .ee-guide-section .ee-product-grid,
    .ee-site-main .ee-guide-section .ee-animation-solution-grid,
    .ee-site-main .ee-guide-section .ee-animation-offer-grid,
    .ee-site-main .ee-guide-section .ee-animation-proof-grid {
        width: 100% !important;
        max-width: none !important;
        margin-right: auto !important;
        margin-left: auto !important;
    }
}

.ee-home-final.ee-home-final--v2 .wp-block-button.is-style-outline .wp-block-button__link {
    color: var(--ee-navy-dark) !important;
    border-color: #ffc078;
    background: #ffad4f;
}

.ee-home-final.ee-home-final--v2 .wp-block-button.is-style-outline .wp-block-button__link:hover {
    color: var(--ee-white) !important;
    border-color: var(--ee-teal);
    background: var(--ee-teal);
}

@media (max-width: 980px) {
    .ee-home-family-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .ee-home-families {
        scroll-margin-top: 86px;
    }

    .ee-home-family-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .ee-home-family-card__media {
        aspect-ratio: 16 / 9;
    }

    .ee-home-family-card__body {
        padding: 19px 20px 22px;
    }
}

/* Contrat de largeur commun aux pages éditoriales. */
@media (min-width: 981px) {
    .ee-page-shell,
    .ee-product-shell,
    .ee-catalogue-guide__content > .ee-guide-section,
    .ee-animation-guide__content > .ee-guide-section,
    .ee-animations-editorial .ee-entry__content > .ee-guide-section,
    .ee-site-main .ee-guide-process,
    .ee-site-main .ee-guide-final {
        width: min(var(--ee-shell), calc(100% - 64px)) !important;
        max-width: var(--ee-shell) !important;
        margin-right: auto !important;
        margin-left: auto !important;
    }

    .ee-page-shell .ee-entry__header,
    .ee-page-shell .ee-entry__content > :where(:not(.alignfull)),
    .ee-site-main .ee-guide-section.is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)),
    .ee-site-main .ee-guide-final.is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)) {
        width: 100% !important;
        max-width: none !important;
        margin-right: 0 !important;
        margin-left: 0 !important;
    }

    .ee-site-main .ee-guide-section h2,
    .ee-site-main .ee-guide-section .ee-guide-lead,
    .ee-site-main .ee-guide-introduction > p:not(.ee-guide-kicker),
    .ee-site-main .ee-fort-packs > p:not(.ee-guide-kicker),
    .ee-site-main .ee-guide-process > p,
    .ee-site-main .ee-guide-process > h2 {
        max-width: none !important;
    }

    .ee-animations-editorial .ee-product-shell > .ee-guide-section {
        width: 100% !important;
        max-width: none !important;
    }
}

/* Mobile homepage hero: preserve the complete panoramic banner. */
@media (max-width: 700px) {
    .ee-home-hero.ee-home-hero--v2 {
        display: flex;
        min-height: 0;
        flex-direction: column;
        align-items: stretch;
        padding: 0 0 52px;
        background: var(--ee-navy-dark);
    }

    .ee-home-hero.ee-home-hero--v2::after {
        display: none;
    }

    .ee-home-hero.ee-home-hero--v2 .ee-home-hero__media {
        position: relative;
        inset: auto;
        z-index: 0;
        width: 100%;
        height: auto;
        aspect-ratio: 487 / 209;
        flex: 0 0 auto;
        overflow: hidden;
        border-bottom: 4px solid var(--ee-orange);
        background: #dfe8eb;
    }

    .ee-home-hero.ee-home-hero--v2 .ee-home-hero__media img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center;
    }

    .ee-home-hero.ee-home-hero--v2 .ee-home-hero__inner {
        z-index: 1;
        padding-top: 40px;
    }
}

/* Desktop homepage hero: lighten only the left side of the overlay. */
@media (min-width: 701px) {
    .ee-home-hero.ee-home-hero--v2::after {
        background: linear-gradient(90deg, rgba(6, 29, 47, 0.68) 0%, rgba(8, 35, 56, 0.72) 36%, rgba(8, 35, 56, 0.7) 48%, rgba(8, 35, 56, 0.56) 100%);
    }

    .ee-home-hero.ee-home-hero--v2 :is(.ee-home-eyebrow, h1, .ee-home-hero__lead, .ee-home-hero__facts) {
        text-shadow: 0 2px 12px rgba(0, 0, 0, 0.62);
    }
}

/* Homepage first impression: one calm, warm hierarchy from contact to guide. */
body.home .ee-service-bar,
body.page-template-page-home .ee-service-bar {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: #082840;
}

body.home .ee-service-bar__promise,
body.page-template-page-home .ee-service-bar__promise {
    color: #d6e2e7;
    font-size: 12px;
    font-weight: 650;
}

body.home .ee-site-header,
body.page-template-page-home .ee-site-header {
    border-bottom: 0;
    box-shadow: 0 8px 28px rgba(8, 40, 64, 0.08);
}

body.home .ee-site-header__inner,
body.page-template-page-home .ee-site-header__inner {
    min-height: 76px;
}

body.home .ee-menu-list a,
body.home .ee-primary-nav .menu a,
body.page-template-page-home .ee-menu-list a,
body.page-template-page-home .ee-primary-nav .menu a {
    font-weight: 700;
}

.ee-site-main .ee-front-page .ee-home-hero.ee-home-hero--v2 {
    min-height: 520px;
    padding-block: 44px;
}

.ee-home-hero.ee-home-hero--v2 .ee-home-hero__inner {
    padding-right: 0;
}

.ee-home-hero.ee-home-hero--v2 .ee-home-eyebrow {
    margin-bottom: 14px;
    color: #ffc47f;
    font-size: 13px;
    letter-spacing: 0;
    text-transform: none;
}

.ee-home-hero.ee-home-hero--v2 .ee-home-hero__lead {
    max-width: 650px;
    margin-top: 18px;
    color: #f5f8fa;
    font-size: 19px;
    line-height: 1.48;
}

.ee-home-hero.ee-home-hero--v2 .ee-home-hero__buttons {
    margin-top: 22px;
    gap: 12px;
}

.ee-home-hero.ee-home-hero--v2 .wp-block-button__link {
    min-height: 50px;
    padding: 12px 19px;
    border-radius: 6px;
}

.ee-home-hero.ee-home-hero--v2 .ee-home-hero__facts {
    margin-top: 24px;
    gap: 10px 24px;
}

.ee-home-hero.ee-home-hero--v2 .ee-home-hero__facts p {
    font-size: 13px;
    font-weight: 700;
}

@media (min-width: 981px) {
    body.home .ee-service-bar__phone strong,
    body.page-template-page-home .ee-service-bar__phone strong {
        font-size: 15px;
        font-weight: 850;
    }

    body.home .ee-service-bar__email,
    body.page-template-page-home .ee-service-bar__email {
        opacity: 0.78;
    }

    body.home .ee-service-bar__email strong,
    body.page-template-page-home .ee-service-bar__email strong {
        color: #d9e5eb;
        font-size: 12.5px;
        font-weight: 650;
    }

    body.home .ee-service-bar__quote,
    body.page-template-page-home .ee-service-bar__quote {
        padding: 6px 11px;
        border: 1px solid rgba(255, 255, 255, 0.34);
        color: #fff !important;
        background: transparent;
        font-size: 13px;
    }

    body.home .ee-service-bar__quote:hover,
    body.home .ee-service-bar__quote:focus-visible,
    body.page-template-page-home .ee-service-bar__quote:hover,
    body.page-template-page-home .ee-service-bar__quote:focus-visible {
        border-color: #ffbd70;
        color: var(--ee-navy-dark) !important;
        background: #ffbd70;
    }
}

@media (min-width: 701px) {
    .ee-home-hero.ee-home-hero--v2::after {
        background: linear-gradient(
            90deg,
            rgba(6, 29, 47, 0.84) 0%,
            rgba(7, 32, 51, 0.76) 31%,
            rgba(8, 35, 56, 0.44) 50%,
            rgba(8, 35, 56, 0.12) 69%,
            rgba(8, 35, 56, 0.02) 100%
        );
    }

    .ee-site-main .ee-front-page .ee-home-hero.ee-home-hero--v2 h1 {
        max-width: 660px;
        font-size: 46px;
        line-height: 1.08;
        text-wrap: balance;
    }
}

@media (max-width: 700px) {
    body.home .ee-service-bar__phone strong,
    body.page-template-page-home .ee-service-bar__phone strong {
        font-size: 13px;
        font-weight: 850;
    }

    body.home .ee-service-bar__email,
    body.page-template-page-home .ee-service-bar__email {
        opacity: 0.76;
    }

    body.home .ee-service-bar__email strong,
    body.page-template-page-home .ee-service-bar__email strong {
        font-size: 11px;
        font-weight: 650;
    }

    .ee-site-main .ee-front-page .ee-home-hero.ee-home-hero--v2 {
        min-height: 0;
        padding: 0 0 16px;
    }

    .ee-home-hero.ee-home-hero--v2 .ee-home-hero__media {
        aspect-ratio: 13 / 5;
        border-bottom-width: 3px;
    }

    .ee-home-hero.ee-home-hero--v2 .ee-home-hero__inner {
        padding-top: 18px;
        padding-right: 0;
    }

    .ee-site-main .ee-front-page .ee-home-hero.ee-home-hero--v2 h1 {
        max-width: 340px;
        font-size: 28px;
        line-height: 1.1;
        text-wrap: balance;
    }

    .ee-home-hero.ee-home-hero--v2 .ee-home-hero__lead {
        margin-top: 12px;
        font-size: 16px;
        line-height: 1.42;
    }

    .ee-home-hero.ee-home-hero--v2 .ee-home-hero__buttons {
        align-items: stretch;
        margin-top: 16px;
        gap: 4px;
    }

    .ee-home-hero.ee-home-hero--v2 .ee-home-hero__buttons .wp-block-button,
    .ee-home-hero.ee-home-hero--v2 .ee-home-hero__buttons .wp-block-button__link {
        width: 100%;
    }

    .ee-home-hero.ee-home-hero--v2 .ee-home-hero__buttons .wp-block-button__link {
        justify-content: center;
    }

    .ee-home-hero.ee-home-hero--v2 .ee-home-hero__buttons .is-style-outline .wp-block-button__link {
        min-height: 32px;
        padding-block: 5px;
        border-color: transparent;
        text-decoration: underline;
        text-underline-offset: 4px;
    }

    .ee-home-hero.ee-home-hero--v2 .ee-home-hero__facts {
        margin-top: 12px;
        gap: 6px 14px;
    }

    .ee-home-hero.ee-home-hero--v2 .ee-home-hero__facts p {
        font-size: 11px;
    }
}
/* Formulaire de contact et devis en deux étapes. */
.ee-quote-content .ee-quote-wizard__progress {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    margin: 30px 0 42px;
    padding: 0;
    border-bottom: 1px solid var(--ee-line);
    list-style: none;
}

.ee-quote-wizard__progress-button {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 0 12px 15px 0;
    border: 0;
    color: var(--ee-muted);
    background: transparent;
    font: inherit;
    font-weight: 750;
    text-align: left;
}

.ee-quote-wizard__progress-button::after {
    position: absolute;
    right: 0;
    bottom: -2px;
    left: 0;
    height: 3px;
    background: transparent;
    content: "";
}

.ee-quote-wizard__progress-button:disabled {
    cursor: default;
    opacity: 0.65;
}

.ee-quote-wizard__progress-item.is-active .ee-quote-wizard__progress-button {
    color: var(--ee-navy);
}

.ee-quote-wizard__progress-item.is-active .ee-quote-wizard__progress-button::after {
    background: var(--ee-orange);
}

.ee-quote-wizard__progress-number {
    display: inline-grid;
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 50%;
    color: var(--ee-white);
    background: var(--ee-teal);
    font-size: 13px;
    font-weight: 850;
}

.ee-quote-step[hidden] {
    display: none !important;
}

.ee-quote-content .ee-quote-step__heading {
    margin-bottom: 30px;
}

.ee-quote-content .ee-quote-step__heading h2 {
    margin: 0 0 10px;
    font-size: 34px;
}

.ee-quote-step__eyebrow {
    margin: 0 0 7px;
    color: var(--ee-teal);
    font-size: 13px;
    font-weight: 850;
    text-transform: uppercase;
}

.ee-quote-step__intro {
    max-width: 650px;
    margin: 0;
    color: var(--ee-muted);
    font-size: 17px;
}

.ee-quote-content .ee-quote-step > .ff-el-group,
.ee-quote-content .ee-quote-step > .ff-field_container {
    max-width: 720px;
}

.ee-quote-content .ee-quote-step .ff-el-input--label label {
    font-size: 16px;
}

.ee-quote-content .ee-quote-step .ff-el-form-check {
    margin: 0;
}

.ee-quote-content .ee-quote-step .ff-el-form-check label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 11px 13px;
    border: 1px solid var(--ee-line);
    border-radius: 4px;
    background: #f8fbfc;
}

.ee-quote-content .ee-quote-step .ff-el-form-check + .ff-el-form-check {
    margin-top: 8px;
}

.ee-quote-content .ee-quote-step .ff-el-form-check input {
    flex: 0 0 auto;
    margin-top: 3px;
}

.ee-quote-options {
    max-width: 720px;
    margin: 28px 0 0;
    border-top: 1px solid var(--ee-line);
    border-bottom: 1px solid var(--ee-line);
}

.ee-quote-options__summary {
    position: relative;
    padding: 17px 38px 17px 0;
    color: var(--ee-navy);
    cursor: pointer;
    font-weight: 800;
    list-style: none;
}

.ee-quote-options__summary::-webkit-details-marker {
    display: none;
}

.ee-quote-options__summary::after {
    position: absolute;
    top: 50%;
    right: 4px;
    content: "+";
    font-size: 24px;
    line-height: 1;
    transform: translateY(-50%);
}

.ee-quote-options[open] .ee-quote-options__summary::after {
    content: "−";
}

.ee-quote-options__body {
    padding: 6px 0 4px;
}

.ee-quote-wizard__actions {
    display: flex;
    align-items: center;
    gap: 14px;
    max-width: 720px;
    margin-top: 32px;
}

.ee-quote-wizard__actions .ee-button,
.ee-quote-wizard__actions .ff-btn-submit {
    min-height: 52px;
}

.ee-quote-wizard__actions--submit .ff_submit_btn_wrapper {
    margin: 0;
}

.ee-quote-field-error {
    margin-top: 7px;
    color: #9d2e23;
    font-size: 14px;
    font-weight: 700;
}

.ee-quote-content .has-ee-error .ff-el-form-control {
    border-color: #b33a2e;
    box-shadow: 0 0 0 2px rgba(179, 58, 46, 0.12);
}

@media (max-width: 620px) {
    .ee-quote-content .ee-quote-wizard__progress {
        margin: 24px 0 32px;
    }

    .ee-quote-wizard__progress-label {
        font-size: 13px;
        line-height: 1.2;
    }

    .ee-quote-wizard__progress-number {
        flex-basis: 30px;
        width: 30px;
        height: 30px;
    }

    .ee-quote-content .ee-quote-step__heading h2 {
        font-size: 29px;
    }

    .ee-quote-step__intro {
        font-size: 16px;
    }

    .ee-quote-wizard__actions {
        align-items: stretch;
        flex-direction: column-reverse;
    }

    .ee-quote-wizard__actions .ee-button,
    .ee-quote-wizard__actions .ff_submit_btn_wrapper,
    .ee-quote-wizard__actions .ff-btn-submit {
        width: 100%;
    }

    .ee-quote-wizard__next {
        order: -1;
    }
}

/* Accueil : respecter les visuels carrés des rubriques et agrandir la sélection. */
.ee-front-page .ee-home-family-card__media {
    aspect-ratio: 1 / 1;
    padding: 12px;
    border-bottom: 0;
}

.ee-front-page .ee-home-family-card__media img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    padding: 0;
    border-radius: 6px;
    object-fit: contain;
}

.ee-front-page .ee-home-family-card__body {
    border-top: 1px solid #d9e4e6;
}

@media (min-width: 981px) {
    .ee-front-page .ee-home-catalogue .ee-product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 22px;
    }
}

@media (min-width: 761px) {
    .ee-front-page .ee-home-catalogue .ee-product-card {
        grid-template-rows: auto 1fr;
    }

    .ee-front-page .ee-home-catalogue .ee-product-card__media {
        width: 100%;
        height: auto;
        aspect-ratio: 4 / 3;
        padding: 12px;
    }

    .ee-front-page .ee-home-catalogue .ee-product-card__image {
        inset: 12px;
        width: calc(100% - 24px);
        height: calc(100% - 24px);
    }
}

/* Accueil mobile : les univers restent un choix rapide, pas un second catalogue. */
@media (max-width: 700px) {
    .ee-front-page .ee-home-families {
        padding-block: 42px;
    }

    .ee-front-page .ee-home-families .ee-home-section__intro {
        margin-top: 12px;
        font-size: 15px;
        line-height: 1.5;
    }

    .ee-front-page .ee-home-family-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin-top: 22px;
        gap: 10px;
    }

    .ee-front-page .ee-home-family-card {
        border-top-width: 3px;
        box-shadow: 0 5px 16px rgba(18, 59, 93, 0.055);
    }

    .ee-front-page .ee-home-family-card__media {
        aspect-ratio: 4 / 3;
        padding: 7px;
        background: #f3f7f7;
    }

    .ee-front-page .ee-home-family-card__media img {
        width: 100%;
        height: 100%;
        aspect-ratio: auto;
        border-radius: 4px;
        object-fit: contain;
    }

    .ee-front-page .ee-home-family-card__body {
        min-height: 116px;
        padding: 12px 11px 14px;
    }

    .ee-front-page .ee-home-family-card__body small {
        margin-bottom: 4px;
        font-size: 10px;
        line-height: 1.2;
    }

    .ee-front-page .ee-home-family-card__body strong {
        font-size: 15px;
        line-height: 1.22;
    }

    .ee-front-page .ee-home-family-card__body > span {
        display: -webkit-box;
        margin-top: 6px;
        overflow: hidden;
        color: #5b6f79;
        font-size: 12px;
        line-height: 1.35;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
    }
}

/* Keep the comparison heading aligned with its full-width section. */
.ee-theme-v2 #comparatif-bornes > h2 {
    width: 100%;
    max-width: none !important;
    text-wrap: balance;
    word-break: normal;
    overflow-wrap: normal;
}

/* Mobile navigation enhancement. The unenhanced menu keeps its existing no-JS fallback. */
.ee-submenu-toggle,
.ee-header-quote-link {
    display: none;
}

@media (max-width: 980px) {
    .ee-menu-toggle {
        display: none;
    }

    .ee-navigation-panel {
        display: grid;
        grid-template-columns: 1fr;
        gap: 18px;
        max-height: var(--ee-navigation-available-height, calc(100dvh - 72px));
        overflow-x: hidden;
        overscroll-behavior: contain;
    }

    html:not(.ee-navigation-ready) .ee-site-header {
        position: static;
        top: auto;
    }

    html:not(.ee-navigation-ready) .ee-site-header__inner {
        align-items: start;
    }

    html:not(.ee-navigation-ready) .ee-navigation-panel {
        position: static;
        top: auto;
        right: auto;
        left: auto;
        grid-column: 1 / -1;
        width: 100%;
        max-height: none;
        overflow: visible;
        overscroll-behavior: auto;
        box-shadow: none;
    }

    html.ee-navigation-ready .ee-menu-toggle {
        display: inline-flex;
    }

    html.ee-navigation-ready .ee-navigation-panel {
        display: none;
    }

    html.ee-navigation-ready .ee-navigation-panel.is-open {
        display: grid;
    }

    .ee-navigation--enhanced .ee-menu-list > .menu-item-has-children,
    .ee-navigation--enhanced .ee-menu-list > .page_item_has_children,
    .ee-navigation--enhanced .ee-primary-nav > .menu > .menu-item-has-children,
    .ee-navigation--enhanced .ee-primary-nav > .menu > .page_item_has_children {
        display: grid;
        grid-template-columns: minmax(0, 1fr) 46px;
        align-items: center;
    }

    .ee-navigation--enhanced .ee-menu-list > .menu-item-has-children > .sub-menu,
    .ee-navigation--enhanced .ee-menu-list > .page_item_has_children > .children,
    .ee-navigation--enhanced .ee-primary-nav > .menu > .menu-item-has-children > .sub-menu,
    .ee-navigation--enhanced .ee-primary-nav > .menu > .page_item_has_children > .children {
        grid-column: 1 / -1;
        width: 100%;
        min-width: 0;
        max-width: 100%;
        box-sizing: border-box;
    }

    .ee-navigation-panel .ee-menu-list .sub-menu,
    .ee-navigation-panel .ee-primary-nav .menu .children {
        width: 100%;
        min-width: 0;
        max-width: 100%;
        box-sizing: border-box;
    }

    html.ee-navigation-ready .ee-navigation--enhanced .ee-menu-list > .menu-item-has-children > a::after,
    html.ee-navigation-ready .ee-navigation--enhanced .ee-menu-list > .page_item_has_children > a::after,
    html.ee-navigation-ready .ee-navigation--enhanced .ee-primary-nav > .menu > .menu-item-has-children > a::after,
    html.ee-navigation-ready .ee-navigation--enhanced .ee-primary-nav > .menu > .page_item_has_children > a::after {
        display: none;
        content: none;
    }

    .ee-navigation--enhanced .ee-primary-nav .sub-menu[hidden],
    .ee-navigation--enhanced .ee-primary-nav .children[hidden] {
        display: none !important;
        visibility: hidden;
        opacity: 0;
    }

    .ee-navigation--enhanced .ee-submenu-toggle {
        display: inline-grid;
        width: 44px;
        min-width: 44px;
        height: 44px;
        padding: 0;
        place-items: center;
        justify-self: end;
        border: 1px solid transparent;
        border-radius: 4px;
        color: var(--ee-navy);
        background: transparent;
        cursor: pointer;
    }

    .ee-navigation--enhanced .ee-submenu-toggle::before {
        width: 9px;
        height: 9px;
        content: '';
        border-right: 2px solid currentColor;
        border-bottom: 2px solid currentColor;
        transform: translateY(-2px) rotate(45deg);
        transition: transform 160ms ease;
    }

    .ee-navigation--enhanced .ee-submenu-toggle[aria-expanded="true"]::before {
        transform: translateY(2px) rotate(225deg);
    }

    .ee-navigation--enhanced .ee-submenu-toggle:hover {
        background: var(--ee-soft);
    }

    .ee-navigation--enhanced .ee-submenu-toggle:focus-visible {
        outline: 3px solid var(--ee-orange);
        outline-offset: 1px;
    }

    .ee-header-actions {
        width: 100%;
    }

    .ee-header-quote-link {
        display: inline-flex;
        min-height: 46px;
        align-items: center;
        justify-content: center;
        padding: 10px 15px;
        border: 1px solid var(--ee-navy);
        border-radius: var(--ee-radius);
        color: var(--ee-white);
        background: var(--ee-navy);
        font-size: 14px;
        font-weight: 750;
        text-decoration: none;
    }

    .ee-header-quote-link:hover,
    .ee-header-quote-link:focus-visible {
        color: var(--ee-white);
        background: var(--ee-navy-dark);
    }

    .ee-header-quote-link:focus-visible {
        outline: 3px solid var(--ee-orange);
        outline-offset: 2px;
    }

    html.ee-menu-open .ee-selection-float,
    html.ee-menu-open .ee-product-mobile-action {
        visibility: hidden;
        opacity: 0;
        pointer-events: none;
    }
}

@media (max-width: 480px) {
    .ee-header-actions {
        grid-template-columns: 1fr;
    }
}
