/* ==========================================================
   PURESCREEN - PANIER VIDE
   Fichier dédié : purescreen-cart-empty.css
========================================================== */

.ps-cart-page--empty {
    min-height: calc(100vh - 420px);
    padding-bottom: 90px;
}

.ps-cart-page--empty .ps-cart-header {
    margin-bottom: 48px;
}

.ps-cart-empty {
    width: min(760px, calc(100% - 40px));
    margin: 0 auto;
    padding: 52px 42px;
    background: #181818;
    border: 1px solid #333333;
    border-radius: 14px;
    text-align: center;
    box-shadow:
        0 18px 45px rgba(0, 0, 0, .38),
        0 0 24px rgba(213, 0, 0, .05);
}

.ps-cart-empty__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 78px;
    height: 78px;
    margin: 0 auto 24px;
    border: 2px solid var(--ps-red);
    border-radius: 50%;
    color: var(--ps-red);
    font-size: 30px;
    box-shadow: 0 0 22px rgba(213, 0, 0, .16);
}

.ps-cart-empty h2 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(28px, 4vw, 38px);
    font-weight: 900;
    line-height: 1.1;
    text-transform: uppercase;
}

.ps-cart-empty h2::after {
    content: "";
    display: block;
    width: 64px;
    height: 3px;
    margin: 18px auto 22px;
    background: var(--ps-red);
    border-radius: 20px;
    box-shadow: 0 0 10px rgba(213, 0, 0, .45);
}

.ps-cart-empty p {
    max-width: 580px;
    margin: 0 auto 30px;
    color: #bdbdbd;
    font-size: 16px;
    line-height: 1.8;
}

.ps-cart-empty__button {
    gap: 10px;
    min-width: 230px;
}

@media (max-width: 768px) {

    .ps-cart-page--empty {
        min-height: calc(100vh - 360px);
        padding-bottom: 65px;
    }

    .ps-cart-page--empty .ps-cart-header {
        margin-bottom: 34px;
    }

    .ps-cart-empty {
        width: min(100% - 28px, 760px);
        padding: 38px 22px;
        border-radius: 12px;
    }

    .ps-cart-empty__icon {
        width: 68px;
        height: 68px;
        margin-bottom: 20px;
        font-size: 26px;
    }

    .ps-cart-empty p {
        font-size: 15px;
    }

    .ps-cart-empty__button {
        width: 100%;
        min-width: 0;
    }
}
