/* =============================================
   CUKIERNIA WADOWICE – MAIN CSS
   Mobile-first: 0–991.98px (default)
   Desktop: @media (min-width: 992px)
   ============================================= */

/* ===== VARIABLES ===== */
:root {
    /* Colors from Figma */
    --black: #000000;
    --white: #ffffff;
    --off-white: #F5F5F0;
    --pink: #F0BABA;
    --pink-light: #FABFCA;
    --grey-dark: #111111;
    --grey-mid: #333333;
    --grey: #454545;
    --grey-light: #7A7A7A;
    --grey-border: #E3E4E8;
    --navy: #242A36;

    /* Typography from Figma */
    --font-heading: "DIN Pro", "Roboto", sans-serif;
    --font-body: "Lato", "Roboto", sans-serif;
    --font-script: audrielle-no1, sans-serif;    

    /* Layout from Figma */
    --container: 1280px;
    --container-wide: 1230px;
    --header-height: 153px;
    --header-height-scrolled: 70px;
    --gap-section: 80px;
    --gap-section-mobile: 50px;
    --radius: 0;
    --radius-btn: 50px;
    --transition: 0.3s ease;

    /* Spacing from Figma */
    --nav-item-gap: 30px;
    --section-padding-x: 458px;
}

/* ===== RESET ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--grey);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition);
}

ul, ol {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 900;
    line-height: 1.15;
    color: var(--black);
}

h1, h2{
    font-size: 40px;
    font-family: var(--font-heading);
    font-weight: 900;
    letter-spacing: -0.1px;
    color: var(--black);
    margin-bottom: 30px;
    text-transform: uppercase;
}

/* ===== LAYOUT ===== */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 15px;
}
/* Safety: neutralize accidentally nested containers */
.container .container {
    max-width: none;
    padding: 0;
    margin: 0;
}

.container-wide {
    width: 100%;
    max-width: var(--container-wide);
    margin: 0 auto;
    padding: 0 15px;
}

/* Utility: margin classes from ACF settings */
.margin-top {
    margin-top: var(--gap-section-mobile);
}

.margin-bottom {
    margin-bottom: var(--gap-section-mobile);
}

.site-content {
    padding-top: 100px;
}

.has-hero-slider .site-content {
    padding-top: 0;
}

.no-padding-top{
    padding-top: 0!important;
}

.no-padding-bottom{
    padding-bottom: 0!important;  
}


/* ===== PARALLAX BACKGROUND ===== */
.parallax-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 400vh;
    background-size: 100% auto;
    background-position: left top;
    background-repeat: repeat-y;
    z-index: -1;
    will-change: transform;
    pointer-events: none;
    opacity: 0.6;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-btn);
    padding: 10px 35px;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 900;
    text-transform: uppercase;
    text-decoration: none;
    transition: background-color var(--transition), color var(--transition), border-color var(--transition);
    line-height: 1.4;
    white-space: nowrap;
}

.btn--outline {
    background-color: transparent;
    border: 1px solid var(--black);
    color: var(--black);
}

.btn--outline:hover,
.btn--outline:focus-visible {
    background-color: var(--pink);
    border-color: var(--pink);
    color: var(--white);
}

.btn--white {
    background-color: transparent;
    border: 1px solid var(--white);
    color: var(--white);
}

.btn--white:hover,
.btn--white:focus-visible {
    background-color: var(--white);
    color: var(--black);
}

.btn--pink {
    background-color: var(--pink);
    border: 1px solid var(--pink);
    color: var(--white);
}

.btn--pink:hover,
.btn--pink:focus-visible {
    background-color: transparent;
    color: var(--pink);
}

/* ===== SECTION TITLE (DIN Pro Black) ===== */
.section-title {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: var(--fs-h1);
    line-height: var(--lh-h1);
    letter-spacing: -0.1px;
    color: var(--grey-dark);
}

.section-title h1,
.section-title h2 {
    font-size: inherit;
    line-height: inherit;
    color: inherit;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: transparent;
    transition: background-color var(--transition), box-shadow var(--transition);
}


.header.is-scrolled {
    background-color: var(--off-white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--container-wide);
    margin: 0 auto;
    padding: 0 15px 0;
    height: 100px;
    position: relative;
    transition: height var(--transition), padding var(--transition);
}

.header.is-scrolled .header__inner {
    height: var(--header-height-scrolled);
    padding: 10px 15px;
}

.header__logo {
    display: flex;
    align-items: center;
    height: 108px;
    flex-shrink: 0;
    transition: var(--transition);
}

.header__logo:hover {
    opacity: 0.6;
    scale: 0.9;
}

.header.is-scrolled .header__logo {
    height: 50px;
}

.header__logo img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

.header__logo--desktop {
    display: none;
}

.header__logo--mobile {
    display: flex;
    align-items: center;
    height: 60px;
    flex-shrink: 0;
}

/* ===== NAV ===== */
.header__nav {
    display: none;
    flex: 1;
    justify-content: center;
}

.menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.menu-item > a {
    display: block;
    font-family: "Roboto", sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: var(--grey-mid);
    letter-spacing: -0.1px;
    line-height: var(--lh-nav);
    transition: color var(--transition);
    position: relative;
}

.menu-item > a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--pink);
    transition: width var(--transition);
}

.menu-item > a:hover,
.menu-item > a:focus-visible {
    color: var(--pink);
}

.menu-item > a:hover::after,
.menu-item > a:focus-visible::after {
    width: 100%;
}

.menu-item-has-children {
    position: relative;
}

.menu-item-has-children > .sub-menu-toggle {
    display: none;
}

.sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--white);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    padding: 8px 0;
    z-index: 10;
}

.sub-menu .menu-item > a {
    font-size: 16px;
    font-weight: 400;
    padding: 8px 20px;
}

.sub-menu .sub-menu {
    top: 0;
    left: 100%;
}

.shop_link {
    display: none;
}

.shop_link a {
    display: block;
    font-family: "Roboto", sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: var(--grey-mid);
    letter-spacing: -0.1px;
    line-height: var(--lh-nav);
    transition: color var(--transition);
    position: relative;
    margin-right: 15px;
    text-decoration: none;
}

.shop_link a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--pink);
    transition: width var(--transition);
}

.shop_link a:hover,
.shop_link a:focus-visible {
    color: var(--pink);
}

.shop_link a:hover::after,
.shop_link a:focus-visible::after {
    width: 100%;
}

/* Mobile menu – Sklep link on bottom */
.mobile-menu__shop {
    padding: 8px 15px;
}

.mobile-menu__shop a {
    display: block;
    padding: 15px 20px;
    text-align: center;
    font-family: "Roboto", sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: var(--grey-mid);
    text-decoration: none;
    border-radius: 8px;
    transition: background-color var(--transition), color var(--transition);
}

.mobile-menu__shop a:hover {
    background-color: var(--pink);
    color: var(--white);
}

/* ===== HEADER PHONE (single cukiernia) ===== */
.header__phone {
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: center;
}

.header__phone a {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 14px;
    color: var(--grey-mid);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 5px;
}

.header__phone svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    transition: color var(--transition);
}

.header__phone span {
    color: var(--grey-mid);
    font-size: 13px;
    background: rgba(240, 186, 186, 0.25);
    border-radius: 20px;
    padding: 2px 15px 1px;
    font-weight: 500;
    transition: all var(--transition);
}

.header__phone span:hover {
    background: var(--pink-light);
}

.header__phone span a {
    font-size: unset;
}

@media (max-width: 360px) {
    .header__phone span a {
        font-size: 12px;
    }
    .header__phone span {
        font-size: 12px;
        padding: 2px 8px 1px;
    }
}

/* gdy header__phone jest tuż przed header__actions, burger przylega do phone */
.header__phone + .header__actions {
    margin-left: 0;
}

/* ===== HEADER CART ===== */
.header__cart {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--grey-mid);
    text-decoration: none;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    transition: color var(--transition);
    order: 2;
}

.header__cart:hover { color: var(--black); }

.header.is-scrolled .header__cart { color: var(--black); }

.header__cart-count {
    position: absolute;
    top: 2px;
    right: 2px;
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    background: var(--black);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 700;
    line-height: 18px;
    text-align: center;
    border-radius: 9px;
    box-sizing: border-box;
    display: none;
}

.header__cart-count:not(:empty) { display: block; }

/* ===== HEADER ACTIONS (cart + toggle) ===== */
.header__actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
}

.header__actions .header__cart {
    order: 1;
}

.header__actions .header__toggle {
    order: 2;
}

/* ===== MOBILE TOGGLE ===== */
.header__toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 110;
}

.header__toggle-line {
    width: 25px;
    height: 3px;
    background: var(--grey-mid);
    transition: transform var(--transition), opacity var(--transition);
    border-radius: 2px;
}

.header__toggle.is-open .header__toggle-line:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.header__toggle.is-open .header__toggle-line:nth-child(2) {
    opacity: 0;
}

.header__toggle.is-open .header__toggle-line:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
    position: fixed;
    top: 100px;
    left: -100%;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background: var(--off-white);
    transition: left var(--transition), top var(--transition), height var(--transition);
    z-index: 99;
    overflow-y: auto;
    padding: 20px 0;
}

.mobile-menu.is-scrolled {
    top: var(--header-height-scrolled);
    height: calc(100vh - var(--header-height-scrolled));
}

.mobile-menu.is-open {
    left: 0;
}

.mobile-menu .menu {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0 15px;
}

.mobile-menu .menu-item > a {
    display: block;
    padding: 15px 20px;
    text-align: center;
    font-size: 18px;
    border-radius: 8px;
    transition: background-color var(--transition), color var(--transition);
}

.mobile-menu .menu-item > a:hover {
    background-color: var(--pink);
    color: var(--white);
}

