:root {
    --zb-bg: #fff9f2;
    --zb-surface: #ffffff;

    --zb-text: #2b1711;
    --zb-muted: #76655e;

    --zb-primary: #ed5a35;
    --zb-primary-hover: #d94b29;

    --zb-brown: #784522;

    --zb-cream: #fff0d6;
    --zb-blue: #dff4ff;
    --zb-pink: #ffe1e8;
    --zb-green: #e9f4dd;

    --zb-border: rgba(76, 45, 31, 0.10);

    --zb-radius-sm: 12px;
    --zb-radius: 20px;
    --zb-radius-lg: 28px;

    --zb-shadow:
        0 18px 50px rgba(78, 42, 22, 0.08);

    --zb-container: 1320px;
}


*,
*::before,
*::after {
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    margin: 0;

    background:
        var(--zb-bg);

    color:
        var(--zb-text);

    font-family:
        Inter,
        Manrope,
        Arial,
        sans-serif;

    line-height: 1.5;
}


img {
    display: block;

    max-width: 100%;

    height: auto;
}


a {
    color: inherit;

    text-decoration: none;
}


button,
input,
textarea,
select {
    font: inherit;
}


button {
    cursor: pointer;
}


[hidden] {
    display: none !important;
}


/* =========================
   Container
========================== */

.zb-container {
    width:
        min(
            calc(100% - 32px),
            var(--zb-container)
        );

    margin-inline: auto;
}


/* =========================
   Header
========================== */

.zb-header {
    position: sticky;
    top: 0;
    z-index: 100;

    background:
        rgba(255, 249, 242, 0.94);

    backdrop-filter:
        blur(12px);

    border-bottom:
        1px solid var(--zb-border);
}


.zb-header__inner {
    min-height: 68px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 16px;
}


.zb-logo__text {
    display: flex;
    flex-direction: column;

    font-size: 24px;
    font-weight: 800;

    line-height: 0.95;
}


.zb-logo__text small {
    margin-top: 7px;

    font-size: 8px;

    letter-spacing: 0.12em;

    text-transform: uppercase;
}


.zb-logo img {
    max-width: 138px;
}


.zb-nav {
    display: none;
}


.zb-header__actions {
    display: none;
}


.zb-burger {
    width: 44px;
    height: 44px;

    border: 0;

    background: transparent;

    display: flex;
    flex-direction: column;
    justify-content: center;

    gap: 5px;
}


.zb-burger span {
    width: 23px;
    height: 2px;

    background:
        var(--zb-text);

    border-radius: 2px;

    margin-inline: auto;
}


.zb-nav.is-open {
    position: absolute;

    display: flex;

    flex-direction: column;

    top: 68px;
    left: 0;
    right: 0;

    padding:
        20px 16px 28px;

    background:
        var(--zb-bg);

    border-bottom:
        1px solid var(--zb-border);
}


.zb-nav.is-open a {
    padding: 13px 0;

    font-weight: 700;
}


/* =========================
   Buttons
========================== */

.zb-button {
    min-height: 50px;

    padding:
        0 20px;

    border-radius:
        14px;

    display:
        inline-flex;

    align-items:
        center;

    justify-content:
        center;

    gap: 10px;

    font-weight: 700;
}


.zb-button--primary {
    color: #fff;

    background:
        var(--zb-primary);
}


.zb-button--secondary {
    border:
        1px solid rgba(43, 23, 17, 0.35);

    background:
        rgba(255,255,255,0.65);
}


/* =========================
   Hero
========================== */

.zb-hero {
    padding:
        34px 0 50px;
}


.zb-hero__grid {
    display: grid;

    gap: 26px;
}


.zb-kicker,
.zb-section-kicker {
    color:
        var(--zb-primary);

    font-size: 12px;

    font-weight: 800;

    letter-spacing:
        0.14em;

    text-transform:
        uppercase;
}


.zb-hero__title {
    margin:
        12px 0 16px;

    max-width:
        720px;

    font-size:
        clamp(38px, 10vw, 64px);

    line-height:
        0.98;

    letter-spacing:
        -0.045em;
}


.zb-hero__text {
    max-width:
        620px;

    color:
        var(--zb-muted);

    font-size:
        16px;
}


.zb-hero__actions {
    margin-top:
        24px;

    display:
        grid;

    gap:
        10px;
}


.zb-hero__features {
    margin-top:
        28px;

    display:
        grid;

    grid-template-columns:
        repeat(2, minmax(0,1fr));

    gap:
        12px;
}


.zb-hero-feature {
    display:
        flex;

    align-items:
        center;

    gap:
        8px;

    font-size:
        12px;

    font-weight:
        700;
}


.zb-hero-feature__icon {
    font-size:
        20px;
}


.zb-hero__visual {
    position:
        relative;

    overflow:
        hidden;

    border-radius:
        var(--zb-radius-lg);

    background:
        var(--zb-cream);
}


.zb-hero__visual img {
    width:
        100%;

    aspect-ratio:
        1 / 1;

    object-fit:
        cover;
}


.zb-hero__note {
    position:
        absolute;

    right:
        14px;

    bottom:
        14px;

    max-width:
        145px;

    padding:
        13px 15px;

    border-radius:
        50%;

    background:
        rgba(255,255,255,.92);

    transform:
        rotate(-5deg);

    text-align:
        center;

    font-weight:
        800;
}


/* =========================
   Sections
========================== */

.zb-section {
    padding:
        58px 0;
}


.zb-section-head {
    margin-bottom:
        22px;

    display:
        flex;

    align-items:
        flex-end;

    justify-content:
        space-between;

    gap:
        20px;
}


