:root {
    --ps-black: #121212;
    --ps-dark: #181818;
    --ps-card: #1f1f1f;
    --ps-red: #d50000;
    --ps-red-dark: #8b0000;
    --ps-white: #ffffff;
    --ps-text: #e5e5e5;
    --ps-muted: #b5b5b5;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    font-family: "Segoe UI", Arial, sans-serif;
    background: var(--ps-black);
    color: var(--ps-text);
    line-height: 1.6;
}

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

a {
    color: inherit;
    text-decoration: none;
}

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

.ps-container {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 40px;
}

/* HEADER */

.ps-site-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(18, 18, 18, 0.97);
    border-bottom: 2px solid var(--ps-red);
    backdrop-filter: blur(12px);
}

.ps-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 55px;
    padding: 18px 0;
}

.ps-logo-link {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.ps-logo {
    display: block;
    width: 190px;
    height: auto;
    object-fit: contain;
}

.ps-main-nav {
    display: flex;
    align-items: center;
    gap: 48px;
    font-size: 18px;
    font-weight: 800;
}

.ps-main-nav a {
    position: relative;
    color: var(--ps-white);
    text-decoration: none;
    padding: 10px 0;
    transition: color 0.25s ease, transform 0.25s ease;
}

.ps-main-nav a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--ps-white);
    transform: translateX(-50%);
    transition: width 0.28s ease;
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.8);
}

.ps-main-nav a:hover {
    color: red;
    transform: translateY(-2px);
}

.ps-header-phone {
    margin-left: 20px;
}

#avantages,
#tarifs,
#certifications,
#contact {
    scroll-margin-top: 150px;
}

.ps-main-nav a:hover::after {
    width: 100%;
}

.ps-header-actions {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-shrink: 0;
}

.ps-header-login,
.ps-header-cart {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 22px;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.25s ease;
}

.ps-header-login {
    color: var(--ps-white);
    border: 2px solid var(--ps-red);
    background: transparent;
}

.ps-header-login:hover {
    color: var(--ps-black);
    background: var(--ps-white);
    transform: translateY(-2px);
}

.ps-header-cart {
    color: var(--ps-white);
    background: var(--ps-red);
    box-shadow: 0 0 18px rgba(213, 0, 0, 0.35);
}

.ps-header-cart:hover {
    background: #ff1a1a;
    transform: translateY(-2px);
    box-shadow: 0 0 28px rgba(213, 0, 0, 0.6);
}

.ps-header-phone {
    color: var(--ps-white);
    font-size: 22px;
    font-weight: 900;
    white-space: nowrap;
    transition: color 0.25s ease, transform 0.25s ease;
}

.ps-header-phone:hover {
    color: var(--ps-red);
    transform: translateY(-2px);
}

/* ==========================================================
   PURESCREEN - MENU DÉROULANT MON COMPTE
========================================================== */

.ps-header-account-menu {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.ps-header-account-menu .ps-header-login {
    gap: 9px;
}

.ps-header-account-chevron {
    font-size: 10px;
    transition: transform .25s ease;
}

.ps-header-account-menu:has(.ps-header-account-dropdown.is-open)
.ps-header-account-chevron {
    transform: rotate(180deg);
}


/* ==========================================================
   DROPDOWN
========================================================== */

.ps-header-account-dropdown {
    position: absolute;
    top: calc(100% + 14px);
    right: 0;

    z-index: 10050;

    width: 255px;

    padding: 9px;

    background: #181818;

    border: 1px solid #3a3a3a;
    border-radius: 10px;

    box-shadow:
        0 20px 45px rgba(0, 0, 0, .65),
        0 0 20px rgba(213, 0, 0, .08);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transform: translateY(8px);

    transition:
        opacity .2s ease,
        visibility .2s ease,
        transform .2s ease;
}

.ps-header-account-dropdown.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;

    transform: translateY(0);
}


/* Petite flèche au-dessus */

.ps-header-account-dropdown::before {
    content: "";

    position: absolute;
    top: -7px;
    right: 34px;

    width: 13px;
    height: 13px;

    background: #181818;

    border-top: 1px solid #3a3a3a;
    border-left: 1px solid #3a3a3a;

    transform: rotate(45deg);
}


/* ==========================================================
   LIENS
========================================================== */

.ps-header-account-dropdown > a {
    position: relative;

    display: flex;
    align-items: center;

    gap: 12px;

    min-height: 45px;

    padding: 9px 12px;

    border-radius: 6px;

    color: #dddddd;

    font-size: 12px;
    font-weight: 800;

    transition:
        color .2s ease,
        background .2s ease,
        transform .2s ease;
}

.ps-header-account-dropdown > a:hover {
    background: #242424;

    color: #ffffff;

    transform: translateX(3px);
}

.ps-header-account-dropdown > a i {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 20px;

    color: var(--ps-red);

    font-size: 13px;
}


/* ==========================================================
   DÉCONNEXION
========================================================== */

.ps-header-account-dropdown
.ps-header-account-logout {
    margin-top: 7px;
    padding-top: 12px;

    border-top: 1px solid #333333;
    border-radius: 0 0 6px 6px;

    color: #ff6565;
}

.ps-header-account-dropdown
.ps-header-account-logout i {
    color: #ff0000;
}

.ps-header-account-dropdown
.ps-header-account-logout:hover {
    background: rgba(213, 0, 0, .10);

    color: #ff0000;
}


/* ==========================================================
   PURESCREEN - BOUTON MENU MOBILE
========================================================== */

.ps-mobile-menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 9px;
    width: auto;
    min-height: 44px;
    padding: 0 20px;
    border: 2px solid var(--ps-red);
    border-radius: 6px;
    background: #111111;
    color: #ffffff;
    font-family: inherit;
    font-size: 14px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: .5px;
    text-transform: uppercase;
    cursor: pointer;
    transition:
        border-color .25s ease,
        background .25s ease,
        color .25s ease,
        box-shadow .25s ease,
        transform .25s ease;
}

.ps-mobile-menu-toggle:hover,
.ps-mobile-menu-toggle.is-open {
    border-color: var(--ps-red);
    background: var(--ps-red);
    color: #ffffff;
    box-shadow: 0 0 18px rgba(213, 0, 0, .35);
}

.ps-mobile-menu-toggle:active {
    transform: translateY(1px);
}

.ps-mobile-menu-toggle i {
    width: 16px;
    text-align: center;
    font-size: 16px;
}

/* BOUTONS */

.ps-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--ps-red);
    color: var(--ps-white);
    padding: 13px 26px;
    border-radius: 4px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
    box-shadow: 0 0 18px rgba(213, 0, 0, 0.3);
    transition: all 0.25s ease;
}

.ps-button:hover {
    background: #ff1a1a;
    transform: translateY(-2px);
    box-shadow: 0 0 28px rgba(213, 0, 0, 0.55);
}

.ps-button-outline {
    background: transparent;
    border: 3px solid var(--ps-white);
    padding: 26px 52px;
    font-size: 28px;
    font-weight: 900;
}

.ps-button-outline:hover {
    background: var(--ps-red);
    border-color: var(--ps-red);
    color: var(--ps-white);
    box-shadow: 0 0 28px rgba(213, 0, 0, 0.65);
}

/* HERO */

