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

.page-header {
    position: relative;
    overflow: hidden;
    width: 100%;
    background-color: #000;
    border-radius: 5rem 5rem 0 0;
}
.page-header__bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: .4;
}
.page-header__content {
    position: relative;
    display: flex;
    align-items: flex-start;
    overflow: hidden;
    flex-direction: column;
    z-index: 10;
    padding: 12rem 8rem;
}

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

.page-header__title {
    font-weight: 700;
    position: relative;
    display: block;
    font-size: 6rem;
    line-height: 1.2;
    color: #fff;
}







.page-body {
    padding: 0 3.6rem;
    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-main {
    width: calc(100% - 30rem);
} */
.page-main__content {
    width: 100%;
    display: flex;
    align-items: stretch;
    flex-direction: column;
}








.stores-content {
    display: flex;
    width: 100%;
    align-items: stretch;
    gap: 1.2rem;
}
.stores-content .article {
    width: auto;
    flex-shrink: 0;
}
.stores-content .map-wrapper {
    position: relative;
    width: 100%;
    border-radius: 5rem;
    overflow: hidden;
}
.stores-content .map-wrapper iframe {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}




