/* ==========================================================
   BANDEAU BOUTIQUE - FULL WIDTH
========================================================== */

.ps-shop-home {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
    background: #121212;
}


/* Suppression de tout espace WooCommerce avant le bandeau */

body.woocommerce-shop main,
body.woocommerce-shop .site-main,
body.woocommerce-shop .woocommerce,
body.woocommerce-shop .ps-shop-home {
    margin-top: 0;
    padding-top: 0;
}


/* ==========================================================
   HERO FULL BLEED
========================================================== */

.ps-shop-hero {
    position: relative;

    width: 100vw;
    max-width: none;

    margin-top: 0;
    margin-right: calc(50% - 50vw);
    margin-bottom: 0;
    margin-left: calc(50% - 50vw);

    padding: 0;

    overflow: hidden;

    background: #121212;

    border: 0;
    border-bottom: 1px solid #333333;
}


/* ==========================================================
   IMAGE HERO
========================================================== */

.ps-shop-hero__image {
    display: block;

    width: 100%;
    max-width: none;

    height: clamp(330px, 35vw, 560px);

    margin: 0;
    padding: 0;

    object-fit: cover;
    object-position: center;

    background: #121212;
}


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

.ps-shop-main {
    padding: 55px 0 95px;
    background: #121212;
}


/* ==========================================================
   FIL D'ARIANE
========================================================== */

.ps-shop-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 7px;

    margin-bottom: 62px;

    color: #dddddd;

    font-size: 15px;
    line-height: 1.5;
}

.ps-shop-breadcrumb a {
    color: #ffffff;
    font-weight: 700;
    transition: color .2s ease;
}

.ps-shop-breadcrumb a:hover {
    color: #ff0000;
}

.ps-shop-breadcrumb span {
    color: #999999;
}


/* ==========================================================
   TITRE
========================================================== */

.ps-shop-heading {
    max-width: 950px;
    margin: 0 auto 70px;
    text-align: center;
}

.ps-shop-heading__kicker {
    display: block;

    margin-bottom: 14px;

    color: #ff0000;

    font-size: 22px;
    font-weight: 900;
    line-height: 1;

    letter-spacing: 2px;
}

.ps-shop-heading h1 {
    margin: 0;

    color: #ffffff;

    font-size: clamp(42px, 5vw, 68px);
    font-weight: 900;
    line-height: 1.05;

    text-transform: uppercase;
}

.ps-shop-heading__line {
    display: block;

    width: 86px;
    height: 4px;

    margin: 25px auto 25px;

    background: #ff0000;
    border-radius: 20px;

    box-shadow:
        0 0 14px rgba(255, 0, 0, .55);
}

.ps-shop-heading p {
    max-width: 780px;

    margin: 0 auto;

    color: #d4d4d4;

    font-size: 18px;
    line-height: 1.8;
}


/* ==========================================================
   UNIVERS AUTO / MOTO
========================================================== */

.ps-shop-universes {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 34px;

    max-width: 1280px;

    margin: 0 auto;
}


/* ==========================================================
   CARTE
========================================================== */

.ps-shop-universe-card {
    position: relative;

    overflow: hidden;

    display: flex;
    flex-direction: column;

    background: #181818;

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

    box-shadow:
        0 20px 45px rgba(0, 0, 0, .55);

    transition:
        transform .3s ease,
        border-color .3s ease,
        box-shadow .3s ease;
}

.ps-shop-universe-card:hover {
    transform: translateY(-7px);

    border-color: #ff0000;

    box-shadow:
        0 25px 55px rgba(0, 0, 0, .68),
        0 0 24px rgba(255, 0, 0, .14);
}


/* ==========================================================
   IMAGE CARTE
========================================================== */

.ps-shop-universe-card__image {
    position: relative;

    display: block;

    overflow: hidden;

    height: 360px;

    background: #000000;
}

.ps-shop-universe-card__image::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0) 55%,
            rgba(0, 0, 0, .55) 100%
        );

    pointer-events: none;
}