.ps-hero {
    min-height: calc(100vh - 82px);
    background:
        linear-gradient(rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.46)),
        url("../img/pureSCREEN_hero.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    text-align: center;
    border-bottom: 1px solid #333;
}

.ps-hero-content {
    padding: 130px 0;
}

.ps-hero h1 {
    color: var(--ps-white);
    font-size: clamp(44px, 7vw, 82px);
    line-height: 0.95;
    font-weight: 900;
    letter-spacing: -2px;
    margin-bottom: 25px;
    text-shadow: 0 5px 18px rgba(0, 0, 0, 0.85);
}

.ps-hero p {
    max-width: 760px;
    margin: 0 auto 38px;
    color: #dddddd;
    font-size: clamp(20px, 2.2vw, 28px);
    font-weight: 300;
}

.ps-hero-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 26px;
    margin-bottom: 62px;
}

.ps-hero-badges span {
    background: rgba(0, 0, 0, 0.68);
    border: 2px solid var(--ps-red);
    color: var(--ps-white);
    padding: 20px 48px;
    border-radius: 999px;
    font-size: 30px;
    font-weight: 900;
    backdrop-filter: blur(5px);
}

.ps-hero-badges span::before {
    content: "✓";
    margin-right: 14px;
    color: #00d46a;
    font-weight: 900;
    text-shadow: 0 0 12px rgba(0, 212, 106, 0.9);
}

/* SPLIT */

.ps-split-section {
    padding: 90px 0;
    background: #151515;
}

.ps-split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 65px;
    align-items: center;
}

.ps-split-image {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: -12px 12px 0 var(--ps-red);
}

.ps-split-image img {
    width: 100%;
    transition: transform 0.7s ease;
}

.ps-split-image:hover img {
    transform: scale(1.06);
}

.ps-split-content h2 {
    color: var(--ps-red);
    font-size: clamp(34px, 4vw, 48px);
    line-height: 1.05;
    margin-bottom: 24px;
}

.ps-split-content p {
    color: var(--ps-muted);
    font-size: 19px;
    margin-bottom: 25px;
    text-align: justify;
    line-height: 1.8;
    margin-bottom: 24px;
}

.ps-split-content ul {
    list-style: none;
}

.ps-split-content li {
    margin-bottom: 16px;
    font-size: 17px;
}

.ps-split-content li::before {
    content: "✓";
    color: var(--ps-red);
    font-weight: 900;
    margin-right: 10px;
}

/* FEATURES */

.ps-features {
    padding: 95px 0;
    background: var(--ps-black);
}

.ps-section-title {
    position: relative;
    display: table;
    margin: 0 auto 70px;
    text-align: center;
    color: var(--ps-white);
    font-size: clamp(34px, 4vw, 50px);
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.1;
}

.ps-section-title::after {
    content: "";
    display: block;
    width: 82px;
    height: 4px;
    background: var(--ps-red);
    margin: 22px auto 0;
    box-shadow: 0 0 12px var(--ps-red);
}

.ps-title-stars::before,
.ps-title-stars::after {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    font-size: 34px;
    color: #ffd700;
    text-shadow:
        0 0 8px rgba(255, 215, 0, .8),
        0 0 16px rgba(255, 215, 0, .6);
}

.ps-title-stars::before {
    content: "★";
    left: -62px;
}

.ps-title-stars::after {
    content: "★";
    right: -62px;
    display: block;
    width: auto;
    height: auto;
    background: none;
    margin: 0;
    box-shadow: none;
}

.ps-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.ps-feature-card {
    position: relative;
    overflow: hidden;
    background: var(--ps-card);
    border: 1px solid #333;
    border-radius: 10px;
    padding: 36px;
    transition: all 0.3s ease;
}

.ps-feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--ps-red);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.3s ease;
}

.ps-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.5);
}

.ps-feature-card:hover::before {
    transform: scaleY(1);
}

.ps-feature-card-header {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
    padding-bottom: 10px;
}

.ps-feature-card-header::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: #ff0000;
}

.ps-feature-card-header span {
    display: block;
    font-size: 42px;
    line-height: 1;
    flex-shrink: 0;
}

.ps-feature-card-header h3 {
    margin: 0;
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
}

.ps-feature-card p {
    text-align: justify;
    text-justify: inter-word;
    line-height: 1.8;
    color: #d5d5d5;
}

/* =========================================================
   PRICING
========================================================= */

.ps-pricing {
    padding: 100px 0;
    background:
        linear-gradient(rgba(0, 0, 0, 0.91), rgba(0, 0, 0, 0.91)),
        url("../img/pureSCREEN_compteur-moto.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* TITRE */

.ps-pricing-title {
    position: relative;
    text-align: center;
    margin: 0 auto 70px;
}

.ps-pricing-title span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.ps-pricing-icon {
    width: 38px;
    height: 38px;
    object-fit: contain;
    flex-shrink: 0;
}

.ps-pricing-title::after {
    content: "";
    display: block;
    width: 82px;
    height: 4px;
    background: var(--ps-red);
    margin: 22px auto 0;
    box-shadow: 0 0 12px var(--ps-red);
}

/* GRILLE */

.ps-pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 450px));
    justify-content: center;
    gap: 42px;
}

/* CARTES */

.ps-price-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: rgba(31, 31, 31, 0.96);
    border: 1px solid #444;
    border-radius: 14px;
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.55);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.ps-price-card:hover {
    transform: scale(1.02);
    border-color: var(--ps-red);
}

.ps-price-header {
    background: linear-gradient(
        135deg,
        var(--ps-red-dark),
        #b71c1c
    );
    color: var(--ps-white);
    padding: 30px;
    text-align: center;
    text-transform: uppercase;
    font-size: 28px;
    font-weight: 900;
    letter-spacing: 1px;
}

.ps-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    padding: 21px 30px;
    border-bottom: 1px solid #333;
    font-size: 18px;
}

.ps-price-row strong {
    color: var(--ps-red);
    font-size: 26px;
    white-space: nowrap;
}

.ps-price-button {
    display: block;
    width: calc(100% - 60px);
    margin: 25px auto;
    text-align: center;
}

.ps-price-note {
    margin-top: auto;
    background: #111;
    color: #999;
    padding: 16px 24px;
    text-align: center;
    font-size: 14px;
}

/* TEXTE SEO */

.ps-pricing-text {
    max-width: 900px;
    margin: 55px auto 0;
}

.ps-pricing-text p {
    margin: 0;
    color: #d5d5d5;
    font-size: 17px;
    line-height: 1.9;
    text-align: justify;
}

/* SPECS */

.ps-specs {
    padding: 90px 0;
    background: var(--ps-card);
    border-top: 1px solid #333;
}

.ps-specs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.ps-spec-item {
    text-align: center;
    border: 1px solid #333;
    border-radius: 10px;
    padding: 28px 18px;
    transition: all 0.25s ease;
}

.ps-spec-item:hover {
    background: #262626;
    border-color: var(--ps-red);
}

.ps-spec-item strong {
    display: block;
    color: var(--ps-red);
    font-size: 19px;
    margin-bottom: 10px;
}

.ps-spec-item span {
    color: var(--ps-muted);
}

/* Standards qualité */

.ps-spec-item {
    text-align: center;
}

.ps-spec-icon {
    font-size: 42px;
    margin-bottom: 16px;
    display: block;
    line-height: 1;
}

.ps-spec-item strong {
    display: block;
    margin-bottom: 10px;
}