.mobile-menu .menu-item > a::after {
    display: none;
}

.mobile-menu .menu-item-has-children {
    position: relative;
}

.mobile-menu .sub-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 0;
    top: 0;
    width: 50px;
    height: 48px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 20px;
    color: var(--grey-mid);
    transition: transform var(--transition);
}

.mobile-menu .sub-menu-toggle[aria-expanded="true"] {
    transform: rotate(180deg);
}

.mobile-menu .sub-menu {
    position: static;
    box-shadow: none;
    background: transparent;
    display: none;
    padding: 0 0 0 20px;
    min-width: 0;
}

.mobile-menu .sub-menu.is-open {
    display: block;
}

.mobile-menu .sub-menu .menu-item > a {
    font-size: 16px;
    padding: 10px 20px;
}

/* ===== HERO SLIDER ===== */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100dvh;
    min-height: 500px;
    overflow: hidden;
    background: #111;
    transition: all 0.3s ease;
}

.hero-slider .swiper,
.hero-slider .swiper-container {
    width: 100%;
    height: 100% !important;
    position: absolute;
    inset: 0;
}

.hero-slider .swiper-wrapper {
    height: 100% !important;
}

.hero-slider .swiper-slide {
    overflow: hidden;
    width: 100% !important;
    height: 100% !important;
    position: relative;
}

.hero-slider__link {
    display: block;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-slider .swiper-slide img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

.hero-slider .swiper-pagination {
    bottom: 30px !important;
    z-index: 10;
}

.hero-slider .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.4);
    opacity: 1;
    border-radius: 50%;
    transition: background var(--transition);
}

.hero-slider .swiper-pagination-bullet-active {
    background: var(--white);
}

.hero-slider__placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: var(--white);
    font-size: 18px;
}

/* ===== TEXT BLOCK ===== */
.text-block {
    padding: var(--gap-section-mobile) 0;
}

.text-block__inner {
    max-width: 690px;
}

.text-block h3 {
    font-family: var(--font-body);
    font-size: 30px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.1px;
}

.text-block__content p:last-child {
    margin-bottom: 0;
}

.text-block__btn {
    margin-top: 30px;
}

.text-block.short-story .text-block__inner {
    max-width: 800px;
    margin: 0 auto;
}

/* ===== IMAGE-TEXT ===== */
.image-text {
    padding: var(--gap-section-mobile) 0;
}

.image-text h3 {
    font-size: 30px;
    font-weight: 500;
    font-family: var(--font-body);
    margin-bottom: 15px;
}

.image-text h3 strong {
    font-weight: 900;
}

.image-text__grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.image-text__media {
    width: 100%;
    overflow: hidden;
}

.image-text__media img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.image-text__slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.image-text__slider .swiper {
    width: 100%;
}

.image-text__slider .swiper-slide {
    min-height: 340px;
    aspect-ratio: 16 / 10;
}

.image-text__slider .swiper-slide .image-text__slide-link,
.image-text__slider .swiper-slide .image-text__slide-link img {
    width: 100%;
    height: 100%;
    display: block;
}

.image-text__slider .gallery-link {
    display: block;
    position: relative;
    overflow: hidden;
}

.image-text__slider .gallery-link::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.image-text__slider .gallery-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.7);
    width: 50px;
    height: 50px;
    background: url('../img/loupe.svg') center / contain no-repeat;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 2;
    pointer-events: none;
}

.image-text__slider .gallery-link:hover::after {
    opacity: 1;
}

.image-text__slider .gallery-link:hover::before {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.image-text__slider .gallery-link img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
    scale: 1.02;
}

.image-text__slider .gallery-link:hover img {
    transform: scale(1.05);
}

.image-text__slider-prev,
.image-text__slider-next,
.image-text__slider .slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s;
    background: #F0BABA;
    border-radius: 30px;
    padding: 12px;
}

.image-text__slider .slider-arrow:hover {
    opacity: 0.7;
}

.image-text__slider-prev {
    left: 14px;
}

.image-text__slider-prev img {
    transform: rotate(180deg);
}

.image-text__slider-next {
    right: 14px;
}

.image-text__slider img {
    width: 100%;
    display: block;
    object-fit: cover;
}

.image-text__slider-prev img,
.image-text__slider-next img {
    width: auto;
    height: auto;
    object-fit: unset;
}

.image-text__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 15px;
}

.image-text__eyebrow {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0;
    color: var(--black);
    line-height: 1;
}

.image-text__title {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 36px;
    line-height: 1.1;
    color: var(--black);
}

.image-text__desc {
    font-size: 18px;
    font-weight: 300;
    line-height: 1.55;
    color: var(--grey);
}

.bakery-address .image-text__media {
    display: flex;
    justify-content: flex-end;
}

.bakery-address .image-text__media img {
    max-width: 400px;
    max-height: 400px;
    display: flex;
}

/* ===== OUR BAKERIES ===== */
.our-bakeries {
    padding: var(--gap-section-mobile) 0;
}

.our-bakeries__title {
    font-family: var(--font-heading);
    font-size: 36px;
    line-height: 1.1;
    font-weight: 900;
    letter-spacing: -0.1px;
    color: var(--grey-dark);
    margin-bottom: 30px;
}

.our-bakeries__meta {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 10px;
}

.our-bakeries__filters {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.our-bakeries__filter {
    position: relative;
    padding: 0.8px 0 0.8px 20px;
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 900;
    line-height: 30.8px;
    letter-spacing: -0.1px;
    color: var(--black);
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: color var(--transition);
}

.our-bakeries__filter::before {
    content: '>';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--pink);
    font-size: 16px;
    font-weight: 900;
    opacity: 0;
    transition: opacity var(--transition);
}

.our-bakeries__filter.is-active,
.our-bakeries__filter:hover {
    color: var(--pink);
}

.our-bakeries__filter.is-active::before,
.our-bakeries__filter:hover::before {
    opacity: 1;
}

.our-bakeries__desc {
    max-width: 576px;
}

.our-bakeries__btn {
    text-align: center;
    margin-bottom: 40px;
}

.our-bakeries__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: opacity 0.2s ease;
}

.our-bakeries__desc .text-description {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: var(--fs-body);
    line-height: 1.5;
    letter-spacing: -0.1px;
    color: var(--grey);
    margin-bottom: 15px;
    font-size: 18px;
}

.archive .our-bakeries__meta {
    margin-bottom: 40px;
}

/* ── UE BANNER ── */
#bottom-banners-stack {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

.ue-banner {
    background-color: #ffffff;
    border-radius: 15px;
    color: #333;
    padding: 15px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

#bottom-banners-stack .cookie-banner, 
#bottom-banners-stack .ue-banner {
    width: 100%;
    box-sizing: border-box;
}

.ue-banner img {
    max-height: 60px;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
}

.secondary-button {
    border-radius: 50px;
    padding: 8px 35px;
    color: black;
    font-size: 16px;
    font-weight: 800;
    background-color: transparent;
    border: 1px solid #000;
    cursor: pointer;
    outline: none;
    text-transform: uppercase;
    text-decoration: none;
    font-family: var(--font-heading);
    transition: all var(--transition);
}

.secondary-white:hover, .secondary-button:hover {
    color: #F0BABA;
    border-color: #F0BABA;
}

@media (max-width: 768px) {
    .secondary-button {
        padding: 6px 20px;
        font-size: 13px;
    }
    
    .ue-banner img {
        max-height: 40px;
    }
    
    #bottom-banners-stack {
        width: 100%;
        gap: 6px;
    }
    
    .ue-banner {
        border-radius: 0;
        padding: 12px 15px;
        gap: 10px;
    }

    .ue-banner img {
        flex-shrink: 1;
        min-width: 0;
    }

    .ue-banner .secondary-button {
        flex-shrink: 0;
        white-space: nowrap;
    }
}

/* ── CONTENT TABS ── */
.content-tab-item {
    font-family: 'Lato', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    padding: 12px 15px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    color: #333;
}

.content-tab-item.active {
    font-weight: 700;
    background-color: #F0BABA;
    border-left-color: #F0BABA;
    color: #ffffff;
}

.content-tabs-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.content-tabs-container {
    display: flex;
    margin-top: 50px !important;
    gap: 30px;
    max-width: 100%;
    margin-bottom: 80px;
}

.content-tabs-left-column {
    max-width: 300px;
    width: 100%;
    flex-shrink: 0;
}

.content-tabs-right-column {
    max-width: 581px;
    width: 100%;
    flex: 1;
}

.content-tabs-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.content-tabs-gallery img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid var(--grey-border);
}

.content-tabs-gallery img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.content-tab-item.active:hover{
    background-color: #F0BABA;
    border-left-color: #F0BABA;
}

.content-tab-item:hover {
    background-color: #f5f5f5;
    border-left-color: #F0BABA;
}

@media (max-width: 991px) {
    .content-tabs-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .content-tabs-left-column {
        max-width: 100%;
    }
    
    .content-tabs-right-column {
        max-width: 100%;
    }
    
    .content-tabs-gallery {
        grid-template-columns: 1fr;
    }
    
    .content-tabs-gallery img {
        height: 250px;
    }
}

/* ── UE PROJECTS ── */
.ue-projects {
    margin-bottom: 50px;
}
.ue-projects__eyebrow {
    margin-bottom: 16px;
    width: 69px;
    height: 10px;
    background: var(--pink);
}

.ue-projects h3 {
    font-family: var(--font-body);
    font-size: 24px;
    font-weight: 700;
    line-height: 28px;
    color: var(--black);
    margin-bottom: 32px;
}

.ue-projects__cols {
    display: grid;
    grid-template-columns: 65fr 35fr;
    gap: 48px;
    align-items: start;
}

