body.wb-basket-page .wb-ms3-hidden-sinks {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(0 0 0 0) !important;
    white-space: nowrap !important;
}

body.wb-basket-page .wb-money-value {
    display: inline-block;
    transition: opacity .16s ease, transform .16s ease;
    will-change: opacity, transform;
}

body.wb-basket-page.wb-totals-recalculating .wb-money-value {
    opacity: .55;
    transform: translateY(1px);
}

body.wb-basket-page .wb-free-delivery-title {
    display: block;
}

body.wb-basket-page .wb-free-delivery-title__line {
    display: block;
}

body.wb-basket-page .wb-free-delivery-title__amount {
    white-space: nowrap;
}

body.wb-basket-page .wb-basket-delivery-progress.is-free-delivery-active [data-wb-free-delivery-left] {
    font-size: 15px;
    line-height: 1.1;
}

body.wb-basket-page .wb-basket-grid--empty {
    display: block;
}

body.wb-basket-page .wb-basket-grid--empty .wb-basket-cart-col {
    width: 100%;
}

body.wb-basket-page .wb-basket-empty-state {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    align-items: center;
    gap: 32px;
    min-height: 360px;
    padding: clamp(28px, 5vw, 56px);
    border-radius: 36px;
    background: linear-gradient(135deg, #fff, #fff4fa);
    box-shadow: 0 18px 56px rgba(18, 20, 32, .06);
    overflow: hidden;
}

body.wb-basket-page .wb-basket-empty-state__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding: 7px 18px;
    margin-bottom: 18px;
    border-radius: 999px;
    background: #ef8aba;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    line-height: 1;
}

body.wb-basket-page .wb-basket-empty-state h1 {
    margin: 0 0 16px;
    color: #11172a;
    font-family: var(--wb-font-base);
    font-size: clamp(34px, 5vw, 58px);
    font-weight: 800;
    line-height: .95;
}

body.wb-basket-page .wb-basket-empty-state p {
    max-width: 480px;
    margin: 0 0 28px;
    color: rgba(17, 23, 42, .72);
    font-size: 18px;
    font-weight: 600;
    line-height: 1.28;
}

body.wb-basket-page .wb-basket-empty-state__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

body.wb-basket-page .wb-basket-empty-state__secondary {
    min-height: 54px;
    padding: 0 26px;
    border-radius: 16px;
    background: #f3f3f5;
    color: #11172a;
    font-weight: 800;
}

body.wb-basket-page .wb-basket-empty-state__media {
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

body.wb-basket-page .wb-basket-empty-state__media img {
    display: block;
    width: min(260px, 100%);
    height: auto;
    transform: rotate(3deg);
    filter: drop-shadow(0 20px 24px rgba(17, 23, 42, .12));
}

body.wb-checkout-page .wb-checkout-heading {
    margin: 0 0 22px;
}

body.wb-checkout-page .wb-checkout-heading p {
    margin: 8px 0 0;
    color: rgba(17, 23, 42, .65);
    font-size: 17px;
    font-weight: 600;
}

body.wb-basket-page .wb-basket-checkout[disabled] {
    opacity: .5;
    pointer-events: none;
}

@media (max-width: 767.98px) {
    body.wb-basket-page .wb-basket-empty-state {
        grid-template-columns: 1fr;
        min-height: auto;
        padding: 28px 22px 32px;
        border-radius: 28px;
        text-align: center;
    }

    body.wb-basket-page .wb-basket-empty-state p {
        margin-left: auto;
        margin-right: auto;
        font-size: 15px;
    }

    body.wb-basket-page .wb-basket-empty-state__actions {
        justify-content: center;
    }

    body.wb-basket-page .wb-basket-empty-state__media {
        order: -1;
    }

    body.wb-basket-page .wb-basket-empty-state__media img {
        width: 170px;
    }
}