/* ==========================================
   QUALITY TITLE
========================================== */

.ps-quality-title {
    text-align: center;
}

.ps-quality-title span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.ps-quality-title-icon {
    width: 44px;
    height: 44px;
    object-fit: contain;
    flex-shrink: 0;
    display: block;
}

/* ==========================================
   QUALITY
========================================== */

.ps-quality-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.ps-quality-card {
    background: #111111;
    border: 1px solid #333;
    border-radius: 12px;
    overflow: hidden;
    transition: all .3s ease;
}

.ps-quality-card:hover {
    transform: translateY(-6px);
    border-color: var(--ps-red);
}

.ps-quality-header {
    background: #950606;
    padding: 16px 18px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.ps-quality-icon {
    font-size: 38px;
    line-height: 1;
    flex-shrink: 0;
    margin-top: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
}

.ps-quality-heading {
    display: flex;
    flex-direction: column;
}

.ps-quality-heading h3 {
    margin: 0;
    color: #ffffff;
    font-size: 20px;
    font-weight: 800;
}

.ps-quality-heading span {
    color: rgba(255,255,255,.85);
    font-size: 13px;
    margin-top: 2px;
}

.ps-quality-content {
    padding: 22px;
}

.ps-quality-content p {
    margin: 0;
    color: #d5d5d5;
    line-height: 1.8;
    text-align: justify;
}

/* CONTACT */

.ps-contact-title-line {
    width: 90px;
    height: 4px;
    background: var(--ps-red);
    margin: 18px 0 26px;
}

.ps-contact-intro {
    max-width: 520px;
    color: #d5d5d5;
    font-size: 16px;
    line-height: 1.8;
    text-align: justify;
    margin-bottom: 28px;
}

.ps-contact-subtitle-line {
    width: 60px;
    height: 3px;
    background: var(--ps-red);
    margin: 12px 0 24px;
}

.ps-contact-section {
    padding: 90px 0;
    background: var(--ps-black);
    border-top: 1px solid #222;
}

.ps-contact-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: center;
    background: #181818;
    border: 1px solid #333;
    border-radius: 18px;
    padding: 45px;
    box-shadow: 0 22px 45px rgba(0, 0, 0, 0.55);
}

.ps-contact-content h2 {
    color: var(--ps-white);
    font-size: 40px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.ps-company-name {
    color: var(--ps-red);
    font-size: 26px;
    font-weight: 900;
    margin-bottom: 24px;
}

.ps-contact-content p {
    margin-bottom: 18px;
    color: var(--ps-text);
    font-size: 18px;
}

.ps-contact-content a:not(.ps-button) {
    color: var(--ps-white);
}

.ps-contact-content a:not(.ps-button):hover {
    color: var(--ps-red);
}

.ps-contact-image img {
    border-radius: 12px;
    border: 2px solid #333;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.5);
}


/* ==========================================================
   PURESCREEN - REVENDEURS
========================================================== */

.ps-resellers-section {
    padding: 90px 0;
    background: #151515;
    border-top: 1px solid #222;
}

.ps-resellers-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 58px;
    align-items: center;
    background: #181818;
    border: 1px solid #333;
    border-radius: 18px;
    padding: 45px;
    box-shadow: 0 22px 45px rgba(0, 0, 0, .55);
}

.ps-resellers-image {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    box-shadow: -10px 10px 0 var(--ps-red);
}

.ps-resellers-image img {
    width: 100%;
    height: 100%;
    min-height: 430px;
    object-fit: cover;
    transition: transform .7s ease;
}

.ps-resellers-image:hover img {
    transform: scale(1.035);
}

.ps-resellers-kicker {
    display: block;
    margin-bottom: 8px;
    color: var(--ps-red);
    font-size: 14px;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.ps-resellers-content h2 {
    margin: 0;
    color: var(--ps-white);
    font-size: clamp(34px, 4vw, 46px);
    font-weight: 900;
    line-height: 1.05;
    text-transform: uppercase;
}

.ps-resellers-title-line {
    width: 84px;
    height: 4px;
    margin: 18px 0 26px;
    background: var(--ps-red);
    border-radius: 20px;
    box-shadow: 0 0 12px rgba(213, 0, 0, .45);
}

.ps-resellers-intro {
    margin: 0 0 28px;
    color: #d5d5d5;
    font-size: 16px;
    line-height: 1.8;
    text-align: justify;
}

.ps-resellers-benefits {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin: 0 0 30px;
    padding: 0;
    list-style: none;
}

.ps-resellers-benefits li {
    position: relative;
    min-height: 104px;
    padding: 18px 18px 18px 44px;
    background: #111111;
    border: 1px solid #333;
    border-radius: 10px;
}

.ps-resellers-benefits li::before {
    content: "✓";
    position: absolute;
    top: 18px;
    left: 18px;
    color: #00d46a;
    font-size: 18px;
    font-weight: 900;
}

.ps-resellers-benefits strong {
    display: block;
    margin-bottom: 5px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 900;
}

.ps-resellers-benefits span {
    display: block;
    color: #a9a9a9;
    font-size: 13px;
    line-height: 1.55;
}

.ps-resellers-button {
    border: 0;
    cursor: pointer;
    font-family: inherit;
}

#revendeurs {
    scroll-margin-top: 150px;
}

/* ==========================================================
   HEADER - DESKTOP INTERMÉDIAIRE
   1025px → 1550px
========================================================== */

@media (min-width: 1025px) and (max-width: 1550px) {

    .ps-container {
        padding-left: 18px;
        padding-right: 18px;
    }

    .ps-header-inner {
        gap: 24px;
    }

    .ps-logo {
        width: 165px;
    }

    .ps-main-nav {
        gap: 28px;
        font-size: 16px;
    }

    .ps-header-actions {
        gap: 12px;
    }

    .ps-header-login,
    .ps-header-cart {
        min-height: 44px;
        padding-left: 16px;
        padding-right: 16px;
        font-size: 14px;
    }

    .ps-header-phone {
        margin-left: 8px;
        font-size: 18px;
    }
}

@media (max-width: 1024px) {
    .ps-resellers-card {
        grid-template-columns: 1fr;
    }

    .ps-resellers-image img {
        min-height: 360px;
    }
}

@media (max-width: 768px) {
    .ps-resellers-section {
        padding: 70px 0;
    }

    .ps-resellers-card {
        gap: 34px;
        padding: 26px;
    }

    .ps-resellers-image {
        box-shadow: -7px 7px 0 var(--ps-red);
    }

    .ps-resellers-image img {
        min-height: 280px;
    }

    .ps-resellers-benefits {
        grid-template-columns: 1fr;
    }

    .ps-resellers-button {
        width: 100%;
    }
}

/* FOOTER */

.ps-footer {
    background: #050505;
    color: var(--ps-white);
    border-top: 2px solid var(--ps-red-dark);
}

.ps-footer-main {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    align-items: center;
    gap: 45px;
    padding: 42px 0;
}

.ps-footer-copyright {
    margin: 0;
}

.ps-footer-copyright a {
    position: relative;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.25s ease;
}

.ps-footer-copyright a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: var(--ps-red);
    transform: translateX(-50%);
    transition: width 0.25s ease;
}

.ps-footer-copyright a:hover {
    color: #ff0000;
}

.ps-footer-copyright a:hover::after {
    width: 100%;
}