.ue-projects__content {
    font-size: 16px;
    line-height: 1.7;
    color: var(--grey);
}

.ue-projects__content p {
    margin-bottom: 16px;
}

.ue-projects__content p:last-child {
    margin-bottom: 0;
}

.ue-projects__logos {
    margin-top: 32px;
}

.ue-projects__logos img {
    width: 100%;
    height: auto;
}

.ue-projects__values {
    margin-bottom: 24px;
}

.ue-projects__values p {
    color: var(--black);
    margin-bottom: 4px;
    font-family: "Lato", Regular;
    font-size: 24px;
    font-weight: 600;
}

.ue-projects__values p strong,
.ue-projects__values p b {
    display: block;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--black);
    margin-top: 4px;
    margin-bottom: 20px;
}

.ue-projects__values h4 {
    margin-bottom: 5px;
    color: var(--black);
}

@media (max-width: 991px) {
    .ue-projects__cols {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .ue-projects h3 {
        margin-bottom: 24px;
    }
}

/* ── BAKERY CARD (mobile) ── */
.bakery-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    overflow: hidden;
}

.bakery-card__image {
    display: block;
    width: 100%;
    aspect-ratio: 16/6;
    overflow: hidden;
}

.bakery-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--transition);
    scale: 1.01;
}

.bakery-card:hover .bakery-card__image img {
    transform: scale(1.03);
}

.bakery-card__body {
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    border: 1px solid #f0baba;
    border-top: none;
    background: var(--white);
    transition: all 0.3s ease-in-out;
}

.bakery-card__body:hover {
    background: var(--pink);
    color: white;
    cursor: pointer;
}

.bakery-card__body h3,
.bakery-card__body .bakery-card__city,
.bakery-card__body .bakery-card__details p,
.bakery-card__body .bakery-card__details a {
    transition: all 0.3s ease-in-out;
}

.bakery-card__body:hover h3,
.bakery-card__body:hover .bakery-card__city,
.bakery-card__body:hover .bakery-card__details p,
.bakery-card__body:hover .bakery-card__details a {
    color: white;
}

.bakery-card__body .btn--outline:hover {
    border: 1px solid white;
}

.bakery-card__info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.bakery-card__name {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 900;
    line-height: 27px;
    letter-spacing: -0.1px;
    color: var(--grey-dark);
}

.bakery-card__city {
    font-size: 18px;
    font-weight: 300;
    line-height: 1.5;
    letter-spacing: -0.1px;
    color: var(--grey-dark);
}

.bakery-card__details {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.bakery-card__hours {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--grey-dark);
}

.bakery-card__hours p, .bakery-card__hours li {
    margin: 0;
    padding: 0;
    line-height: 1.4;
    font-size: 16px;
	font-weight: 700;
  	color: #1a1a1a;
}

.bakery-card__hours p + p {
    margin-top: 2px;
}

.bakery-card__phone {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    line-height: 22.4px;
    letter-spacing: -0.1px;
    color: var(--grey-dark);
    text-decoration: underline;
    transition: color var(--transition);
}

.bakery-card__phone:hover {
    color: var(--pink);
}

.bakery-card__icons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.bakery-card__icons img {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

.bakery-card__more {
    margin-top: auto;
}

.bakery-card {
    transition: opacity 0.3s ease;
    opacity: 0;
}

.bakery-card.is-visible {
    opacity: 1;
}

.bakery-card[data-hidden] {
    display: none;
}
.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 24px!important;
}

.swiper-button-next:after {
    padding-left: 4px;
}

.swiper-button-prev:after {
    padding-right: 4px;
}

.gallery-block--gallery .swiper-button-prev:after,
.gallery-block--gallery .swiper-button-next:after {
    display: none;
}

.swiper-pagination-bullet-active {
    background: var(--pink)!important;
}

.swiper-button-next, .swiper-button-prev {
    color: #fff!important;
    transition: color var(--transition);
}

.swiper-button-next:hover, .swiper-button-prev:hover {
    color: var(--pink) !important;
}

.swiper-button-next, .swiper-button-prev {
    color: #fff !important;
    background: #00000052;
    width: 50px;
    height: 50px;
    border-radius: 30px;
}

/* ===== COLUMNS ===== */
.columns-block {
    padding: var(--gap-section-mobile) 0;
}

.columns-block__intro {
    margin-bottom: 32px;
}

.columns-block__intro a, .column-item__text a {
    color: var(--pink);
}

.columns-block__grid {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 15px;
    scrollbar-width: thin;
    scrollbar-color: var(--pink) var(--grey-border);
}

.columns-block__grid::-webkit-scrollbar {
    height: 6px;
}

.columns-block__grid::-webkit-scrollbar-track {
    background: var(--grey-border);
    border-radius: 3px;
}

.columns-block__grid::-webkit-scrollbar-thumb {
    background: var(--pink);
    border-radius: 3px;
}

.column-item {
    flex: 0 0 75%;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.column-item__divider {
    width: 69px;
    height: 10px;
    background: var(--pink);
}

.column-item__title {
    font-family: var(--font-body);
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--black);
}

.column-item__title h3 {
        color: var(--pink-light);
}

.column-item__text {
    font-size: 18px;
    font-weight: 300;
    line-height: 1.55;
    color: var(--grey);
}

/* Wyrównanie do dołu tylko gdy w tym gridzie istnieje choć 1 nagłówek */
.columns-block__grid:has(.column-item__title) .column-item__text {
    margin-top: auto;
}

.column-item__text pre {
    font-family: "Lato", Regular;
    font-size: 20px;
    font-weight: 400;
    color: #000000;
    line-height: 1.3;
}

.columns-block h3 {
    font-family: var(--font-body);
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--grey);
    margin-bottom: 20px;
}

.columns-block__intro h3 {
    font-size: 40px;
    font-family: var(--font-heading);
    font-weight: 900;
    letter-spacing: -0.1px;
    color: var(--black);
    margin-bottom: 30px;
    text-transform: uppercase;
}

.column-item__title h4 {
    color: var(--grey);
    font-family: var(--font-body);
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0;
}

.contact .column-item__title h4 {
    color: var(--pink);
}

/* Columns – mobile stack variant */
.columns-block--mobile-stack .columns-block__grid {
    flex-direction: column;
    overflow-x: visible;
    scroll-snap-type: none;
    padding-bottom: 0;
}

.columns-block--mobile-stack .column-item {
    flex: none;
    width: 100%;
    scroll-snap-align: none;
}

/* ===== CTA ===== */
.cta {
    padding: var(--gap-section-mobile) 0;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.cta__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.3);
    mix-blend-mode: multiply;
    z-index: 1;
}

.cta__inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-height: 360px;
    justify-content: center;
}

.cta__content {
    display: contents;
}

.cta__content h2, .cta__content h3 {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 40px;
    line-height: 1.2;
    letter-spacing: -0.1px;
    color: var(--white);
    margin: 0;
    order: 1;
}

.cta__btn {
    order: 2;
}

.cta__content p {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 400;
    color: var(--white);
    line-height: 28px;
    letter-spacing: -0.1px;
    margin: 0;
    order: 3;
    text-shadow: 0 1px 6px rgba(0,0,0,0.8), 0 2px 12px rgba(0,0,0,0.5);
}

.cta__title {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: var(--fs-h1);
    line-height: var(--lh-h1);
    letter-spacing: -0.1px;
    color: var(--white);
}

.cta__text {
    font-size: 18px;
    font-weight: 400;
    color: var(--white);
    line-height: 28px;
    letter-spacing: -0.1px;
}

/* ===== LOCATION INFO ===== */
.location-info {
    padding: var(--gap-section-mobile) 0;
}

.location-info__breadcrumbs {
    margin-bottom: 32px;
}

.location-info__breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
    color: var(--grey);
}

.location-info__breadcrumbs li + li::before {
    content: '/';
    padding: 0 8px;
    color: var(--grey-light);
}

.location-info__breadcrumbs a {
    color: var(--grey-mid);
    text-decoration: none;
    transition: color 0.2s;
}

.location-info__breadcrumbs a:hover {
    color: var(--black);
    text-decoration: underline;
}

.location-info__breadcrumbs [aria-current="page"] {
    font-weight: 600;
    color: var(--black);
}

.location-info__body {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.location-info__section-label {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 18px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--black);
    margin: 0 0 14px;
}

.location-info__address {
    font-size: 16px;
    line-height: 1.7;
    color: var(--grey-mid);
}

.location-info__hours {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.location-info__hours-row {
    display: flex;
    gap: 20px;
    font-size: 16px;
    line-height: 1.5;
}

.location-info__hours-label {
    color: var(--grey);
    min-width: 90px;
    flex-shrink: 0;
}

.location-info__hours-value {
    color: var(--black);
    font-weight: 500;
}

/* ===== GALLERY ===== */
.gallery-block {
    padding: var(--gap-section-mobile) 0;
}


.gallery-block__header {
    margin-bottom: 60px;
}

.gallery-block__title {
    font-size: 36px;
    margin-bottom: 10px;
}

.gallery-block__subtitle {
    font-size: 18px;
    font-weight: 300;
    color: var(--grey);
}

.gallery-block__content {
    margin-bottom: 20px;
}

/* Gallery type – slider wrap (outside .container, own padding) */
.gallery-block__slider-wrap {
    position: relative;
    padding: 0 30px;
    min-height: 380px;
    margin-bottom: 40px;
}

.gallery-block--gallery .swiper {
    position: relative;
    overflow: hidden;
}

.gallery-block--gallery .swiper-slide {
    height: auto;
}

.gallery-block--gallery .swiper-slide a {
    display: block;
}

.gallery-block--gallery .swiper-slide img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    cursor: pointer;
    display: block;
    scale: 1.02;
}

