body {
    margin:0;
    font-family:'Albert Sans',sans-serif;
}
header {
    position: fixed;
    top: 0;
    left: 0;    width: 100%;
    height: 64px;
    background-color: white;
    z-index: 1000;
}

nav {
    padding: 0 30px;
    height: 64px;

    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
}
nav .logo {
    justify-self: center;
    font-size: 30px;
    font-weight: 700;
    color: #EB252B;
}
.nav-right {
    justify-self: end;
    display: grid;
    grid-template-columns: repeat(3, auto);
    gap: 30px;
}
nav a {
    color: black;
    text-decoration: none;

    font-family: 'Albert Sans', sans-serif;
    font-size: 15px;
    line-height: 20px;
    font-weight: 500;

    text-transform: uppercase;
    position: relative;
    width: fit-content;
}

nav a::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: -6px;

    width: 0;
    height: 2px;

    background-color: #000;

    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}
.nav-left {
    display: grid;
    grid-template-columns: repeat(4, auto);
    gap: 36px;
}
button {
    background-color: #EB252B;
    color: #FFE500;

    border: none;
    padding: 8px 17px;
    border-radius: 4px;

    font-family: 'Albert Sans', sans-serif;
    font-size: 15px;
    line-height: 20px;
    font-weight: 500;

    text-transform: uppercase;
}
button {
    transition: background-color 0.25s ease,
                color 0.25s ease;
}

button:hover {
    background-color: #FFE500;
    color: #EB252B;
    cursor: pointer;
}
.shop-panel {
    position: fixed;

    top: 64px;
    left: 0;

    width: 100%;
    height: 390px;

    background-color: #a95860;

    display: none;
    grid-template-columns: 200px 1fr;

    box-sizing: border-box;

    z-index: 999;
}

.shop-panel.open {
    display: grid;
}