.ps-footer-brand a {
    display: inline-block;
}

.ps-footer-logo {
    width: 145px;
    height: auto;
    transition:
        transform 0.35s ease,
        filter 0.35s ease;
}

.ps-footer-brand a:hover .ps-footer-logo {
    transform: scale(1.08) translateY(-2px);
    filter:
        drop-shadow(0 0 8px rgba(255, 0, 0, .55))
        drop-shadow(0 0 18px rgba(255, 0, 0, .40))
        drop-shadow(0 0 30px rgba(255, 0, 0, .25));
}

.ps-footer-nav {
    display: flex;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
    font-weight: 800;
    font-size: 15px;
}

.ps-footer-nav a,
.ps-footer-legal a {
    position: relative;
    color: var(--ps-white);
    transition: color 0.25s ease;
}

.ps-footer-nav a::after,
.ps-footer-legal a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: var(--ps-red);
    transform: translateX(-50%);
    transition: width 0.25s ease;
}

.ps-footer-nav a:hover,
.ps-footer-legal a:hover {
    color: var(--ps-red);
}

.ps-footer-nav a:hover::after,
.ps-footer-legal a:hover::after {
    width: 100%;
}

.ps-footer-phone {
    color: var(--ps-white);
    font-size: 20px;
    font-weight: 900;
    white-space: nowrap;
    transition: color 0.25s ease;
}

.ps-footer-phone:hover {
    color: var(--ps-red);
}

.ps-footer-socials {
    display: flex;
    gap: 14px;
}

.ps-footer-socials a {
    width: 58px;
    height: 58px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #111;
    border: 1px solid rgba(255,255,255,.15);
    font-size: 26px;
    transition: all .25s ease;
}

.ps-footer-socials a:hover {
    transform: translateY(-4px);
}

/* FACEBOOK */

.ps-social-facebook {
    color: #1877F2;
}

.ps-social-facebook:hover {
    background: #1877F2;
    color: #fff;
}

/* X */

.ps-social-x {
    color: #ffffff;
}

.ps-social-x:hover {
    background: #ffffff;
    color: #000000;
}

/* YOUTUBE */

.ps-social-youtube {
    color: #FF0000;
}

.ps-social-youtube:hover {
    background: #FF0000;
    color: #ffffff;
}

/* LINKEDIN */

.ps-social-linkedin {
    color: #0A66C2;
}

.ps-social-linkedin:hover {
    background: #0A66C2;
    color: #ffffff;
}

/* INSTAGRAM */

.ps-social-instagram {
    color: #E4405F;
}

.ps-social-instagram:hover {
    background: #E4405F;
    color: #ffffff;
}

.ps-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding: 18px 0;
    color: #777;
    font-size: 14px;
}

.ps-footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
}

.ps-footer-legal {
    display: flex;
    gap: 24px;
}

.ps-footer-socials a {
    position: relative;
}

.ps-footer-socials a::before {
    content: attr(data-social);
    position: absolute;
    left: 50%;
    bottom: calc(100% + 10px);
    transform: translateX(-50%) translateY(8px);
    background: #ffffff;
    color: #111111;
    padding: 9px 15px;
    border-radius: 18px;
    font-size: 13px;
    font-weight: 900;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all .25s ease;
    box-shadow: 0 8px 18px rgba(0, 0, 0, .35);
    z-index: 5;
}

.ps-footer-socials a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: calc(100% + 4px);
    transform: translateX(-50%) translateY(8px) rotate(45deg);
    width: 12px;
    height: 12px;
    background: #ffffff;
    opacity: 0;
    visibility: hidden;
    transition: all .25s ease;
    z-index: 4;
}

.ps-footer-socials a:hover::before,
.ps-footer-socials a:hover::after {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.ps-footer-socials a:hover::after {
    transform: translateX(-50%) translateY(0) rotate(45deg);
}

/* RESPONSIVE */

/* ==========================================================
   HEADER - PASSAGE SUR 2 NIVEAUX
   Déclenché plus tôt pour éviter le téléphone coupé
========================================================== */

@media (max-width: 1280px) {

    .ps-header-inner {
        flex-wrap: wrap;
        justify-content: center;
    }

    .ps-logo {
        width: 160px;
        height: auto;
    }

    .ps-main-nav {
        order: 3;
        width: 100%;
        justify-content: center;
        gap: 22px;
        font-size: 16px;
    }

    .ps-header-actions {
        gap: 10px;
    }

    .ps-header-phone {
        font-size: 18px;
    }
}


/* ==========================================================
   CONTENU - TABLETTE
========================================================== */

@media (max-width: 1024px) {

    .ps-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ps-specs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    body.admin-bar .ps-site-header {
        top: 46px;
    }

    .ps-header-inner {
        gap: 14px;
        padding: 14px 0;
    }

    .ps-logo {
        width: 140px;
        height: auto;
    }

    .ps-main-nav {
        gap: 16px;
        flex-wrap: wrap;
        justify-content: center;
        font-size: 14px;
    }

    .ps-header-actions {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }

    .ps-header-login,
    .ps-header-cart {
        min-height: 42px;
        padding: 0 18px;
        font-size: 13px;
    }

    .ps-header-phone {
        width: 100%;
        text-align: center;
        font-size: 20px;
    }

    .ps-hero {
        min-height: 720px;
        background-image:
            linear-gradient(rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.48)),
            url("../img/pureSCREEN_hero-mobile.jpg");
        background-attachment: scroll;
    }

    .ps-split-grid,
    .ps-contact-card {
        grid-template-columns: 1fr;
    }

    .ps-split-image {
        box-shadow: -7px 7px 0 var(--ps-red);
    }

    .ps-features-grid,
    .ps-pricing-grid,
    .ps-specs-grid {
        grid-template-columns: 1fr;
    }

    .ps-contact-card {
        padding: 26px;
    }

    .ps-section-title {
        margin-bottom: 45px;
    }
}

@media (max-width: 1024px) {
    .ps-footer-main {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 28px;
    }

    .ps-footer-logo {
        margin: 0 auto;
    }

    .ps-footer-socials {
        justify-content: center;
        flex-wrap: wrap;
    }

    .ps-footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }
}

/* ==========================================================
   FOOTER - DESKTOP INTERMÉDIAIRE
   1025px → 1550px

   Objectif :
   - conserver le footer horizontal ;
   - garder le menu sur une seule ligne ;
   - placer le téléphone au-dessus des réseaux sociaux ;
   - conserver une marge latérale confortable.
========================================================== */

@media (min-width: 1025px) and (max-width: 1550px) {

    .ps-footer .ps-container {
        padding-left: 40px;
        padding-right: 40px;
    }

    .ps-footer-main {
        grid-template-columns: 135px minmax(0, 1fr) 310px;
        grid-template-rows: auto auto;
        column-gap: 28px;
        row-gap: 10px;
        align-items: center;
        padding: 38px 0;
    }

    .ps-footer-brand {
        grid-column: 1;
        grid-row: 1 / 3;
        align-self: center;
        justify-self: start;
    }

    .ps-footer-logo {
        width: 125px;
        margin: 0;
    }

    .ps-footer-nav {
        grid-column: 2;
        grid-row: 1 / 3;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: nowrap;
        gap: 18px;
        white-space: nowrap;
        font-size: 13px;
    }

    .ps-footer-phone {
        grid-column: 3;
        grid-row: 1;
        align-self: end;
        justify-self: start;
        margin: 0;
        font-size: 17px;
        line-height: 1.2;
        text-align: left;
        white-space: nowrap;
    }

    .ps-footer-socials {
        grid-column: 3;
        grid-row: 2;
        align-self: start;
        justify-self: start;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: nowrap;
        gap: 8px;
    }

    .ps-footer-socials a {
        width: 44px;
        height: 44px;
        font-size: 20px;
    }
}