.gallery-block--gallery .gallery-link {
    display: block;
    position: relative;
    overflow: hidden;
}

.gallery-block--gallery .gallery-link::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.gallery-block--gallery .gallery-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.7);
    width: 50px;
    height: 50px;
    background: url('../img/loupe.svg') center / contain no-repeat;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 2;
    pointer-events: none;
}

.gallery-block--gallery .gallery-link:hover::after {
    opacity: 1;
}

.gallery-block--gallery .gallery-link:hover::before {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.gallery-block--gallery .gallery-link img {
    transition: transform 0.3s ease;
}

.gallery-block--gallery .gallery-link:hover img {
    transform: scale(1.05);
}

.gallery-block__slider-wrap .slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--pink);
    border-radius: 30px;
    padding: 12px;
    border: none;
    cursor: pointer;
    transition: opacity 0.2s;
}

.gallery-block__slider-wrap .slider-arrow:hover {
    opacity: 0.7;
}

.gallery-block__slider-wrap .slider-arrow--prev {
    left: 10px;
}

.gallery-block__slider-wrap .slider-arrow--prev img {
    width: 100%;
    height: 100%;
    transform: rotate(180deg);
}

.gallery-block__slider-wrap .slider-arrow--next {
    right: 10px;
}

.gallery-block__slider-wrap .slider-arrow--next img {
    width: 100%;
    height: 100%;
}

.gallery-block--logos .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 150px;
}

.gallery-block--logos .swiper-slide img {
    max-height: 150px;
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: opacity var(--transition);
}

.gallery-block--logos .swiper-slide img:hover {
    opacity: 0.8;
}

.gallery-block--logos .swiper-slide a {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== QUOTE ===== */

.quote-block__inner {
    max-width: 992px;
    margin: 0 auto;
}

.quote-block__text {
    font-family: var(--font-script);
    font-size: 48px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--grey-dark);
    letter-spacing: -0.1px;
    text-align: center;
    font-style: italic;
}

/* ===== BANNER ===== */
.banner-block {
    position: relative;
    overflow: hidden;
}

.banner-block__image {
    width: 100%;
    display: block;
}

.banner-block__image img {
    width: 100%;
    height: auto;
    display: block;
}

.banner-block__content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    padding: 0 15px;
}

.banner-block__inner {
    max-width: var(--container);
    margin: 0 auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.banner-block__title {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: var(--fs-h2);
    line-height: var(--fs-h2);
    letter-spacing: -0.1px;
    color: var(--white);
}

/* ===== PAGE TITLE ===== */
.page-title {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #E3E4E8;
    margin-top: -153px;
}

.page-title:before {
    background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
    height: 30%;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9;
}

.page-title--large { min-height: 320px; }
.page-title--small { min-height: 240px; }

.page-title__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 0;
    will-change: transform;
}

.page-title--parallax .page-title__background {
    height: 130%;
    top: -15%;
}

.page-title__inner {
    position: relative;
    z-index: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
}

.page-title__breadcrumbs { margin-bottom: 16px; }

.page-title__breadcrumbs-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 6px;
    list-style: none;
    margin: 0;
    padding: 0;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    color: var(--grey);
}

.page-title__breadcrumbs-item { display: flex; align-items: center; }

.page-title__breadcrumbs-item a {
    color: var(--grey);
    text-decoration: none;
    transition: color var(--transition);
}

.page-title__breadcrumbs-item a:hover { color: var(--pink); }

.page-title__breadcrumbs-item:not(:last-child)::after {
    content: '/';
    margin-left: 6px;
    color: var(--grey-light);
}

.page-title__breadcrumbs-item .current { color: var(--black); font-weight: 700; }

.page-title__title {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 32px;
    line-height: 1.1;
    letter-spacing: -0.1px;
    color: var(--black);
    margin: 0;
    text-align: center;
}

.page-title--has-bg .page-title__title,
.page-title--has-bg .page-title__breadcrumbs-list,
.page-title--has-bg .page-title__breadcrumbs-item a,
.page-title--has-bg .page-title__breadcrumbs-item .current { color: var(--white); }

.page-title--has-bg .page-title__breadcrumbs-item a:hover { color: var(--pink-light); }

.page-title--has-bg .page-title__breadcrumbs-item:not(:last-child)::after { color: rgba(255,255,255,0.5); }


/* ===== CONTACT FORM ===== */
.contact-form {
    padding: var(--gap-section-mobile) 0;
}

.contact-form__content {
    font-family: var(--font-body);
    font-size: var(--fs-body);
    line-height: var(--lh-body);
    color: var(--grey);
    margin-bottom: 32px;
}

.contact-form__form {
    width: 100%;
    padding: 0 15px;
    max-width: var(--container);
    margin: 0 auto;
    box-sizing: border-box;
}

.contact-form__form .wpcf7 { width: 100%; }

.cf7-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.cf7-row {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cf7-row label {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    color: var(--black);
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.cf7-grid--order .cf7-row label input {
    margin-top: 4px;
}

.cf7-row input[type="text"], .cf7-row input[type="email"], .cf7-row input[type="tel"], .cf7-row input[type="date"], .cf7-row input[type="number"], .cf7-row select, .cf7-row textarea {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 16px;
    color: #909090;
    background: var(--white);
    border: 1px solid #000000;
    border-radius: 0;
    outline: none;
    transition: border-color var(--transition);
    appearance: none;
    font-weight: 400;
}

.cf7-row input:focus,
.cf7-row select:focus,
.cf7-row textarea:focus {
    border-color: var(--black);
}

.cf7-row textarea { min-height: 140px; resize: vertical; }

.cf7-row select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23333' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.cf7-submit .wpcf7-submit {
    display: inline-block;
    letter-spacing: 0.5px;
    background: var(--black);
    border-radius: 50px;
    padding: 8px 35px;
    color: black;
    font-size: 16px;
    font-weight: 800;
    background-color: transparent;
    border: 1px solid #000;
    outline: none;
    text-transform: uppercase;
    text-decoration: none;
    font-family: var(--font-heading);
    transition: all var(--transition);
    cursor: pointer;
    height: 45px;
}

.cf7-submit .wpcf7-submit:hover {
    border-color: var(--pink);
    color: white;
    background: var(--pink);
}

.cf7-accept {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.5;
    color: var(--grey);
}

.cf7-accept .wpcf7-list-item { margin: 0; }

.cf7-accept a {
    color: var(--black);
    text-decoration: underline;
}

.contact-form__form .wpcf7-not-valid-tip {
    font-size: 13px;
    color: #c00;
    margin-top: 4px;
}

.contact-form__form .wpcf7-response-output {
    padding: 12px 16px;
    font-size: 14px;
    border: 1px solid var(--grey-border);
    margin: 16px 0 0;
}

.contact-form__form p { margin: 0; }

.form-acceptance label {
    display: inline-flex;
    align-items: baseline;
    gap: 6px !important;
    margin: 20px 0;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 5px;
    width: 100%;
    font-weight: 300;
    color: var(--grey);
    flex-direction: row;
}

.form-acceptance a {
    color: #2c5aa0;
}

/* ── ORDER FORM (cf7-grid--order) – mobile base ── */
.cf7-label-text {
    display: block;
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 18px;
    line-height: 1.2;
    letter-spacing: -0.1px;
    color: var(--grey);
    margin-bottom: 0;
}

.cf7-info {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.6;
    color: var(--grey);
    border-top: 1px solid var(--grey-border);
    border-bottom: 1px solid var(--grey-border);
    padding: 16px 0;
}

.cf7-info p { margin: 0; }


/* ===== CONTENT SLIDER ===== */
.content-slider {
    padding: var(--gap-section-mobile) 0;
    overflow: hidden;
}

.content-slider__swiper {
    position: relative;
    overflow: hidden;
}

.content-slider__slide-inner {
    position: relative;
    overflow: hidden;
}

.content-slider__image {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.content-slider__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.content-slider__caption {
    padding: 20px 0;
}

.content-slider__caption-title {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 22px;
    line-height: 1.2;
    color: var(--black);
    margin: 0 0 10px;
}

.content-slider__caption-text {
    font-family: var(--font-body);
    font-size: var(--fs-body);
    line-height: var(--lh-body);
    color: var(--grey);
    margin: 0 0 16px;
}

.content-slider__btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 44px;
    height: 44px;
    background: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition);
    padding: 0;
}

.content-slider__btn:hover { background: var(--grey-border); }

.content-slider__btn svg {
    width: 18px;
    height: 18px;
    fill: var(--black);
}

.content-slider__btn--prev { left: 10px; }
.content-slider__btn--next { right: 10px; }

.content-slider__pagination {
    text-align: center;
    margin-top: 16px;
}


/* ===== MAP BLOCK ===== */
.map-block {
    padding: var(--gap-section-mobile) 0;
}

.map-block__content {
    font-family: var(--font-body);
    font-size: var(--fs-body);
    line-height: var(--lh-body);
    color: var(--grey);
    margin-bottom: 32px;
}

.map-block__map {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    margin-top: 32px;
}

.map-block__map iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}


/* ===== OFFER BLOCK ===== */
.offer-block {
    padding: var(--gap-section-mobile) 0;
}

.offer-block__filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 32px;
}

.offer-block__filter {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 36px 10px;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0;
    color: var(--black);
    background: transparent;
    border: 1px solid var(--black);
    border-radius: var(--radius-btn);
    cursor: pointer;
    transition: color var(--transition), border-color var(--transition), background var(--transition);
    white-space: nowrap;
    line-height: 1;
    background: #fff;
}

.offer-block__filter:hover {
    background: var(--black);
    color: var(--white);
}

.offer-block__filter.is-active {
    color: var(--pink);
    border-color: var(--pink);
}