.zb-section-head h2 {
    margin:
        6px 0 0;

    font-size:
        clamp(30px, 7vw, 48px);

    line-height:
        1.05;

    letter-spacing:
        -0.035em;
}


.zb-section-head__note {
    display:
        none;

    color:
        var(--zb-muted);
}


/* =========================
   Promo
========================== */

.zb-promos__grid {
    display:
        grid;

    gap:
        14px;
}


.zb-promo {
    position:
        relative;

    min-height:
        240px;

    overflow:
        hidden;

    display:
        grid;

    grid-template-columns:
        1fr 120px;

    border-radius:
        var(--zb-radius);

    padding:
        22px;
}


.zb-promo--cream {
    background:
        var(--zb-cream);
}


.zb-promo--blue {
    background:
        var(--zb-blue);
}


.zb-promo--pink {
    background:
        var(--zb-pink);
}


.zb-promo--green {
    background:
        var(--zb-green);
}


.zb-promo__content {
    position:
        relative;

    z-index:
        2;
}


.zb-promo__title {
    margin:
        0 0 10px;

    font-size:
        24px;

    line-height:
        1.05;
}


.zb-promo__text {
    max-width:
        300px;

    color:
        var(--zb-muted);

    font-size:
        14px;
}


.zb-promo__badge {
    display:
        inline-flex;

    margin-bottom:
        10px;

    padding:
        6px 9px;

    border-radius:
        999px;

    background:
        rgba(255,255,255,.8);

    font-size:
        11px;

    font-weight:
        800;
}


.zb-promo__button {
    margin-top:
        18px;

    display:
        inline-flex;

    align-items:
        center;

    gap:
        8px;

    font-weight:
        800;
}


.zb-promo__image {
    align-self:
        end;
}


.zb-promo__image img {
    width:
        150%;

    max-width:
        none;

    transform:
        translateX(-14%);
}


/* =========================
   Menu filters
========================== */

.zb-menu-filter {
    margin:
        0 -16px 20px;

    padding:
        0 16px 6px;

    display:
        flex;

    gap:
        8px;

    overflow-x:
        auto;

    scrollbar-width:
        none;
}


.zb-menu-filter::-webkit-scrollbar {
    display:
        none;
}


.zb-menu-filter button {
    min-height:
        40px;

    padding:
        0 15px;

    flex:
        0 0 auto;

    border:
        1px solid var(--zb-border);

    border-radius:
        999px;

    background:
        #fff;

    color:
        var(--zb-text);

    font-weight:
        700;

    font-size:
        13px;
}


.zb-menu-filter button.is-active {
    color:
        #fff;

    background:
        var(--zb-text);

    border-color:
        var(--zb-text);
}


/* =========================
   Menu cards
========================== */

.zb-menu-grid {
    display:
        grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap:
        12px;
}


.zb-drink-card {
    min-width:
        0;

    overflow:
        hidden;

    border:
        1px solid var(--zb-border);

    border-radius:
        18px;

    background:
        rgba(255,255,255,.82);

    box-shadow:
        0 8px 30px rgba(73,39,20,.04);

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}


.zb-drink-card__image {
    position:
        relative;

    padding:
        8px;
}


.zb-drink-card__image img {
    width:
        100%;

    aspect-ratio:
        1 / 1;

    border-radius:
        13px;

    object-fit:
        cover;
}


.zb-drink-card__badge {
    position:
        absolute;

    z-index:
        2;

    top:
        15px;
    left:
        15px;

    padding:
        5px 8px;

    color:
        #fff;

    background:
        var(--zb-primary);

    border-radius:
        999px;

    font-size:
        9px;

    font-weight:
        800;

    text-transform:
        uppercase;
}


.zb-drink-card__content {
    padding:
        8px 12px 14px;
}


.zb-drink-card h3 {
    margin:
        0 0 6px;

    font-size:
        16px;

    line-height:
        1.1;
}


.zb-drink-card p {
    margin:
        0;

    min-height:
        48px;

    color:
        var(--zb-muted);

    font-size:
        12px;

    line-height:
        1.35;
}


.zb-drink-card__volumes {
    margin-top:
        10px;

    display:
        flex;

    flex-wrap:
        wrap;

    gap:
        4px;
}


.zb-drink-card__volumes span {
    padding:
        3px 6px;

    border-radius:
        6px;

    background:
        var(--zb-bg);

    color:
        var(--zb-muted);

    font-size:
        9px;
}


.zb-drink-card__footer {
    margin-top:
        12px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        10px;
}


.zb-drink-card__footer strong {
    font-size:
        15px;
}


.zb-drink-card__plus {
    width:
        34px;
    height:
        34px;

    border:
        0;

    border-radius:
        50%;

    background:
        var(--zb-brown);

    color:
        #fff;

    font-size:
        20px;

    line-height:
        1;
}


/* =========================
   Tablet
========================== */

@media (min-width: 768px) {

    .zb-container {
        width:
            min(
                calc(100% - 64px),
                var(--zb-container)
            );
    }


    .zb-hero {
        padding:
            56px 0 70px;
    }


    .zb-hero__actions {
        display:
            flex;
    }


    .zb-promos__grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }


    .zb-menu-grid {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));

        gap:
            18px;
    }


    .zb-drink-card h3 {
        font-size:
            18px;
    }


    .zb-drink-card p {
        font-size:
            13px;
    }

}


/* =========================
   Desktop
========================== */