/* ==========================================================
   PURESCREEN - CONTACT : BOUTONS + MODAL
========================================================== */

.ps-contact-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 28px;
}

.ps-contact-modal-button {
    border: 0;
    cursor: pointer;
    font-family: inherit;
}

body.ps-modal-open {
    overflow: hidden;
}

.ps-contact-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .25s ease, visibility .25s ease;
}

.ps-contact-modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.ps-contact-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .82);
    backdrop-filter: blur(7px);
}

.ps-contact-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(820px, 100%);
    max-height: calc(100vh - 60px);
    overflow-y: auto;
    padding: 42px;
    background: #151515;
    border: 1px solid #3a3a3a;
    border-radius: 16px;
    box-shadow:
        0 28px 70px rgba(0, 0, 0, .75),
        0 0 32px rgba(213, 0, 0, .16);
    transform: translateY(18px) scale(.985);
    transition: transform .25s ease;
}

.ps-contact-modal.is-open .ps-contact-modal__dialog {
    transform: translateY(0) scale(1);
}

.ps-contact-modal__close {
    position: absolute;
    top: 16px;
    right: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid #444;
    border-radius: 50%;
    background: #202020;
    color: #ffffff;
    font-family: inherit;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
    transition: all .25s ease;
}

.ps-contact-modal__close:hover {
    border-color: var(--ps-red);
    background: var(--ps-red);
    box-shadow: 0 0 22px rgba(213, 0, 0, .55);
    transform: rotate(90deg);
}

.ps-contact-modal__header {
    margin-bottom: 30px;
    padding-right: 50px;
}

.ps-contact-modal__kicker {
    display: block;
    margin-bottom: 8px;
    color: var(--ps-red);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 2px;
}

.ps-contact-modal__header h2 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(30px, 4vw, 42px);
    font-weight: 900;
    line-height: 1.05;
}

.ps-contact-modal__line {
    display: block;
    width: 72px;
    height: 4px;
    margin: 16px 0 18px;
    background: var(--ps-red);
    border-radius: 20px;
    box-shadow: 0 0 12px rgba(213, 0, 0, .5);
}

.ps-contact-modal__header p {
    max-width: 650px;
    margin: 0;
    color: #bdbdbd;
    font-size: 15px;
    line-height: 1.7;
}

.ps-contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

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

.ps-contact-form__field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ps-contact-form__field label {
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
}

.ps-contact-form__field label span {
    color: #888888;
    font-size: 12px;
    font-weight: 500;
}

.ps-contact-form__field label strong,
.ps-contact-form__rgpd strong {
    color: var(--ps-red);
}

.ps-contact-form input[type="text"],
.ps-contact-form input[type="email"],
.ps-contact-form input[type="tel"],
.ps-contact-form select,
.ps-contact-form textarea {
    width: 100%;
    min-height: 48px;
    padding: 12px 14px;
    border: 1px solid #444444;
    border-radius: 6px;
    outline: none;
    background: #0d0d0d;
    color: #ffffff;
    font-family: inherit;
    font-size: 15px;
    transition:
        border-color .2s ease,
        box-shadow .2s ease,
        background .2s ease;
}

.ps-contact-form textarea {
    min-height: 140px;
    resize: vertical;
}

.ps-contact-form select {
    cursor: pointer;
}

.ps-contact-form input:focus,
.ps-contact-form select:focus,
.ps-contact-form textarea:focus {
    border-color: var(--ps-red);
    background: #111111;
    box-shadow: 0 0 0 3px rgba(213, 0, 0, .13);
}

.ps-contact-form__rgpd {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    color: #bdbdbd;
    font-size: 13px;
    line-height: 1.55;
    cursor: pointer;
}

.ps-contact-form__rgpd input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    flex: 0 0 18px;
    accent-color: var(--ps-red);
    cursor: pointer;
}

.ps-contact-form__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 4px;
}

.ps-contact-form__required {
    color: #777777;
    font-size: 12px;
}

.ps-contact-form__submit {
    min-width: 170px;
    border: 0;
    cursor: pointer;
    font-family: inherit;
}

.ps-contact-form-message {
    margin: 0 0 24px;
    padding: 14px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
}

.ps-contact-form-message--success {
    border: 1px solid rgba(0, 212, 106, .45);
    background: rgba(0, 212, 106, .10);
    color: #7ee8ad;
}

.ps-contact-form-message--error {
    border: 1px solid rgba(255, 0, 0, .45);
    background: rgba(255, 0, 0, .10);
    color: #ff8a8a;
}

@media (max-width: 768px) {
    .ps-contact-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .ps-contact-actions .ps-button {
        width: 100%;
    }

    .ps-contact-modal {
        align-items: flex-start;
        padding: 16px;
    }

    .ps-contact-modal__dialog {
        max-height: calc(100vh - 32px);
        padding: 32px 22px 26px;
    }

    .ps-contact-modal__header {
        padding-right: 38px;
    }

    .ps-contact-form__grid {
        grid-template-columns: 1fr;
    }

    .ps-contact-form__footer {
        align-items: stretch;
        flex-direction: column;
    }

    .ps-contact-form__submit {
        width: 100%;
    }
}


/* ==========================================================
   PURESCREEN - MODAL REVENDEUR
========================================================== */

.ps-reseller-modal .ps-contact-modal__dialog {
    width: min(860px, 100%);
}

.ps-reseller-modal .ps-contact-modal__kicker {
    color: var(--ps-red);
}

.ps-reseller-form #ps-reseller-country {
    font-weight: 700;
}

/* ==========================================================
   PURESCREEN - MODAL CONNEXION / INSCRIPTION
========================================================== */

.ps-login-modal {
    position: fixed;
    inset: 0;

    z-index: 999999;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 30px;

    visibility: hidden;
    opacity: 0;

    pointer-events: none;

    transition:
        opacity .25s ease,
        visibility .25s ease;
}

.ps-login-modal.is-open {
    visibility: visible;
    opacity: 1;

    pointer-events: auto;
}


/* ==========================================================
   BACKDROP
========================================================== */

.ps-login-modal__backdrop {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    margin: 0;
    padding: 0;

    border: 0;

    background: rgba(0, 0, 0, .82);

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    cursor: default;
}


/* ==========================================================
   DIALOG
========================================================== */

.ps-login-modal__dialog {
    position: relative;

    z-index: 2;

    width: min(100%, 560px);
    max-height: calc(100vh - 60px);

    overflow-y: auto;

    padding: 36px;

    background: #181818;

    border: 1px solid #444444;
    border-radius: 14px;

    box-shadow:
        0 30px 80px rgba(0, 0, 0, .75),
        0 0 35px rgba(255, 0, 0, .08);

    transform: translateY(15px) scale(.98);

    transition:
        transform .25s ease;
}

.ps-login-modal.is-open
.ps-login-modal__dialog {
    transform:
        translateY(0)
        scale(1);
}