.shop-menu {
    padding: 35px 30px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.shop-menu-top,
.shop-menu-bottom {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.shop-menu {
    padding: 28px 28px 20px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    box-sizing: border-box;
}

.shop-products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 28px;

    padding: 28px 40px 28px 20px;

    align-items: center;

    overflow: hidden;

    box-sizing: border-box;
}

.shop-product {
    width: 100%;
    height: 280px;

    background-color: white;
    border-radius: 14px;

    display: flex;
    justify-content: center;
    align-items: center;

    overflow: hidden;
}


.shop-product img {
    width: 90%;
    height: 90%;

    object-fit: contain;
}
.hero {
    width: 100%;
    min-height: 1020px;
    margin-top: 64px;
    background-image: url("https://res.cloudinary.com/cu5swgf2/image/upload/v1790241578/all_bg.webp");
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
    padding: 35px 5% 55px;
}



.hero-question {
    position: absolute;
    top: 28px;
    right: 3%;

    margin: 0;

    font-size: 48px;
    font-weight: 400;
    line-height: 1.6;

    color: #ffffff;

    z-index: 3;
}

.hero-main {
    position: relative;
    width: 100%;
    height: 900px;
}

.hero-title {
    position: absolute;

    left: 0;
    top: 310px;

    margin: 0;

    font-size: 225px;
    font-weight: 800;
    line-height: 1.1;

    color: #111827;

    z-index: 2;
}
.hero-line {
    display: inline-block;

    width: 500px;
    height: 24px;

    margin-left: 35px;

    background-color: #111827;
}

.hero-mark {
    display: inline-block;

    margin-left: 25px;

    font-size: 120px;
    font-weight: 800;
}

.hero-noodle {
    position: absolute;

    right: -125px;
    top: 10px;

    width: 680px;
    height: auto;

    z-index: 3;

    mix-blend-mode: multiply;
}

.hero-description {
    width: 85%;
    max-width: 1350px;

    margin: 120px auto 0;

    text-align: center;

    font-size: 40px;
    font-weight: 600;
    line-height: 1.35;

    color: #000;
}

.breakfast {
    height: calc(100vh - 84px);
    min-height: 650px;
    background-image: url("https://res.cloudinary.com/cu5swgf2/image/upload/v1790240355/breakfast.bg.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}
.breakfast-text {
    position: absolute;
    top: 7%;
    right: calc(8% - 50px);
    width: 720px;

    font-family: 'Albert Sans', sans-serif;
    color: #000;
}
.breakfast h2 {
    width: 100%;
    margin: 0 0 55px 0;

    font-size: 96px;
    line-height: 1.05;
    font-weight: 700;
    color: white;

    text-align: left;
}

.breakfast-slogan {
    width: 540px;
    margin: 0 0 32px 120px;

    font-size: 49px;
    line-height: 1.08;
    font-weight: 600;

    text-align: left;
}

.breakfast-info {
    width: 500px;
    margin-left: 120px;

    font-size: 23px;
    line-height: 1.18;
    font-weight: 500;

    text-align: left;
}

.breakfast-info p {
    margin: 0 0 8px 0;
    text-align: left;
}

.breakfast-info p:first-child {
    font-weight: 700;
}
.lunch {
    height: calc(100vh - 84px);
    min-height: 700px;

    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.35),
            rgba(255, 255, 255, 0.35)
        ),
        url("https://res.cloudinary.com/cu5swgf2/image/upload/v1790240352/p2.bg.webp");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    position: relative;
    overflow: hidden;
}

.lunch-text {
    position: absolute;
    top: 7%;
    left: 5%;
    width: 650px;
    height: 86%;
    font-family: 'Albert Sans', sans-serif;
    color: #000;
}

.lunch h2 {
    margin: 0;
    font-size: 64px;
    line-height: 1.08;
    font-weight: 700;
}

.lunch-slogan {
    position: absolute;
    top: 40%;
    margin: 0;
    font-size: 42px;
    line-height: 1.08;
    font-weight: 600;
    text-align: left;
}

.lunch-info {
    position: absolute;
    top: 68%;
    width: 520px;
    margin: 0;
    font-size: 22px;
    line-height: 1.2;
    text-align: left;
}

.lunch-code {
    margin: 0 0 5px 0;
    font-weight: 700;
}

.lunch-name {
    margin: 0 0 5px 0;
    font-weight: 700;
}

.lunch-description {
    margin: 0;
    font-weight: 600;
}
.dinner {
    height: calc(100vh - 84px);
    min-height: 700px;
    background-image:
        linear-gradient(
            rgba(84, 58, 21, 0.6),
            rgba(84, 58, 21, 0.6)
        ),
        url("https://res.cloudinary.com/cu5swgf2/image/upload/v1790240353/p3.bg.webp");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    position: relative;
    overflow: hidden;
}

.dinner-text {
    position: absolute;

    top: 6%;
    left: 8%;

    width: 84%;
    height: 88%;

    font-family: 'Albert Sans', sans-serif;
    color: white;
}

.dinner h2 {
    position: absolute;

    top: 0;
    right: 0;

    margin: 0;

    font-size: 64px;
    line-height: 1.05;
    font-weight: 700;

    color: white;
    text-align: left;
}

.dinner-slogan {
    position: absolute;

    top: 43%;
    left: 0;

    margin: 0;

    font-size: 42px;
    line-height: 1.08;
    font-weight: 600;

    color: white;
    text-align: left;
}

.dinner-info {
    position: absolute;

    top: calc(70% + 60px);
    right: -60px;

    width: 500px;

    margin: 0;

    font-size: 22px;
    line-height: 1.2;

    color: white;
    text-align: left;
}

.dinner-code {
    margin: 0 0 5px 0;
    font-weight: 700;
}

.dinner-name {
    margin: 0 0 5px 0;
    font-weight: 700;
}

.dinner-description {
    margin: 0;
    font-weight: 600;
}
.late-night {
    height: calc(100vh - 84px);
    min-height: 700px;

    background-image:
        linear-gradient(
            rgba(51, 64, 77, 0.7),
            rgba(51, 64, 77, 0.7)
        ),
        url("https://res.cloudinary.com/cu5swgf2/image/upload/v1790240357/p4.bg.webp");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    position: relative;
    overflow: hidden;
}
.late-night-text {
    position: absolute;

    top: 5%;
    left: 6%;

    width: 88%;
    height: 90%;

    font-family: 'Albert Sans', sans-serif;
    color: #000;
}

.late-night h2 {
    position: absolute;

    top: 0;
    right: 0;

    margin: 0;

    font-size: 64px;
    line-height: 1.05;
    font-weight: 700;

    color: #ffffff;
    text-align: left;
}

.late-night-slogan {
    position: absolute;

    top: 38%;
    left: 0;

    margin: 0;

    font-size: 42px;
    line-height: 1.08;
    font-weight: 600;

    color: #000;
    text-align: left;
}

.late-night-info {
    position: absolute;

    top: 72%;
    left: 0;

    width: 560px;

    margin: 0;

    font-size: 22px;
    line-height: 1.2;

    color: #000;
    text-align: left;
}

.late-night-code {
    margin: 0 0 5px 0;
    font-weight: 700;
}

.late-night-name {
    margin: 0 0 5px 0;
    font-weight: 700;
}

.late-night-description {
    margin: 0;
    font-weight: 600;
}
.products-section {
    width: 100%;
    background-image: url("https://res.cloudinary.com/cu5swgf2/image/upload/v1790241578/all_bg.webp");
    background-size: cover;
    background-position: center;

    padding: 70px 0 80px;

    overflow: visible;
}

.products-slider {
    width: 100%;

    overflow-x: auto;
    overflow-y: hidden;
    padding-top: 30px;
    margin-top: -30px;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;

    scrollbar-width: none;
}

.products-slider::-webkit-scrollbar {
    display: none;
}

.products-track {
    display: flex;
    width: max-content;

    gap: 32px;

    padding: 0 3.5vw;

    box-sizing: border-box;
}

.product-item {
    flex: 0 0 28vw;

    background-color: white;
    border-radius: 18px;

    padding: 22px 22px 26px;

    box-sizing: border-box;

    color: #111827;
    text-decoration: none;
    text-align: center;

    scroll-snap-align: start;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.product-image {
    width: 100%;
    aspect-ratio: 1 / 1;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;

    object-fit: contain;

    transition: transform 0.35s ease;
}

.product-item h3 {
    margin: 18px 0 8px;

    font-size: 18px;
    font-weight: 700;
    line-height: 1.15;
}

.product-tags {
    margin: 0 0 10px;

    font-size: 13px;
    font-weight: 500;
}

.product-description {
    margin: 0;

    font-size: 13px;
    line-height: 1.4;
}

.testimonial-section {
    width: 100%;
    min-height: 620px;
    box-sizing: border-box;

    padding: 150px 30px 90px;

    background-image: url("https://res.cloudinary.com/cu5swgf2/image/upload/v1790241578/all_bg.webp");
    background-size: cover;
    background-position: center;

    display: flex;
    flex-direction: column;
    align-items: center;

    font-family: 'Albert Sans', sans-serif;
    color: #000;
}

.testimonial-label {
    margin: 0 0 85px;
    font-size: 15px;
    line-height: 1;
    font-weight: 700;
    color: white;
    text-align: center;
}

.testimonial-content {
    width: 94%;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 70px minmax(0, 1fr) 70px;
    align-items: center;
    column-gap: 35px;
}

.testimonial-quote {
    margin: 0;

    font-size: 62px;
    line-height: 1.12;
    font-weight: 700;
    font-style: normal;

    text-align: center;
}

.testimonial-arrow {
    font-size: 48px;
    font-weight: 400;
    cursor: pointer;
    text-align: center;
    line-height: 1;

    transition: transform 0.2s ease;
}

.testimonial-arrow:hover {
    transform: scale(1.15);
}

.testimonial-arrow:hover {
    background: transparent;
    color: #000;
    transform: scale(1.15);
    opacity: 0.6;
}

.testimonial-author {
    margin: 55px 0 0;

    font-size: 14px;
    line-height: 1;
    font-weight: 700;

    text-align: center;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    align-items: center;

    gap: 14px;

    margin-top: 55px;
}


.testimonial-section > input {
    display: none;
}

.noodle-animation {
    position: relative;
    width: 100%;
    height: 760px;

    background-image: url("https://res.cloudinary.com/cu5swgf2/image/upload/v1790241578/1.1.0.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    overflow: hidden;
}

.noodle-stage {
    position: relative;
    width: 100%;
    height: 100%;
}

.noodle-hand-top {
    position: absolute;

    width: 68%;
    max-width: none;
    height: auto;

    left: -8%;
    top: -13%;

    transform: rotate(8.5deg);
    transform-origin: center center;

    z-index: 3;
}
.bottom-red-extension {
    position: absolute;

    right: 0;
    bottom: 0;

    width: 58%;
    height: 260px;

    background-image: url("https://res.cloudinary.com/cu5swgf2/image/upload/v1790241578/1.1.0.webp");
    background-size: cover;
    background-position: center bottom;

    z-index: 2;
}

.noodle-hand-bottom {
    position: absolute;

    width: 55%;
    max-width: none;
    height: auto;

    right: -3%;
    top: 48%;

    transform: rotate(0deg);
    transform-origin: center center;

    z-index: 4;
}


.hanging-noodle {
    position: absolute;

    left: 31%;
    top: 42%;

    width: 18%;
    height: 58%;

    overflow: visible;

    z-index: 2;
}


.hanging-noodle path {
    fill: none;
    stroke: #f2a13b;
    stroke-width: 12;
    stroke-linecap: round;
}

.testimonial-slide {
    display: none;
    width: 100%;
}
.testimonial-slide .testimonial-quote {
    animation: reviewPop 0.35s ease;
}

@keyframes reviewPop {
    0% {
        transform: scale(0.96);
        opacity: 0.4;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

#review-1:checked ~ .testimonial-slides .slide-1 {
    display: block;
}

#review-2:checked ~ .testimonial-slides .slide-2 {
    display: block;
}

#review-3:checked ~ .testimonial-slides .slide-3 {
    display: block;
}

.testimonial-slides {
    width: 100%;
}

.testimonial-arrow {
    cursor: pointer;
}

.testimonial-dots label {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: white;
    display: block;
    cursor: pointer;

    transition: transform 0.2s ease,
                background-color 0.2s ease;
}

#review-1:checked ~ .testimonial-dots label:nth-child(1) {
    background-color: #EB252B;
}

#review-2:checked ~ .testimonial-dots label:nth-child(2) {
    background-color: #EB252B;
}