@media (min-width: 1024px) {

    .zb-header__inner {
        min-height:
            82px;
    }


    .zb-burger {
        display:
            none;
    }


    .zb-nav {
        display:
            flex;

        align-items:
            center;

        gap:
            28px;
    }


    .zb-nav a {
        font-size:
            14px;

        font-weight:
            700;
    }


    .zb-header__actions {
        display:
            flex;

        align-items:
            center;

        gap:
            12px;
    }


    .zb-header__location {
        font-size:
            13px;

        font-weight:
            700;
    }


    .zb-header__phone {
        min-height:
            42px;

        padding:
            0 17px;

        display:
            inline-flex;

        align-items:
            center;

        border:
            1px solid var(--zb-border);

        border-radius:
            12px;

        font-weight:
            700;
    }


    .zb-hero__grid {
        grid-template-columns:
            minmax(0, 0.9fr)
            minmax(440px, 1.1fr);

        align-items:
            center;

        gap:
            60px;
    }


    .zb-hero__title {
        font-size:
            clamp(54px, 5.4vw, 78px);
    }


    .zb-hero__features {
        grid-template-columns:
            repeat(4, minmax(0,1fr));
    }


    .zb-promos__grid {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }


    .zb-menu-grid {
        grid-template-columns:
            repeat(4, minmax(0, 1fr));

        gap:
            20px;
    }


    .zb-section-head__note {
        display:
            block;
    }

}


/* =========================
   Hover-capable devices
========================== */

@media (hover: hover) {

    .zb-button--primary:hover {
        background:
            var(--zb-primary-hover);
    }


    .zb-drink-card:hover {
        transform:
            translateY(-5px);

        box-shadow:
            var(--zb-shadow);
    }

}


/* =========================
   Reduced motion
========================== */

@media (
    prefers-reduced-motion:
    reduce
) {

    *,
    *::before,
    *::after {
        scroll-behavior:
            auto !important;

        animation-duration:
            .001ms !important;

        transition-duration:
            .001ms !important;
    }

}

.zb-choice__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}


.zb-choice-card {
    position: relative;

    min-width: 0;
    min-height: 150px;

    padding: 16px;

    display: flex;
    flex-direction: column;

    align-items: flex-start;

    text-align: left;

    border: 0;
    border-radius: 18px;

    color: var(--zb-text);

    overflow: hidden;
}


.zb-choice-card--cream {
    background: var(--zb-cream);
}

.zb-choice-card--pink {
    background: var(--zb-pink);
}

.zb-choice-card--blue {
    background: var(--zb-blue);
}

.zb-choice-card--green {
    background: var(--zb-green);
}


.zb-choice-card__visual {
    width: 62px;
    height: 62px;

    margin-bottom: 14px;
}


.zb-choice-card__visual img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}


.zb-choice-card__body {
    display: flex;
    flex-direction: column;
    gap: 4px;
}


.zb-choice-card strong {
    font-size: 16px;
    line-height: 1.1;
}


.zb-choice-card small {
    color: var(--zb-muted);
    font-size: 11px;
}


.zb-choice-card__arrow {
    position: absolute;

    right: 12px;
    bottom: 12px;

    width: 30px;
    height: 30px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: #fff;
}


@media (min-width: 768px) {

    .zb-choice__grid {
        grid-template-columns:
            repeat(5, minmax(0, 1fr));
    }

}

.zb-modal {
    width:
        min(
            calc(100% - 24px),
            760px
        );

    max-height:
        calc(100dvh - 24px);

    padding:
        0;

    border:
        0;

    border-radius:
        24px;

    background:
        var(--zb-bg);

    color:
        var(--zb-text);

    box-shadow:
        0 30px 100px
        rgba(43, 23, 17, .24);
}


.zb-modal::backdrop {
    background:
        rgba(38, 22, 16, .42);

    backdrop-filter:
        blur(4px);
}


.zb-modal__close {
    position:
        absolute;

    z-index:
        5;

    top:
        12px;
    right:
        12px;

    width:
        42px;
    height:
        42px;

    border:
        0;

    border-radius:
        50%;

    background:
        rgba(255,255,255,.9);

    color:
        var(--zb-text);

    font-size:
        26px;
}


.zb-modal__content {
    padding:
        12px;
}


.zb-drink-modal__product {
    display:
        grid;

    gap:
        20px;
}


.zb-drink-modal__image {
    overflow:
        hidden;

    border-radius:
        18px;

    background:
        var(--zb-cream);
}


.zb-drink-modal__image img {
    width:
        100%;

    aspect-ratio:
        4 / 3;

    object-fit:
        cover;
}


.zb-drink-modal__info {
    padding:
        0 8px;
}


.zb-drink-modal__badge {
    display:
        inline-flex;

    padding:
        5px 9px;

    margin-bottom:
        9px;

    border-radius:
        999px;

    color:
        #fff;

    background:
        var(--zb-primary);

    font-size:
        11px;

    font-weight:
        800;
}


.zb-drink-modal__info h2 {
    margin:
        0 0 12px;

    font-size:
        30px;

    line-height:
        1;
}


.zb-drink-modal__lead {
    color:
        var(--zb-muted);
}


.zb-drink-modal__meta {
    margin-top:
        18px;

    display:
        flex;

    flex-direction:
        column;

    gap:
        4px;
}


.zb-drink-modal__volumes {
    margin-top:
        18px;

    display:
        flex;

    gap:
        7px;
}


.zb-drink-modal__volumes span {
    padding:
        7px 10px;

    border-radius:
        9px;

    background:
        #fff;
}


.zb-drink-modal__price {
    margin-top:
        18px;

    font-size:
        24px;

    font-weight:
        800;
}


.zb-drink-modal__note {
    padding:
        12px 14px;

    border-radius:
        12px;

    background:
        var(--zb-cream);
}


.zb-modal__footer {
    padding:
        12px 20px 20px;

    display:
        grid;

    gap:
        8px;
}