.ps-shop-universe-card__image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .6s ease;
}

.ps-shop-universe-card:hover
.ps-shop-universe-card__image img {
    transform: scale(1.045);
}


/* ==========================================================
   CONTENU CARTE
========================================================== */

.ps-shop-universe-card__content {
    position: relative;

    display: flex;
    flex-direction: column;

    flex: 1;

    padding:
        62px
        42px
        42px;

    text-align: center;
}


/* ==========================================================
   ICÔNE
========================================================== */

.ps-shop-universe-card__icon {
    position: absolute;

    top: -42px;
    left: 50%;

    transform: translateX(-50%);

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

    width: 84px;
    height: 84px;

    border: 2px solid #ffffff;
    border-radius: 50%;

    background: #101010;

    color: #ff0000;

    font-size: 30px;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, .65);
}


/* ==========================================================
   TITRE CARTE
========================================================== */

.ps-shop-universe-card h2 {
    margin: 0 0 18px;

    color: #ffffff;

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

    text-transform: uppercase;
}


/* ==========================================================
   COMPTEUR
========================================================== */

.ps-shop-universe-card__count {
    display: inline-flex;

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

    gap: 8px;

    width: fit-content;

    margin:
        0 auto
        28px;

    padding:
        9px
        16px;

    border: 1px solid #666666;
    border-radius: 7px;

    background: #111111;

    color: #ffffff;

    font-size: 16px;
}