.offer-block__filter.is-active:hover {
    background: var(--pink);
    color: var(--white);
    border-color: var(--pink);
}

.offer-block__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 16px;
    transition: opacity 0.3s ease;
}

.offer-block__grid.is-loading {
    pointer-events: none;
}

.offer-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.offer-card.is-visible {
    opacity: 1;
}

.offer-card__image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 7 / 5;
    background: var(--grey-border);
}

.offer-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
    scale: 1.02;
}

.offer-card__image a {
    display: block;
    width: 100%;
    height: 100%;
}

.offer-card__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.35);
    opacity: 0;
    transition: opacity 0.3s ease;
    color: var(--white);
}

.offer-card__image a:hover .offer-card__overlay {
    opacity: 1;
}

.offer-card__image a:hover img {
    transform: scale(1.05);
}

.offer-card__title {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 16px;
    line-height: 1.3;
    letter-spacing: -0.1px;
    color: var(--black);
    margin-top: 10px;
    text-transform: uppercase;
    overflow-wrap: break-word;
}

.offer-card__desc {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    color: var(--grey);
    margin-top: 2px;
    overflow-wrap: break-word;
}

.offer-block__more-wrap {
    display: none !important; /* zastąpiony infinite scrollem — sentinel w JS */
}

.offer-block__btn-wrap {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.offer-block__more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 40px;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 15px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    color: var(--black);
    background: transparent;
    border: 2px solid var(--black);
    border-radius: var(--radius-btn);
    cursor: pointer;
    transition: background var(--transition), color var(--transition);
}

.offer-block__more:hover {
    background: var(--black);
    color: var(--white);
}


/* ===== FOOTER ===== */
.footer {
    padding-top: var(--gap-section-mobile);
    padding-bottom: 100px;
}

.footer__contact {
    padding: 40px 0;
}

.footer__contact h2 {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 36px;
    line-height: 1.1;
    letter-spacing: -0.1px;
    color: var(--black);
    margin: 0 0 30px 0;
}

.footer__contact-inner {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.footer__logo {
    flex-shrink: 0;
}

.footer__logo img {
    max-width: 186px;
    height: auto;
}

.footer__contact-subtitle {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
    letter-spacing: -0.1px;
    color: var(--black);
    margin: 0 0 20px 0;
}

.footer__contact-details {
    display: flex;
    flex-direction: column;
}

.footer__contact-label {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
    letter-spacing: -0.1px;
    color: var(--black);
    margin: 0;
}

.footer__contact-link {
    display: block;
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
    letter-spacing: -0.1px;
    color: var(--pink);
    transition: color var(--transition);
}

.footer__contact-link:hover {
    color: var(--grey-dark);
}

/* Footer EU Banner */
.footer__eu {
    padding: 30px 0;
}

.footer__eu-banner {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
}

.footer__eu-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px;
    background-size: cover;
    background-position: center;
    flex-direction: column;
}

.footer__eu-title {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 22px;
    color: var(--white) !important;
    line-height: 1.2;
}

.footer__eu-logos {
    padding: 15px 20px;
}

.footer__eu-logos img {
    width: 100%;
    max-height: 120px;
    object-fit: contain;
}

/* Footer Bottom */
.footer__bottom {
    padding: 10px 0 0;
}

.footer__divider {
    width: 100%;
    height: 10px;
    background: var(--pink);
    margin-bottom: 15px;
}

.footer__bottom-inner {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    margin-bottom: 15px;
}

.footer__bottom p {
    font-family: var(--font-body);
    font-size: var(--fs-body);
    font-weight: 400;
    line-height: var(--fs-body);
    letter-spacing: -0.1px;
    color: var(--black);
    margin-bottom: 0;
}

.footer__socials {
    display: flex;
    align-items: center;
    gap: 5px;
}

.footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    transition: opacity var(--transition);
}

.footer__social-link:hover {
    opacity: 0.7;
}

.footer__social-link img {
    width: 28px;
    height: 28px;
}

/* ===== BASE TYPOGRAPHY ===== */
h4 {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: -0.1px;
    color: var(--grey);
    margin-bottom: 20px;
}

p {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: var(--fs-body);
    line-height: 1.5;
    letter-spacing: -0.1px;
    color: var(--grey);
    margin-bottom: 15px;
    font-size: 18px;
}

p:last-child {
    margin-bottom: 0;
}

/* ===== SINGLE CUKIERNIA ===== */

/* Cover parallax — uses generic .page-title--parallax .page-title__background */

/* Title + breadcrumbs below cover */
.cukiernia-intro {
    padding: 30px 0 10px;
}

.cukiernia-intro h1 {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 36px;
    line-height: 1.1;
    letter-spacing: -0.1px;
    color: var(--grey-dark);
    text-transform: uppercase;
    margin-bottom: 0;
}

.cukiernia-intro p {
    font-size: 30px;
    color: var(--grey-dark);
}

.cukiernia-intro__crumbs {
    justify-content: flex-start;
}

/* Article body */
.cukiernia-body > .container {
    padding-top: 30px;
    padding-bottom: 40px;
}

/* Gallery */
.cukiernia-gallery {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    min-height: 220px;
    max-height: 480px;
    overflow: hidden;
    background: #111;
    margin-bottom: 40px;
}

.cukiernia-gallery .swiper {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
}

.cukiernia-gallery .swiper-slide {
    overflow: hidden;
}

.cukiernia-gallery .swiper-slide a {
    display: block;
    width: 100%;
    height: 100%;
}

.cukiernia-gallery .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cukiernia-gallery .swiper-pagination-bullet {
    width: 14px;
    height: 14px;
    background: rgba(255,255,255,0.5);
    opacity: 1;
}

.cukiernia-gallery .swiper-pagination-bullet-active {
    background: var(--white);
}

.cukiernia-gallery .swiper-button-prev,
.cukiernia-gallery .swiper-button-next {
    color: var(--white);
}

.cukiernia-slide--has-video {
    position: relative;
}

.cukiernia-slide__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 72px;
    height: 72px;
    background: rgba(0, 0, 0, 0.55);
    border-radius: 50%;
    pointer-events: none;
    transition: background var(--transition);
}

.cukiernia-slide__play::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%);
    border-style: solid;
    border-width: 13px 0 13px 22px;
    border-color: transparent transparent transparent #fff;
}

.cukiernia-slide--has-video:hover .cukiernia-slide__play {
    background: var(--pink);
}

/* Details */
.cukiernia-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 0;
}

.cukiernia-details__hours {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.4;
    color: var(--grey-dark);
}

.cukiernia-details__hours strong {
    display: block;
    margin-bottom: 5px;
}

.cukiernia-details__hours p,
.cukiernia-details__hours li {
    margin: 0;
    padding: 0;
    line-height: 1.4;
}

.cukiernia-details__hours p + p {
    margin-top: 2px;
}

.cukiernia-details__address strong {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--grey-dark);
    display: block;
    margin-bottom: 3px;
}

.cukiernia-details__address {
    display: flex;
    flex-direction: column;
}

.cukiernia-details__links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cukiernia-details__links img {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

.single-cukiernia .cafe-features {
    padding-top: 40px;
}

.cukiernia-desc .text-block {
    padding: 0 !important;
}

.cukiernia-desc h2 {
    text-transform: uppercase;
}

/* Zobacz również */
.cukiernia-related {
    padding-bottom: 60px;
}

.cukiernia-related__divider {
    border: none;
    border-top: 1px solid var(--grey-border);
    margin: 0 0 40px;
}

.cukiernia-related h2 {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 28px;
    line-height: 1.1;
    color: var(--grey-dark);
    margin-bottom: 40px;
    text-transform: uppercase;
}

/* ===== UE BOTTOM BANNER (FIXED) ===== */
.ue-banner-fixed {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    background: var(--white);
    border-radius: 15px 15px 0 0;
    padding: 15px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.ue-banner-fixed img {
    max-height: 60px;
    width: auto;
    object-fit: contain;
}

/* ===== UTILITIES ===== */
.text-center {
    text-align: center;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

/* ===== HERO VIDEO ===== */
.hero-video {
    position: relative;
    width: 100%;
    height: calc(100dvh - 80px);
    overflow: hidden;
    transition: all 0.3s ease;
}

.hero-video:before {
    content: "";
    position: absolute;
    height: 240px;
    width: 100%;
    z-index: 9;
    inset: 0;
    background: linear-gradient(180deg, #FFF 0%, rgba(255, 255, 255, 0.00) 100%);
}

.hero-video__video-wrap {
    position: absolute;
    inset: 0;
}

.hero-video__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-video__iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120vw;
    height: 120vh;
    transform: translate(-50%, -50%);
    border: 0;
    pointer-events: none;
}

.hero-video__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.1);
}

.hero-video__overlay-pink {
    position: absolute;
    inset: 0;
    background: rgba(240, 186, 186, 0.05);
}

.hero-video__gradient-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 181px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
    mix-blend-mode: overlay;
}

.hero-video__gradient-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 146px;
    background: linear-gradient(to top, rgba(255,255,255,0.3), transparent);
    mix-blend-mode: overlay;
}

.hero-video__content {
    position: absolute;
    bottom: 20%;
    left: var(--side-pad-mobile);
    right: var(--side-pad-mobile);
    z-index: 2;
}

.hero-video h1 {
    font-family: var(--font-script);
    font-weight: 400;
    font-size: 120px;
    line-height: 1;
    color: var(--white);
    margin-bottom: -20px;
    text-transform: unset;
}

.hero-video p {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 48px;
    line-height: 1.15;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 40px;
}

.hero-video__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 45px;
    background: var(--white);
    border: 1px solid var(--white);
    border-radius: 30px;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 16px;
    text-transform: uppercase;
    color: var(--black);
    transition: background 0.25s, color 0.25s;
    padding-left: 20px;
    padding-right: 20px;
}