/* Scrollbar */

.ps-login-modal__dialog::-webkit-scrollbar {
    width: 7px;
}

.ps-login-modal__dialog::-webkit-scrollbar-track {
    background: #111111;
}

.ps-login-modal__dialog::-webkit-scrollbar-thumb {
    background: #444444;
    border-radius: 10px;
}

.ps-login-modal__dialog::-webkit-scrollbar-thumb:hover {
    background: var(--ps-red);
}


/* ==========================================================
   VUES CONNEXION / INSCRIPTION
========================================================== */

.ps-login-view {
    display: none;
}

.ps-login-view.is-active {
    display: block;
}


/* ==========================================================
   CROIX
========================================================== */

.ps-login-modal__close {
    position: absolute;

    top: 16px;
    right: 16px;

    z-index: 5;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 38px;
    height: 38px;

    padding: 0;

    border: 1px solid #555555;
    border-radius: 50%;

    background: #222222;

    color: #ffffff;

    font-family: inherit;
    font-size: 25px;
    font-weight: 300;
    line-height: 1;

    cursor: pointer;

    transition:
        border-color .2s ease,
        background .2s ease,
        color .2s ease,
        transform .2s ease;
}

.ps-login-modal__close:hover {
    border-color: var(--ps-red);

    background: var(--ps-red);

    color: #ffffff;

    transform: rotate(90deg);

    box-shadow:
        0 0 18px rgba(213, 0, 0, .45);
}


/* ==========================================================
   HEADER MODAL
========================================================== */

.ps-login-modal__header {
    margin-bottom: 28px;
    padding-right: 42px;
}

.ps-login-modal__kicker {
    display: block;

    margin-bottom: 8px;

    color: var(--ps-red);

    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1.7px;

    text-transform: uppercase;
}

.ps-login-modal__header h2 {
    margin: 0;

    color: #ffffff;

    font-size: 34px;
    font-weight: 900;
    line-height: 1.05;

    text-transform: uppercase;
}

.ps-login-modal__line {
    display: block;

    width: 55px;
    height: 3px;

    margin: 14px 0 17px;

    background: var(--ps-red);

    border-radius: 20px;

    box-shadow:
        0 0 10px rgba(213, 0, 0, .45);
}

.ps-login-modal__header p {
    max-width: 440px;

    margin: 0;

    color: #aaaaaa;

    font-size: 13px;
    line-height: 1.7;
}


/* ==========================================================
   FORMULAIRE
========================================================== */

.ps-login-form {
    display: flex;
    flex-direction: column;

    gap: 18px;
}

.ps-login-field {
    display: flex;
    flex-direction: column;

    gap: 7px;
}

.ps-login-field label {
    color: #ffffff;

    font-size: 12px;
    font-weight: 800;
}

.ps-login-field label strong {
    color: var(--ps-red);
}


/* ==========================================================
   INPUT AVEC ICÔNE
========================================================== */

.ps-login-field__control {
    position: relative;
}

.ps-login-field__control > i {
    position: absolute;

    top: 50%;
    left: 15px;

    transform: translateY(-50%);

    color: var(--ps-red);

    font-size: 13px;

    pointer-events: none;
}

.ps-login-field__control input {
    width: 100%;
    height: 50px;

    margin: 0;
    padding:
        0
        15px
        0
        43px;

    border: 1px solid #444444;
    border-radius: 5px;

    outline: none;

    background: #0d0d0d;

    color: #ffffff;

    font-family: inherit;
    font-size: 13px;

    transition:
        border-color .2s ease,
        box-shadow .2s ease,
        background .2s ease;
}

.ps-login-field__control input:focus {
    border-color: var(--ps-red);

    background: #101010;

    box-shadow:
        0 0 0 3px rgba(213, 0, 0, .12);
}


/* ==========================================================
   OPTIONS
========================================================== */

.ps-login-options {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;
}

.ps-login-remember {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: #aaaaaa;

    font-size: 11px;

    cursor: pointer;
}

.ps-login-remember input {
    width: 15px;
    height: 15px;

    accent-color: var(--ps-red);
}

.ps-login-lost-password {
    appearance: none;

    margin: 0;
    padding: 0;

    border: 0;

    background: transparent;

    color: #ffffff;

    font-family: inherit;
    font-size: 11px;
    font-weight: 700;

    cursor: pointer;

    transition:
        color .2s ease;
}

.ps-login-lost-password:hover {
    color: var(--ps-red);
}


/* ==========================================================
   BOUTON PRINCIPAL
========================================================== */

.ps-login-submit {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 9px;

    width: 100%;
    min-height: 50px;

    margin: 4px 0 0;
    padding: 0 20px;

    border: 0;
    border-radius: 5px;

    background: var(--ps-red);

    color: #ffffff;

    font-family: inherit;
    font-size: 12px;
    font-weight: 900;

    text-transform: uppercase;

    cursor: pointer;

    box-shadow:
        0 0 18px rgba(213, 0, 0, .25);

    transition:
        background .2s ease,
        box-shadow .2s ease,
        transform .2s ease;
}

.ps-login-submit:hover {
    background: #ff1a1a;

    box-shadow:
        0 0 22px rgba(255, 0, 0, .4);

    transform: translateY(-1px);
}


/* ==========================================================
   BASCULE CONNEXION / INSCRIPTION
========================================================== */

.ps-login-register {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 8px;

    margin-top: 24px;
    padding-top: 20px;

    border-top: 1px solid #333333;

    font-size: 10px;
}

.ps-login-register > span {
    color: #777777;

    font-weight: 700;
}

.ps-login-register-link {
    appearance: none;

    margin: 0;
    padding: 0;

    border: 0;

    background: transparent;

    color: #ffffff;

    font-family: inherit;
    font-size: 10px;
    font-weight: 900;

    cursor: pointer;

    transition:
        color .2s ease;
}

.ps-login-register-link:hover {
    color: var(--ps-red);
}


/* ==========================================================
   INFORMATION CRÉATION MOT DE PASSE
========================================================== */

.ps-login-password-info {
    display: flex;

    align-items: center;

    gap: 14px;

    padding: 16px;

    background: #111111;

    border: 1px solid #333333;
    border-radius: 7px;
}

.ps-login-password-info__icon {
    display: flex;

    align-items: center;
    justify-content: center;

    flex: 0 0 42px;

    width: 42px;
    height: 42px;

    border: 1px solid var(--ps-red);
    border-radius: 50%;

    color: var(--ps-red);

    font-size: 15px;
}

.ps-login-password-info > div {
    min-width: 0;
}

.ps-login-password-info strong {
    display: block;

    margin-bottom: 3px;

    color: #ffffff;

    font-size: 11px;
    font-weight: 900;
}

.ps-login-password-info p {
    margin: 0;

    color: #888888;

    font-size: 11px;
    line-height: 1.55;
}


/* ==========================================================
   SÉCURITÉ
========================================================== */

.ps-login-security {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 7px;

    margin-top: 18px;

    color: #777777;

    font-size: 10px;
}

.ps-login-security i {
    color: var(--ps-red);
}


/* ==========================================================
   WOOCOMMERCE - MESSAGES DANS MODAL
========================================================== */

.ps-login-modal
.woocommerce-error,
.ps-login-modal
.woocommerce-message,
.ps-login-modal
.woocommerce-info {
    margin: 0 0 20px;

    padding: 13px 15px;

    border: 1px solid #444444;
    border-radius: 6px;

    background: #111111;

    color: #ffffff;

    font-size: 12px;
}