@media (min-width: 700px) {

    .zb-drink-modal__product {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(0, 1fr);

        align-items:
            center;
    }


    .zb-modal__content {
        padding:
            20px;
    }


    .zb-modal__footer {
        grid-template-columns:
            auto auto;

        justify-content:
            flex-end;
    }

}

.zb-menu__header {
    margin-bottom:
        20px;

    display:
        flex;

    align-items:
        flex-end;

    justify-content:
        space-between;

    gap:
        20px;
}


.zb-cat {
    position:
        relative;

    width:
        130px;

    flex:
        0 0 130px;

    pointer-events:
        none;

    user-select:
        none;
}


.zb-cat__figure {
    position:
        relative;

    width:
        110px;

    margin-left:
        auto;
}


.zb-cat__body {
    width:
        100%;
}


.zb-cat__head {
    position:
        absolute;

    width:
        58%;

    left:
        21%;

    top:
        3%;

    transform-origin:
        50% 78%;

    transition:
        transform .22s ease;
}


.zb-cat__speech {
    position:
        absolute;

    right:
        90px;

    bottom:
        70%;

    width:
        max-content;

    max-width:
        150px;

    padding:
        8px 11px;

    border-radius:
        14px 14px 4px 14px;

    background:
        #fff;

    box-shadow:
        var(--zb-shadow);

    font-size:
        11px;

    font-weight:
        800;

    opacity:
        0;

    transform:
        translateY(5px);

    transition:
        opacity .2s ease,
        transform .2s ease;
}


.zb-cat.look-left
.zb-cat__head {
    transform:
        translateX(-3px)
        rotate(-5deg);
}


.zb-cat.look-right
.zb-cat__head {
    transform:
        translateX(3px)
        rotate(5deg);
}


.zb-cat.is-nodding
.zb-cat__head {
    animation:
        zbCatNod .55s ease;
}


.zb-cat.is-nodding
.zb-cat__speech {
    opacity:
        1;

    transform:
        translateY(0);
}


@keyframes zbCatNod {

    0% {
        transform:
            translateY(0)
            rotate(0);
    }

    35% {
        transform:
            translateY(5px)
            rotate(2deg);
    }

    65% {
        transform:
            translateY(-1px)
            rotate(-1deg);
    }

    100% {
        transform:
            translateY(0)
            rotate(0);
    }

}


@media (max-width: 767px) {

    .zb-cat[data-mobile="0"] {
        display:
            none;
    }


    .zb-cat[data-mobile="1"] {
        width:
            78px;

        flex-basis:
            78px;
    }


    .zb-cat[data-mobile="1"]
    .zb-cat__figure {
        width:
            70px;
    }


    .zb-cat__speech {
        display:
            none;
    }

}

