/* ============================================
   LUNCHE PAGE
   ============================================ */

.lunche-page {
    width: 100%;
    background: #fef8f0;
}

.lunche-hero {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 48px;
    padding: 30px 10% 60px 10%;
    box-sizing: border-box;
}

.lunche-hero__kolo {
    flex-shrink: 0;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: #cb081c;
}

.lunche-hero__content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.lunche-hero__sub {
    font-family: "Roboto-Light", sans-serif;
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.5);
}

.lunche-hero__title {
    font-family: "Inter-ExtraBold", sans-serif;
    font-size: clamp(48px, 7vw, 96px);
    font-weight: 800;
    line-height: 0.9;
    letter-spacing: -0.02em;
    color: #000000;
    margin: 0;
    text-transform: uppercase;
}

.lunche-hero__year {
    font-family: "Roboto-Light", sans-serif;
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 0.5em;
    color: #cb081c;
    text-transform: uppercase;
    margin-top: 8px;
}


@media (max-width: 768px) {
    .lunche-hero {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 6% 40px 6%;
        gap: 28px;
    }

    .lunche-hero__kolo {
        width: 60px;
        height: 60px;
    }

    .lunche-hero__title {
        font-size: clamp(40px, 12vw, 64px);
    }
}

/* ============================================
   LUNCHE — ZDJECIE
   ============================================ */

.lunche-zdjecie {
    position: relative;
    padding: 0 10% 100px 10%;
    box-sizing: border-box;
    overflow: hidden;
}

.lunche-zdjecie__kolo-tlo {
    position: absolute;
    right: -120px;
    bottom: 40px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: #cb081c;
    opacity: 0.07;
    pointer-events: none;
}

.lunche-zdjecie__inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
    max-width: 960px;
    margin: 0 auto;
}

.lunche-zdjecie__badge {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lunche-zdjecie__badge-kolo {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: #cb081c;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
}

.lunche-zdjecie__badge-sub {
    font-family: "Roboto-Light", sans-serif;
    font-size: 10px;
    font-weight: 300;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

.lunche-zdjecie__badge-hours {
    font-family: "Inter-ExtraBold", sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: #ffffff;
    text-align: center;
    line-height: 1.1;
}

.lunche-zdjecie__wrap {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.13);
}

.lunche-zdjecie__img {
    display: block;
    width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .lunche-zdjecie {
        padding: 0 6% 70px 6%;
    }

    .lunche-zdjecie__inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .lunche-zdjecie__badge-kolo {
        width: 110px;
        height: 110px;
    }

    .lunche-zdjecie__badge-hours {
        font-size: 17px;
    }

    .lunche-zdjecie__kolo-tlo {
        width: 260px;
        height: 260px;
        right: -80px;
    }
}

/* ============================================
   O-NAS — WIERSZ_3 (separator) + WIERSZ_4 (zdjęcia + koło)
   ============================================ */

.wiersz_3 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 20px 50px 20px;
    gap: 20px;
    text-align: center;
}

.wiersz_3__kolo {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #cb081c;
    flex-shrink: 0;
}

.wiersz_3__text {
    font-family: "Roboto-Light", sans-serif;
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #000000;
    margin: 0;
}

.wiersz_3__icon {
    width: 28px;
    opacity: 0.35;
    margin-top: 4px;
}

.wiersz_4 {
    display: flex;
    justify-content: center;
    padding: 0 0 100px 0;
    width: 100%;
    box-sizing: border-box;
}

.wiersz_4__inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 80%;
    gap: 50px;
    height: 420px;
}

.wiersz_4__photos {
    display: flex;
    flex-direction: row;
    gap: 4%;
    flex: 1;
    height: 100%;
}

.czerwone-kolo_2 {
    flex-shrink: 0;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: #cb081c;
    align-self: center;
}

@media (max-width: 900px) {
    .wiersz_4__inner {
        width: 100%;
        padding: 0 20px;
        height: 260px;
        gap: 0;
        box-sizing: border-box;
    }

    .czerwone-kolo_2 {
        display: none;
    }

    .wiersz_4__photos {
        flex: 1 1 100%;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .wiersz_3 {
        padding: 50px 20px 40px 20px;
        gap: 16px;
    }

    .wiersz_3__text {
        font-size: 15px;
        letter-spacing: 0.2em;
    }

    .wiersz_4 {
        padding: 0 0 60px 0;
    }
}

/* ============================================
   WIERSZ_2 — reużywalny komponent wierszowy
   Układ: [koło 30%] [tekst ~40%] [2 zdjęcia reszta]
   Na mobile: koło → tekst → zdjęcia (kolumna)
   ============================================ */

.poznajmy-sie-text {
    text-align: center;
    text-transform: uppercase;
    padding: 60px 0 40px 0;
}

.ps-t1 {
    font-family: "Roboto-SemiBold", sans-serif;
    font-size: 30px;
    font-weight: 600;
    line-height: 40px;
}

.ps-t2 {
    font-family: "Roboto-Light", sans-serif;
    font-size: 20px;
    font-weight: 300;
    line-height: 40px;
}

.wiersz_2 {
    display: flex;
    justify-content: center;
    padding: 0 0 30px 0;
    width: 100%;
    box-sizing: border-box;
}

.wiersz_2_80 {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 80%;
    gap: 40px;
    min-height: 300px;
}

.czerwone-kolo {
    flex: 0 0 28%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background: #cb081c;
    flex-shrink: 0;
}

.text-o-nas {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
    font-family: "Inter-Light", sans-serif;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: -0.02em;
    font-weight: 300;
    color: #000000;
}

.o-nas-zdjecia {
    flex: 0 0 28%;
    display: flex;
    flex-direction: row;
    gap: 4%;
    align-self: stretch;
}

.sushi-container {
    flex: 1;
    overflow: hidden;
    position: relative;
    border-radius: 120px 0 0 0;
    min-height: 200px;
}

.sushi-container:nth-child(2) {
    border-radius: 0 0 120px 0;
}

.sushi-obraz1,
.sushi-obraz2 {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .wiersz_2 {
        padding: 0 20px 60px 20px;
    }

    .wiersz_2_80 {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 30px;
        min-height: auto;
    }

    .czerwone-kolo {
        flex: none;
        width: 45%;
        max-width: 180px;
    }

    .text-o-nas {
        width: 100%;
        gap: 12px;
    }

    .o-nas-zdjecia {
        flex: none;
        width: 100%;
        height: 440px;
        align-self: auto;
    }
}

/* ZAMÓW ONLINE — floating button */

.zamow-online-btn {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
    text-decoration: none;
    display: block;
    user-select: none;
    -webkit-user-select: none;
}

.zamow-online-btn__track {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #cb081c;
    color: #ffffff;
    padding: 20px 12px;
    border-radius: 16px 0 0 16px;
    box-shadow: -4px 0 24px rgba(203, 8, 28, 0.35);
    transform: translateX(0);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
        box-shadow 0.35s ease;
    position: relative;
}

.zamow-online-btn:hover {
    text-decoration: none !important;
}

.zamow-online-btn:hover .zamow-online-btn__track {
    transform: translateX(-6px);
    box-shadow: -8px 0 32px rgba(203, 8, 28, 0.55);
}

.zamow-online-btn__icon {
    width: 44px;
    height: 44px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    flex-shrink: 0;
}

.zamow-online-btn__text {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    font-family: "Roboto-Light", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: #ffffff;
    line-height: 1.3;
    text-align: center;
    white-space: nowrap;
    text-decoration: none;
}

.zamow-online-btn:hover .zamow-online-btn__text {
    text-decoration: none;
}

@media (max-width: 600px) {
    .zamow-online-btn__track {
        padding: 16px 10px;
        gap: 8px;
        border-radius: 12px 0 0 12px;
    }

    .zamow-online-btn__icon {
        width: 34px;
        height: 34px;
    }

    .zamow-online-btn__text {
        font-size: 10px;
    }
}

/* SEO */

.seo-h1 {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}

.kontakt-obszar {
    padding: 40px 80px;
    background: #f9f9f9;
}

.kontakt-obszar__text {
    font-family: "Roboto-Light", sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: rgba(0, 0, 0, 0.65);
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* HOME */

html {

    scroll-behavior: smooth;

}

html:has(body.sushi-homepage) {

    scroll-snap-type: y mandatory;

}

body.sushi-homepage .kontakt {

    scroll-snap-align: end;

}

/*MENU PHONE*/

.overlay,
#overlay {

    background: #fef8f0 !important;

    z-index: 9998 !important;

}

.overlay.open,
#overlay.open {

    opacity: 1 !important;

}