#review-3:checked ~ .testimonial-dots label:nth-child(3) {
    background-color: #EB252B;
}

.testimonial-dots label:hover {
    transform: scale(1.2);
}
.product-item:hover {
    transform: translateY(-8px);

    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.product-item:hover .product-image img {
    transform: scale(1.05);
}

.bowl-section {
    width: 100%;
    aspect-ratio: 1440 / 920;
    background-image: url("https://res.cloudinary.com/cu5swgf2/image/upload/v1790240352/footer.webp");
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}
.footer {
    width: 100%;
    background-color: #fff;
    padding: 75px 7% 32px;
    box-sizing: border-box;
    font-family: 'Albert Sans', sans-serif;
    color: #33404D;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(5, 1fr);

    gap: 70px;

    max-width: 1600px;
    margin: 0 auto 85px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-column h4 {
    margin: 0 0 24px;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 600;
}

.footer-column a {
    margin-bottom: 19px;
    color: #33404D;
    text-decoration: none;
    font-size: 16px;
    line-height: 1.25;
    font-weight: 400;
    transition: opacity 0.2s ease;
}

.footer-column a:hover {
    opacity: 0.5;
}

.footer-bottom {
    max-width: 1600px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #e5e5e5;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 15px;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 24px;
}

.footer-social a {
    color: #33404D;
    text-decoration: none;

    font-size: 15px;

    transition: opacity 0.2s ease;
}

.footer-social a:hover {
    opacity: 0.5;
}

@media (max-width: 1024px) {
    nav {
        padding: 0 20px;
    }

    .nav-left,
    .nav-right {
        gap: 12px;
    }

    nav a {
        font-size: 14px;
    }

    .breakfast-text {
        top: 8%;
        right: 5%;

        width: 600px;
    }

    .breakfast h2 {
        font-size: 76px;
    }

    .breakfast-slogan {
        width: 440px;
        margin-left: 100px;
        font-size: 40px;
    }

    .breakfast-info {
        width: 420px;
        margin-left: 100px;
        font-size: 19px;
    }

    .lunch-text {
        left: 5%;
        width: 580px;
    }

    .lunch h2 {
        font-size: 56px;
    }

    .lunch-slogan {
        font-size: 36px;
    }

    .lunch-info {
        font-size: 19px;
    }
    .dinner h2 {
        font-size: 56px;
    }

    .dinner-slogan {
        font-size: 36px;
    }

    .dinner-info {
        width: 430px;
        font-size: 19px;
    }

    .late-night h2 {
        font-size: 56px;
    }

    .late-night-slogan {
        font-size: 36px;
    }

    .late-night-info {
        width: 480px;
        font-size: 19px;
    }
}


html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

@media (max-width: 768px) {
    header {
    height: 64px;
}

nav {
    height: 64px;
    padding: 0 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-left,
.nav-right {
    display: none;
}

nav .logo {
    margin: 0 auto;
    font-size: 26px;
}

.hero {
    height: calc(100vh - 64px);
    min-height: calc(100vh - 64px);
    margin-top: 64px;
    background-position: center;
}

.hero-text {
    width: 90%;
    top: 42%;
}

.hero h1 {
    font-size: 42px;
}

.hero p {
    font-size: 20px;
}
    .breakfast,
    .lunch,
    .dinner,
    .late-night {
        position: relative;

        width: 100%;
        height: 780px;
        min-height: 780px;

        overflow: hidden;

        background-size: cover;
    }

    .breakfast-text {
        position: absolute;

        top: 55px;
        left: 7%;
        right: auto;

        width: 86%;
        height: calc(100% - 110px);
    }


    .breakfast h2 {
        position: static;

        width: 100%;

        margin: 0 0 55px 0;

        font-size: 46px;
        line-height: 1;

        text-align: left;
    }


    .breakfast-slogan {
        position: static;

        width: 100%;

        margin: 0 0 55px 0;

        font-size: 30px;
        line-height: 1.1;
    }


    .breakfast-info {
        position: static;

        width: 100%;

        margin: 0;

        font-size: 16px;
        line-height: 1.3;
    }

    .lunch {
        background-position: 68% center;
    }


    .lunch-text {
        position: absolute;

        top: 55px;
        left: 7%;
        right: auto;

        width: 86%;
        height: calc(100% - 110px);

        display: flex;
        flex-direction: column;
    }


    .lunch h2 {
        position: static;

        margin: 0;

        font-size: 46px;
        line-height: 1;

        flex: none;
    }


    .lunch-slogan {
        position: static;

        margin: auto 0 0;

        width: 100%;

        font-size: 30px;
        line-height: 1.1;

        flex: none;
    }


    .lunch-info {
        position: static;

        margin: 55px 0 0;

        width: 100%;

        font-size: 16px;
        line-height: 1.3;

        flex: none;
    }


    .dinner {
        background-position: center;
    }


    .dinner-text {
        position: absolute;

        top: 55px;
        left: 7%;
        right: auto;

        width: 86%;
        height: calc(100% - 110px);

        display: flex;
        flex-direction: column;
    }


    .dinner h2 {
        position: static;

        align-self: flex-end;

        margin: 0;

        font-size: 46px;
        line-height: 1;

        text-align: left;
    }


    .dinner-slogan {
        position: static;

        margin: auto 0 0;

        width: 100%;

        font-size: 30px;
        line-height: 1.1;
    }


    .dinner-info {
        position: static;

        align-self: flex-end;

        margin: 55px 0 0;

        width: 75%;

        font-size: 16px;
        line-height: 1.3;
    }

    .late-night {
        background-position: center;
    }


    .late-night-text {
        position: absolute;

        top: 55px;
        left: 7%;
        right: auto;

        width: 86%;
        height: calc(100% - 110px);

        display: flex;
        flex-direction: column;
    }


    .late-night h2 {
        position: static;

        align-self: flex-end;

        margin: 0;

        font-size: 44px;
        line-height: 1;

        text-align: left;
    }


    .late-night-slogan {
        position: static;

        margin: auto 0 0;

        width: 100%;

        font-size: 30px;
        line-height: 1.1;
    }


    .late-night-info {
        position: static;

        margin: 55px 0 0;

        width: 100%;

        font-size: 16px;
        line-height: 1.3;
    }
        .products-track {
        padding: 50px 24px 55px;
    }

    .product-item {
        flex: 0 0 82vw;
        margin-right: 24px;
        padding: 15px;
    }

    .product-item h3 {
        font-size: 20px;
    }

    .product-tags {
        font-size: 14px;
    }

    .product-description {
        font-size: 14px;
    }

    .bowl-section {
        width: 100%;
        aspect-ratio: 1440 / 920;
        background-size: 100% 100%;
        background-position: center;
    }

    .footer {
        padding: 55px 7% 28px;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 45px 30px;
        margin-bottom: 55px;
    }

    .footer-column h4 {
        font-size: 17px;
    }

    .footer-column a {
        font-size: 15px;
        margin-bottom: 14px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
    }

    .footer-social {
        flex-wrap: wrap;
        gap: 16px;
    }
}
@media (max-width: 480px) {
    .hero h1 {
        font-size: 36px;
        white-space: normal;
    }

    .hero p {
        font-size: 18px;
    }

    .breakfast h2,
    .lunch h2,
    .dinner h2,
    .late-night h2 {
        font-size: 38px;
        line-height: 1.05;
    }

    .breakfast-slogan,
    .lunch-slogan,
    .dinner-slogan,
    .late-night-slogan {
        font-size: 27px;
        line-height: 1.12;
    }

    .breakfast-info,
    .lunch-info,
    .dinner-info,
    .late-night-info {
        width: 100%;
        max-width: none;

        font-size: 16px;
        line-height: 1.3;
    }

    .product-item {
        flex: 0 0 88vw;
        margin-right: 18px;
    }

    .product-item h3 {
        font-size: 19px;
    }

    .product-tags {
        font-size: 14px;
    }

    .product-description {
        font-size: 14px;
        line-height: 1.4;
    }

    .footer {
        padding: 50px 7% 28px;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);

        gap: 50px 25px;
    }

    .footer-column h4 {
        font-size: 17px;
    }

    .footer-column a {
        font-size: 15px;
        line-height: 1.3;
    }

    .footer-bottom p,
    .footer-social a {
        font-size: 14px;
    }
}
.breakfast {
    background-image: url("https://res.cloudinary.com/cu5swgf2/image/upload/v1790241591/breakfast.bg.webp") !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}