.ps-login-modal
.woocommerce-error {
    border-color: rgba(255, 0, 0, .5);

    background:
        rgba(213, 0, 0, .08);
}

.ps-login-modal
.woocommerce-message {
    border-color:
        rgba(0, 212, 106, .45);

    background:
        rgba(0, 212, 106, .08);
}


/* ==========================================================
   BODY MODAL OUVERTE
========================================================== */

body.ps-modal-open {
    overflow: hidden;
}


/* ==========================================================
   RESPONSIVE LOGIN
========================================================== */

@media (max-width: 600px) {

    .ps-login-modal {
        align-items: flex-start;

        padding: 15px;
    }

    .ps-login-modal__dialog {
        max-height:
            calc(100vh - 30px);

        padding:
            32px
            22px
            25px;
    }

    .ps-login-modal__header {
        padding-right: 35px;
    }

    .ps-login-modal__header h2 {
        font-size: 29px;
    }

    .ps-login-options {
        align-items: flex-start;
        flex-direction: column;
    }

    .ps-login-register {
        align-items: center;
        flex-direction: column;

        text-align: center;
    }

    .ps-login-password-info {
        align-items: flex-start;
    }

}


/* ==========================================================
   RESPONSIVE MENU MON COMPTE
========================================================== */

@media (max-width: 768px) {

    .ps-header-account-menu {
        position: static;
    }

    .ps-header-account-dropdown {
        top: auto;
        right: 50%;

        width: min(290px, calc(100vw - 32px));

        margin-top: 8px;

        transform:
            translateX(50%)
            translateY(8px);
    }

    .ps-header-account-dropdown.is-open {
        transform:
            translateX(50%)
            translateY(0);
    }

    .ps-header-account-dropdown::before {
        display: none;
    }

}

/* =========================================================
   HEADER - AJUSTEMENT LARGEUR INTERMÉDIAIRE
   ========================================================= */

@media (min-width: 1025px) and (max-width: 1280px) {

    .ps-header-inner {
        gap: 18px;
    }

    .ps-header-logo {
        flex: 0 0 180px;
    }

    .ps-header-nav {
        gap: 22px;
    }

    .ps-header-nav a {
        font-size: 14px;
    }

    .ps-header-actions {
        gap: 12px;
    }

    .ps-header-login,
    .ps-header-account-toggle {
        padding-left: 18px;
        padding-right: 18px;
    }

    .ps-header-cart {
        padding-left: 18px;
        padding-right: 18px;
    }
}

/* =========================================================
   PURESCREEN
   PAGE CONDITIONS GÉNÉRALES DE VENTE
   ========================================================= */

.ps-legal-page {
    width: 100%;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    background: #121212;
    color: #e5e5e5;
}


/* =========================================================
   CONTAINER
   ========================================================= */

.ps-legal-page .ps-legal-container {
    width: calc(100% - 80px);
    max-width: 1280px;
    margin: 0 auto;
}


/* =========================================================
   INTRO / HERO
   ========================================================= */

.ps-legal-page .ps-legal-hero {
    padding: 38px 0 32px;
    background: #121212;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ps-legal-page .ps-legal-eyebrow {
    display: block;
    margin: 0 0 8px;
    color: #b5b5b5;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ps-legal-page .ps-legal-hero h1 {
    margin: 0;
    padding: 0 0 12px;
    color: #ffffff;
    font-size: clamp(30px, 3vw, 44px);
    font-weight: 800;
    line-height: 1.15;
}

.ps-legal-page .ps-legal-intro {
    max-width: 900px;
    margin: 0 0 8px;
    color: #d0d0d0;
    font-size: 15px;
    line-height: 1.7;
}

.ps-legal-page .ps-legal-update {
    margin: 0;
    color: #8f8f8f;
    font-size: 13px;
    line-height: 1.5;
}


/* =========================================================
   CONTENU PRINCIPAL
   ========================================================= */

.ps-legal-page .ps-legal-content {
    padding: 35px 0 70px;
}


/* =========================================================
   SOMMAIRE
   ========================================================= */

.ps-legal-page .ps-legal-summary {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 55px;
    row-gap: 8px;

    margin: 0 0 55px;
    padding: 28px 32px;

    background: #181818;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-left: 4px solid #d50000;
    border-radius: 8px;
}

.ps-legal-page .ps-legal-summary strong {
    grid-column: 1 / -1;

    display: block;
    margin: 0 0 12px;

    color: #ffffff;
    font-size: 19px;
    font-weight: 800;
}

.ps-legal-page .ps-legal-summary a {
    display: block;

    color: #cfcfcf;
    font-size: 14px;
    line-height: 1.5;

    text-decoration: none;

    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.ps-legal-page .ps-legal-summary a:hover {
    color: #ffffff;
    transform: translateX(3px);
}


/* =========================================================
   CHAPITRES
   ========================================================= */

.ps-legal-page .ps-legal-section {
    position: relative;

    margin: 0;
    padding: 0 0 38px;

    scroll-margin-top: 130px;
}


/* Une vraie ligne d'espace entre les chapitres */

.ps-legal-page .ps-legal-section + .ps-legal-section {
    padding-top: 18px;
}


/* =========================================================
   TITRES H2
   ========================================================= */

.ps-legal-page .ps-legal-section h2 {
    position: relative;
    display: inline-block;

    margin: 0 0 24px;
    padding: 0 0 8px;

    color: #ffffff;

    font-size: clamp(22px, 2.2vw, 28px);
    font-weight: 800;
    line-height: 1.25;
}


/* Soulignement rouge sous TOUS les titres */

.ps-legal-page .ps-legal-section h2::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: 0;

    width: 100%;
    height: 3px;

    background: #d50000;
    border-radius: 2px;
}


/* =========================================================
   SOUS-TITRES
   ========================================================= */

.ps-legal-page .ps-legal-section h3 {
    margin: 25px 0 12px;

    color: #ffffff;

    font-size: 18px;
    font-weight: 800;
    line-height: 1.4;
}


/* =========================================================
   TEXTES
   ========================================================= */

.ps-legal-page .ps-legal-section p {
    max-width: 1150px;

    margin: 0 0 13px;

    color: #c9c9c9;

    font-size: 14px;
    line-height: 1.75;
}

.ps-legal-page .ps-legal-section p:last-child {
    margin-bottom: 0;
}

.ps-legal-page .ps-legal-section strong {
    color: #ffffff;
    font-weight: 800;
}


/* =========================================================
   LIENS
   ========================================================= */

.ps-legal-page .ps-legal-section a {
    color: #ffffff;

    text-decoration: underline;
    text-decoration-color: #d50000;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;

    transition: color 0.2s ease;
}

.ps-legal-page .ps-legal-section a:hover {
    color: #d50000;
}


/* =========================================================
   BLOCS COORDONNÉES / ENTREPRISE
   ========================================================= */

.ps-legal-page .ps-legal-company,
.ps-legal-page .ps-legal-form-example {
    max-width: 100%;

    margin: 22px 0 5px;
    padding: 22px 26px;

    background: #181818;

    border: 1px solid rgba(255, 255, 255, 0.12);
    border-left: 4px solid #d50000;

    border-radius: 7px;
}