.mobile-container {

    top: 0 !important;

    width: 100%;

    height: 0;

    z-index: 2;

}

.mobile-logo {

    display: flex;

    justify-content: flex-start;

    align-items: center;

    padding: 16px 0 16px 40px;

    border-bottom: 1px solid #000000;

    margin: 0;

}

.mobile-logo img {

    height: 175px !important;

    margin: 0 !important;

}

.overlay-menu {

    display: flex;

    flex-direction: column;

    justify-content: flex-start;

    align-items: flex-start;

    height: calc(100% - 100px) !important;

    overflow-y: auto;

    padding: 24px 0 0 0;

}

.overlay-menu .tree {

    text-align: left !important;

    width: 100%;

}

.overlay-menu .tree,
.overlay-menu .tree li {

    list-style: none;

    padding: 0;

    margin: 0;

    border-bottom: 1px solid rgba(0, 0, 0, 0.08);

    background: transparent !important;

}

.overlay-menu .toggler {

    display: none;

}

.overlay-menu .tree li a {

    display: block;

    color: #000000;

    font-family: "Roboto", sans-serif;

    font-size: 14px;

    font-weight: 400;

    letter-spacing: 0.25em;

    text-transform: uppercase;

    text-decoration: none;

    padding: 14px 40px;

    transition: color 0.25s ease, padding-left 0.25s ease;

}

.overlay-menu .tree li a:hover,

.overlay-menu .tree li.active a {

    color: #cb081c;

    padding-left: 56px;

}

.mobile-menu .button_container span {

    background: #000000 !important;

}

.mobile-menu .button_container.active .top,

.mobile-menu .button_container.active .middle,

.mobile-menu .button_container.active .bottom {

    background: #cb081c !important;

}



/*MENU*/

#header .logo img {

    height: 100px;

}



.navbar {

    margin-left: 30px;

    margin-right: 30px;

}



.navbar .btn-link {

    color: #fef8f0;

}



#header {

    background-color: #fef8f0;

}



body {

    background-color: #fef8f0;

}







/* Poprawka THEME*/

.container {

    width: 100%;

    max-width: 2500px !important;

}



.section.section {

    padding-right: 0rem;

    padding-left: 0rem;

}



/* Homepage — zerujemy wszystko (scroll-snap, header transparent) */
#body-wrapper:has(.home),
#body-wrapper:has(.home) .container {

    padding: 0 !important;

    max-width: 100% !important;

}

/* Pozostałe strony — zerujemy tylko container (zachowujemy padding-top body-wrapper dla fixed menu) */
#body-wrapper:has(.kontakt-page) .container,
#body-wrapper:has(.lunche-page) .container,
#body-wrapper:has(.aktualnosci-page) .container,
#body-wrapper:has(.o-nas-page) .container,
#body-wrapper:has(.menu-page) .container,
#body-wrapper:has(.dostawa-page) .container {

    padding: 0 !important;

    max-width: 100% !important;

}

#footer {

    padding: 0 !important;

    margin: 0 !important;

    background: #000000 !important;

}





/*HOME*/

.home,

.home * {

    box-sizing: border-box;

}



.home {

    background: #ffffff;

    height: auto;

    position: relative;

    display: flex;

    flex-direction: column;

    overflow-x: clip;

}



.homepage-start {

    background: #fef8f0;

    border-style: solid;

    border-color: #000000;

    border-width: 0px 0px 1px 0px;

    padding: 130px 0px 0px 0px;

    padding-bottom: env(safe-area-inset-bottom);

    display: flex;

    flex-direction: column;

    gap: 0px;

    align-items: center;

    justify-content: flex-start;

    width: 100%;

    height: 100vh;

    height: 100svh;

    height: 100dvh;

    height: var(--full-height, 100dvh);

    position: relative;

    order: 1;

    overflow: hidden;

    scroll-snap-align: start;

    scroll-snap-stop: always;

}



.text-zdj {

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: flex-start;

    align-self: stretch;

    flex: 1;

    min-height: 0;

    height: auto;

    position: relative;

}



.sushi-house {

    text-align: center;

    user-select: none;

    -webkit-user-select: none;

    font-family: "Inter-ExtraBold", sans-serif;

    font-size: 240px;

    line-height: 50%;

    letter-spacing: 0.5em;

    font-weight: 800;

    position: relative;

    align-self: stretch;

    mix-blend-mode: multiply;

    margin-right: -2rem;

}



