@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;600;700&display=swap');

:root {
    --main-color: #E31235;
    --color-text-main: #000;
    --title-size: 44px;
    --text-size: 16px;
    --section-margin: 96px;
    --color-dark: #333;
}

body {
    margin: 0;
}


.page-cake {
    padding: 0;
    color: var(--color-text-main);
    font-family: 'Roboto', sans-serif;
    background-color: #fff;
}

.cake-container {
    width: 100%;
    margin: auto;
    max-width: 1228px;
    /* padding: 0 4.2vw; */
}

.cake-title {
    font-size: var(--title-size);
    margin: 0;
    line-height: 1.1em;
}

.cake-text {
    line-height: 1.5em;
    font-size: var(--text-size);
    margin: 0;
}

.page-cake img {
    max-width: 100%;
    vertical-align: middle;
    border-style: none;
}

.page-cake * {
    box-sizing: border-box;
}

.cake-mob {
    display: none;
}
.red-text {
    color: var(--main-color);
}

/* cake-banner */

.cake-banner,
.cake-listing {
    margin-bottom: var(--section-margin);
}

/* cake-row */

.cake-row {

}

.cake-row__wrapper {
    display: flex;
    gap: 20px;
}

.cake-row__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    max-width: 42%;
}

.cake-row__title {
    margin-bottom: 24px;
}

.cake-row__image {
    width: 100%;
    max-width: 58%;
}

@media(max-width: 768px) {
    .cake-row__wrapper {
        flex-direction: column;
    }
    .cake-row__content {
        max-width: none;
        order: -1;
    }
    .cake-row__image {
        max-width: none;
    }
    .cake-row__title {
        font-size: 36px;
        margin-bottom: 8px;
    }
}

/* cake-promo */

.cake-promo {
    margin-bottom: var(--section-margin);
}

.cake-promo__wrapper {
    background: #FFF9F0 url(../img/reciept-block-bg.png) no-repeat center/cover;
    padding: 38px 0;
    border-radius: 16px;
}

.cake-promo__content {
    max-width: 701px;
    text-align: center;
    margin: auto;
}

.cake-promo__title {
    font-size: 36px;
    margin-bottom: 12px;
}

@media(max-width: 768px) {
    .cake-promo__wrapper {
        background-image: none;
        padding: 16px;
    }
    .cake-promo__title {
        font-size: 24px;
        margin-bottom: 12px;
    }
}

/* cake-reciept */

.cake-reciept {
    margin-bottom: var(--section-margin);
}

.cake-reciept__slider {
    padding-bottom: 50px;
}

.cake-reciept__slider-card {
    border-radius: 16px;
    background-color: #FFF9F0;
    overflow: hidden;
}

.cake-reciept__slider-card img {
    width: 100%;
}

.cake-reciept__slider-content {
    padding: 16px;
    min-height: 330px;
}

.cake-reciept__slider-title {
    margin: 0 0 16px;
    font-size: 24px;
    text-transform: uppercase;
}

.cake-reciept__slider-text {
    font-size: 12px;
    font-weight: 500;
    margin: 0 0 12px;
}

.cake-reciept__slider-list {
    font-size: 12px;
    line-height: 1.4em;
    padding: 0 0 0 20px;
    margin: 0 0 16px;
    list-style: decimal;
}

.cake-reciept__slider-list--dots {
    font-weight: 500;
    list-style: disc;
}

.swiper-pagination-bullet-active {
    background: var(--main-color);
}

@media(max-width: 1200px) {
    .cake-container {
        padding: 0 12px;
    }
}

@media(max-width: 768px) {
    :root {
        --section-margin: 40px;
    }
    .cake-btn {
        font-size: 14px;
        padding: 8px 14px;
    }
    
    
    .cake-pc {
        display: none;
    }
    .cake-mob {
        display: block;
    }
    /* .cake-reciept__slider-content {
        min-height: auto;
    } */
}