.ps-legal-page .ps-legal-company p,
.ps-legal-page .ps-legal-form-example p {
    margin-bottom: 7px;
}


/* =========================================================
   GARANTIES
   ========================================================= */

.ps-legal-page .ps-legal-guarantee-box {
    margin: 24px 0 8px;
    padding: 24px 28px;

    background: #181818;

    border: 1px solid rgba(213, 0, 0, 0.5);
    border-left: 4px solid #d50000;

    border-radius: 7px;
}

.ps-legal-page .ps-legal-guarantee-box h3:first-child {
    margin-top: 0;
}


/* =========================================================
   ALERTE MÉDIATEUR
   ========================================================= */

.ps-legal-page .ps-legal-warning {
    margin: 24px 0 8px;
    padding: 22px 26px;

    background: rgba(213, 0, 0, 0.08);

    border: 1px solid rgba(213, 0, 0, 0.5);
    border-left: 4px solid #d50000;

    border-radius: 7px;
}

.ps-legal-page .ps-legal-warning strong {
    display: block;

    margin: 0 0 8px;

    color: #ffffff;
    font-size: 15px;
}


/* =========================================================
   SÉPARATION VISUELLE ENTRE LES CHAPITRES
   ========================================================= */

.ps-legal-page .ps-legal-section:not(:last-child)::after {
    content: "";

    position: absolute;
    left: 0;
    right: 0;
    bottom: 18px;

    height: 1px;

    background: rgba(255, 255, 255, 0.08);
}


/* =========================================================
   TABLETTE
   ========================================================= */

@media (max-width: 1000px) {

    .ps-legal-page .ps-legal-container {
        width: calc(100% - 50px);
    }

    .ps-legal-page .ps-legal-summary {
        column-gap: 30px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

    .ps-legal-page .ps-legal-container {
        width: calc(100% - 30px);
    }

    .ps-legal-page .ps-legal-hero {
        padding: 30px 0 25px;
    }

    .ps-legal-page .ps-legal-content {
        padding: 25px 0 50px;
    }

    .ps-legal-page .ps-legal-summary {
        grid-template-columns: 1fr;

        margin-bottom: 40px;
        padding: 22px 20px;

        column-gap: 0;
    }

    .ps-legal-page .ps-legal-summary strong {
        grid-column: auto;
    }

    .ps-legal-page .ps-legal-section {
        padding-bottom: 32px;
    }

    .ps-legal-page .ps-legal-section + .ps-legal-section {
        padding-top: 14px;
    }

    .ps-legal-page .ps-legal-section h2 {
        margin-bottom: 20px;
    }

    .ps-legal-page .ps-legal-company,
    .ps-legal-page .ps-legal-form-example,
    .ps-legal-page .ps-legal-guarantee-box,
    .ps-legal-page .ps-legal-warning {
        padding: 19px 18px;
    }

}

/* ==========================================================
   PURESCREEN - FOOTER MOBILE
   Menu vertical uniquement sur petits écrans
========================================================== */

@media (max-width: 600px) {

    .ps-footer-nav {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        flex-wrap: nowrap;
        gap: 12px;
        width: 100%;
    }

    .ps-footer-nav a {
        display: block;
        width: auto;
        text-align: center;
    }
}

/* ==========================================================
   PURESCREEN - HEADER MOBILE / MENU BURGER
   600px et moins
========================================================== */

@media (max-width: 600px) {

    .ps-header-inner {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 14px;
        padding-top: 14px;
        padding-bottom: 14px;
    }

    .ps-logo-link {
        order: 1;
        width: 100%;
        justify-content: center;
    }

    .ps-logo {
        width: 140px;
        margin: 0 auto;
    }

    .ps-header-actions {
        order: 2;
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }

    .ps-header-login,
    .ps-header-cart {
        min-height: 42px;
        padding-left: 18px;
        padding-right: 18px;
        font-size: 13px;
    }

    .ps-header-phone {
        width: 100%;
        margin-left: 0;
        text-align: center;
        font-size: 20px;
    }

    .ps-mobile-menu-toggle {
        order: 3;
        display: inline-flex;
        margin-top: 2px;
    }

    .ps-main-nav {
        order: 4;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        width: 100%;
        max-height: 0;
        margin: 0;
        padding: 0;
        gap: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        border-top: 0 solid transparent;
        font-size: 15px;
        transform: translateY(-8px);
        transition:
            max-height .35s ease,
            padding .35s ease,
            opacity .25s ease,
            visibility .25s ease,
            transform .35s ease,
            border-color .25s ease;
    }

    .ps-main-nav.is-mobile-open {
        max-height: 420px;
        margin-top: 2px;
        padding: 14px 0 8px;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        border-top: 1px solid rgba(255, 255, 255, .08);
        transform: translateY(0);
    }

    .ps-main-nav a {
        display: block;
        width: min(260px, 100%);
        padding: 11px 16px;
        text-align: center;
    }

    .ps-main-nav a::after {
        bottom: 5px;
    }
}

/* ==========================================================
   PURESCREEN - RGPD CRÉATION DE COMPTE
========================================================== */

.ps-register-rgpd {
    display: flex;
    align-items: flex-start;
    gap: 10px;

    margin: 16px 0 4px;

    font-size: 13px;
    line-height: 1.5;
    color: #d8d8d8;
}

/* Checkbox */
.ps-register-rgpd input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;

    width: 18px;
    height: 18px;
    min-width: 18px;

    margin: 1px 0 0;

    border: 2px solid #ff0000;
    border-radius: 3px;

    background: #111;

    cursor: pointer;
    position: relative;

    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

/* Checkbox cochée */
.ps-register-rgpd input[type="checkbox"]:checked {
    background: #ff0000;
    border-color: #ff0000;
}

/* Coche blanche */
.ps-register-rgpd input[type="checkbox"]:checked::after {
    content: "✓";

    position: absolute;
    top: 50%;
    left: 50%;

    transform: translate(-50%, -54%);

    color: #fff;
    font-size: 13px;
    font-weight: 900;
    line-height: 1;
}

/* Focus clavier */
.ps-register-rgpd input[type="checkbox"]:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 0, 0, 0.22);
}

/* Texte */
.ps-register-rgpd label {
    margin: 0;
    cursor: pointer;
}

/* Lien politique de confidentialité */
.ps-register-rgpd a {
    color: #fff;
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: #ff0000;
    text-underline-offset: 3px;

    transition: color 0.2s ease;
}

.ps-register-rgpd a:hover {
    color: #ff0000;
}

/* Astérisque obligatoire */
.ps-register-rgpd .required {
    color: #ff0000;
    font-weight: 900;
}


/* ==========================================================
   RESPONSIVE
========================================================== */

@media (max-width: 600px) {

    .ps-register-rgpd {
        gap: 9px;
        margin-top: 14px;

        font-size: 12px;
        line-height: 1.45;
    }

    .ps-register-rgpd input[type="checkbox"] {
        width: 17px;
        height: 17px;
        min-width: 17px;
    }
}

/* ==========================================================
   PURESCREEN - COMPTEUR PANIER HEADER
========================================================== */

.ps-header-cart {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.ps-header-cart-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 22px;
    height: 22px;

    padding: 0 6px;

    border-radius: 999px;

    background: #ffffff;
    color: var(--ps-red);

    font-size: 12px;
    font-weight: 900;
    line-height: 1;
}