.sushi-house-span {

    color: var(--brand-colors-sushi-salmon-red-sushi-salmon-red500, #cb081c);

    font-family: "Inter-ExtraBold", sans-serif;

    font-size: clamp(2rem, 15vw, 240px);

    line-height: 50%;

    letter-spacing: 0.5em;

    font-weight: 800;

}



.sushi-house-span2 {

    color: var(--brand-colors-sushi-salmon-red-sushi-salmon-red1000, #000000);

    font-family: "Inter-ExtraBold", sans-serif;

    font-size: clamp(2rem, 16vw, 240px);

    line-height: 50%;

    letter-spacing: 0.5em;

    font-weight: 800;

}



.sushi-house-home-page-photo-1 {

    margin-top: auto;

    display: block;

    width: 100%;

    height: auto;

    max-height: 72svh;

    object-fit: contain;

    object-position: center bottom;

    flex-shrink: 1;

}



.homepage-menu {

    background: #fef8f0;

    padding-top: 45px;

    padding-bottom: env(safe-area-inset-bottom);

    box-sizing: border-box;

    display: flex;

    flex-direction: row;

    gap: 27px;

    align-items: center;

    justify-content: center;

    width: 100%;

    height: 100vh;

    height: 100svh;

    height: 100dvh;

    height: var(--full-height, 100dvh);

    position: relative;

    order: 2;

    scroll-snap-align: start;

    scroll-snap-stop: always;

}



.frame-17 {

    display: flex;

    flex-direction: row;

    gap: 40px;

    align-items: center;

    justify-content: center;

    align-self: stretch;

    flex: 1;

    position: relative;

}



.frame-72 {

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    align-self: stretch;

    flex: 1;

    position: relative;

}



.frame-70 {

    padding: 40px 0px 40px 0px;

    display: flex;

    flex-direction: column;

    gap: 20px;

    align-items: center;

    justify-content: flex-start;

    align-self: stretch;

    flex-shrink: 0;

    position: relative;

}



.cze-mi-o-nam-ci-go-ci {

    color: #000000;

    text-align: center;

    font-family: "-", sans-serif;

    font-size: 30px;

    line-height: 70px;

    font-weight: 400;

    text-transform: uppercase;

    position: relative;

    align-self: stretch;

}



.cze-mi-o-nam-ci-go-ci-span {

    color: #000000;

    font-family: "Roboto-Light", sans-serif;

    font-size: 30px;

    line-height: 70px;

    font-weight: 300;

    text-transform: uppercase;

}



.cze-mi-o-nam-ci-go-ci-span2 {

    color: #000000;

    font-family: "Roboto-Bold", sans-serif;

    font-size: 30px;

    line-height: 70px;

    font-weight: 700;

    text-transform: uppercase;

}



.cze-mi-o-nam-ci-go-ci-span3 {

    color: #000000;

    font-family: "Roboto-SemiBold", sans-serif;

    font-size: 30px;

    line-height: 70px;

    font-weight: 600;

    text-transform: uppercase;

}



.cze-mi-o-nam-ci-go-ci-span4 {

    color: #000000;

    font-family: "Roboto-Bold", sans-serif;

    font-size: 30px;

    line-height: 70px;

    font-weight: 700;

    text-transform: uppercase;

}



.cze-mi-o-nam-ci-go-ci-span5 {

    color: #000000;

    font-family: "Roboto-Light", sans-serif;

    font-size: 30px;

    line-height: 70px;

    font-weight: 300;

    text-transform: uppercase;

}



.cze-mi-o-nam-ci-go-ci-span6 {

    color: #000000;

    font-family: "Roboto-Bold", sans-serif;

    font-size: 30px;

    line-height: 70px;

    font-weight: 700;

    text-transform: uppercase;

}



.cze-mi-o-nam-ci-go-ci-span7 {

    color: #000000;

    font-family: "Roboto-SemiBold", sans-serif;

    font-size: 30px;

    line-height: 70px;

    font-weight: 600;

    text-transform: uppercase;

}



.w-sushi-house-rado {

    color: #000000;

    text-align: center;

    font-family: "-", sans-serif;

    font-size: 30px;

    line-height: 70px;

    font-weight: 400;

    text-transform: uppercase;

    position: relative;

    align-self: stretch;

}



.w-sushi-house-rado-span {

    color: #000000;

    font-family: "Roboto-Light", sans-serif;

    font-size: 30px;

    line-height: 70px;

    font-weight: 300;

    text-transform: uppercase;

}



.w-sushi-house-rado-span2 {

    color: #000000;

    font-family: "Roboto-SemiBold", sans-serif;

    font-size: 30px;

    line-height: 70px;

    font-weight: 600;

    text-transform: uppercase;

}



.w-sushi-house-rado-span3 {

    color: #000000;

    font-family: "Roboto-Light", sans-serif;

    font-size: 30px;

    line-height: 70px;

    font-weight: 300;

    text-transform: uppercase;

}



.button-menu {

    display: flex;

    flex-direction: row;

    gap: 40px;

    align-items: center;

    justify-content: center;

    align-self: stretch;

    flex-shrink: 0;

    position: relative;

}



.icon {

    flex-shrink: 0;

    width: 65px;

    height: 42px;

    position: relative;

    overflow: visible;

}



.button {

    background: var(--brand-colors-sushi-salmon-red-sushi-salmon-red500, #cb081c);

    border-radius: 300px;

    display: flex;

    flex-direction: column;

    gap: 10px;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    width: 240px;

    height: 240px;

    position: relative;

}



.frame-1 {

    display: flex;

    flex-direction: row;

    gap: 10px;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    position: relative;

}



.button-label {

    color: #ffffff;

    text-align: center;

    font-family: "Roboto-Bold", sans-serif;

    font-size: 20px;

    letter-spacing: 0.2em;

    font-weight: 700;

    text-transform: uppercase;

    position: relative;

}



.icon2 {

    flex-shrink: 0;

    width: 65px;

    height: 42px;

    position: relative;

    overflow: visible;

}



.frame-29 {

    border-radius: 120px 0px 0px 0px;

    align-self: stretch;

    flex: 1;

    position: relative;

    overflow: hidden;

    object-fit: cover;

}



.homepage-galeria {

    background: #fef8f0;

    display: flex;

    flex-direction: column;

    gap: 80px;

    padding-bottom: env(safe-area-inset-bottom);

    align-items: center;

    justify-content: center;

    height: 100vh;

    height: 100svh;

    height: 100dvh;

    height: var(--full-height, 100dvh);

    position: relative;

    order: 4;

    overflow: hidden;

    scroll-snap-align: start;

    scroll-snap-stop: always;

    width: 100%;

}


.homepage-galeria {}



.frame-71 {

    display: flex;

    flex-direction: column;

    gap: 20px;

    align-items: center;

    justify-content: flex-start;

    align-self: stretch;

    flex-shrink: 0;

    position: relative;

}



.naciesz-oczy {

    color: #000000;

    text-align: center;

    font-family: "Roboto-Light", sans-serif;

    font-size: 30px;

    /*line-height: 70px;*/

    font-weight: 300;

    text-transform: uppercase;

    position: relative;

    align-self: stretch;

}



.odkryj-magi-sushi-z-rodzinn-tradycj {

    color: #000000;

    font-family: "Roboto-Light", sans-serif;

    font-size: 30px;

    font-weight: 300;

    text-transform: uppercase;

}



.odkryj-magi-sushi-z-rodzinn-tradycj-bold {

    font-family: "Roboto-SemiBold", sans-serif;

    font-weight: 600;

}



/*

.odkryj-magi-sushi-z-rodzinn-tradycj-span {

    color: #000000;

    font-family: "Roboto-Light", sans-serif;

    font-size: 30px;

    line-height: 70px;

    font-weight: 300;

    text-transform: uppercase;

}



.odkryj-magi-sushi-z-rodzinn-tradycj-span2 {

    color: #000000;

    font-family: "Roboto-SemiBold", sans-serif;

    font-size: 30px;

    line-height: 70px;

    font-weight: 600;

    text-transform: uppercase;

}



.odkryj-magi-sushi-z-rodzinn-tradycj-span3 {

    color: #000000;

    font-family: "Roboto-Light", sans-serif;

    font-size: 30px;

    line-height: 70px;

    font-weight: 300;

    text-transform: uppercase;

}



.odkryj-magi-sushi-z-rodzinn-tradycj-span4 {

    color: #000000;

    font-family: "Roboto-SemiBold", sans-serif;

    font-size: 30px;

    line-height: 70px;

    font-weight: 600;

    text-transform: uppercase;

}



.odkryj-magi-sushi-z-rodzinn-tradycj-span5 {

    color: #000000;

    font-family: "Roboto-Light", sans-serif;

    font-size: 30px;

    line-height: 70px;

    font-weight: 300;

    text-transform: uppercase;

}*/



.frame-36 {

    padding: 0px 80px 0px 80px;

    display: flex;

    flex-direction: row;

    gap: 40px;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    width: 100%;

    position: relative;

    overflow: hidden;

}



.frame-34 {

    border-radius: 0px 120px 0px 120px;

    flex: 1;

    height: 500px;

    position: relative;

    overflow: hidden;

    object-fit: cover;

}



.frame-67 {

    display: flex;

    flex-direction: column;

    gap: 20px;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    height: 500px;

    position: relative;

}



.button-galeria {

    display: flex;

    flex-direction: row;

    gap: 40px;

    align-items: center;

    text-decoration: none;

    justify-content: center;

    flex-shrink: 0;

    position: relative;

}



.icon3 {

    flex-shrink: 0;

    width: 65px;

    height: 42px;

    position: relative;

    overflow: visible;

}



.icon4 {

    flex-shrink: 0;

    width: 65px;

    height: 42px;

    position: relative;

    overflow: visible;

}



.frame-33 {

    border-radius: 300px;

    flex-shrink: 0;

    width: 240px;

    height: 240px;

    position: relative;

    overflow: hidden;

    object-fit: cover;

}



.frame-40 {

    flex: 1;

    height: 500px;

    position: relative;

    overflow: hidden;

    object-fit: cover;

}



.homepage-photo {

    position: relative;

    order: 3;

    width: 100%;

    height: 100vh;

    height: 100svh;

    height: 100dvh;

    height: var(--full-height, 100dvh);

    overflow: hidden;

    scroll-snap-align: start;

    scroll-snap-stop: always;

}



.homepage-photo img {

    position: absolute;

    inset: 0;

    width: 100%;

    height: 100%;

    object-fit: cover;

    display: block;

}































/*Telefony*/

@media only screen and (max-width: 1500px) {



    /*HOME -1*/

    .sushi-house {

        font-size: 9rem;

    }



    /*Fonty zmniejszone na 1500px*/



    /*HOME -2*/

}



@media only screen and (max-width: 900px) {

    /* Wyłącz scroll-snap na telefonach */
    html:has(body.sushi-homepage) {
        scroll-snap-type: none;
    }

    .homepage-start,
    .homepage-menu,
    .homepage-photo,
    .homepage-galeria {
        scroll-snap-align: unset;
        scroll-snap-stop: unset;
        height: auto;
    }

    body.sushi-homepage .kontakt {
        scroll-snap-align: unset;
        scroll-snap-stop: unset;
    }

    /* homepage-start — wyłącz pełną wysokość ekranu, zbliż zdjęcie i napis */
    .homepage-start {
        padding: 80px 0px 24px 0px;
        justify-content: flex-start;
        gap: 12px;
    }

    .sushi-house-home-page-photo-1 {
        margin-top: 8px;
        max-height: 52svh;
    }

    /*HOME -1*/

    .sushi-house {

        font-size: 10rem;

        line-height: 0%;

    }



    .text-zdj {

        height: auto;

    }



    .sushi-house {

        margin-top: 32px;

    }



    /*HOME -2*/

    .homepage-menu {

        padding-top: 70px;

        flex-direction: column;

        overflow: hidden;

    }



    .frame-17 {

        display: flex;

        flex-direction: column;

        align-self: stretch;

        flex: 1;

        min-height: 0;

        gap: 0;

        overflow: hidden;

    }



    .frame-72 {

        order: 1;

        flex: none;

        padding-bottom: 24px;

    }



    .frame-70 {

        gap: 0px;

        padding-top: 0px;

    }



    .frame-29 {

        order: 2;

        flex: 1;

        min-height: 0;

        width: 100%;

        height: auto;

        border-radius: 60px 0px 0px 0px;

    }



    /*Home -3 CHOWAMY*/

    .frame-34 {

        display: none;

    }

    .frame-40 {

        display: none;

    }

    .icon3 {

        display: none;

    }

    .icon4 {

        display: none;

    }

    .homepage-galeria {

        padding: 40px 20px;

        gap: 40px;

    }

    .frame-36 {

        justify-content: center;

    }



}



@media only screen and (max-width: 600px) {



    /*HOME -1*/

    .sushi-house-home-page-photo-1 {

        max-height: 42svh;

    }



    .sushi-house {

        font-size: 11rem;

    }

    .homepage-start {
        padding-top: 70px;
    }

    /*HOME -2*/



    /*Home -3*/



}



@media only screen and (max-width: 500px) {

    .sushi-house-span {

        display: block;

        width: 85%;

        margin: 0 auto;

        text-align: center;

    }

    .sushi-house-span2 {

        display: block;

        width: 100%;

        margin: 0 auto;

        text-align: center;

    }

}



@media only screen and (max-width: 490px) {



    .kontakt {

        padding: 0px;

        gap: 0px;

    }



    /*HOME -1*/





    /*HOME -2*/

    .button {

        width: 175px !important;

        height: 175px !important;

    }



    .button-menu {

        gap: 20px;

    }



    .w-sushi-house-rado {

        margin-top: -2rem;

    }



    .icon {

        width: 50px !important;

        height: 50px !important;

    }



    .icon2 {

        width: 50px !important;

        height: 50px !important;

    }



    .frame-29 {

        height: auto;

        min-height: 0;

        flex: 1;

    }



    .cze-mi-o-nam-ci-go-ci-span {

        font-size: 25px;

    }



    .cze-mi-o-nam-ci-go-ci-span2 {

        font-size: 25px;

    }



    .cze-mi-o-nam-ci-go-ci-span3 {

        font-size: 25px;

    }



    .cze-mi-o-nam-ci-go-ci-span4 {

        font-size: 25px;

    }



    .cze-mi-o-nam-ci-go-ci-span5 {

        font-size: 25px;

    }



    .cze-mi-o-nam-ci-go-ci-span6 {

        font-size: 25px;

    }



    .cze-mi-o-nam-ci-go-ci-span7 {

        font-size: 25px;

    }



    .w-sushi-house-rado-span {

        font-size: 25px;

    }



    .w-sushi-house-rado-span2 {

        font-size: 25px;

    }



    .w-sushi-house-rado-span3 {

        font-size: 25px;

    }



    /*Home -3*/

    .frame-36 {

        display: inline-grid;

        padding: 0px;

    }



    .frame-34 {

        padding: 50px;

        height: 100%;

    }



    .homepage-galeria {

        gap: 20px;

        padding: 40px 20px;

    }



    .frame-71 {

        gap: 0px;

    }



    .naciesz-oczy {

        font-size: 25px;

    }



    .odkryj-magi-sushi-z-rodzinn-tradycj {

        font-size: 25px;

    }



    /*Home 4*/

    .frame-67 {

        gap: 40px;

        height: auto;

    }



    .frame-40 {

        overflow: hidden;

    }

}




@media only screen and (max-width: 360px) {
    .naciesz-oczy {
        font-size: 19px;
    }

    .odkryj-magi-sushi-z-rodzinn-tradycj {
        font-size: 19px;
        text-align: center;
    }
}

.treemenu li a:hover,
.treemenu li a:focus,
.treemenu li a.active {

    color: #cb081c !important;

}

.dropmenu ul li a:hover,
.dropmenu ul li a:focus,
.dropmenu ul li a.active {

    color: #cb081c !important;

}



































































/* ============================================
   MENU PAGE
   ============================================ */

.menu-page {
    width: 100%;
    background: #fef8f0;
    box-sizing: border-box;
}

.menu-hero {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 48px;
    padding: 30px 10% 40px 10%;
    box-sizing: border-box;
}

.menu-hero__kolo {
    flex-shrink: 0;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: #cb081c;
}

.menu-hero__content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.menu-hero__sub {
    font-family: "Roboto-Light", sans-serif;
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.5);
}

.menu-hero__title {
    font-family: "Inter-ExtraBold", sans-serif;
    font-size: clamp(48px, 7vw, 96px);
    font-weight: 800;
    line-height: 0.9;
    letter-spacing: -0.02em;
    color: #000000;
    margin: 0;
    text-transform: uppercase;
}

/* Menu viewer */
.menuSnap_5566 {
    padding: 4vh 0 6vh 0;
    box-sizing: border-box;
    scroll-snap-type: none;
    scroll-behavior: auto;
}

.menuPage_5566 {
    scroll-snap-align: unset;
    scroll-snap-stop: unset;
    width: min(96vw, calc(100vh / 1.414));
    aspect-ratio: 1 / 1.414;
    height: auto;
    margin: 0 auto 4vh auto;
    box-sizing: border-box;
    background-repeat: no-repeat !important;
    background-size: 300% 100% !important;
    background-color: transparent !important;
    background-image: none !important;
    background-position: 0% 0% !important;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
}

.mp5566_1 {
    background-image: url("/user/pages/05.menu/menuSushigru2025_page-0001.jpg") !important;
    background-position: 100% 0% !important;
}

.mp5566_2 {
    background-image: url("/user/pages/05.menu/menuSushigru2025_page-0001.jpg") !important;
    background-position: 0% 0% !important;
}

.mp5566_3 {
    background-image: url("/user/pages/05.menu/menuSushigru2025_page-0001.jpg") !important;
    background-position: 50% 0% !important;
}

.mp5566_4 {
    background-image: url("/user/pages/05.menu/menuSushigru2025_page-0002.jpg") !important;
    background-position: 0% 0% !important;
}

.mp5566_5 {
    background-image: url("/user/pages/05.menu/menuSushigru2025_page-0002.jpg") !important;
    background-position: 50% 0% !important;
}

.mp5566_6 {
    background-image: url("/user/pages/05.menu/menuSushigru2025_page-0002.jpg") !important;
    background-position: 100% 0% !important;
}

@media (max-width: 768px) {
    .menu-hero {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 6% 30px 6%;
        gap: 28px;
    }

    .menu-hero__kolo {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 480px) {
    .menuSnap_5566 {
        padding: 2vh 0 4vh 0;
    }

    .menuPage_5566 {
        width: 98vw;
        margin-bottom: 2vh;
        border-radius: 8px;
    }
}

/* ============================================ */

/* ============================================
   AKTUALNOSCI PAGE
   ============================================ */

.aktualnosci-page {
    width: 100%;
    background: #fef8f0;
    min-height: calc(100vh - 4rem);
    box-sizing: border-box;
}

.aktualnosci-hero {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 48px;
    padding: 30px 10% 60px 10%;
    box-sizing: border-box;
}

.aktualnosci-hero__kolo {
    flex-shrink: 0;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: #cb081c;
}

.aktualnosci-hero__content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.aktualnosci-hero__sub {
    font-family: "Roboto-Light", sans-serif;
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.5);
}

.aktualnosci-hero__title {
    font-family: "Inter-ExtraBold", sans-serif;
    font-size: clamp(48px, 7vw, 96px);
    font-weight: 800;
    line-height: 0.9;
    letter-spacing: -0.02em;
    color: #000000;
    margin: 0;
    text-transform: uppercase;
}

.aktualnosci-feed {
    display: flex;
    justify-content: center;
    padding: 0 10% 100px 10%;
    box-sizing: border-box;
}

.aktualnosci-feed__wrapper {
    position: relative;
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.08);
    border-top: 5px solid #cb081c;
    width: 500px;
    max-width: 100%;
}

.aktualnosci-feed__iframe {
    display: block;
    width: 700px;
    max-width: 100%;
    height: 800px;
    border: none;
}

@media (max-width: 768px) {
    .aktualnosci-hero {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 6% 40px 6%;
        gap: 28px;
    }

    .aktualnosci-hero__kolo {
        width: 60px;
        height: 60px;
    }

    .aktualnosci-feed {
        padding: 0 4% 80px 4%;
    }

    .aktualnosci-feed__wrapper {
        width: 100%;
        border-radius: 16px;
    }

    .aktualnosci-feed__iframe {
        width: 100%;
        height: 700px;
    }
}

/* ============================================ */

/* ============================================
   KONTAKT PAGE
   ============================================ */

.kontakt-page {
    width: 100%;
    background: #fef8f0;
    min-height: calc(100vh - 4rem);
    box-sizing: border-box;
}

.kontakt-hero {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 48px;
    padding: 30px 10% 60px 10%;
    box-sizing: border-box;
}

.kontakt-hero__kolo {
    flex-shrink: 0;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: #cb081c;
}

.kontakt-hero__content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.kontakt-hero__sub {
    font-family: "Roboto-Light", sans-serif;
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.5);
}