.hero-video__cta:hover {
    background: transparent;
    color: var(--white);
}

.hero-video__scroll {
    position: absolute;
    left: 50%;
    bottom: 24px;
    transform: translateX(-50%);
    animation: heroVideoBounce 1.8s ease-in-out infinite;
    will-change: transform, opacity;
    border: 2px solid #fff;
    border-radius: 30px;
    padding: 5px;
    z-index: 2;
}

@keyframes heroVideoBounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
        opacity: 0.9;
    }
    50% {
        transform: translateX(-50%) translateY(10px);
        opacity: 1;
    }
}

.hero-video__scroll img {
    width: 24px;
}

.hero-video__placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 400px;
    background: #111;
    color: var(--white);
    font-size: 18px;
}

/* ===== BAKERY MAP ===== */
.bakery-map {
    padding: 70px 0 40px;
}

.bakery-map__inner {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.bakery-map__info h2 {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 40px;
    line-height: 1.2;
    text-transform: uppercase;
    color: var(--black);
    margin-bottom: 24px;
}

.bakery-map__info p,
.bakery-map__info address {
    font-style: normal;
    font-family: var(--font-body);
    font-size: 20px;
    line-height: 1.4;
    color: var(--black);
}

.bakery-map__info strong {
    font-weight: 700;
}

.bakery-map__info a {
    display: inline-block;
    font-family: var(--font-body);
    font-weight: 900;
    font-size: 18px;
    color: var(--pink);
    text-decoration: none;
    margin-top: 16px;
    transition: opacity 0.2s;
}

.bakery-map__info a:hover {
    opacity: 0.7;
}

.bakery-map__map-header {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--grey-border);
    padding: 15px 20px;
}

.bakery-map__map-logo {
    width: 72px;
    height: auto;
}

.bakery-map__map-label {
    display: flex;
    flex-direction: column;
}

.bakery-map__map-city {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
    color: var(--black);
}

.bakery-map__map-cafe {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 14px;
    color: var(--black);
}

.bakery-map__map-image {
    border-left: 1px solid var(--pink);
    border-right: 1px solid var(--pink);
    overflow: hidden;
    aspect-ratio: 641 / 370;
}

.bakery-map__map-image iframe {
    width: 100%;
    height: 100%;
    display: block;
}

.bakery-map__map-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--pink);
    height: 90px;
    padding: 0 20px;
}

.bakery-map__map-footer-brand {
    display: none;
}

.bakery-map__btn-route {
    border-color: var(--black);
    gap: 10px;
}

.bakery-map__btn-route:hover {
    background-color: var(--black);
}

.bakery-map__btn-route:hover img, .bakery-map__btn-route:focus-visible img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(288deg) brightness(102%) contrast(102%);
}

.bakery-map__btn-route img {
    transition: all 0.25s;
}

/* =============================================
   DESKTOP: min-width: 992px
   ============================================= */
.columns-block--3 .columns-block__grid {
    flex-direction: column;
    overflow-x: visible;
    scroll-snap-type: none;
    padding-bottom: 0;
}

.columns-block--3 .column-item {
    flex: none;
    width: 100%;
    scroll-snap-align: none;
}