/* zernobar finish 20260926 start */
.zb-nav.is-open{position:absolute;top:100%;left:16px;right:16px;display:grid;gap:6px;padding:14px;border:1px solid var(--zb-border);border-radius:20px;background:rgba(255,249,242,.98);box-shadow:var(--zb-shadow)}
.zb-nav.is-open a{min-height:44px;display:flex;align-items:center;border-radius:14px;padding:0 12px;font-weight:800}
.zb-hero-cup{position:relative;z-index:1;width:min(62vw,300px);min-height:270px;display:grid;justify-items:center;align-content:center}
.zb-hero-cup__steam{width:74px;height:42px;border-top:5px solid rgba(237,90,53,.48);border-radius:50%;transform:rotate(-7deg)}
.zb-hero-cup__lid{width:76%;height:24px;border-radius:999px;background:#311811}
.zb-hero-cup__body{width:64%;min-height:162px;display:grid;place-content:center;justify-items:center;gap:5px;border-radius:16px 16px 36px 36px;background:linear-gradient(180deg,#fff2dc,#e9b27c);box-shadow:0 24px 46px rgba(84,45,24,.18);transform:rotate(-4deg)}
.zb-hero-cup__body span{font-size:clamp(23px,5vw,34px);line-height:1;font-weight:900}
.zb-hero-cup__body small{font-size:11px;font-weight:900;letter-spacing:.08em;text-transform:uppercase}
.zb-hero-cup__beans{position:absolute;right:4%;bottom:38px;display:flex;gap:8px;transform:rotate(-12deg)}
.zb-hero-cup__beans i{width:24px;height:16px;border-radius:50%;background:linear-gradient(90deg,#5b2b13,#9a5a27);box-shadow:inset 7px 0 0 rgba(30,13,7,.18)}
.zb-hero-cup__shadow{width:84%;height:20px;border-radius:50%;background:rgba(43,23,17,.16);filter:blur(7px)}
.zb-cat{position:relative;width:128px;flex:0 0 128px;pointer-events:none;user-select:none}
.zb-cat__figure{width:116px;margin-left:auto}.zb-cat__svg{display:block;width:100%;height:auto;overflow:visible}
.zb-cat__shadow{fill:rgba(43,23,17,.15)}.zb-cat__tail{fill:none;stroke:#332017;stroke-width:16;stroke-linecap:round}.zb-cat__body-shape{fill:#2b211d}.zb-cat__scarf{fill:#8b5434}.zb-cat__cup{fill:#f5d5aa;stroke:#5c3522;stroke-width:4}.zb-cat__cup-lid{fill:none;stroke:#3a2118;stroke-width:8;stroke-linecap:round}.zb-cat__cup-text{fill:#5c3522;font:700 18px Arial,sans-serif}.zb-cat__ear{fill:#231815;stroke:#231815;stroke-width:5}.zb-cat__face{fill:#211714}.zb-cat__muzzle{fill:#fff6ec}.zb-cat__eye{fill:#3b2418}.zb-cat__nose{fill:#e97862}.zb-cat__mouth,.zb-cat__whisker{fill:none;stroke:#3b2418;stroke-width:2.4;stroke-linecap:round}.zb-cat__spark{fill:none;stroke:var(--zb-primary);stroke-width:4;stroke-linecap:round}
.zb-cat__head{transform-box:fill-box;transform-origin:50% 75%;transition:transform .22s ease}.zb-cat.look-left .zb-cat__head{transform:translateX(-3px) rotate(-5deg)}.zb-cat.look-right .zb-cat__head{transform:translateX(3px) rotate(5deg)}.zb-cat.is-nodding .zb-cat__head{animation:zbCatNod .55s ease}.zb-cat.is-nodding .zb-cat__speech{opacity:1;transform:translateY(0)}
.zb-cat__speech{position:absolute;right:92px;bottom:72%;z-index:2;width:max-content;max-width:150px;padding:8px 11px;border-radius:14px 14px 4px 14px;background:#fff;box-shadow:var(--zb-shadow);font-size:11px;font-weight:800;opacity:0;transform:translateY(5px);transition:opacity .2s ease,transform .2s ease}
.zb-seasonal__grid,.zb-benefits__grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px}.zb-seasonal-card,.zb-benefits__grid article{position:relative;min-width:0;border:1px solid var(--zb-border);border-radius:var(--zb-radius);background:var(--zb-surface);box-shadow:var(--zb-shadow)}
.zb-seasonal-card{min-height:210px;padding:14px;overflow:hidden}.zb-seasonal-card img{width:100%;aspect-ratio:1/.72;object-fit:cover;border-radius:16px;margin-bottom:10px}.zb-seasonal-card h3{margin:0 0 8px;font-size:15px;line-height:1.15}.zb-seasonal-card strong{font-size:14px}.zb-seasonal-card__badge{position:absolute;top:14px;left:14px;display:inline-flex;padding:5px 8px;border-radius:999px;background:var(--zb-primary);color:#fff;font-size:10px;font-weight:900}.zb-seasonal-card__button{position:absolute;right:12px;bottom:12px;width:38px;height:38px;border:0;border-radius:50%;background:var(--zb-brown);color:#fff;font-size:22px;line-height:1}
.zb-takeaway__grid,.zb-contacts__grid{display:grid;gap:24px}.zb-takeaway__visual{position:relative;min-height:250px;border-radius:28px;background:linear-gradient(135deg,#fff4e7,#f5dec0);display:grid;place-items:center;box-shadow:var(--zb-shadow)}.zb-takeaway-cup{width:148px;min-height:186px;display:grid;place-content:center;justify-items:center;gap:4px;border-radius:18px 18px 42px 42px;background:linear-gradient(180deg,#fff7e8,#e3aa72);box-shadow:0 22px 42px rgba(84,45,24,.18);transform:rotate(-9deg)}.zb-takeaway-cup span{font-size:27px;font-weight:900}.zb-takeaway-cup small{font-size:10px;font-weight:900;text-transform:uppercase}.zb-takeaway__bubble{position:absolute;right:18px;top:26px;max-width:150px;padding:14px 16px;border:1px solid rgba(43,23,17,.18);border-radius:22px 22px 22px 6px;background:#fff;font-weight:900;transform:rotate(-5deg)}
.zb-takeaway__content h2,.zb-contacts__content h2,.zb-final-cta h2,.zb-benefits h2{margin:0;font-size:clamp(28px,7vw,46px);line-height:1.05}.zb-takeaway__content p,.zb-final-cta p{color:var(--zb-muted);font-weight:700}.zb-takeaway__features{display:grid;gap:10px;margin-top:18px}.zb-takeaway__features span,.zb-contacts__list p,.zb-benefits__grid article{padding:16px}.zb-takeaway__features span{border-radius:16px;background:#fff;font-weight:900;box-shadow:var(--zb-shadow)}
.zb-benefits__grid article span{display:grid;place-items:center;width:40px;height:40px;border-radius:14px;background:var(--zb-cream);color:var(--zb-primary);font-weight:900}.zb-benefits__grid article h3{margin:14px 0 8px;font-size:18px}.zb-benefits__grid article p{margin:0;color:var(--zb-muted);font-size:14px;font-weight:700}.zb-section-link{color:var(--zb-primary);font-weight:900;text-decoration:underline;text-underline-offset:4px}
.zb-contacts__list{display:grid;gap:10px;margin-top:18px}.zb-contacts__list p{margin:0;display:grid;gap:4px;border-radius:18px;background:#fff;box-shadow:var(--zb-shadow)}.zb-contacts__list strong{color:var(--zb-primary)}.zb-contacts__actions{display:flex;flex-wrap:wrap;gap:12px;margin-top:20px}.zb-contacts__map{min-height:240px;border-radius:24px;background:linear-gradient(135deg,#edf4f7,#fff4e7);display:grid;place-items:center;box-shadow:var(--zb-shadow)}.zb-map-card{display:grid;place-items:center;gap:6px;padding:22px 28px;border-radius:22px;background:#fff;box-shadow:var(--zb-shadow)}.zb-map-card span{color:var(--zb-primary);font-size:34px}
.zb-final-cta{padding:28px 0 calc(96px + env(safe-area-inset-bottom));background:linear-gradient(90deg,var(--zb-cream),#fff6e9)}.zb-final-cta__inner{display:grid;gap:18px;align-items:center}.zb-final-cta__actions{display:flex;flex-wrap:wrap;gap:10px}.zb-footer{padding:34px 0;border-top:1px solid var(--zb-border);background:#fff7ec}.zb-footer__inner,.zb-footer__nav,.zb-footer__meta{display:flex;align-items:center;gap:16px;flex-wrap:wrap}.zb-footer__inner{justify-content:space-between}.zb-footer__nav a,.zb-footer__meta a{font-weight:800;color:var(--zb-muted)}
.zb-mobile-nav{position:fixed;left:16px;right:16px;bottom:calc(12px + env(safe-area-inset-bottom));z-index:90;display:grid;grid-template-columns:repeat(3,1fr);gap:6px;padding:8px;border:1px solid var(--zb-border);border-radius:22px;background:rgba(255,255,255,.94);box-shadow:0 16px 42px rgba(43,23,17,.16);backdrop-filter:blur(12px)}.zb-mobile-nav a{min-height:44px;display:grid;place-items:center;border-radius:16px;background:var(--zb-bg);color:var(--zb-text);font-size:13px;font-weight:900}
@media (max-width:767px){.zb-menu__header{align-items:start}.zb-cat[data-mobile="0"]{display:none}.zb-cat[data-mobile="1"]{width:84px;flex-basis:84px}.zb-cat[data-mobile="1"] .zb-cat__figure{width:78px}.zb-cat__speech{display:none}}
@media (min-width:768px){.zb-seasonal__grid,.zb-benefits__grid{grid-template-columns:repeat(4,minmax(0,1fr));gap:18px}.zb-takeaway__grid,.zb-contacts__grid{grid-template-columns:minmax(0,.9fr) minmax(0,1fr);align-items:center}.zb-takeaway__features{grid-template-columns:repeat(3,minmax(0,1fr))}.zb-final-cta{padding:34px 0}.zb-final-cta__inner{grid-template-columns:minmax(0,1fr) auto}}
@media (min-width:1024px){.zb-mobile-nav{display:none}}
@media (prefers-reduced-motion:reduce){.zb-cat__head,.zb-cat.is-nodding .zb-cat__head,.zb-cat__speech{animation:none;transition:none}}
/* zernobar finish 20260926 end */
/* zernobar mobile hero correction 20260926 start */
@media (max-width: 480px) {
    .zb-hero {
        overflow: clip;
        padding-top: 28px;
    }

    .zb-hero__grid,
    .zb-hero__content,
    .zb-hero__visual {
        min-width: 0;
        max-width: 100%;
    }

    .zb-hero__title {
        max-width: 100%;
        font-size: clamp(34px, 9.8vw, 42px);
        line-height: 1.05;
        overflow-wrap: break-word;
    }

    .zb-hero__text {
        max-width: 100%;
        font-size: 15px;
    }

    .zb-hero__actions {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
    }

    .zb-button {
        width: 100%;
        max-width: 100%;
    }

    .zb-hero__features {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .zb-hero-feature {
        min-width: 0;
        font-size: 11px;
        overflow-wrap: anywhere;
    }

    .zb-hero-cup {
        width: min(72vw, 260px);
    }

    .zb-hero__note {
        right: 6px;
        max-width: 126px;
        font-size: 14px;
    }
}
/* zernobar mobile hero correction 20260926 end */

/* zernobar no-photo card art 20260926 start */
.zb-card-drink{width:100%;height:100%;min-height:160px;border-radius:18px;background:radial-gradient(circle at 70% 25%,rgba(255,255,255,.9) 0 18%,transparent 19%),linear-gradient(135deg,#fff1dc,#ffd7a8);display:grid;place-items:center;position:relative;overflow:hidden}
.zb-card-drink::before{content:"";width:86px;height:86px;border-radius:50%;border:14px solid #fff;background:radial-gradient(circle,#d9a46c 0 36%,#fff7ee 37% 54%,#8a4b22 55%);box-shadow:0 18px 32px rgba(64,32,18,.16)}
.zb-card-drink::after{content:"";position:absolute;right:18px;bottom:18px;width:44px;height:28px;border-radius:50%;background:linear-gradient(90deg,#5b2b13,#9a5a27);box-shadow:-24px 4px 0 -4px #7a3f1d}
.zb-card-drink--promo::before{width:74px;height:110px;border:0;border-radius:14px 14px 28px 28px;background:linear-gradient(180deg,#fff8ea,#dca36d)}
.zb-card-drink--modal{min-height:260px}
/* zernobar no-photo card art 20260926 end */
/* zernobar narrow viewport hardening 20260926 start */
@media (max-width: 640px) {
    .zb-container {
        width: min(calc(100% - 32px), var(--zb-container));
    }

    .zb-header__inner,
    .zb-hero__grid,
    .zb-hero__content,
    .zb-hero__visual,
    .zb-promos__grid,
    .zb-menu-grid,
    .zb-choice__grid {
        min-width: 0;
        max-width: 100%;
    }

    .zb-hero {
        overflow: clip;
    }

    .zb-hero__title {
        font-size: clamp(30px, 7.6vw, 40px);
        line-height: 1.08;
        max-width: 100%;
        word-break: normal;
        overflow-wrap: anywhere;
    }

    .zb-hero__text {
        max-width: 100%;
        font-size: 15px;
        overflow-wrap: anywhere;
    }

    .zb-hero__actions {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        max-width: 100%;
    }

    .zb-button {
        width: 100%;
        min-width: 0;
        padding-inline: 14px;
        white-space: normal;
        text-align: center;
    }

    .zb-hero__features {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 100%;
    }

    .zb-hero-feature {
        min-width: 0;
        font-size: 11px;
        overflow-wrap: anywhere;
    }

    .zb-hero__visual {
        overflow: clip;
    }

    .zb-hero-cup {
        width: min(68vw, 230px);
        min-height: 240px;
    }

    .zb-hero__note {
        right: 8px;
        max-width: 112px;
        font-size: 13px;
    }
}
/* zernobar narrow viewport hardening 20260926 end */

/* zernobar hero reference visual 20260926 start */
.zb-hero{background:radial-gradient(circle at 78% 18%,rgba(255,239,210,.72),transparent 34%),linear-gradient(90deg,#fff8ef 0%,#fffaf5 46%,#fff2df 100%)}
.zb-hero__grid{grid-template-columns:minmax(0,.92fr) minmax(420px,1.08fr)}
.zb-hero__visual{min-height:430px;border-radius:34px;background:transparent;overflow:visible}.zb-hero__visual::before{display:none}
.zb-hero__image{width:min(100%,760px);height:auto;max-height:560px;object-fit:contain;filter:drop-shadow(0 24px 45px rgba(72,38,20,.16))}
.zb-hero__note{display:none}
@media (max-width:767px){.zb-hero__grid{grid-template-columns:minmax(0,1fr)}.zb-hero__visual{min-height:260px;border-radius:24px;overflow:clip}.zb-hero__image{width:min(118%,430px);max-width:none;margin-inline:auto}}
/* zernobar hero reference visual 20260926 end */


/* zernobar menu 24 visual 20260926 start */
.zb-menu__header {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-items: end;
    gap: 12px;
}

.zb-menu__header h2 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.05;
}

.zb-menu__header h2::after {
    content: "♡";
    color: #9a5a27;
    font-size: .72em;
}

.zb-menu__note {
    margin: 0;
    color: var(--zb-text);
    font-weight: 800;
}

.zb-menu__all {
    justify-self: start;
}

.zb-menu-filter {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 3px 0 12px;
    scrollbar-width: none;
}

.zb-menu-filter::-webkit-scrollbar {
    display: none;
}

.zb-menu-filter button {
    flex: 0 0 auto;
    min-height: 44px;
    padding: 0 18px;
    border: 1px solid var(--zb-border);
    border-radius: 999px;
    background: #fff;
    color: var(--zb-text);
    font-weight: 900;
}

.zb-menu-filter button.is-active {
    background: var(--zb-text);
    border-color: var(--zb-text);
    color: #fff;
}

.zb-menu-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.zb-drink-card {
    min-width: 0;
    border: 1px solid var(--zb-border);
    border-radius: 22px;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 16px 38px rgba(84, 45, 24, .08);
}

.zb-drink-card__image {
    position: relative;
    aspect-ratio: 1 / .78;
    background: linear-gradient(135deg, #fff3df, #fff8ef);
    overflow: hidden;
}

.zb-drink-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.zb-drink-card__content {
    display: grid;
    gap: 10px;
    padding: 14px;
}

.zb-drink-card__content h3 {
    margin: 0;
    font-size: 18px;
    line-height: 1.16;
}

.zb-drink-card__content p {
    min-height: 44px;
    margin: 0;
    color: #5f4b42;
    font-size: 13px;
    line-height: 1.35;
    font-weight: 700;
}

.zb-drink-card__volumes {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.zb-drink-card__volumes span {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 0 7px;
    border-radius: 999px;
    background: #fff4e3;
    color: #9b7a67;
    font-size: 11px;
    font-weight: 900;
}

.zb-drink-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.zb-drink-card__footer strong {
    font-size: 18px;
    line-height: 1;
    font-weight: 900;
}

.zb-drink-card__plus {
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 50%;
    background: var(--zb-brown);
    color: #fff;
    font-size: 24px;
    line-height: 1;
}

.zb-drink-card__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    display: inline-flex;
    padding: 6px 10px;
    border-radius: 999px;
    background: #ff9718;
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

@media (min-width: 768px) {
    .zb-menu__header {
        grid-template-columns: minmax(0, 1fr) auto auto 128px;
    }

    .zb-menu__all {
        justify-self: end;
    }

    .zb-menu-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 22px;
    }
}

@media (min-width: 1180px) {
    .zb-menu-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 28px;
    }

    .zb-drink-card__content {
        padding: 20px;
    }
}
/* zernobar menu 24 visual 20260926 end */

/* zernobar promos final visual 20260926 start */
.zb-promos {
    position: relative;
    padding-top: clamp(42px, 5vw, 62px);
    scroll-margin-top: 92px;
}

.zb-promos .zb-section-head {
    position: relative;
    display: block;
    margin-bottom: 28px;
    justify-content: flex-start;
}

.zb-promos .zb-section-head::before {
    content: "";
    position: absolute;
    left: -44px;
    top: 2px;
    width: 34px;
    height: 42px;
    border: 3px solid #7c3c1f;
    border-radius: 50%;
    opacity: .9;
    transform: rotate(-34deg);
    box-shadow: 13px 12px 0 -5px #fff8ef, 13px 12px 0 -2px #7c3c1f, 25px 24px 0 -5px #fff8ef, 25px 24px 0 -2px #7c3c1f;
}

.zb-promos .zb-section-kicker {
    display: none;
}

.zb-promos .zb-section-head h2 {
    max-width: 720px;
    margin: 0;
    padding-left: 22px;
    color: #190b08;
    font-size: clamp(32px, 3.5vw, 46px);
    line-height: 1.08;
    letter-spacing: 0;
    font-weight: 950;
}

.zb-promos__grid {
    display: grid;
    gap: 26px;
}

.zb-promo {
    position: relative;
    min-height: 286px;
    display: block;
    overflow: hidden;
    padding: 30px 24px 26px 30px;
    border: 0;
    border-radius: 24px;
    box-shadow: 0 18px 38px rgba(84, 45, 24, .08);
}

.zb-promo--cream {
    background: linear-gradient(135deg, #fff2d9 0%, #ffe3b7 100%);
}

.zb-promo--blue {
    background: linear-gradient(135deg, #daf4ff 0%, #bfe9f7 100%);
}

.zb-promo--pink {
    background: linear-gradient(135deg, #ffe1ed 0%, #ffc8dc 100%);
}

.zb-promo::before,
.zb-promo::after {
    content: "";
    position: absolute;
    pointer-events: none;
    z-index: 1;
}

.zb-promo::before {
    right: 22%;
    top: 42px;
    width: 34px;
    height: 34px;
    border-top: 3px solid rgba(255, 132, 42, .72);
    border-radius: 50%;
    transform: rotate(28deg);
}

.zb-promo::after {
    right: 8%;
    top: 36px;
    width: 5px;
    height: 20px;
    border-radius: 999px;
    background: rgba(121, 54, 26, .65);
    box-shadow: 20px -8px 0 rgba(121, 54, 26, .45), 38px 10px 0 rgba(255, 132, 42, .65);
    transform: rotate(-22deg);
}

.zb-promo__content {
    position: relative;
    z-index: 3;
    width: 61%;
    min-height: 230px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.zb-promo__title {
    max-width: 295px;
    margin: 0;
    color: #190b08;
    font-size: 26px;
    line-height: 1.1;
    font-weight: 950;
}

.zb-promo__text {
    max-width: 248px;
    margin-top: 16px;
    color: #674d3f;
    font-size: 14px;
    line-height: 1.42;
    font-weight: 750;
}

.zb-promo__button {
    margin-top: auto;
    min-height: 48px;
    max-width: 235px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 22px;
    border-radius: 999px;
    background: #a45c1f;
    color: #fff;
    font-size: 14px;
    line-height: 1.12;
    font-weight: 900;
    text-align: center;
    text-decoration: none;
    white-space: normal;
    box-shadow: 0 14px 24px rgba(123, 67, 26, .18);
}

.zb-promo--blue .zb-promo__button {
    background: #32130e;
}

.zb-promo--pink .zb-promo__button {
    background: #d72f78;
}

.zb-promo__image {
    position: absolute;
    z-index: 2;
    right: 18px;
    bottom: 12px;
    width: 42%;
    height: 78%;
    display: grid;
    place-items: end center;
}

.zb-promo--cream .zb-promo__image {
    right: 28px;
    bottom: 8px;
    width: 36%;
    height: 75%;
}

.zb-promo--blue .zb-promo__image {
    right: 10px;
    bottom: 40px;
    width: 43%;
    height: 54%;
}

.zb-promo--pink .zb-promo__image {
    right: 12px;
    bottom: 8px;
    width: 39%;
    height: 82%;
}

.zb-promo__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: right bottom;
    filter: drop-shadow(0 14px 18px rgba(62, 29, 14, .15));
}

.zb-promo__badge {
    position: absolute;
    z-index: 4;
    right: 6px;
    top: 48%;
    display: grid;
    place-items: center;
    min-width: 66px;
    height: 66px;
    padding: 0 10px;
    border-radius: 999px;
    background: #ff9d18;
    color: #fff;
    font-size: 21px;
    line-height: 1;
    font-weight: 950;
    text-transform: uppercase;
}

.zb-promo--blue .zb-promo__badge {
    right: 10px;
    top: 58%;
}

.zb-promo--pink .zb-promo__badge {
    right: -10px;
    top: 49%;
    min-width: 92px;
    height: 54px;
    background: #d72f78;
    font-size: 15px;
}

@media (min-width: 900px) {
    .zb-promos__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 1180px) and (min-width: 900px) {
    .zb-promo {
        min-height: 258px;
        padding: 25px 22px 22px;
    }

    .zb-promo__content {
        width: 63%;
        min-height: 210px;
    }

    .zb-promo__title {
        font-size: 23px;
    }

    .zb-promo__text {
        font-size: 13px;
    }

    .zb-promo__button {
        max-width: 210px;
        min-height: 44px;
        padding-inline: 16px;
        font-size: 13px;
    }
}

@media (max-width: 767px) {
    .zb-promos {
        padding-bottom: 104px;
    }

    .zb-promos .zb-section-head {
        margin-bottom: 20px;
    }

    .zb-promos .zb-section-head h2 {
        padding-left: 0;
    }

    .zb-promos .zb-section-head::before {
        display: none;
    }

    .zb-promo {
        min-height: 244px;
        padding: 22px;
    }

    .zb-promo__content {
        width: 64%;
        min-height: 200px;
    }

    .zb-promo__title {
        font-size: 22px;
    }

    .zb-promo__text {
        margin-top: 10px;
        font-size: 13px;
    }

    .zb-promo__button {
        min-height: 42px;
        max-width: 190px;
        padding-inline: 14px;
        font-size: 12px;
    }

    .zb-promo__image {
        right: 10px;
        bottom: 10px;
        width: 38%;
        height: 72%;
    }

    .zb-promo--cream .zb-promo__image {
        right: 16px;
        bottom: 8px;
        width: 34%;
        height: 70%;
    }

    .zb-promo--blue .zb-promo__image {
        right: 6px;
        bottom: 44px;
        width: 39%;
        height: 45%;
    }

    .zb-promo--pink .zb-promo__image {
        right: 10px;
        width: 35%;
        height: 76%;
    }

    .zb-promo__badge {
        min-width: 54px;
        height: 54px;
        font-size: 17px;
    }

    .zb-promo--pink .zb-promo__badge {
        min-width: 78px;
        height: 44px;
        font-size: 12px;
    }
}
/* zernobar promos final visual 20260926 end */