.kontakt-hero__title {
    font-family: "Inter-ExtraBold", sans-serif;
    font-size: clamp(48px, 7vw, 96px);
    font-weight: 800;
    line-height: 0.9;
    letter-spacing: -0.02em;
    color: #000000;
    margin: 0;
    text-transform: uppercase;
}

.kontakt-body {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 40px;
    padding: 0 10% 80px 10%;
    box-sizing: border-box;
}

.kontakt-body__left {
    flex: 1 1 50%;
    display: flex;
    flex-direction: column;
    gap: 40px;
    justify-content: space-between;
}

.kontakt-body__riksza {
    flex: 1 1 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.kontakt-riksza__img {
    width: 100%;
    max-width: 420px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(4px 0 24px rgba(203, 8, 28, 0.15));
}

.kontakt-info {
    padding: 0;
    box-sizing: border-box;
}

.kontakt-zamow {
    padding: 0;
    display: flex;
    justify-content: flex-start;
    box-sizing: border-box;
}

.kontakt-info__inner {
    display: flex;
    flex-direction: column;
    gap: 18px;
    border-left: 4px solid #cb081c;
    padding-left: 40px;
}

.kontakt-info__label {
    font-family: "Roboto-Light", sans-serif;
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: #cb081c;
}

.kontakt-info__phone {
    font-family: "Inter-ExtraBold", sans-serif;
    font-size: clamp(38px, 5.5vw, 80px);
    font-weight: 800;
    letter-spacing: -0.01em;
    color: #cb081c !important;
    line-height: 1;
    text-decoration: none;
}

.kontakt-info__phone:hover {
    color: #cb081c;
}

.kontakt-info__hours {
    font-family: "Roboto-Light", sans-serif;
    font-size: 17px;
    font-weight: 300;
    letter-spacing: 0.08em;
    color: rgba(0, 0, 0, 0.55);
    margin-top: -4px;
}

.kontakt-info__phone2 {
    font-family: "Roboto-Bold", sans-serif;
    font-size: clamp(20px, 2.5vw, 32px);
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #cb081c !important;
    text-decoration: none;
}

.kontakt-info__phone2:hover {
    color: #cb081c;
}


.kontakt-zamow__btn {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    background: #cb081c;
    color: #ffffff;
    text-decoration: none;
    padding: 22px 52px;
    border-radius: 100px;
    font-family: "Roboto-Bold", sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
        box-shadow 0.3s ease;
    box-shadow: 0 8px 32px rgba(203, 8, 28, 0.3);
}

.kontakt-zamow__btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(203, 8, 28, 0.45);
    color: #ffffff;
}

