.page-content {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    position: relative;
}
.page-content.checkout {
    padding-bottom: 0;
}

.page-header {
    position: relative;
    overflow: hidden;
    width: 100%;
    background-color: #000;
    width: calc(100% - 1.2rem);
    border-radius: 2.4rem;
    margin: 0 auto;
}

.page-header__bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: .5;
}
.page-header__content {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    flex-direction: column;
    z-index: 10;
    padding: 14rem 8rem 14rem;
}

.page-header .return-btn {
    height: 3.8rem;
    border-radius: 20rem;
    background-color: rgba(0, 0, 0, .12);
    padding: 0 1.6rem 0 .4rem;
    display: flex;
    align-items: center;
    font-size: 1.4rem;
    font-weight: 700;
    color: #000;
}
.page-header .return-btn__icon {
    color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    width: 3rem;
    height: 3rem;
    border-radius: 10rem;
    margin-right: 1rem;
    background-color: rgba(0, 0, 0, .3);
}
.page-header .return-btn__icon:before {
    content: '\e84d';
    font-family: 'Fontello';
}

.page-header__title {
    font-weight: 200;
    position: relative;
    display: block;
    /* text-transform: lowercase; */
    font-size: 5.2rem;
    line-height: 1.1;
    text-align: center;
    color: #fff;
}







.page-body {
    padding: 0 8rem;
    width: 100%;
    display: flex;
    position: relative;
}
.page-content.product .page-body {
    padding: 0;
}
.page-content.checkout .page-body {
    padding: 0;
}

.page-body__content {
    display: flex;
    width: 100%;
    flex-direction: row;
    align-items: flex-start;
    position: relative;
}


.page-main {
    width: 100%;
    position: relative;
    flex-shrink: 1;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}
.page-content.catalog .page-body {
    padding: 0;
}
.page-content.catalog .page-main__content {
    padding-top: 8rem;
}
.page-main__content {
    width: 100%;
    display: flex;
    align-items: stretch;
    flex-direction: column;
}






.tinv-wishlist-clear {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 12rem;
}
.cart-empty {
    text-align: center;
    line-height: 1.3;
}
.return-to-shop {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    margin-top: 3.6rem;
}
.return-to-shop a {
    display: flex;
    align-items: center;
    padding: 0 3.4rem 0 3.6rem;
    height: 6rem;
    border-radius: .6rem;
    background-color: #DACDBD;
    text-transform: uppercase;
    letter-spacing: .2rem;
    font-size: 1.2rem;
}


