.flatbread_section {
    padding: 40px 0px;
    background: #fff4f4;
}

.flatbread_wrapper {
    display: grid;
    grid-template-columns: 430px 1fr;
    gap: 60px;
    align-items: center;
}

.flatbread_image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 18px;
    display: block;
}

.section_title {
    color: #b71c1c;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.flatbread_content h2 {
    font-size: 40px;
    margin: 12px 0 30px;
    color: #222;
}

.bread_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 35px;
}

.bread_grid div {
    background: #fff;
    padding: 16px 20px;
    border-left: 4px solid #b71c1c;
    border-radius: 10px;
    font-weight: 600;
    color: #444;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .05);
}

.flatbread_description p {
    margin-bottom: 10px;
    line-height: unset;
    color: #000;
    font-size: 16px;
    font-weight: 500;
}


/* ----------------------------- */

.sweets_section {
    padding: 50px 0;
    background: #ffffff;
}

.sweets_wrapper {
    display: grid;
    grid-template-columns: 1fr 430px;
    gap: 60px;
    align-items: center;
}

.section_title {
    color: #b71c1c;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.sweets_content h2 {
    font-size: 40px;
    margin: 12px 0 30px;
    color: #222;
}

.sweets_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 35px;
}

.sweets_grid div {
    background: #fff;
    border-left: 4px solid #b71c1c;
    border-radius: 10px;
    padding: 16px 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .05);
    font-weight: 600;
    color: #444;
}

.sweets_description p {
    margin-bottom: 18px;
    line-height: 1.9;
    color: #555;
    font-size: 17px;
}

.sweets_image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 18px;
    display: block;
}



/* ------------------------ */

.vegetable_section {
    padding: 90px 0;
    background: #fafafa;
}

.vegetable_wrapper {
    display: grid;
    grid-template-columns: 430px 1fr;
    gap: 60px;
    align-items: center;
}

.vegetable_image img {
    width: 100%;
    height: 500px;
    object-fit: fill;
    border-radius: 18px;
    display: block;
}

.section_title {
    color: #2e7d32;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.vegetable_content h2 {
    font-size: 40px;
    margin: 12px 0 25px;
    color: #222;
}

.vegetable_content p {
    font-size: 16px;
    line-height: unset;
    color: #000;
    margin-bottom: 30px;
}

.vegetable_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.vegetable_grid div {
    background: #fff;
    padding: 16px 20px;
    border-left: 4px solid #2e7d32;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .05);
    font-weight: 600;
    color: #444;
}

@media (min-width:0px) and (max-width: 575px) {
    .flatbread_content h2 {
        font-size: 18px;
    }

    .flatbread_description p {
        font-size: 13px;
    }

    .bread_grid div {
        font-size: 12px;
        padding: 8px 10px 8px 7px;
    }

    .flatbread_wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .sweets_wrapper.flatbread_wrapper {
        display: flex;
        flex-direction: column-reverse;
    }

    .flatbread_image {
        width: 100%;
    }

    .flatbread_image img {
        height: 160px;
        object-fit: fill;
        width: 70%;
        margin: 0 auto;
    }
}

@media (min-width: 576px) and (max-width: 767.98px) {
    .flatbread_content h2 {
        font-size: 23px;
    }

    .flatbread_description p {
        font-size: 14px;
    }

    .bread_grid div {
        font-size: 13px;
        padding: 8px 20px 8px 10px;
    }

    .flatbread_wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .sweets_wrapper.flatbread_wrapper {
        display: flex;
        flex-direction: column-reverse;
    }

    .flatbread_image {
        width: 100%;
    }

    .flatbread_image img {
        height: 280px;
        object-fit: fill;
        width: 70%;
        margin: 0 auto;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .flatbread_content h2 {
        font-size: 25px;
    }

    .flatbread_description p {
        font-size: 14px;
    }

    .bread_grid div {
        font-size: 14px;
        padding: 8px 20px 8px 10px;
    }

    .flatbread_wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .sweets_wrapper.flatbread_wrapper {
        display: flex;
        flex-direction: column-reverse;
    }

    .flatbread_image {
        width: 100%;
    }

    .flatbread_image img {
        height: 350px;
        object-fit: fill;
        width: 70%;
        margin: 0 auto;
    }
}


@media (min-width: 992px) and (max-width: 1199px) {
    .flatbread_content h2 {
        font-size: 25px;
    }

    .flatbread_description p {
        font-size: 14px;
    }

    .flatbread_image img {
        height: 350px;
        object-fit: fill;
    }

    .bread_grid div {
        font-size: 14px;
        padding: 8px 20px 8px 10px;
    }
}


@media (min-width: 1200px) and (max-width: 1399px) {
    .flatbread_content h2 {
        font-size: 31px;
    }

    .flatbread_description p {
        font-size: 15px;
    }

    .flatbread_image img {
        height: 450px;
    }

    .bread_grid div {
        font-size: 15px;
        padding: 13px 20px;
    }
}