@media (min-width: 992px) {

    .margin-top {
        margin-top: var(--gap-section);
    }

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

    .site-content {
        padding-top: 140px;
    }

    .has-hero-slider .site-content {
        padding-top: 0;
    }

    .header__inner {
        height: 140px;
        padding: 15px 15px 15px;
    }

    .header.is-scrolled .header__inner {
        height: 70px;
        padding: 10px 15px;
    }

    .header__logo--desktop {
        display: flex;
    }

    .header__logo--mobile {
        display: none;
    }

    .header__nav {
        display: flex;
        flex: 1;
        justify-content: center;
    }

    .header__toggle {
        display: none;
    }

    .mobile-menu {
        display: none !important;
    }

    .shop_link {
        display: block;
    }

    .header__actions {
        margin-left: 0;
        gap: 0;
    }

    .header__phone {
        margin-left: 0;
        min-width: 200px;
        justify-content: flex-end;
    }

    .header__phone a {
        font-size: 16px;
    }

    .header__phone svg {
        width: 20px;
        height: 20px;
    }

    /* Desktop submenu hover */
    .menu-item-has-children:hover > .sub-menu,
    .menu-item-has-children:focus-within > .sub-menu {
        display: block;
    }

    /* Hero slider */
    .hero-slider .swiper {
        height: 100%;
    }

    /* Hero video */
    .hero-video {
        height: 100vh;
        margin-top: -140px;
    }

    .hero-video__content {
        bottom: 180px;
        max-width: 1280px;
        margin: 0 auto;
    }

    .hero-video h1 {
        font-family: var(--font-script);
        font-size: 160px;
    }

    .hero-video p {
        font-size: 64px;
        max-width: 789px;
    }

    /* Gallery slider wrap */
    .gallery-block__slider-wrap {
        padding: 0 80px;
        max-width: 1440px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 0;
    }

    .gallery-block__slider-wrap .slider-arrow--prev {
        left: 20px;
    }

    .gallery-block__slider-wrap .slider-arrow--next {
        right: 20px;
    }

    /* Bakery map */
    .bakery-map {
        padding: 80px 0 60px;
    }

    .bakery-map__inner {
        flex-direction: row;
        gap: 60px;
        align-items: flex-start;
    }

    .bakery-map__info {
        flex: 0 0 auto;
        width: 400px;
    }

    .bakery-map__info h2 {
        font-size: 60px;
    }

    .bakery-map__info p,
    .bakery-map__info address {
        font-size: 24px;
    }

    .bakery-map__map-wrap {
        flex: 1;
    }

    .bakery-map__map-header {
        display: none;
    }

    .bakery-map__map-image {
        aspect-ratio: 641 / 370;
        border-top: 1px solid var(--pink);
    }

    .bakery-map__map-footer {
        justify-content: space-between;
    }

    .bakery-map__map-footer-brand {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    /* Section spacing */
    .text-block,
    .image-text,
    .our-bakeries,
    .cta,
    .gallery-block,
    .location-info {
        padding: var(--gap-section) 0;
    }

    /* Text block desktop */
    .text-block__inner {
        max-width: 690px;
    }

    /* Image-text desktop */
    .image-text__grid {
        flex-direction: row;
        gap: 60px;
        align-items: center;
    }

    .image-text.is-right .image-text__grid {
        flex-direction: row-reverse;
    }

    .image-text__media,
    .image-text__content {
        flex: 1;
    }

    /* Our Bakeries – desktop */
    .our-bakeries__title {
        font-size: 60px;
        line-height: 64px;
        margin-bottom: 50px;
    }

    .our-bakeries__meta {
        flex-direction: row;
        gap: 80px;
        padding-left: 80px;
        margin-bottom: 10px;
    }

    .our-bakeries__filters {
        flex-shrink: 0;
        width: 182px;
    }

    .our-bakeries__desc {
        flex: 1;
        max-width: 576px;
    }

    .bakery-card__image {
        aspect-ratio: 1004/200;
    }

    .bakery-card__body {
        flex-direction: row;
        align-items: center;
        gap: 0;
        justify-content: space-between;
        padding: 11px;
        min-height: 122px;
    }

    .bakery-card__info {
        flex-shrink: 0;
        min-width: 300px;
    }

    .bakery-card__name {
        font-size: 24px;
        line-height: 27px;
    }

    .bakery-card__details {
        flex: 1;
        min-width: 150px;
        max-width: 300px;
        gap: 4px;
    }

    .bakery-card__icons {
        flex-shrink: 0;
        margin: 0 20px;
    }

    .bakery-card__more {
        flex-shrink: 0;
        margin-top: 0;
    }

    /* Columns */
    .columns-block__grid {
        display: grid;
        overflow: visible;
        padding-bottom: 0;
    }

    .columns-block--1 .columns-block__grid {
        grid-template-columns: 1fr;
    }

    .columns-block--2 .columns-block__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .columns-block--3 .columns-block__grid {
    grid-template-columns: repeat(3, 1fr);
	}

    .columns-block--4 .columns-block__grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .column-item {
        flex: none;
    }

    .column-item__text pre {
        font-size: 24px;
    }
/* Columns */
.columns-block__grid {
    display: grid;
    overflow: visible;
    padding-bottom: 0;
}

.columns-block--1 .columns-block__grid { grid-template-columns: 1fr; }
.columns-block--2 .columns-block__grid { grid-template-columns: repeat(2, 1fr); }
.columns-block--3 .columns-block__grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}
.columns-block--4 .columns-block__grid { grid-template-columns: repeat(4, 1fr); }

.column-item { flex: none; }

.column-item__text pre { font-size: 24px; }

.columns-block--3 .columns-block__grid .column-item__text {
    margin-top: 0;
}

    /* CTA */
    .cta__inner {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px 80px;
        min-height: 380px;
        align-items: center;
        align-content: center;
        max-width: 920px;
        margin-left: auto;
        margin-right: auto;
    }

    .cta__content {
        display: contents;
    }

    .cta__content > *:first-child {
        grid-column: 1;
        grid-row: 1 / 3;
        align-self: center;
    }

    .cta__content > *:not(:first-child) {
        grid-column: 2;
    }

    .cta__btn {
        grid-column: 2;
        grid-row: 1;
    }

    .cta__content h2,
    .cta__content h3 {
        font-size: 60px;
        line-height: 60px;
    }

    .cta__content p {
        font-size: 24px;
        line-height: 28px;
    }

    .cta__title {
        font-size: 60px;
    }

    /* Location Info */
    .location-info__body {
        flex-direction: row;
        gap: 80px;
        align-items: flex-start;
        max-width: 780px;
        margin-left: auto;
        margin-right: auto;
    }

    .location-info__col {
        flex: 1;
    }

    .location-info__col--hours {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .location-info__section-label {
        font-size: 22px;
    }

    .location-info__hours-row {
        font-size: 18px;
    }

    /* Gallery */
    .gallery-block__title {
        font-size: 60px;
    }

    /* Quote */
    .quote-block__text {
        font-size: 88px;
    }

    /* Banner */
    .banner-block__title {
        font-size: 42px;
    }

    /* Footer */
    .footer__contact h2 {
        font-size: 60px;
        line-height: 60px;
        margin-bottom: 34px;
    }

    .footer__contact-inner {
        flex-direction: row;
        gap: 0;
        align-items: flex-start;
    }

    .footer__logo {
        width: 231px;
        flex-shrink: 0;
    }

    .footer__contact-info {
        flex: 1;
    }

    .footer__contact-subtitle {
        font-size: 24px;
        line-height: 28px;
        margin-bottom: 24px;
    }

    .footer__contact-label {
        font-size: 24px;
        line-height: 28px;
    }

    .footer__contact-link {
        font-size: 24px;
        line-height: 28px;
    }

    .footer__bottom-inner {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer__eu-top {
        flex-direction: row;
    }

    /* Single Cukiernia – desktop */
    .cukiernia-intro {
        padding: 20px 0 20px;
    }

    .cukiernia-intro h1 {
        font-size: 60px;
        line-height: 64px;
    }

    .cukiernia-gallery {
        max-height: 560px;
    }

    .cukiernia-details {
        flex-direction: row;
        align-items: flex-start;
        gap: 60px;
        display: flex;
    }

    .cukiernia-details__links {
        margin-left: auto;
    }

    .cukiernia-related h2{
        font-size: 40px;
    }

    .ue-banner-fixed {
        width: 80%;
    }
}

/* ===== IS-MENU-OPEN (mobile) ===== */
body.is-menu-open {
    overflow: hidden;
}

.header.is-menu-open {
    background-color: var(--off-white);
}

/* ===== IMAGE-TEXT 4-PANEL GRID (Ciasta / Torty) ===== */
.image-text-grid {
    display: flex;
    flex-direction: column;
    gap: 13px 16px;
}

.image-text-grid__item {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 280px;
    background-size: cover;
    background-position: center;
}

.image-text-grid__item--pink {
    background-color: var(--pink-light);
}

.image-text-grid__item--grey {
    background-color: var(--grey-border);
}

.image-text-grid__item--image {
    min-height: 280px;
}

.image-text-grid__item--image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}

.image-text-grid__content {
    position: relative;
    z-index: 2;
    padding: 48px 20px;
    display: flex;
    flex-direction: column;
    max-width: 411px;
    margin-top: 20px;
}

.image-text-grid__eyebrow {
    position: absolute;
    top: -20.5px;
    font-family: var(--font-script);
    font-size: 80px;
    font-weight: 400;
    line-height: 1.4;
    color: var(--grey-dark);
    letter-spacing: -0.1px;
    white-space: nowrap;
}

.image-text-grid__title {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 40px;
    line-height: 1.2;
    letter-spacing: -0.1px;
    color: var(--black);
    margin-bottom: 33.3px;
}

.image-text-grid__text {
    font-family: var(--font-body);
    font-size: var(--fs-body);
    font-weight: 400;
    line-height: var(--lh-body);
    letter-spacing: -0.1px;
    color: var(--black);
    margin-top: 22px;
}

.image-text-grid__btn {
    margin-bottom: 22px;
}

/* bajeczne — pozycja lustrzana dla panelu szarego (TORTY) */
.image-text-grid__item--grey .image-text-grid__eyebrow {
  left: 50px;   /* mobilka */
}

@media (min-width: 992px) {
  .image-text-grid__item--grey .image-text-grid__eyebrow {
    left: 140px;  /* desktop */
  }
}


/* ===== BAKERY CARD LIST LAYOUT (desktop from Figma) ===== */
.bakery-card--list {
    flex-direction: row;
    align-items: stretch;
}

.bakery-card--list .bakery-card__image {
    width: 240px;
    flex-shrink: 0;
    aspect-ratio: auto;
}

.bakery-card--list .bakery-card__body {
    flex-direction: row;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* ===== QUOTE BLOCK – Group-57 image ===== */
.quote-block__image {
    max-width: 100%;
    margin: 30px auto 0;
}

.quote-block__image img {
    width: 100%;
    height: auto;
}

@media (min-width: 992px) {
    h1, h2 {
        font-size: 60px;
    }

    .text-block h1{
        width:100vw;
    }
    
    .image-text-grid__eyebrow {
        left: 0;
    }
    .image-text-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
        gap: 12px;
    }

    .image-text-grid__item {
        min-height: 411px;
        height: 411px;
        justify-content: center;
    }

    .image-text-grid__content {
        padding: 48px;
    }

    .bakery-card--list .bakery-card__image {
        width: 320px;
    }

    /* PAGE TITLE desktop */
    .page-title--large { min-height: 560px; }
    .page-title--small { min-height: 400px; }

    .page-title__title {
        font-size: 60px;
    }

    .page-title__inner {
        padding: 60px 40px;
    }

    .page-title__breadcrumbs-list {
        font-size: 16px;
        gap: 10px;
    }

    /* CONTACT FORM desktop */
    .cf7-grid {
        grid-template-columns: 1fr 1fr;
    }

    .cf7-row--full {
        grid-column: 1 / -1;
    }

    /* ORDER FORM desktop – label 291px | input 569px */
    .cf7-grid--order {
        grid-template-columns: 1fr;
    }

    .cf7-grid--order .cf7-row label {
        flex-direction: row;
        align-items: center;
        gap: 0;
    }

    .cf7-grid--order .cf7-row--full label {
        align-items: flex-start;
    }

    .form-acceptance label {
        align-items: center;
    }

    .cf7-label-text {
        display: inline-block;
        width: 291px;
        flex-shrink: 0;
        font-size: 20px;
    }

    .cf7-grid--order .cf7-row input[type="text"],
    .cf7-grid--order .cf7-row input[type="email"],
    .cf7-grid--order .cf7-row input[type="tel"],
    .cf7-grid--order .cf7-row input[type="date"],
    .cf7-grid--order .cf7-row select,
    .cf7-grid--order .cf7-row textarea {
        width: 569px;
        border: 1px solid #000000;
        background-color: #fff;
        color: #909090;
        padding: 10px;
        margin: 0;
    }

    .cf7-grid--order .cf7-row textarea {
        min-height: 120px;
    }

    /* CONTENT SLIDER desktop */
    .content-slider__image {
        aspect-ratio: 16 / 9;
    }

    .content-slider__btn {
        width: 52px;
        height: 52px;
    }

    .content-slider__btn--prev { left: 20px; }
    .content-slider__btn--next { right: 20px; }

    /* MAP BLOCK desktop */
    .map-block__map {
        aspect-ratio: 16 / 6;
    }

    /* OFFER BLOCK desktop */
    .offer-block {
        padding: var(--gap-section) 0;
    }

    .offer-block__filters {
        gap: 9px;
        margin-bottom: 40px;
    }

    .offer-block__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px 20px;
    }

    .offer-card__title {
        font-size: 18px;
        margin-top: 14px;
    }

    .offer-card__desc {
        font-size: 16px;
        line-height: 1.4;
        margin-top: 4px;
    }
}

/* =============================================
   CAFE FEATURES
   ============================================= */

.cafe-features {
    padding: 50px var(--side-pad-mobile) 60px;
}

.cafe-features__grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cafe-features__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 232px;
    background: rgba(227, 228, 232, 0.2);
    text-align: center;
    transition: background 0.25s ease;
}

.cafe-features__card:hover {
    background: rgba(227, 228, 232, 0.4);
}

.cafe-features__icon {
    margin-bottom: 20px;
}

.cafe-features__icon img {
    width: 54px;
    height: 54px;
    object-fit: contain;
}

.cafe-features__title {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 30px;
    text-transform: uppercase;
    color: var(--grey-dark);
    margin: 0;
}

@media (min-width: 992px) {
    .cafe-features {
        padding: 80px 0;
    }

    .cafe-features__grid {
        flex-direction: row;
        gap: 40px;
        max-width: var(--container);
        margin: 0 auto;
    }

    .cafe-features__card {
        flex: 1;
    }
}

.columns-block--3 .column-item__text {
    margin-top: 0 !important;
}


/* =============================================
   KREMÓWKA PAPIESKA — wyróżnienie w sidebarze
   ============================================= */

/* Mobile pill: wypełniony różowy (odróżnia się od outlined) */
.offer-nav__item--featured .offer-nav__link {
    background: var(--pink);
    border-color: var(--pink);
    color: var(--black);
    font-weight: 900;
}

.offer-nav__item--featured .offer-nav__link:hover {
    background: var(--black);
    border-color: var(--black);
    color: var(--white);
}

/* Desktop: czarny tekst + różowy punktor przed nazwą + separator pod spodem */
@media ( min-width: 992px ) {
    .offer-nav__item--featured {
        margin-bottom: 6px;
        padding-bottom: 6px;
        border-bottom: 2px solid var(--pink) !important;
    }

    .offer-nav__item--featured > .offer-nav__row > .offer-nav__link {
        color: var(--black);
        padding-left: 16px;
        position: relative;
    }

    .offer-nav__item--featured > .offer-nav__row > .offer-nav__link::before {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--pink);
        flex-shrink: 0;
    }

    .offer-nav__item--featured > .offer-nav__row > .offer-nav__link:hover {
        color: var(--pink);
        background: none;
    }

    .offer-nav__item--featured > .offer-nav__row > .offer-nav__link.is-active {
        color: var(--black);
    }
}