.kontakt-zamow__btn-text {
    line-height: 1;
}

.kontakt-zamow__btn-arrow {
    font-size: 22px;
    line-height: 1;
    transition: transform 0.3s ease;
}

.kontakt-zamow__btn:hover .kontakt-zamow__btn-arrow {
    transform: translateX(6px);
}

@media (max-width: 768px) {
    .kontakt-hero {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 6% 40px 6%;
        gap: 28px;
    }

    .kontakt-hero__kolo {
        width: 60px;
        height: 60px;
    }

    .kontakt-body {
        flex-direction: column;
        align-items: flex-start;
        padding: 0 6% 60px 6%;
        gap: 32px;
    }

    .kontakt-body__riksza {
        order: -1;
        width: 100%;
        justify-content: center;
        height: auto;
    }

    .kontakt-riksza__img {
        width: clamp(140px, 50vw, 240px);
        height: auto;
    }

    .kontakt-info__inner {
        padding-left: 24px;
    }

    .kontakt-zamow__btn {
        padding: 18px 36px;
        font-size: 14px;
    }
}

/* ============================================
   DOSTAWA PAGE
   ============================================ */

.dostawa-page {
    width: 100%;
    background: #fef8f0;
    min-height: calc(100vh - 4rem);
    box-sizing: border-box;
}

