/* =========================
   EMPTY CART ONLY
========================= */

.my-empty-cart {
    display: flex;
    min-height: 100vh;
    width: 100%;
    background: #ececec;
}

/* BOTH SIDES */
.my-empty-cart .empty-content-left,
.my-empty-cart .empty-content-right {
    width: 50%;
    flex: 0 0 50%;
}

/* LEFT SIDE */
.my-empty-cart .empty-content-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;

    padding: 60px 70px;
    background: #ececec;
}

/* RIGHT SIDE */
.my-empty-cart .empty-content-right {
    position: relative;
    background: #FFFFFF;
    overflow: hidden;
}

/* subtle editorial panel */
.my-empty-cart .empty-content-right::before {
    content: "";
    position: absolute;
    inset: 10%;
    background: rgba(255, 255, 255, 0.28);
}

/* LOGO */
.my-empty-cart .cart-logo {
    margin-bottom: 34px;
}

.my-empty-cart .cart-logo img {
    display: block;
    width: 320px;
    max-width: 100%;
    height: auto;
}

/* TITLE */
.my-empty-cart .empty-title {
    margin: 0 0 18px;
    font-family: "Sofia Pro", Sans-serif;
    font-size: 48px;
    line-height: 0.95;
    font-weight: 200;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: #111;
}
/* TEXT */
.my-empty-cart .empty-text {
	font-family: "Sofia Pro", Sans-serif;
	font-weight: 100;
    max-width: 520px;
    margin: 0 0 34px;
    font-size: 20px;
    line-height: 1.5;
    color: #111;
}

/* BOTTOM LINK */
.my-empty-cart .checkout-bottom-nav {
    margin-top: 6px;
}

.my-empty-cart .checkout-back-link {
    display: inline-block;
    font-size: 18px;
    color: #111;
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
}

.my-empty-cart .checkout-back-link:hover {
    color: #8d8d8d;
    transform: translateX(-2px);
}

/* =========================
   TABLET
========================= */

@media (max-width: 1024px) {
    .my-empty-cart .empty-content-left {
        padding: 44px 36px;
    }

    .my-empty-cart .cart-logo img {
        width: 260px;
    }

    .my-empty-cart .empty-title {
        font-size: 52px;
    }

    .my-empty-cart .empty-text {
        font-size: 18px;
        max-width: 440px;
    }
}

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

@media (max-width: 767px) {
    .my-empty-cart {
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .my-empty-cart .empty-content-right {
        display: none;
    }

    .my-empty-cart .empty-content-left {
        width: 100%;
        flex: 0 0 100%;

        min-height: 100vh;
        padding: 24px 20px;

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

        text-align: center;
    }

    .my-empty-cart .cart-logo {
        margin-bottom: 22px;
    }

    .my-empty-cart .cart-logo img {
        width: 210px;
        margin: 0 auto;
    }

    .my-empty-cart .empty-title {
        font-size: 36px;
        line-height: 1;
        margin: 0 0 12px;
        text-align: center;
    }

    .my-empty-cart .empty-text {
        max-width: 320px;
        font-size: 16px;
        line-height: 1.5;
        margin: 0 0 24px;
        text-align: center;
    }

    .my-empty-cart .checkout-bottom-nav {
        margin-top: 0;
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .my-empty-cart .checkout-back-link {
        font-size: 16px;
        justify-content: center;
    }
}