

:root {
    --wfs-text: #424752;
    --wfs-dark: #1B1C1C;
    --wfs-primary: #0A5AAF;
    --wfs-white: #ffffff;
    --wfs-border: #e4e6ea;
    --wfs-card-border: #dcdfe4;
    --wfs-red: #FF0000;
}


.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.wfs-third-party-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 24px;
    background: #f2f4f7;
    color: var(--wfs-text);
    text-align: center;
}

.wfs-third-party-placeholder[hidden] {
    display: none;
}

.wfs-third-party-placeholder p {
    margin: 0;
    max-width: 420px;
    line-height: 1.5;
}

.wfs-third-party-placeholder button {
    border: 1px solid var(--wfs-primary);
    border-radius: 6px;
    padding: 9px 16px;
    background: var(--wfs-white);
    color: var(--wfs-primary);
    cursor: pointer;
    font: inherit;
    font-weight: 600;
}

form textarea {
    resize: none;
}


.skip-link {
    position: absolute;
    top: -9999px;
    left: -9999px;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

.skip-link:focus {
    position: fixed;
    top: 10px;
    left: 10px;
    width: auto;
    height: auto;
    padding: 10px 15px;
    background: var(--wfs-primary);
    color: var(--wfs-white);
    font-weight: bold;
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 99999;
}


main#contenu-principal {
    max-width: none;
    margin: 0;
    padding: 0;
}


.wfs-breadcrumb {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 20px 32px 6px;
    align-self: flex-start;
}

.wfs-breadcrumb__list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    margin: 0;
    padding: 0;
    font-size: 0.875rem;
    color: var(--wfs-text);
}

.wfs-breadcrumb__list li:not(:last-child)::after {
    content: "›";
    margin-left: 6px;
    color: #9aa0aa;
}

.wfs-breadcrumb a {
    color: var(--wfs-text);
    text-decoration: none;
}

.wfs-breadcrumb a:hover {
    color: var(--wfs-primary);
    text-decoration: underline;
}

.wfs-breadcrumb__current {
    color: var(--wfs-primary);
    font-weight: 600;
}


.wfs-page-intro {
    max-width: 1440px;
    margin: 0 auto;
    padding: 8px 32px 24px;
}

.wfs-page-intro h1 {
    margin: 0 0 8px;
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--wfs-dark);
}

.wfs-page-intro p {
    max-width: 760px;
    color: var(--wfs-text);
    line-height: 1.6;
}


.wfs-product-card-link,
.wfs-modele-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: transform 0.25s ease;
}

.wfs-product-card-link:hover,
.wfs-modele-card-link:hover {
    transform: translateY(-4px);
}

.wfs-product-card-link:hover .wfs-product-card,
.wfs-modele-card-link:hover .wfs-modele-card {
    box-shadow: 0 12px 28px rgba(27, 28, 28, 0.12);
}

.wfs-product-card-link:focus-visible,
.wfs-modele-card-link:focus-visible {
    outline: 2px solid var(--wfs-primary);
    outline-offset: 4px;
    border-radius: 8px;
}

.wfs-product-card:hover,
.wfs-modele-card:hover {
    transform: none;
}


@media (max-width: 768px) {
    .wfs-breadcrumb,
    .wfs-page-intro {
        padding-left: 16px;
        padding-right: 16px;
    }

    .wfs-page-intro h1 {
        font-size: 1.75rem;
    }
}

@media (max-width: 576px) {
    .wfs-breadcrumb__list {
        font-size: 0.8rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .wfs-product-card-link,
    .wfs-modele-card-link {
        transition: none;
    }

    .wfs-product-card-link:hover,
    .wfs-modele-card-link:hover {
        transform: none;
    }
}