.dostawa-hero {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 48px;
    padding: 30px 10% 60px 10%;
    box-sizing: border-box;
}

.dostawa-hero__kolo {
    flex-shrink: 0;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: #cb081c;
}

.dostawa-hero__content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.dostawa-hero__sub {
    font-family: "Roboto-Light", sans-serif;
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.5);
}

.dostawa-hero__title {
    font-family: "Inter-ExtraBold", sans-serif;
    font-size: clamp(48px, 7vw, 96px);
    font-weight: 800;
    line-height: 0.9;
    letter-spacing: -0.02em;
    color: #000000;
    margin: 0;
    text-transform: uppercase;
}

.dostawa-body {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 40px;
    padding: 0 10% 80px 10%;
    box-sizing: border-box;
}

.dostawa-body__left {
    flex: 1 1 55%;
    display: flex;
    flex-direction: column;
    gap: 48px;
    justify-content: space-between;
}

.dostawa-body__riksza {
    flex: 1 1 45%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dostawa-riksza__img {
    width: 100%;
    max-width: 420px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(4px 0 24px rgba(203, 8, 28, 0.15));
}

/* Warunki section */

.dostawa-warunki {
    display: flex;
    flex-direction: column;
    gap: 28px;
    border-left: 4px solid #cb081c;
    padding-left: 40px;
}

.dostawa-warunki__label {
    font-family: "Roboto-Light", sans-serif;
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: #cb081c;
}

.dostawa-warunki__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 32px;
}

.dostawa-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.dostawa-item__val {
    font-family: "Inter-ExtraBold", sans-serif;
    font-size: clamp(32px, 4.5vw, 64px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.02em;
    color: #cb081c;
}

.dostawa-item__desc {
    font-family: "Roboto-Light", sans-serif;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.05em;
    color: rgba(0, 0, 0, 0.55);
    text-transform: uppercase;
}

.dostawa-warunki__note {
    font-family: "Roboto-Light", sans-serif;
    font-size: 15px;
    font-weight: 300;
    color: rgba(0, 0, 0, 0.6);
    line-height: 1.6;
    margin: 0;
}

.dostawa-warunki__note-link {
    color: #cb081c;
    text-decoration: none;
    font-family: "Roboto-Bold", sans-serif;
    font-weight: 700;
}

.dostawa-warunki__note-link:hover {
    text-decoration: underline;
}

/* Przycisk zamów */

.dostawa-zamow {
    display: flex;
    justify-content: flex-start;
}

.dostawa-zamow__btn {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    background: #cb081c;
    color: #ffffff;
    text-decoration: none;
    padding: 22px 52px;
    border-radius: 100px;
    font-family: "Roboto-Bold", sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
        box-shadow 0.3s ease;
    box-shadow: 0 8px 32px rgba(203, 8, 28, 0.3);
}

.dostawa-zamow__btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(203, 8, 28, 0.45);
    color: #ffffff;
}

.dostawa-zamow__btn-text {
    line-height: 1;
}

.dostawa-zamow__btn-arrow {
    font-size: 22px;
    line-height: 1;
    transition: transform 0.3s ease;
}

.dostawa-zamow__btn:hover .dostawa-zamow__btn-arrow {
    transform: translateX(6px);
}

/* Responsywność */

@media (max-width: 768px) {
    .dostawa-hero {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 6% 40px 6%;
        gap: 28px;
    }

    .dostawa-hero__kolo {
        width: 60px;
        height: 60px;
    }

    .dostawa-body {
        flex-direction: column;
        align-items: flex-start;
        padding: 0 6% 60px 6%;
        gap: 32px;
    }

    .dostawa-body__riksza {
        order: -1;
        width: 100%;
        justify-content: center;
    }

    .dostawa-riksza__img {
        width: clamp(140px, 50vw, 240px);
        height: auto;
    }

    .dostawa-warunki {
        padding-left: 24px;
    }

    .dostawa-warunki__list {
        grid-template-columns: 1fr 1fr;
        gap: 20px 24px;
    }

    .dostawa-zamow__btn {
        padding: 18px 36px;
        font-size: 14px;
    }
}