.ps-shop-universe-card__count strong {
    color: #ff0000;

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


/* ==========================================================
   TEXTE CARTE
========================================================== */

.ps-shop-universe-card__content p {
    margin:
        0 0
        32px;

    color: #d0d0d0;

    font-size: 16px;
    line-height: 1.8;

    text-align: left;
}


/* ==========================================================
   CTA
========================================================== */

.ps-shop-universe-card__button {
    display: flex;

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

    gap: 20px;

    width: 100%;

    margin-top: auto;

    padding:
        20px
        26px;

    border-radius: 5px;

    background: #e60000;

    color: #ffffff;

    font-size: 18px;
    font-weight: 900;

    text-transform: uppercase;

    box-shadow:
        0 0 20px rgba(230, 0, 0, .3);

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

.ps-shop-universe-card__button:hover {
    background: #ff1a1a;

    box-shadow:
        0 0 30px rgba(255, 0, 0, .55);
}

.ps-shop-universe-card__button i {
    transition:
        transform .25s ease;
}

.ps-shop-universe-card__button:hover i {
    transform: translateX(5px);
}


/* ==========================================================
   RÉASSURANCE
========================================================== */

.ps-shop-reassurance {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    max-width: 1380px;

    margin:
        70px auto
        0;

    padding-top: 45px;

    border-top: 1px solid #333333;
}

.ps-shop-reassurance__item {
    display: flex;

    align-items: center;

    gap: 18px;

    min-height: 90px;

    padding:
        0
        28px;

    border-right: 1px solid #444444;
}

.ps-shop-reassurance__item:last-child {
    border-right: 0;
}

.ps-shop-reassurance__icon {
    display: flex;

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

    flex: 0 0 58px;

    width: 58px;
    height: 58px;

    border: 2px solid #ff0000;
    border-radius: 50%;

    color: #ff0000;

    font-size: 25px;
}

.ps-shop-reassurance__item div {
    display: flex;
    flex-direction: column;

    gap: 4px;
}

.ps-shop-reassurance__item strong {
    color: #ffffff;

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

.ps-shop-reassurance__item span:not(
    .ps-shop-reassurance__icon
) {
    color: #aaaaaa;

    font-size: 13px;
}


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

@media (max-width: 1100px) {

    .ps-shop-universes {
        gap: 24px;
    }

    .ps-shop-universe-card__image {
        height: 300px;
    }

    .ps-shop-universe-card__content {
        padding:
            58px
            28px
            32px;
    }

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

        gap: 0;
    }

    .ps-shop-reassurance__item {
        border-bottom:
            1px solid #333333;
    }

}


@media (max-width: 768px) {

    .ps-shop-hero__image {
        height: 260px;
    }

    .ps-shop-main {
        padding:
            38px
            0
            70px;
    }

    .ps-shop-breadcrumb {
        margin-bottom:
            45px;
    }

    .ps-shop-heading {
        margin-bottom:
            50px;
    }

    .ps-shop-heading__kicker {
        font-size: 17px;
    }

    .ps-shop-heading h1 {
        font-size: 38px;
    }

    .ps-shop-heading p {
        font-size: 15px;
    }

    .ps-shop-universes {
        grid-template-columns: 1fr;
    }

    .ps-shop-universe-card__image {
        height: 280px;
    }

    .ps-shop-universe-card h2 {
        font-size: 31px;
    }

    .ps-shop-reassurance {
        grid-template-columns: 1fr;
    }

    .ps-shop-reassurance__item {
        border-right: 0;
    }

}


@media (max-width: 480px) {

    .ps-shop-hero__image {
        height: 210px;
    }

    .ps-shop-universe-card__image {
        height: 230px;
    }

    .ps-shop-universe-card__content {
        padding:
            55px
            20px
            25px;
    }

    .ps-shop-universe-card__button {
        font-size: 15px;
    }

}

/* ==========================================================
   PURESCREEN - CTA DEMANDE MODÈLE
========================================================== */

.ps-model-request-cta {
    width: 100%;
    max-width: 980px;

    margin:
        55px
        auto
        55px;

    text-align: center;
}


.ps-model-request-cta__button {
    position: relative;

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

    width: 100%;

    padding:
        24px
        35px;

    border:
        2px solid
        var(--ps-red);

    border-radius: 8px;

    background:
        linear-gradient(
            135deg,
            #1c1c1c,
            #111111
        );

    color: #ffffff;

    cursor: pointer;

    box-shadow:
        0 12px 30px
        rgba(0, 0, 0, .30);

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


.ps-model-request-cta__button:hover {
    transform:
        translateY(-3px);

    background:
        var(--ps-red);

    box-shadow:
        0 14px 36px
        rgba(213, 0, 0, .30);
}


.ps-model-request-cta__line1 {
    display: block;

    font-size:
        clamp(18px, 1.6vw, 23px);

    font-weight: 900;

    line-height: 1.25;
}


.ps-model-request-cta__line2 {
    display: block;

    margin-top: 8px;

    font-size:
        clamp(14px, 1.2vw, 17px);

    font-weight: 700;

    line-height: 1.35;

    opacity: .92;
}


/* ==========================================================
   PURESCREEN - MODALE DEMANDE MODÈLE
========================================================== */

.ps-model-request-modal
.ps-contact-modal__dialog {
    width: min(900px, 100%);
}


.ps-model-request-form
.ps-contact-form__field--full {
    grid-column: 1 / -1;
}


.ps-model-request-label {
    display: block;

    margin-bottom: 8px;

    color: #ffffff;

    font-size: 13px;

    font-weight: 800;
}


/* ==========================================================
   AUTO / MOTO
========================================================== */

.ps-model-request-radio {
    display: flex;

    gap: 14px;
}


.ps-model-request-radio label {
    position: relative;

    flex: 1 1 0;

    cursor: pointer;
}


.ps-model-request-radio input {
    position: absolute;

    opacity: 0;

    pointer-events: none;
}


.ps-model-request-radio span {
    display: flex;

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

    min-height: 48px;

    border:
        1px solid
        #444444;

    border-radius: 6px;

    background: #111111;

    color: #ffffff;

    font-size: 13px;

    font-weight: 900;

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


.ps-model-request-radio
input:checked + span {
    border-color:
        var(--ps-red);

    background:
        var(--ps-red);

    color:
        #ffffff;
}


/* ==========================================================
   MARQUE / MODÈLE / ANNÉE
========================================================== */

.ps-model-request-vehicle {
    display: grid;

    grid-template-columns:
        1fr
        1.4fr
        .65fr;

    gap: 12px;
}


.ps-model-request-vehicle input {
    width: 100%;
}


/* ==========================================================
   BOUTON ENVOI
========================================================== */

.ps-model-request-form__footer {
    display: flex;

    justify-content: center;

    margin-top: 24px;
}


.ps-model-request-form__submit {
    min-width: 260px;

    min-height: 50px;

    padding:
        0
        28px;

    border: 0;

    border-radius: 5px;

    background:
        var(--ps-red);

    color: #ffffff;

    font-family: inherit;

    font-size: 14px;

    font-weight: 900;

    text-transform: uppercase;

    cursor: pointer;

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


.ps-model-request-form__submit:hover {
    transform:
        translateY(-2px);

    background:
        #ff0000;
}


/* ==========================================================
   CONFIRMATION
========================================================== */

.ps-model-request-modal__dialog--success {
    width: min(620px, 100%) !important;
}


.ps-model-request-success {
    padding:
        22px
        15px
        10px;

    text-align: center;
}


.ps-model-request-success__icon {
    display: flex;

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

    width: 64px;
    height: 64px;

    margin:
        0
        auto
        20px;

    border:
        2px solid
        var(--ps-red);

    border-radius: 50%;

    color:
        var(--ps-red);

    font-size: 26px;
}


.ps-model-request-success h2 {
    margin: 0;

    color: #ffffff;

    font-size:
        clamp(27px, 3vw, 38px);

    font-weight: 900;

    text-transform: uppercase;
}


.ps-model-request-success__line {
    display: block;

    width: 65px;
    height: 4px;

    margin:
        18px
        auto
        24px;

    border-radius: 10px;

    background:
        var(--ps-red);
}


.ps-model-request-success p {
    max-width: 500px;

    margin:
        0
        auto
        12px;

    color: #d5d5d5;

    font-size: 15px;

    line-height: 1.7;
}


.ps-model-request-success p strong {
    color: #ffffff;
}


.ps-model-request-success__button {
    min-width: 160px;

    margin-top: 22px;

    padding:
        14px
        25px;

    border: 0;

    border-radius: 5px;

    background:
        var(--ps-red);

    color: #ffffff;

    font-family: inherit;

    font-weight: 900;

    cursor: pointer;
}


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

@media (max-width: 768px) {

    .ps-model-request-cta {
        margin:
            38px
            auto
            38px;
    }


    .ps-model-request-cta__button {
        padding:
            20px
            20px;
    }


    .ps-model-request-radio {
        flex-direction: column;
    }


    .ps-model-request-vehicle {
        grid-template-columns: 1fr;
    }


    .ps-model-request-form__submit {
        width: 100%;
        min-width: 0;
    }

}

/* ==========================================================
   PURESCREEN - RGPD DEMANDE MODÈLE
========================================================== */

.ps-model-request-rgpd {
    margin-top: 4px;
}

.ps-model-request-rgpd__label {
    display: flex;
    align-items: flex-start;

    gap: 10px;

    color: #aaaaaa;

    font-size: 11px;
    line-height: 1.5;

    cursor: pointer;
}

.ps-model-request-rgpd__label input {
    width: 16px;
    height: 16px;

    margin: 1px 0 0;

    flex: 0 0 16px;

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

    cursor: pointer;
}

.ps-model-request-rgpd__label span {
    display: block;
}

/* ==========================================================
   PURESCREEN - CTA SOUS LES MARQUES
========================================================== */

.ps-model-request-archive {
    width: 100%;
    margin-top: 55px;
}

.ps-model-request-archive__separator {
    width: 100%;
    height: 1px;

    margin-bottom: 42px;

    background: #3a3a3a;
}

.ps-model-request-archive .ps-model-request-cta {
    margin-top: 0;
    margin-bottom: 0;
}