/* =============================================
   OFFER CARD — footer z opisem + przycisk Zamów
   ============================================= */

.offer-card__footer {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-top: 8px;
}

.offer-card__footer .offer-card__desc {
    flex: 1;
    margin: 0;
    font-size: 13px;
    line-height: 1.45;
    color: var(--grey-light);
}

.offer-card__order {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 14px;
    border: 1px solid var(--black);
    border-radius: var(--radius-btn);
    font-family: var(--font-heading);
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--black);
    background: transparent;
    cursor: pointer;
    white-space: nowrap;
    transition: background var(--transition), color var(--transition), border-color var(--transition);
    align-self: flex-start;
}

.offer-card__order:hover {
    background: var(--black);
    color: var(--white);
}


/* =============================================
   OFFER BLOCK FILTERS — lżejsze przyciski
   ============================================= */

.offer-block__filter {
    padding: 6px 14px;
    font-size: 10px;
    min-height: 30px;
    font-weight: 700;
    letter-spacing: 0.07em;
    border-color: var(--grey-border);
    color: var(--grey-mid);
}

.offer-block__filter:hover {
    border-color: var(--black);
    background: var(--black);
    color: var(--white);
}

.offer-block__filter.is-active {
    border-color: var(--pink);
    color: var(--pink);
}

.offer-block__filter.is-active:hover {
    background: var(--pink);
    color: var(--white);
    border-color: var(--pink);
}

/* Mobile: siatka 2-kolumnowa zamiast flex-wrap */
@media ( max-width: 991px ) {
    .offer-block__filters {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        margin-bottom: 24px;
    }

    .offer-block__filter {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
}


/* =============================================
   OFERTA LAYOUT — sidebar + content
   ============================================= */

/* ── Wrapper layoutu (mobile-first: kolumna) ── */
.oferta-layout {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.oferta-layout__sidebar {
    width: 100%;
}

.oferta-layout__content {
    width: 100%;
    min-width: 0;
}

/* Offer-block używa oferta-layout — usuwamy jego padding po bokach */
.offer-block--with-sidebar .container,
.oferta-archive .container {
    /* container zachowuje swoje max-width i margin: auto */
}

/* Wewnątrz layoutu nested .container jest już wyzerowany przez .container .container */


/* =============================================
   OFFER NAV — sidebar nawigacja kategorii
   ============================================= */

/* Mobile: poziomy scroll z pillami */
.offer-nav__list {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 8px;
    padding-bottom: 6px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    list-style: none;
    margin: 0;
    padding-left: 0;
}

.offer-nav__list::-webkit-scrollbar {
    display: none;
}

.offer-nav__item {
    flex-shrink: 0;
    border-bottom: none;
}

.offer-nav__row {
    display: flex;
    align-items: center;
}

.offer-nav__link {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    border: 1px solid var(--black);
    border-radius: var(--radius-btn);
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--black);
    text-decoration: none;
    white-space: nowrap;
    transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.offer-nav__link:hover {
    background: var(--black);
    color: var(--white);
}

.offer-nav__link.is-active {
    color: var(--pink);
    border-color: var(--pink);
}

.offer-nav__link.is-active:hover {
    background: var(--pink);
    color: var(--white);
}

/* Togglebutton i sub-lista: ukryte na mobile */
.offer-nav__toggle,
.offer-nav__sub {
    display: none;
}


/* =============================================
   OFERTA ARCHIVE — tytuł kategorii
   ============================================= */

.oferta-archive__title {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--black);
    margin-bottom: 28px;
}


/* =============================================
   DESKTOP ≥ 992px
   ============================================= */

@media ( min-width: 992px ) {

    /* ── Layout: row z sidebarement ── */
    .oferta-layout {
        flex-direction: row;
        align-items: flex-start;
        gap: 48px;
    }

    .oferta-layout__sidebar {
        width: 220px;
        flex-shrink: 0;
        position: sticky;
        top: calc(var(--header-height-scrolled) + 24px);
        max-height: calc(100vh - var(--header-height-scrolled) - 48px);
        overflow-y: auto;
        scrollbar-width: thin;
    }

    .oferta-layout__content {
        flex: 1;
    }

    /* ── Offer-nav: pionowa lista ── */
    .offer-nav__list {
        display: block;
        overflow: visible;
        padding-bottom: 0;
    }

    .offer-nav__item {
        border-bottom: 1px solid var(--grey-border);
    }

    .offer-nav__row {
        display: flex;
        align-items: center;
        gap: 4px;
    }

    .offer-nav__link {
        flex: 1;
        display: block;
        padding: 10px 0;
        border: none;
        border-radius: 0;
        background: none;
        font-size: 13px;
        font-weight: 900;
        white-space: normal;
    }

    .offer-nav__link:hover {
        background: none;
        color: var(--pink);
    }

    .offer-nav__link.is-active {
        color: var(--pink);
        border-color: transparent;
    }

    .offer-nav__link.is-active:hover {
        background: none;
        color: var(--pink);
    }

    /* Toggle przycisk */
    .offer-nav__toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        width: 24px;
        height: 24px;
        background: none;
        border: none;
        cursor: pointer;
        color: var(--grey-light);
        transition: transform var(--transition), color var(--transition);
        padding: 0;
    }

    .offer-nav__toggle:hover {
        color: var(--pink);
    }

    .offer-nav__item.is-open > .offer-nav__row .offer-nav__toggle {
        transform: rotate(180deg);
        color: var(--pink);
    }

    /* Sub-lista */
    .offer-nav__sub {
        display: block;
        overflow: hidden;
        max-height: 0;
        list-style: none;
        margin: 0;
        padding: 0 0 0 12px;
        transition: max-height 0.3s ease;
    }

    .offer-nav__sub.is-open {
        max-height: 600px;
    }

    .offer-nav__sub-item {
        border-left: 2px solid var(--grey-border);
        padding-left: 12px;
    }

    .offer-nav__sub-link {
        display: block;
        padding: 6px 0;
        font-size: 12px;
        font-weight: 400;
        color: var(--grey);
        text-decoration: none;
        transition: color var(--transition);
    }

    .offer-nav__sub-link:hover,
    .offer-nav__sub-link.is-active {
        color: var(--pink);
    }

    /* Tytuł kategorii w archiwum */
    .oferta-archive__title {
        font-size: 36px;
        margin-bottom: 32px;
    }

    /* Grid ofert w archiwum — 3 kolumny (mniejsze karty z sidebarement) */
    .oferta-archive .offer-block__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px 16px;
    }

    /* Zmniejszone karty w 3-kolumnowym gridzie */
    .oferta-archive .offer-card__title {
        font-size: 14px;
        margin-top: 10px;
    }

    .oferta-archive .offer-card__footer {
        gap: 8px;
    }

    .oferta-archive .offer-card__footer .offer-card__desc {
        font-size: 12px;
    }

    .oferta-archive .offer-card__order {
        padding: 5px 10px;
        font-size: 9px;
    }
}


/* =============================================
   MODAL ZAMÓWIENIA
   ============================================= */

.offer-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.offer-modal.is-open {
    display: flex;
}

.offer-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.offer-modal__box {
    position: relative;
    z-index: 1;
    background: var(--white);
    width: min(560px, 94vw);
    max-height: 90vh;
    overflow-y: auto;
    padding: 48px 36px 40px;
    border-radius: 4px;
}

.offer-modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--grey-light);
    transition: color var(--transition);
    padding: 0;
}

.offer-modal__close:hover {
    color: var(--black);
}

.offer-modal__title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--black);
    margin-bottom: 20px;
}

.offer-modal__body {
    font-size: 15px;
    line-height: 1.6;
    color: var(--grey);
}

body.is-modal-open {
    overflow: hidden;
}

/* ===== ORDER FORM (inside modal) ===== */
.order-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.order-form__row {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.order-form__label {
    font-family: var(--font-heading);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--grey-dark);
}

.order-form__req {
    color: var(--pink);
    margin-left: 1px;
}

.order-form__control {
    width: 100%;
    border: 1px solid var(--grey-border);
    border-radius: 2px;
    padding: 10px 13px;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--grey-dark);
    background: var(--white);
    outline: none;
    transition: border-color var(--transition);
    appearance: none;
}

.order-form__control:focus {
    border-color: var(--pink);
}

.order-form__control--select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%237A7A7A' stroke-width='2' stroke-linecap='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 13px center;
    padding-right: 36px;
    cursor: pointer;
}

.order-form__control--textarea {
    resize: vertical;
    min-height: 72px;
    line-height: 1.5;
}

.order-form__row--accept {
    margin-top: 2px;
}

.order-form__accept-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: var(--grey);
    cursor: pointer;
    line-height: 1.5;
}

.order-form__accept-label input[type="checkbox"] {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    margin-top: 2px;
    accent-color: var(--pink);
    cursor: pointer;
}

.order-form__accept-label a {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.order-form__accept-label a:hover {
    color: var(--pink);
}

.order-form__row--submit {
    margin-top: 6px;
}

.order-form__submit {
    width: 100%;
    padding: 13px 20px;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: var(--black);
    color: var(--white);
    border: 1px solid var(--black);
    border-radius: var(--radius-btn);
    cursor: pointer;
    transition: background-color var(--transition), color var(--transition);
}

.order-form__submit:hover:not(:disabled) {
    background: transparent;
    color: var(--black);
}

.order-form__submit:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

.order-form__success {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 32px 16px 16px;
    text-align: center;
    font-size: 16px;
    line-height: 1.65;
    color: var(--grey);
}

.order-form__success svg {
    color: var(--pink);
    flex-shrink: 0;
}