@media (max-width: 400px) {
    .dostawa-warunki__list {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* ============================================ */

/*footer */

#footer {

    padding: 0rem !important;

}



.kontakt,

.kontakt * {

    box-sizing: border-box;

}



.kontakt {

    background: #000000;

    padding: 60px;

    display: flex;

    flex-direction: row;

    gap: 60px;

    align-items: flex-start;

    justify-content: flex-start;

    position: relative;

    overflow: hidden;

}



.frame-49 {

    padding: 10px;

    display: flex;

    flex-direction: column;

    gap: 20px;

    align-items: flex-start;

    justify-content: center;

    flex: 1;

    position: relative;

}



.button-navi {

    text-decoration: none;

    border-style: solid;

    border-color: #ffffff;

    border-width: 0px 0px 1px 0px;

    display: flex;

    flex-direction: row;

    gap: 10px;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    position: relative;

}



.button-label {

    color: #ffffff;

    text-align: left;

    font-family: "Roboto-Regular", sans-serif;

    font-size: 14px;

    line-height: 140%;

    letter-spacing: 0.1em;

    font-weight: 400;

    text-transform: uppercase;

    position: relative;

}



.button {

    background: var(--brand-colors-sushi-salmon-red-sushi-salmon-red500, #cb081c);

    border-radius: 300px;

    display: flex;

    flex-direction: column;

    gap: 10px;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    width: 240px;

    height: 240px;

    position: relative;

}



.frame-1 {

    display: flex;

    flex-direction: row;

    gap: 10px;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    position: relative;

}



.button-label2 {

    color: #ffffff;

    text-align: center;

    font-family: "Roboto-Bold", sans-serif;

    font-size: 20px;

    letter-spacing: 0.2em;

    font-weight: 700;

    text-transform: uppercase;

    position: relative;

}



.frame-53 {

    display: flex;

    flex-direction: column;

    gap: 60px;

    align-items: flex-start;

    justify-content: flex-start;

    flex: 1;

    position: relative;

}



.frame-51 {

    padding: 10px;

    display: flex;

    flex-direction: column;

    gap: 10px;

    align-items: flex-start;

    justify-content: center;

    flex-shrink: 0;

    position: relative;

}



.zadzwo-i-zam-w-118-214-227 {

    color: #ffffff;

    text-align: left;

    font-family: "Inter-Regular", sans-serif;

    font-size: 16px;

    line-height: 150%;

    font-weight: 400;

    position: relative;

}



.zadzwo-i-zam-w-118-214-227-span {

    color: #ffffff;

    font-family: "Inter-Regular", sans-serif;

    font-size: 16px;

    line-height: 150%;

    font-weight: 400;

}



.zadzwo-i-zam-w-118-214-227-span2 {

    color: #ffffff;

    font-family: "Inter-Regular", sans-serif;

    font-size: 16px;

    line-height: 150%;

    font-weight: 400;

}



.button-navi2 {

    display: flex;

    flex-direction: row;

    gap: 10px;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    position: relative;

}



.button-navi-white-big {

    color: #ffffff;

    text-align: left;

    font-family: "Inter-Regular", sans-serif;

    font-size: 16px;

    line-height: 150%;

    font-weight: 400;

    text-decoration: underline;

    position: relative;

}



.codziennie-w-godzinach-12-00-22-00 {

    color: #ffffff;

    text-align: left;

    font-family: "Inter-Regular", sans-serif;

    font-size: 16px;

    line-height: 150%;

    font-weight: 400;

    position: relative;

}



.frame-107 {

    display: flex;

    flex-direction: row;

    gap: 0px;

    align-items: flex-start;

    justify-content: flex-start;

    flex-shrink: 0;

    position: relative;

}

.frame-107 a {

    text-decoration: none !important;

    outline: none !important;

    transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.25s ease;

    display: inline-flex;

}

.frame-107 a:hover {

    transform: scale(1.2);

    opacity: 0.8;

    filter: invert(10%) sepia(90%) saturate(7000%) hue-rotate(350deg) brightness(85%);

}



.icon {

    flex-shrink: 0;

    width: 44px;

    height: 44px;

    position: relative;

    overflow: visible;

}



.icon2 {

    flex-shrink: 0;

    width: 44px;

    height: 44px;

    position: relative;

    overflow: hidden;

}



.icon-instagram-desktop-black {

    width: 24px;

    height: 24px;

    position: absolute;

    left: 50%;

    translate: -50% -50%;

    top: 50%;

}



.rectangle-2877 {

    border-radius: 2px;

    border-style: solid;

    border-color: var(--brand-colors-sushi-salmon-red-sushi-salmon-red1000,

            #000000);

    border-width: 1.5px;

    width: 18px;

    height: 18px;

    position: absolute;

    left: 3px;

    top: 3px;

}



.ellipse-579 {

    border-radius: 50%;

    border-style: solid;

    border-color: var(--brand-colors-sushi-salmon-red-sushi-salmon-red1000,

            #000000);

    border-width: 1.5px;

    width: 8px;

    height: 8px;

    position: absolute;

    left: 8px;

    top: 8px;

}



.ellipse-580 {

    background: var(--brand-colors-sushi-salmon-red-sushi-salmon-red1000,

            #000000);

    border-radius: 50%;

    width: 2px;

    height: 2px;

    position: absolute;

    left: 17px;

    top: 5px;

}



.instagram {

    width: 24px;

    height: 24px;

    position: absolute;

    left: 0px;

    top: 0px;

}



.rectangle-28772 {

    border-radius: 2px;

    border-style: solid;

    border-color: #ffffff;

    border-width: 1.5px;

    width: 18px;

    height: 18px;

    position: absolute;

    left: 3px;

    top: 3px;

}



.ellipse-5792 {

    border-radius: 50%;

    border-style: solid;

    border-color: #ffffff;

    border-width: 1.5px;

    width: 8px;

    height: 8px;

    position: absolute;

    left: 8px;

    top: 8px;

}



.ellipse-5802 {

    background: #ffffff;

    border-radius: 50%;

    width: 2px;

    height: 2px;

    position: absolute;

    left: 17px;

    top: 5px;

}



.frame-52 {

    padding: 10px;

    display: flex;

    flex-direction: row;

    gap: 10px;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    position: relative;

}



.polityka-prywatno-ci-all-rights-reserved-sushi-house-2024 {

    text-align: left;

    position: relative;

    width: 460px;

}



.polityka-prywatno-ci-all-rights-reserved-sushi-house-2024-span {

    color: #ffffff;

    font-family: "Inter-Regular", sans-serif;

    font-size: 12px;

    line-height: 130%;

    font-weight: 400;

}



.polityka-prywatno-ci-all-rights-reserved-sushi-house-2024-span2 {

    color: #000000;

    font-family: "Inter-Regular", sans-serif;

    font-size: 12px;

    line-height: 130%;

    font-weight: 400;

}



.polityka-prywatno-ci-all-rights-reserved-sushi-house-2024-span3 {

    color: #000000;

    font-family: "Inter-ExtraLight", sans-serif;

    font-size: 10px;

    line-height: 130%;

    font-weight: 200;

}



.polityka-prywatno-ci-all-rights-reserved-sushi-house-2024-span4 {

    color: #deede2;

    font-family: "Inter-ExtraLight", sans-serif;

    font-size: 10px;

    line-height: 130%;

    font-weight: 200;

}

















/* O NAS STRONA */

/* BUTTON .button override — usuń niebieski border ze spectre */

.button-menu .button,
.button-galeria .button,
.button-footer .button {

    border: none !important;
    box-shadow: none;

}

.button-menu .button:hover,
.button-menu .button:focus,
.button-galeria .button:hover,
.button-galeria .button:focus,
.button-footer .button:hover,
.button-footer .button:focus {

    border: none !important;
    box-shadow: none !important;

}

/* BUTTON MENU - HOVER */

a.button-menu,
a.button-galeria,
a.button-navi,
a.button-footer {

    text-decoration: none !important;

    outline: none !important;

    cursor: pointer;

}

a.button-menu:focus,
a.button-galeria:focus,
a.button-navi:focus,
a.button-footer:focus {

    outline: none !important;

}

.button-menu .button {

    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease, background 0.3s ease;

}

.button-menu .icon,

.button-menu .icon2 {

    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;

}

.button-menu .button-label {

    transition: letter-spacing 0.3s ease;

}

.button-menu:hover .button {

    transform: scale(1.1);

    background: #a8060f;

    box-shadow: 0 0 0 8px rgba(203, 8, 28, 0.12), 0 12px 40px rgba(203, 8, 28, 0.3);

}

.button-menu:hover .icon {

    transform: translateX(-14px);

}

.button-menu:hover .icon2 {

    transform: translateX(14px);

}

.button-menu:hover .button-label {

    letter-spacing: 0.3em;

}



.button-galeria .button {

    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease, background 0.3s ease;

}

.button-galeria .icon3,

.button-galeria .icon4 {

    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;

}

.button-galeria .button-label {

    transition: letter-spacing 0.3s ease;

}

.button-galeria:hover .button {

    transform: scale(1.1);

    background: #a8060f;

    box-shadow: 0 0 0 8px rgba(203, 8, 28, 0.12), 0 12px 40px rgba(203, 8, 28, 0.3);

}

.button-galeria:hover .icon3 {

    transform: translateX(-14px);

}

.button-galeria:hover .icon4 {

    transform: translateX(14px);

}

.button-galeria:hover .button-label {

    letter-spacing: 0.3em;

}



/* ===================== FOOTER RESPONSIVE ===================== */

/* Desktop base - poprawki */

.kontakt {

    background: #000000;

    padding: 60px 80px;

    display: flex;

    flex-direction: row;

    gap: 60px;

    align-items: center;

    justify-content: space-between;

    width: 100%;

    box-sizing: border-box;

}

.frame-49 {

    display: flex;

    flex-direction: column;

    gap: 16px;

    align-items: flex-start;

    justify-content: center;

    flex: 1;

}

.button-navi {

    border-bottom: 1px solid rgba(255, 255, 255, 0.2);

    width: 100%;

    padding: 8px 0;

    transition: border-color 0.2s ease;

}

.button-navi:hover {

    border-bottom-color: #cb081c;

}

.button-navi .button-label {

    color: #ffffff;

    font-family: "Roboto-Light", sans-serif;

    font-size: 13px;

    letter-spacing: 0.15em;

    text-transform: uppercase;

    transition: color 0.2s ease;

}

.button-navi:hover .button-label {

    color: #cb081c;

}

.button-footer {

    background: #cb081c;

    border-radius: 50%;

    width: 180px;

    height: 180px;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    transition: background 0.3s ease, transform 0.3s ease;

    cursor: pointer;

}

.button-footer:hover {

    background: #a8060f;

    transform: scale(1.05);

}

.button-footer .button-label2 {

    color: #ffffff;

    font-family: "Roboto-Bold", sans-serif;

    font-size: 16px;

    letter-spacing: 0.2em;

    text-transform: uppercase;

}

.frame-53 {

    display: flex;

    flex-direction: column;

    gap: 30px;

    align-items: flex-start;

    justify-content: center;

    flex: 1;

}

.frame-51 {

    display: flex;

    flex-direction: column;

    gap: 8px;

    align-items: flex-start;

}

.zadzwo-i-zam-w-118-214-227 {

    color: #ffffff;

    font-family: "Roboto-Bold", sans-serif;

    font-size: 18px;

    line-height: 140%;

}

.zadzwo-i-zam-w-118-214-227-span,

.zadzwo-i-zam-w-118-214-227-span2 {

    color: #ffffff;

    font-family: "Roboto-Bold", sans-serif;

    font-size: 18px;

}

.button-navi-white-big {

    color: rgba(255, 255, 255, 0.6);

    font-family: "Roboto-Regular", sans-serif;

    font-size: 14px;

    text-decoration: none;

}

.codziennie-w-godzinach-12-00-22-00 {

    color: rgba(255, 255, 255, 0.5);

    font-family: "Roboto-Light", sans-serif;

    font-size: 13px;

}

.frame-107 {

    display: flex;

    flex-direction: row;

    gap: 12px;

    align-items: center;

}

.frame-52 {

    border-top: 1px solid rgba(255, 255, 255, 0.1);

    padding-top: 16px;

    width: 100%;

}

.polityka-prywatno-ci-all-rights-reserved-sushi-house-2024 {

    width: 100%;

    text-align: left;

    color: rgba(255, 255, 255, 0.35);

    font-family: "Roboto-Regular", sans-serif;

    font-size: 11px;

    letter-spacing: 0.05em;

}

.polityka-prywatno-ci-all-rights-reserved-sushi-house-2024-span,

.polityka-prywatno-ci-all-rights-reserved-sushi-house-2024-span2,

.polityka-prywatno-ci-all-rights-reserved-sushi-house-2024-span3,

.polityka-prywatno-ci-all-rights-reserved-sushi-house-2024-span4 {

    color: rgba(255, 255, 255, 0.35);

    font-family: "Roboto-Regular", sans-serif;

    font-size: 11px;

}

/* Footer Tablet (900px) */

@media only screen and (max-width: 900px) {

    .kontakt {

        flex-direction: column;

        align-items: center;

        padding: 50px 30px;

        gap: 40px;

        text-align: center;

    }

    .frame-49 {

        align-items: center;

        flex: none;

        width: 100%;

        flex-direction: row;

        flex-wrap: wrap;

        justify-content: center;

        gap: 0px;

    }

    .button-navi {

        width: auto;

        padding: 8px 16px;

        border-bottom: none;

        border-right: 1px solid rgba(255, 255, 255, 0.15);

    }

    .button-navi:last-child {

        border-right: none;

    }

    .button-footer {

        width: 150px;

        height: 150px;

        order: -1;

    }

    .frame-53 {

        align-items: center;

        flex: none;

        width: 100%;

        gap: 24px;

    }

    .frame-51 {

        align-items: center;

    }

    .zadzwo-i-zam-w-118-214-227,

    .button-navi-white-big,

    .codziennie-w-godzinach-12-00-22-00 {

        text-align: center;

    }

    .frame-52 {

        text-align: center;

    }

    .polityka-prywatno-ci-all-rights-reserved-sushi-house-2024 {

        text-align: center;

    }

}

/* Footer Mobile (480px) */

@media only screen and (max-width: 480px) {

    .kontakt {

        padding: 40px 20px;

        gap: 32px;

    }

    .frame-49 {

        flex-direction: column;

        gap: 0px;

    }

    .button-navi {

        border-right: none;

        border-bottom: 1px solid rgba(255, 255, 255, 0.1);

        width: 100%;

        padding: 12px 0;

    }

    .button-footer {

        width: 120px;

        height: 120px;

    }

    .button-footer .button-label2 {

        font-size: 13px;

    }

}

/* ============================================
   COOKIE CONSENT BANNER
   ============================================ */

#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    background: #111111;
    color: #ffffff;
    padding: 20px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    box-shadow: 0 -4px 32px rgba(0, 0, 0, 0.35);
    border-top: 2px solid #cb081c;
    font-family: inherit;
    transform: translateY(0);
    transition: transform 0.4s ease;
}

#cookie-banner.cookie-hidden {
    transform: translateY(110%);
}

#cookie-banner .cookie-text {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    max-width: 700px;
}

#cookie-banner .cookie-text strong {
    color: #ffffff;
    font-weight: 600;
}

#cookie-banner .cookie-text a {
    color: #cb081c;
    text-decoration: underline;
}

#cookie-banner .cookie-text a:hover {
    color: #ff1a2e;
}

#cookie-banner .cookie-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
    align-items: center;
}

#cookie-accept {
    background: #cb081c;
    color: #ffffff;
    border: none;
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 2px;
    transition: background 0.2s ease, box-shadow 0.2s ease;
    white-space: nowrap;
}

#cookie-accept:hover {
    background: #a5000f;
    box-shadow: 0 4px 16px rgba(203, 8, 28, 0.4);
}

#cookie-reject {
    background: transparent;
    color: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 11px 20px;
    font-size: 13px;
    cursor: pointer;
    border-radius: 2px;
    transition: color 0.2s, border-color 0.2s;
    white-space: nowrap;
}

#cookie-reject:hover {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
    #cookie-banner {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 20px 24px;
        gap: 16px;
    }

    #cookie-banner .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    #cookie-accept,
    #cookie-reject {
        width: 100%;
        text-align: center;
    }
}