:root {
    --zl-gold: #D4AF37;
    --zl-gold-dark: #AA8C2C;
    --zl-cream: #FDFBF7;
    --zl-brown: #4A3728;
    --zl-green: #2A3B24;
}

.zl-drawer-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .65rem;
    align-items: center;
    justify-content: flex-start;
}

.zl-drawer-actions--end {
    justify-content: flex-end;
}

.zl-drawer-button {
    display: inline-flex;
    width: auto;
    max-width: 100%;
    min-width: 10.75rem;
    min-height: 2.85rem;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    border-radius: 999px;
    padding: 0 1.35rem;
    cursor: pointer;
    font: inherit;
    font-weight: 900;
    line-height: 1.1;
    text-align: center;
    text-decoration: none;
    transition: background-color .16s ease, border-color .16s ease, color .16s ease, transform .16s ease;
}

.zl-drawer-button:hover,
.zl-drawer-button:focus-visible {
    transform: translateY(-1px);
}

.zl-drawer-button:focus-visible {
    outline: 3px solid rgba(212, 175, 55, .28);
    outline-offset: 2px;
}

.zl-drawer-button-primary {
    border-color: var(--zl-gold);
    background: var(--zl-gold);
    color: #fff;
}

.zl-drawer-button-primary:hover,
.zl-drawer-button-primary:focus-visible {
    background: var(--zl-gold-dark);
    border-color: var(--zl-gold-dark);
}

.zl-drawer-button-secondary {
    border-color: rgba(212, 175, 55, .48);
    background: #fff;
    color: var(--zl-gold-dark);
}

.zl-drawer-button-secondary:hover,
.zl-drawer-button-secondary:focus-visible {
    background: rgba(243, 229, 171, .34);
    border-color: rgba(212, 175, 55, .68);
}

@media (max-width: 420px) {
    .zl-drawer-button {
        min-width: 9.65rem;
        min-height: 2.75rem;
        padding-inline: 1rem;
    }

    .zl-drawer-actions--end,
    .zl-layer-modal-footer,
    .zl-legal-modal-footer,
    .zl-product-info-actions {
        justify-content: center;
    }
}

html {
    text-rendering: optimizeLegibility;
}

body {
    padding-bottom: env(safe-area-inset-bottom);
}

.zl-app-shell-body {
    min-height: 100vh;
    background:
        radial-gradient(circle at 50% 0%, rgba(253, 251, 247, .98) 0%, rgba(246, 239, 221, .96) 100%);
}

.zl-app-shell-body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    background-image: radial-gradient(var(--zl-gold) 1px, transparent 1px);
    background-size: 18px 18px;
    opacity: .06;
    pointer-events: none;
}

.app-shell {
    width: 100%;
    min-height: 100vh;
    margin: 0 auto;
}

.zl-checkout-shell {
    width: min(100%, 1120px);
    margin: 0 auto;
    padding: 2.6rem 1rem 6.2rem;
}

.app-panel {
    display: none;
    scroll-margin-top: 1rem;
}

body.has-shell-js #domu.app-panel,
body.has-shell-js .app-panel {
    display: none;
}

body.has-shell-js .app-panel:target {
    display: none;
}

body.has-shell-js .app-panel.is-active {
    display: block;
}

body.has-shell-js #domu.app-panel.is-active {
    display: flex;
}

body:not(.has-shell-js) .app-panel.is-active,
body:not(.has-shell-js) .app-panel:target {
    display: block;
}

body:not(.has-shell-js) #domu.app-panel.is-active,
body:not(.has-shell-js) #domu:target {
    display: flex;
}

@supports selector(body:has(:target)) {
    body:not(.has-shell-js):has(.app-panel:target) #domu.app-panel.is-active {
        display: none;
    }

    body:not(.has-shell-js):has(#domu:target) #domu.app-panel.is-active {
        display: flex;
    }
}

.app-panel.is-active,
.app-panel:target,
body.has-shell-js .app-panel.is-active {
    animation: zl-panel-fade .18s ease-out both;
}

@keyframes zl-panel-fade {
    from {
        opacity: 0;
        transform: translateY(.35rem);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.app-panel-shell {
    width: min(100%, 900px);
    margin: 0 auto;
    padding: 0 1rem;
}

.app-panel-header {
    max-width: 46rem;
    margin: 0 auto 2rem;
    text-align: center;
}

.app-panel-header.is-left {
    margin-right: 0;
    margin-left: 0;
    text-align: left;
}

.app-panel-header.is-left .app-panel-lead,
.app-panel-header.is-left .app-panel-rule {
    margin-left: 0;
}

.app-panel-kicker {
    display: block;
    color: var(--zl-gold-dark);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .14em;
    line-height: 1.2;
    text-transform: uppercase;
}

.app-panel-title {
    margin: .55rem 0 0;
    color: var(--zl-green);
    font-family: "Playfair Display", serif;
    font-size: clamp(1.95rem, 6.4vw, 3.35rem);
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1.02;
}

.app-panel-title .sparkle-text {
    display: block;
    margin-top: .08em;
    font-size: .72em;
    font-style: italic;
    font-weight: 600;
}

.app-panel-lead {
    max-width: 46ch;
    margin: .9rem auto 0;
    color: rgba(74, 55, 40, .8);
    font-size: clamp(.86rem, 2vw, .95rem);
    line-height: 1.65;
}

.app-panel-rule {
    width: min(13rem, 55vw);
    height: 2px;
    margin: 1.15rem auto 0;
    background: linear-gradient(to right, var(--zl-gold), transparent);
}

.zl-home-hero {
    display: grid;
    place-items: center;
    min-height: calc(100vh - 5.7rem);
    padding: clamp(1.25rem, 4vw, 2.75rem) 1rem;
}

.zl-home-hero .app-panel-header {
    margin-bottom: 0;
}

.zl-hero-orb {
    position: relative;
    display: grid;
    place-items: center;
    width: clamp(15.5rem, 38vw, 27rem);
    aspect-ratio: 1;
    margin: .75rem auto .55rem;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    isolation: isolate;
}

.zl-hero-orb::before {
    content: "";
    position: absolute;
    inset: 20% 10% 10%;
    z-index: 0;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(212, 175, 55, .42), rgba(243, 229, 171, .24) 42%, transparent 72%);
    filter: blur(24px);
    pointer-events: none;
}

.zl-hero-orb img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.zl-hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .75rem;
    margin-top: 1.35rem;
}

.zl-hero-primary,
.zl-hero-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.9rem;
    border-radius: 999px;
    padding: .72rem 1.25rem;
    font-weight: 800;
    line-height: 1.1;
    text-decoration: none;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}

.zl-hero-primary {
    background: var(--zl-gold);
    box-shadow: 0 .75rem 1.6rem rgba(170, 140, 44, .23);
    color: #fff;
}

.zl-hero-ghost {
    border: 1px solid rgba(212, 175, 55, .58);
    background: rgba(255, 255, 255, .52);
    color: var(--zl-gold-dark);
}

.zl-hero-primary:hover,
.zl-hero-primary:focus-visible,
.zl-hero-ghost:hover,
.zl-hero-ghost:focus-visible {
    transform: translateY(-1px);
    outline: none;
}

.zl-hero-benefit-rule {
    margin-top: 1.5rem;
}

.zl-hero-benefits {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .55rem .85rem;
    margin-top: .85rem;
    color: rgba(42, 59, 36, .72);
    font-size: .82rem;
    font-weight: 800;
}

.zl-hero-benefits span {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
}

.zl-benefit-dot {
    display: inline-flex;
    width: 1.15rem;
    height: 1.15rem;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(212, 175, 55, .38);
    border-radius: 999px;
    color: var(--zl-gold-dark);
    font-size: .68rem;
    line-height: 1;
}

.zl-skip-link {
    position: fixed;
    left: 1rem;
    top: 1rem;
    z-index: 9999;
    transform: translateY(-150%);
    border-radius: 999px;
    background: var(--zl-green);
    color: #fff;
    padding: .75rem 1rem;
    font-weight: 700;
    transition: transform .2s ease;
}

.zl-skip-link:focus {
    transform: translateY(0);
    outline: 3px solid var(--zl-gold);
}

.zl-mobile-bottom-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 70;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: .25rem;
    padding: .45rem .65rem calc(.45rem + env(safe-area-inset-bottom));
    border-top: 1px solid rgba(212, 175, 55, .42);
    background: rgba(253, 251, 247, .94);
    box-shadow: 0 -12px 32px rgba(42, 59, 36, .16);
}

.zl-mobile-bottom-bar a {
    position: relative;
    display: flex;
    min-height: 3.15rem;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .12rem;
    border-radius: .9rem;
    color: var(--zl-brown);
    font-size: .72rem;
    font-weight: 700;
    line-height: 1.05;
    text-decoration: none;
}

.zl-mobile-bottom-bar a:focus-visible,
.zl-mobile-bottom-bar a:hover {
    background: rgba(243, 229, 171, .46);
    color: var(--zl-gold-dark);
    outline: none;
}

.zl-mobile-bottom-bar svg {
    width: 1.22rem;
    height: 1.22rem;
}

.zl-mobile-bottom-bar .zl-cart-badge {
    position: absolute;
    right: 1.05rem;
    top: .28rem;
    min-width: 1.1rem;
    height: 1.1rem;
    border-radius: 999px;
    background: var(--zl-gold);
    color: #fff;
    font-size: .68rem;
    line-height: 1.1rem;
    text-align: center;
}

.zl-product-card {
    content-visibility: auto;
    contain-intrinsic-size: 360px;
}

.zl-product-card[data-product-info-card] {
    cursor: pointer;
}

.zl-product-card[data-product-info-card] form,
.zl-product-card[data-product-info-card] button {
    cursor: auto;
}

.zl-card {
    position: relative;
    border-color: color-mix(in srgb, var(--zl-accent, var(--zl-gold)) 22%, transparent);
    transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.zl-card:hover {
    transform: translateY(-.35rem);
    box-shadow: 0 1.35rem 2.8rem rgba(42, 59, 36, .16);
}

.zl-card-bar {
    position: absolute;
    inset: 0 0 auto;
    height: 5px;
    background: var(--zl-accent, var(--zl-gold));
}

.zl-card-promo {
    position: absolute;
    top: .9rem;
    right: .9rem;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(170, 140, 44, .24);
    border-radius: 999px;
    background: var(--zl-gold);
    color: #fff;
    padding: .36rem .58rem;
    font-size: .78rem;
    font-weight: 800;
    line-height: 1;
    box-shadow: 0 .45rem 1rem rgba(170, 140, 44, .24);
    cursor: pointer;
    text-align: center;
    transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}

.zl-card-promo:hover,
.zl-card-promo:focus-visible {
    background: var(--zl-gold-dark);
    box-shadow: 0 .65rem 1.2rem rgba(170, 140, 44, .30);
    transform: translateY(-1px);
}

.zl-product-card[data-product-info-card] .zl-card-promo {
    cursor: pointer;
}

.zl-card-media {
    position: relative;
    isolation: isolate;
}

.zl-card-media::before {
    content: "";
    position: absolute;
    inset: .7rem;
    z-index: 0;
    border-radius: inherit;
    background-image: radial-gradient(var(--zl-accent, var(--zl-gold)) 1px, transparent 1px);
    background-size: 12px 12px;
    opacity: .10;
    pointer-events: none;
}

.zl-card-media img {
    position: relative;
    z-index: 1;
}

.zl-card-media-placeholder {
    position: relative;
    z-index: 1;
    width: 42%;
    aspect-ratio: 1 / 1;
    border: 1px solid rgba(212, 175, 55, .22);
    border-radius: 999px;
    background:
        radial-gradient(circle at 50% 45%, rgba(243, 229, 171, .55), transparent 58%),
        rgba(255, 255, 255, .55);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .72);
}

.zl-card-kicker {
    display: block;
    margin-bottom: .45rem;
    color: var(--zl-accent, var(--zl-gold-dark));
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1.25;
    text-transform: uppercase;
}

.zl-card-nick {
    color: var(--zl-gold-dark);
    font-size: .9em;
}

.zl-mobile-cta-spacer {
    height: 4.7rem;
}

.zl-app-shell-nav {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 80;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: .28rem;
    padding: .55rem .62rem calc(.55rem + env(safe-area-inset-bottom));
    border-top: 1px solid rgba(212, 175, 55, .42);
    background: rgba(253, 251, 247, .98);
    box-shadow: 0 -14px 34px rgba(42, 59, 36, .18);
}

.zl-app-shell-nav a {
    position: relative;
    display: flex;
    min-height: 3.7rem;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .16rem;
    border-radius: .9rem;
    color: var(--zl-brown);
    cursor: pointer;
    font-size: .72rem;
    font-weight: 800;
    line-height: 1.05;
    list-style: none;
    text-align: center;
    text-decoration: none;
}

.zl-app-shell-nav a:hover,
.zl-app-shell-nav a:focus-visible,
.zl-app-shell-nav [aria-current="page"] {
    background: rgba(243, 229, 171, .54);
    color: var(--zl-gold-dark);
    outline: none;
}

.zl-app-shell-nav svg {
    width: 1.5rem;
    height: 1.5rem;
}

.zl-app-shell-nav .zl-cart-badge {
    position: absolute;
    left: 50%;
    top: .38rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.12rem;
    height: 1.12rem;
    border-radius: 999px;
    background: var(--zl-gold);
    color: #fff;
    font-size: .68rem;
    line-height: 1;
    text-align: center;
    transform: translateX(.72rem);
}

.zl-app-shell-spacer {
    height: 5.85rem;
}

.zl-cart-drawer[hidden] {
    display: none;
}

body.zl-cart-drawer-open {
    overflow: hidden;
}

.zl-cart-confirm {
    position: fixed;
    right: 1rem;
    bottom: calc(5.7rem + env(safe-area-inset-bottom));
    z-index: 180;
    width: min(22rem, calc(100vw - 2rem));
    padding: 1rem 1.1rem;
    border: 1px solid rgba(212, 175, 55, .38);
    border-radius: 1rem;
    background: rgba(253, 251, 247, .98);
    box-shadow: 0 22px 50px rgba(42, 59, 36, .18);
    color: var(--zl-green);
    opacity: 0;
    pointer-events: none;
    transform: translateY(.8rem) scale(.98);
    transition: opacity .18s ease, transform .18s ease;
}

.zl-cart-confirm.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.zl-cart-confirm strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    line-height: 1.15;
}

.zl-cart-confirm p {
    margin: .35rem 0 0;
    color: var(--zl-brown);
    font-size: .9rem;
    line-height: 1.45;
}

.zl-cart-drawer {
    position: fixed;
    inset: 0;
    z-index: 120;
}

.zl-cart-drawer-backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(42, 59, 36, .46);
    cursor: default;
    opacity: 0;
    transition: opacity .2s ease;
}

.zl-cart-drawer-panel {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    display: flex;
    width: min(30rem, calc(100vw - .75rem));
    max-width: 100%;
    flex-direction: column;
    border-left: 1px solid rgba(212, 175, 55, .38);
    background: var(--zl-cream);
    box-shadow: -1rem 0 3rem rgba(42, 59, 36, .2);
    outline: none;
    transform: translateX(104%);
    transition: transform .24s ease;
}

.zl-cart-drawer.is-open .zl-cart-drawer-backdrop {
    opacity: 1;
}

.zl-cart-drawer.is-open .zl-cart-drawer-panel {
    transform: translateX(0);
}

.zl-cart-drawer-header,
.zl-cart-drawer-footer {
    flex: 0 0 auto;
    background: rgba(253, 251, 247, .98);
}

.zl-cart-drawer-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    border-bottom: 1px solid rgba(212, 175, 55, .28);
    padding: 1.15rem 1.15rem .95rem;
}

.zl-cart-drawer-title {
    margin: .2rem 0 .12rem;
    color: var(--zl-green);
    font-family: "Playfair Display", serif;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.zl-cart-drawer-count {
    color: rgba(74, 55, 40, .72);
    font-size: .9rem;
    font-weight: 700;
}

.zl-cart-drawer-close {
    display: inline-grid;
    width: 2.65rem;
    height: 2.65rem;
    place-items: center;
    border: 1px solid rgba(212, 175, 55, .35);
    border-radius: 999px;
    background: #fff;
    color: var(--zl-brown);
    cursor: pointer;
    font-size: 1.65rem;
    line-height: 1;
}

.zl-cart-drawer-empty {
    margin: 1rem;
    border: 1px solid rgba(212, 175, 55, .32);
    border-radius: 1rem;
    background: #fff;
    padding: 1.2rem;
}

.zl-cart-drawer-empty h3 {
    margin: 0 0 .35rem;
    color: var(--zl-green);
    font-family: "Playfair Display", serif;
    font-size: 1.5rem;
}

.zl-cart-drawer-empty p {
    margin: 0 0 1rem;
    color: var(--zl-brown);
    line-height: 1.45;
}

.zl-cart-drawer-empty a {
    margin-top: .1rem;
}

.zl-cart-drawer-items {
    flex: 1 1 auto;
    overflow-y: auto;
    padding: 1rem;
}

.zl-cart-drawer-item {
    display: grid;
    grid-template-columns: 4.65rem minmax(0, 1fr) auto;
    gap: .8rem;
    border: 1px solid rgba(212, 175, 55, .32);
    border-radius: 1rem;
    background: #fff;
    padding: .75rem;
}

.zl-cart-drawer-item + .zl-cart-drawer-item {
    margin-top: .75rem;
}

.zl-cart-drawer-media {
    display: grid;
    width: 4.65rem;
    height: 4.65rem;
    place-items: center;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, .26);
    border-radius: .85rem;
    background: rgba(253, 251, 247, .95);
    color: var(--zl-gold-dark);
    font-size: 2rem;
    text-decoration: none;
}

.zl-cart-drawer-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.zl-cart-drawer-item-body {
    min-width: 0;
}

.zl-cart-drawer-item-body h3 {
    margin: .05rem 0 .2rem;
    color: var(--zl-green);
    font-family: "Playfair Display", serif;
    font-size: 1.05rem;
    line-height: 1.15;
}

.zl-cart-drawer-item-body h3 a {
    color: inherit;
    text-decoration: none;
}

.zl-cart-drawer-item-body p {
    margin: 0 0 .55rem;
    color: rgba(74, 55, 40, .72);
    font-size: .82rem;
    font-weight: 700;
}

.zl-cart-drawer-controls {
    display: inline-grid;
    grid-template-columns: 2rem 2.2rem 2rem;
    align-items: center;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, .38);
    border-radius: 999px;
    background: rgba(253, 251, 247, .9);
}

.zl-cart-drawer-controls button {
    display: grid;
    width: 2rem;
    height: 2rem;
    place-items: center;
    border: 0;
    background: transparent;
    color: var(--zl-gold-dark);
    cursor: pointer;
    font-size: 1.05rem;
    font-weight: 900;
}

.zl-cart-drawer-controls button:disabled {
    color: rgba(74, 55, 40, .28);
    cursor: not-allowed;
}

.zl-cart-drawer-controls span {
    color: var(--zl-green);
    font-size: .92rem;
    font-weight: 900;
    text-align: center;
}

.zl-cart-drawer-line {
    display: flex;
    min-width: 5.4rem;
    flex-direction: column;
    align-items: flex-end;
    gap: .45rem;
}

.zl-cart-drawer-line strong {
    color: var(--zl-gold-dark);
    font-size: .98rem;
    white-space: nowrap;
}

.zl-cart-drawer-line button {
    border: 0;
    background: transparent;
    color: rgba(74, 55, 40, .68);
    cursor: pointer;
    font-size: .78rem;
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.zl-cart-drawer-footer {
    border-top: 1px solid rgba(212, 175, 55, .28);
    padding: .95rem 1rem calc(.95rem + env(safe-area-inset-bottom));
}

.zl-cart-drawer-subtotal {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: .8rem;
    color: var(--zl-brown);
    font-weight: 800;
}

.zl-cart-drawer-subtotal strong {
    color: var(--zl-green);
}

.zl-cart-promo-status {
    margin: -.2rem 0 .75rem;
    color: rgba(74, 55, 40, .72);
    font-size: .84rem;
    font-weight: 700;
    line-height: 1.35;
}

.zl-cart-drawer-discount-row {
    color: var(--zl-gold-dark);
}

.zl-cart-drawer-discount-row strong {
    color: var(--zl-gold-dark);
}

.zl-cart-drawer-total-row {
    margin-top: .15rem;
    padding-top: .75rem;
    border-top: 1px solid rgba(212, 175, 55, .22);
    font-size: 1.05rem;
}

.zl-cart-drawer-actions {
    margin-top: .95rem;
}

.zl-layer-modal[hidden] {
    display: none;
}

body.zl-layer-modal-open {
    overflow: hidden;
}

.zl-layer-modal {
    position: fixed;
    inset: 0;
    z-index: 128;
}

.zl-layer-modal-backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(42, 59, 36, .5);
    cursor: default;
    opacity: 0;
    transition: opacity .18s ease;
}

.zl-layer-modal-panel {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    display: flex;
    width: min(40rem, calc(100vw - .75rem));
    max-width: 100%;
    flex-direction: column;
    border-left: 1px solid rgba(212, 175, 55, .38);
    background: var(--zl-cream);
    box-shadow: -1.4rem 0 3rem rgba(42, 59, 36, .18);
    transform: translateX(100%);
    transition: transform .18s ease;
}

.zl-layer-modal.is-open .zl-layer-modal-backdrop {
    opacity: 1;
}

.zl-layer-modal.is-open .zl-layer-modal-panel {
    transform: translateX(0);
}

.zl-layer-modal-header,
.zl-layer-modal-footer {
    flex: 0 0 auto;
    background: rgba(253, 251, 247, .98);
}

.zl-layer-modal-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    border-bottom: 1px solid rgba(212, 175, 55, .28);
    padding: 1.15rem 1.15rem .95rem;
}

.zl-layer-modal-header p {
    max-width: 44ch;
    margin: .45rem 0 0;
    color: rgba(74, 55, 40, .78);
    line-height: 1.5;
}

.zl-layer-modal-title {
    margin: .2rem 0 0;
    color: var(--zl-green);
    font-family: "Playfair Display", serif;
    font-size: clamp(1.8rem, 8vw, 2.6rem);
    font-weight: 600;
    line-height: 1;
}

.zl-layer-modal-close {
    display: inline-grid;
    width: 2.65rem;
    height: 2.65rem;
    place-items: center;
    border: 1px solid rgba(212, 175, 55, .35);
    border-radius: 999px;
    background: #fff;
    color: var(--zl-brown);
    cursor: pointer;
    font-size: 1.65rem;
    line-height: 1;
}

.zl-layer-modal-body {
    flex: 1 1 auto;
    overflow-y: auto;
    padding: 1rem;
}

.zl-layer-modal-footer {
    display: flex;
    flex-wrap: wrap;
    gap: .65rem;
    justify-content: flex-end;
    border-top: 1px solid rgba(212, 175, 55, .28);
    padding: .95rem 1rem calc(.95rem + env(safe-area-inset-bottom));
}

.zl-layer-modal-button {
    width: auto;
}

.zl-account-form,
.zl-account-card,
.zl-account-empty,
.zl-account-order {
    border: 1px solid rgba(212, 175, 55, .32);
    border-radius: .95rem;
    background: rgba(255, 255, 255, .86);
    box-shadow: 0 .7rem 1.6rem rgba(42, 59, 36, .06);
}

.zl-account-form {
    display: grid;
    gap: .85rem;
    margin-bottom: 1rem;
    padding: 1rem;
}

.zl-account-form label {
    color: var(--zl-green);
    font-weight: 700;
}

.zl-account-form input {
    width: 100%;
    min-height: 3rem;
    border: 1px solid rgba(212, 175, 55, .48);
    border-radius: .7rem;
    background: #fff;
    color: var(--zl-brown);
    padding: .75rem .85rem;
}

.zl-account-code-form input {
    text-align: center;
    font-size: 1.25rem;
    letter-spacing: .35em;
}

.zl-account-alert {
    margin-bottom: .75rem;
    border-radius: .85rem;
    padding: .8rem .95rem;
    font-weight: 700;
    line-height: 1.35;
}

.zl-account-alert-success {
    border: 1px solid rgba(47, 128, 82, .26);
    background: rgba(47, 128, 82, .1);
    color: #245c3c;
}

.zl-account-alert-error {
    border: 1px solid rgba(176, 58, 46, .26);
    background: rgba(176, 58, 46, .1);
    color: #873126;
}

.zl-account-card,
.zl-account-empty {
    padding: 1rem;
}

.zl-account-card h3,
.zl-account-orders h3,
.zl-account-empty h4 {
    margin: .2rem 0 .3rem;
    color: var(--zl-green);
    font-family: var(--font-heading);
    font-size: 1.55rem;
    line-height: 1.1;
}

.zl-account-card form {
    margin-top: 1rem;
}

.zl-account-orders {
    display: grid;
    gap: .85rem;
    margin-top: 1rem;
}

.zl-account-orders-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
}

.zl-account-orders-heading a,
.zl-account-order a {
    color: var(--zl-gold-dark);
    font-weight: 700;
    text-decoration: none;
}

.zl-account-order-list {
    display: grid;
    gap: .7rem;
}

.zl-account-order {
    display: grid;
    gap: .7rem;
    padding: .85rem;
}

.zl-account-order div {
    display: flex;
    justify-content: space-between;
    gap: .8rem;
}

.zl-account-order span {
    color: rgba(74, 55, 40, .72);
}

.zl-about-modal-body {
    display: grid;
    gap: 1rem;
}

.zl-about-story,
.zl-about-card,
.zl-about-benefits article {
    border: 1px solid rgba(212, 175, 55, .32);
    border-radius: 1rem;
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 .75rem 1.7rem rgba(42, 59, 36, .06);
}

.zl-about-story {
    padding: 1rem;
}

.zl-about-story p {
    margin: 0;
    color: rgba(74, 55, 40, .82);
    line-height: 1.62;
}

.zl-about-story p + p {
    margin-top: .85rem;
}

.zl-about-benefits {
    display: grid;
    gap: .7rem;
}

.zl-about-benefits article {
    display: grid;
    gap: .25rem;
    padding: .9rem 1rem;
}

.zl-about-benefits strong {
    color: var(--zl-green);
    font-family: "Playfair Display", serif;
    font-size: 1.08rem;
}

.zl-about-benefits span {
    color: rgba(74, 55, 40, .78);
    line-height: 1.45;
}

.zl-about-card {
    display: grid;
    gap: .35rem;
    padding: 1rem;
    background: linear-gradient(145deg, #fff, rgba(243, 229, 171, .35));
}

.zl-about-card > span {
    display: inline-grid;
    width: 2.4rem;
    height: 2.4rem;
    place-items: center;
    border-radius: 999px;
    background: rgba(212, 175, 55, .18);
    color: var(--zl-gold-dark);
    font-size: 1.25rem;
}

.zl-about-card strong {
    color: var(--zl-green);
    font-family: "Playfair Display", serif;
    font-size: 1.28rem;
}

.zl-about-card p {
    margin: 0;
    color: rgba(74, 55, 40, .78);
    line-height: 1.45;
}

#o-nas.zl-about-rebuild {
    width: min(1120px, calc(100vw - 2rem));
    min-height: calc(100vh - 8rem);
    margin: 0 0 0 calc((100% - min(1120px, calc(100vw - 2rem))) / 2);
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, .22);
    border-radius: 1rem;
    background:
        linear-gradient(135deg, #fff 0%, rgba(253, 251, 247, .96) 48%, rgba(244, 240, 229, .92) 100%);
    box-shadow: 0 1.4rem 3.4rem rgba(42, 59, 36, .09);
}

#o-nas.zl-about-rebuild::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(42, 59, 36, .06), transparent 42%),
        radial-gradient(circle at 86% 22%, rgba(212, 175, 55, .16), transparent 18rem);
    pointer-events: none;
}

.zl-about-rebuild-shell {
    position: relative;
    z-index: 1;
    display: grid;
    gap: clamp(1.6rem, 4vw, 2.8rem);
    width: min(100%, 1040px);
    margin: 0 auto;
    padding: clamp(2.2rem, 5vw, 4.3rem) clamp(1.15rem, 4vw, 3.2rem);
}

.zl-about-rebuild-head {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(18rem, .85fr);
    gap: clamp(1.25rem, 4vw, 3rem);
    align-items: end;
    padding-bottom: clamp(1.35rem, 3vw, 2rem);
    border-bottom: 1px solid rgba(212, 175, 55, .24);
}

.zl-about-rebuild-head .app-panel-kicker {
    grid-column: 1 / -1;
}

.zl-about-rebuild-head h2 {
    max-width: 11.5em;
    margin: 0;
    color: var(--zl-green);
    font-family: "Playfair Display", serif;
    font-size: clamp(2.5rem, 5.8vw, 4.8rem);
    font-weight: 600;
    letter-spacing: 0;
    line-height: .95;
}

.zl-about-rebuild-head p {
    max-width: 34rem;
    margin: 0;
    color: rgba(74, 55, 40, .78);
    font-size: clamp(1rem, 1.6vw, 1.12rem);
    line-height: 1.72;
}

.zl-about-rebuild-grid {
    display: grid;
    grid-template-columns: minmax(0, .82fr) minmax(22rem, 1fr);
    gap: clamp(1rem, 3vw, 1.6rem);
    align-items: stretch;
}

.zl-about-rebuild-story,
.zl-about-rebuild-map article {
    border: 1px solid rgba(212, 175, 55, .26);
    background: rgba(255, 255, 255, .72);
    box-shadow: 0 .9rem 2rem rgba(42, 59, 36, .06);
}

.zl-about-rebuild-story {
    display: flex;
    min-height: 100%;
    flex-direction: column;
    justify-content: space-between;
    gap: 1.15rem;
    border-radius: .9rem;
    padding: clamp(1.25rem, 3vw, 2rem);
}

.zl-about-rebuild-label {
    display: inline-flex;
    width: fit-content;
    border-radius: 999px;
    background: rgba(42, 59, 36, .08);
    color: var(--zl-green);
    padding: .32rem .7rem;
    font-size: .72rem;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
}

.zl-about-rebuild-story p {
    margin: 0;
    color: rgba(74, 55, 40, .84);
    font-size: clamp(1rem, 1.5vw, 1.08rem);
    line-height: 1.7;
}

.zl-about-rebuild-line {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, var(--zl-gold), rgba(212, 175, 55, 0));
}

.zl-about-rebuild-map {
    display: grid;
    gap: .85rem;
}

.zl-about-rebuild-map article {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 1rem;
    align-items: start;
    border-radius: .9rem;
    padding: clamp(1rem, 2vw, 1.25rem);
}

.zl-about-rebuild-map article span {
    display: inline-grid;
    width: 2.45rem;
    height: 2.45rem;
    place-items: center;
    border: 1px solid rgba(212, 175, 55, .35);
    border-radius: 999px;
    background: rgba(253, 251, 247, .9);
    color: var(--zl-gold-dark);
    font-size: .76rem;
    font-weight: 900;
}

.zl-about-rebuild-map strong {
    display: block;
    color: var(--zl-green);
    font-size: 1rem;
    line-height: 1.25;
}

.zl-about-rebuild-map p {
    margin: .22rem 0 0;
    color: rgba(74, 55, 40, .78);
    line-height: 1.5;
}

#o-nas.zl-about-page {
    width: min(1120px, calc(100vw - 2rem));
    min-height: calc(100vh - 8.2rem);
    margin: 0 0 0 calc((100% - min(1120px, calc(100vw - 2rem))) / 2);
    border: 1px solid rgba(212, 175, 55, .22);
    border-radius: 1.05rem;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(253, 251, 247, .9) 58%, rgba(243, 229, 171, .22)),
        #fff;
    box-shadow: 0 1.4rem 3.8rem rgba(42, 59, 36, .09);
}

#o-nas.zl-about-page::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 18%, rgba(212, 175, 55, .14), transparent 24rem),
        radial-gradient(circle at 88% 16%, rgba(42, 59, 36, .08), transparent 20rem);
    pointer-events: none;
}

#o-nas.zl-about-page > div {
    position: relative;
    z-index: 1;
    width: min(100%, 1040px);
    margin: 0 auto;
    padding: clamp(2rem, 5vw, 4.4rem) clamp(1.1rem, 4vw, 3rem);
}

#o-nas.zl-about-page > div > div {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(18rem, .95fr);
    gap: clamp(1.5rem, 5vw, 4.25rem);
    align-items: center;
}

#o-nas.zl-about-page .app-panel-header {
    max-width: 36rem;
    margin-bottom: 1.45rem;
}

#o-nas.zl-about-page .app-panel-title {
    max-width: 10.8em;
    font-size: clamp(2.15rem, 5vw, 4.05rem);
    line-height: .98;
}

#o-nas.zl-about-page .app-panel-lead {
    max-width: 42rem;
    color: rgba(74, 55, 40, .76);
    font-size: clamp(.98rem, 1.5vw, 1.08rem);
    line-height: 1.72;
}

#o-nas.zl-about-page .text-base {
    max-width: 42rem;
    margin-bottom: 1.65rem;
    color: rgba(74, 55, 40, .86);
    font-size: clamp(1rem, 1.7vw, 1.18rem);
    line-height: 1.72;
}

#o-nas.zl-about-page ul {
    display: grid;
    gap: .75rem;
    margin: 0;
}

#o-nas.zl-about-page ul > :not([hidden]) ~ :not([hidden]) {
    margin-top: 0;
}

#o-nas.zl-about-page li {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: .8rem;
    align-items: start;
    border: 1px solid rgba(212, 175, 55, .22);
    border-radius: .85rem;
    background: rgba(255, 255, 255, .66);
    padding: .85rem .95rem;
}

#o-nas.zl-about-page li svg {
    width: 1.05rem;
    height: 1.05rem;
    margin-top: .2rem;
    color: var(--zl-gold-dark);
}

#o-nas.zl-about-page li span {
    margin-left: 0;
    color: rgba(74, 55, 40, .8);
    line-height: 1.48;
}

#o-nas.zl-about-page li strong {
    color: var(--zl-green);
}

#o-nas.zl-about-page > div > div > div:last-child {
    min-height: auto;
    border: 1px solid rgba(212, 175, 55, .28);
    border-radius: 1.05rem;
    background:
        linear-gradient(180deg, rgba(253, 251, 247, .92), rgba(255, 255, 255, .74)),
        radial-gradient(var(--zl-gold) 1px, transparent 1px);
    background-size: auto, 18px 18px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .75), 0 1rem 2.5rem rgba(42, 59, 36, .08);
    padding: clamp(1.2rem, 3vw, 2rem);
}

#o-nas.zl-about-page > div > div > div:last-child::before {
    content: "atlas";
    position: absolute;
    top: 1rem;
    left: 1rem;
    border-radius: 999px;
    background: rgba(42, 59, 36, .08);
    color: var(--zl-green);
    padding: .28rem .62rem;
    font-size: .72rem;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
}

#o-nas.zl-about-page > div > div > div:last-child .absolute {
    display: none;
}

#o-nas.zl-about-page > div > div > div:last-child .text-6xl {
    display: none;
}

#o-nas.zl-about-page h4 {
    margin: 1.65rem 0 .55rem;
    color: var(--zl-green);
    font-size: clamp(1.45rem, 2.4vw, 2rem);
    line-height: 1.05;
}

#o-nas.zl-about-page h4::before {
    content: "";
    display: block;
    width: 3.4rem;
    height: 3.4rem;
    margin: 0 auto 1rem;
    border: 1px solid rgba(212, 175, 55, .4);
    border-radius: 999px;
    background:
        radial-gradient(circle at 50% 50%, rgba(212, 175, 55, .18), transparent 52%),
        linear-gradient(135deg, rgba(42, 59, 36, .12), rgba(255, 255, 255, .85));
}

#o-nas.zl-about-page h4 + p {
    max-width: 22rem;
    color: rgba(74, 55, 40, .78);
    font-size: .98rem;
    line-height: 1.58;
}

.zl-info-card-list {
    display: grid;
    gap: .85rem;
}

.zl-info-card {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: .2rem .75rem;
    border: 1px solid rgba(212, 175, 55, .32);
    border-radius: 1rem;
    background: rgba(255, 255, 255, .92);
    padding: .9rem 1rem;
    color: inherit;
    text-decoration: none;
    box-shadow: 0 .75rem 1.7rem rgba(42, 59, 36, .06);
}

.zl-info-card:hover,
.zl-info-card:focus-visible {
    border-color: rgba(212, 175, 55, .62);
    outline: none;
    box-shadow: 0 .95rem 2rem rgba(42, 59, 36, .1);
}

.zl-info-card > span {
    grid-row: span 3;
    display: inline-grid;
    width: 2.15rem;
    height: 2.15rem;
    place-items: center;
    border-radius: 999px;
    background: rgba(212, 175, 55, .15);
    color: var(--zl-gold-dark);
    font-size: 1.05rem;
}

.zl-info-card strong {
    color: var(--zl-green);
    font-family: "Playfair Display", serif;
    font-size: 1.15rem;
    line-height: 1.15;
}

.zl-info-card small {
    color: rgba(74, 55, 40, .75);
    font-size: .95rem;
    line-height: 1.45;
}

.zl-info-card em {
    color: var(--zl-gold-dark);
    font-size: .83rem;
    font-style: normal;
    font-weight: 900;
    text-transform: uppercase;
}

.zl-shipping-list {
    display: grid;
    gap: .75rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.zl-shipping-list li {
    display: flex;
    gap: .7rem;
    align-items: flex-start;
    border: 1px solid rgba(212, 175, 55, .28);
    border-radius: .95rem;
    background: rgba(255, 255, 255, .86);
    padding: .85rem .95rem;
    color: rgba(74, 55, 40, .84);
    line-height: 1.45;
}

.zl-shipping-list .zl-benefit-dot {
    flex: 0 0 auto;
    margin-top: .08rem;
}

.zl-info-note {
    margin: 1rem 0 0;
    border-radius: .95rem;
    background: rgba(243, 229, 171, .42);
    padding: .75rem .9rem;
    color: var(--zl-gold-dark);
    font-size: .9rem;
    font-weight: 800;
    line-height: 1.45;
}

.zl-product-info-body {
    display: grid;
    grid-template-columns: minmax(14rem, 20rem) minmax(0, 1fr);
    gap: 1rem;
    align-items: start;
}

.zl-product-info-drawer .zl-layer-modal-panel {
    top: 50%;
    right: auto;
    bottom: auto;
    left: 50%;
    width: min(60rem, calc(100vw - 2rem));
    max-height: min(46rem, calc(100vh - 2rem));
    border: 1px solid rgba(212, 175, 55, .38);
    border-radius: 1.1rem;
    box-shadow: 0 1.4rem 3.8rem rgba(42, 59, 36, .24);
    transform: translate(-50%, -46%) scale(.98);
    overflow: hidden;
}

.zl-product-info-drawer.is-open .zl-layer-modal-panel {
    transform: translate(-50%, -50%) scale(1);
}

.zl-product-info-media {
    display: grid;
    width: 100%;
    aspect-ratio: 1 / 1;
    justify-self: center;
    min-height: 0;
    max-height: 22rem;
    place-items: center;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, .28);
    border-radius: 1.1rem;
    background:
        radial-gradient(circle at 50% 36%, rgba(243, 229, 171, .56), transparent 45%),
        #fff;
    color: var(--zl-gold-dark);
    font-size: clamp(4.5rem, 22vw, 8rem);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .65);
}

.zl-product-info-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.zl-product-info-placeholder {
    display: inline-grid;
    width: 4rem;
    height: 4rem;
    place-items: center;
    border: 1px solid rgba(212, 175, 55, .24);
    border-radius: 999px;
    background: rgba(255, 255, 255, .62);
    color: rgba(170, 140, 44, .58);
    font-size: 1.4rem;
}

.zl-product-info-description[hidden] {
    display: none;
}

.zl-product-info-description {
    display: grid;
    gap: .75rem;
}

.zl-product-info-content {
    display: grid;
    gap: .9rem;
    min-width: 0;
}

.zl-product-info-description,
.zl-product-info-questions {
    border: 1px solid rgba(212, 175, 55, .28);
    border-radius: 1rem;
    background: rgba(255, 255, 255, .84);
    padding: .95rem 1rem;
    color: rgba(74, 55, 40, .82);
    line-height: 1.6;
}

.zl-product-info-description p {
    margin: 0;
}

.zl-product-info-questions[hidden] {
    display: none;
}

.zl-product-info-questions {
    padding: 0;
    overflow: hidden;
}

.zl-product-info-questions summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .8rem;
    padding: .9rem 1rem;
    color: var(--zl-green);
    cursor: pointer;
    font-weight: 900;
    line-height: 1.25;
}

.zl-product-info-questions summary::after {
    content: "+";
    display: inline-grid;
    width: 1.6rem;
    height: 1.6rem;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 999px;
    background: rgba(212, 175, 55, .16);
    color: var(--zl-gold-dark);
    font-weight: 900;
}

.zl-product-info-questions[open] summary::after {
    content: "-";
}

.zl-product-info-questions ul {
    display: grid;
    gap: .55rem;
    margin: 0;
    border-top: 1px solid rgba(212, 175, 55, .22);
    padding: .85rem 1rem 1rem 1.4rem;
    color: rgba(74, 55, 40, .82);
    line-height: 1.5;
}

.zl-product-info-questions li::marker {
    color: var(--zl-gold-dark);
}

.zl-product-info-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border-top: 1px solid rgba(212, 175, 55, .24);
    border-bottom: 1px solid rgba(212, 175, 55, .24);
    padding: .85rem 0;
}

.zl-product-info-price span {
    color: rgba(74, 55, 40, .68);
    font-size: .82rem;
    font-weight: 900;
    text-transform: uppercase;
}

.zl-product-info-price strong {
    color: var(--zl-gold-dark);
    font-family: "Playfair Display", serif;
    font-size: 1.65rem;
    line-height: 1;
}

.zl-product-info-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .65rem;
    align-items: center;
    justify-content: flex-end;
}

.zl-product-info-primary,
.zl-product-info-guide {
    width: auto;
}

.zl-product-info-guide-missing {
    margin: 0;
    border-radius: .8rem;
    background: rgba(243, 229, 171, .32);
    padding: .7rem .85rem;
    color: rgba(74, 55, 40, .72);
    font-size: .9rem;
    font-weight: 700;
    line-height: 1.45;
}

.zl-product-info-promo {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: .7rem;
    align-items: center;
    border: 1px solid rgba(212, 175, 55, .32);
    border-radius: .85rem;
    background: rgba(243, 229, 171, .18);
    padding: .65rem .75rem;
}

.zl-product-info-promo[hidden] {
    display: none;
}

.zl-product-info-promo-mark {
    width: 2.05rem;
    height: 2.05rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--zl-gold);
    color: #fff;
    font-size: .72rem;
    font-weight: 900;
    line-height: 1;
    text-align: center;
}

.zl-product-info-promo strong {
    display: block;
    margin-bottom: .12rem;
    color: var(--zl-green);
    font-size: .88rem;
    font-weight: 900;
}

.zl-product-info-promo p {
    margin: 0;
    color: var(--zl-brown);
    font-size: .82rem;
    line-height: 1.32;
}

.zl-product-info-promo button {
    border: 0;
    background: transparent;
    padding: 0;
    color: var(--zl-gold-dark);
    margin-top: .22rem;
    font-size: .78rem;
    font-weight: 900;
    text-decoration: underline;
    text-underline-offset: 3px;
    cursor: pointer;
}

.zl-promo-body {
    display: grid;
    gap: 1rem;
}

.zl-promo-mark {
    width: 5rem;
    height: 5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--zl-gold);
    color: #fff;
    font-family: "Source Sans Pro", sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0;
    text-align: center;
    box-shadow: 0 1rem 2rem rgba(170, 140, 44, .24);
}

.zl-promo-body p,
.zl-promo-body li {
    color: var(--zl-brown);
    line-height: 1.55;
}

.zl-promo-body ul {
    margin: 0;
    padding-left: 1.2rem;
}

.zl-promo-body li + li {
    margin-top: .55rem;
}

.zl-promo-example {
    border-left: 3px solid var(--zl-gold);
    border-radius: .75rem;
    background: rgba(243, 229, 171, .28);
    padding: 1rem;
}

.zl-promo-example strong {
    display: block;
    margin-bottom: .35rem;
    color: var(--zl-green);
}

.zl-promo-note {
    border-radius: .75rem;
    background: rgba(42, 59, 36, .06);
    padding: .9rem 1rem;
    font-size: .92rem;
    font-weight: 700;
}

.zl-cookie-notice[hidden] {
    display: none;
}

.zl-cookie-notice {
    position: fixed;
    right: .75rem;
    bottom: calc(5.4rem + env(safe-area-inset-bottom));
    left: .75rem;
    z-index: 90;
    display: grid;
    gap: .85rem;
    border: 1px solid rgba(212, 175, 55, .42);
    border-radius: 1rem;
    background: rgba(253, 251, 247, .98);
    padding: .9rem;
    box-shadow: 0 1rem 2.4rem rgba(42, 59, 36, .18);
}

.zl-cookie-notice strong {
    display: block;
    color: var(--zl-green);
    font-family: "Playfair Display", serif;
    font-size: 1.12rem;
}

.zl-cookie-notice p {
    margin: .25rem 0 0;
    color: rgba(74, 55, 40, .78);
    font-size: .92rem;
    line-height: 1.45;
}

.zl-cookie-notice-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .55rem;
}

.zl-cookie-notice button,
.zl-cookie-notice a {
    display: inline-flex;
    min-height: 2.35rem;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 0 1rem;
    font-size: .88rem;
    font-weight: 900;
    text-decoration: none;
}

.zl-cookie-notice button {
    border: 1px solid var(--zl-gold);
    background: var(--zl-gold);
    color: #fff;
    cursor: pointer;
}

.zl-cookie-notice a {
    border: 1px solid rgba(212, 175, 55, .4);
    background: #fff;
    color: var(--zl-gold-dark);
}

.zl-legal-modal[hidden] {
    display: none;
}

body.zl-legal-modal-open {
    overflow: hidden;
}

.zl-legal-modal {
    position: fixed;
    inset: 0;
    z-index: 130;
}

.zl-legal-modal-backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(42, 59, 36, .5);
    cursor: default;
    opacity: 0;
    transition: opacity .18s ease;
}

.zl-legal-modal-panel {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    display: flex;
    width: min(44rem, calc(100vw - .75rem));
    max-width: 100%;
    flex-direction: column;
    border-left: 1px solid rgba(212, 175, 55, .38);
    background: var(--zl-cream);
    box-shadow: -1.4rem 0 3rem rgba(42, 59, 36, .18);
    transform: translateX(100%);
    transition: transform .18s ease;
}

.zl-legal-modal.is-open .zl-legal-modal-backdrop {
    opacity: 1;
}

.zl-legal-modal.is-open .zl-legal-modal-panel {
    transform: translateX(0);
}

.zl-legal-modal-header,
.zl-legal-modal-footer {
    flex: 0 0 auto;
    background: rgba(253, 251, 247, .98);
}

.zl-legal-modal-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    border-bottom: 1px solid rgba(212, 175, 55, .28);
    padding: 1.15rem 1.15rem .95rem;
}

.zl-legal-modal-header p {
    max-width: 44ch;
    margin: .45rem 0 0;
    color: rgba(74, 55, 40, .78);
    line-height: 1.5;
}

.zl-legal-modal-title {
    margin: .2rem 0 0;
    color: var(--zl-green);
    font-family: "Playfair Display", serif;
    font-size: clamp(1.8rem, 8vw, 2.6rem);
    font-weight: 600;
    line-height: 1;
}

.zl-legal-modal-close {
    display: inline-grid;
    width: 2.65rem;
    height: 2.65rem;
    place-items: center;
    border: 1px solid rgba(212, 175, 55, .35);
    border-radius: 999px;
    background: #fff;
    color: var(--zl-brown);
    cursor: pointer;
    font-size: 1.65rem;
    line-height: 1;
}

.zl-legal-modal-body {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
    flex: 1 1 auto;
    overflow-y: auto;
    padding: 1rem;
}

.zl-legal-modal-footer {
    display: flex;
    flex-wrap: wrap;
    gap: .65rem;
    justify-content: flex-end;
    border-top: 1px solid rgba(212, 175, 55, .28);
    padding: .95rem 1rem calc(.95rem + env(safe-area-inset-bottom));
}

.zl-legal-modal-button {
    width: auto;
}

.zl-legal-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
}

.zl-legal-documents {
    display: grid;
    gap: .75rem;
}

.legal-document {
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, .32);
    border-radius: 1rem;
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 .75rem 1.7rem rgba(42, 59, 36, .06);
}

.legal-document summary {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: .7rem;
    align-items: center;
    padding: .9rem 1rem;
    color: var(--zl-green);
    cursor: pointer;
    list-style: none;
}

.legal-document summary::-webkit-details-marker {
    display: none;
}

.legal-document summary span {
    border-radius: 999px;
    background: rgba(212, 175, 55, .12);
    color: var(--zl-gold-dark);
    padding: .25rem .55rem;
    font-size: .74rem;
    font-weight: 900;
    text-transform: uppercase;
}

.legal-document summary strong {
    min-width: 0;
    font-family: "Playfair Display", serif;
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.15;
}

.legal-document-body {
    border-top: 1px solid rgba(212, 175, 55, .22);
    padding: .95rem 1rem 1rem;
}

.legal-document-body p {
    margin: 0 0 .8rem;
    color: rgba(74, 55, 40, .78);
    line-height: 1.55;
}

.legal-document-body ul {
    display: grid;
    gap: .55rem;
    margin: 0;
    padding-left: 1.1rem;
    color: var(--zl-brown);
    line-height: 1.5;
}

.legal-document-note {
    margin-top: .9rem !important;
    border-radius: .8rem;
    background: rgba(243, 229, 171, .42);
    padding: .7rem .85rem;
    color: var(--zl-gold-dark) !important;
    font-size: .9rem;
    font-weight: 800;
}

.legal-contact-card {
    display: grid;
    gap: .35rem;
    align-self: start;
    border: 1px solid rgba(212, 175, 55, .36);
    border-radius: 1rem;
    background: linear-gradient(145deg, #fff, rgba(243, 229, 171, .35));
    padding: 1rem;
    box-shadow: 0 .85rem 2rem rgba(42, 59, 36, .08);
}

.legal-contact-card strong {
    color: var(--zl-green);
    font-family: "Playfair Display", serif;
    font-size: 1.32rem;
    line-height: 1.15;
}

.legal-contact-card span,
.legal-contact-card a {
    color: rgba(74, 55, 40, .82);
    font-weight: 700;
}

.legal-contact-card a {
    color: var(--zl-gold-dark);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.legal-contact-card-bottom {
    margin-top: .2rem;
    border-top-width: 2px;
}

@media (prefers-reduced-motion: reduce) {
    .zl-card {
        transition: box-shadow .01ms linear, border-color .01ms linear;
    }

    .zl-card:hover {
        transform: none;
    }

    .zl-cart-drawer-backdrop,
    .zl-cart-drawer-panel,
    .zl-layer-modal-backdrop,
    .zl-layer-modal-panel,
    .zl-legal-modal-backdrop,
    .zl-legal-modal-panel {
        transition: none;
    }

    .app-panel:target,
    body.has-shell-js .app-panel.is-active {
        animation: none;
    }
}

@media (min-width: 768px) {
    .zl-mobile-bottom-bar,
    .zl-mobile-cta-spacer,
    .zl-app-shell-spacer {
        display: none;
    }

    .app-shell {
        max-width: 900px;
        padding: 6.15rem 0 2rem;
    }

    .zl-checkout-shell {
        padding-top: 7.25rem;
        padding-bottom: 3rem;
    }

    .zl-app-shell-nav {
        top: 0;
        bottom: auto;
        right: auto;
        left: 50%;
        width: min(900px, calc(100vw - 1.5rem));
        transform: translateX(-50%);
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        align-items: center;
        gap: .42rem;
        border: 1px solid rgba(212, 175, 55, .36);
        border-radius: 0 0 1.1rem 1.1rem;
        padding: .62rem .72rem;
        box-shadow: 0 12px 32px rgba(42, 59, 36, .13);
    }

    .zl-cart-confirm {
        top: 5.4rem;
        right: calc((100vw - min(100vw, 900px)) / 2 + 1rem);
        bottom: auto;
    }

    .zl-layer-modal-panel {
        width: min(100vw, 38rem);
    }

    .zl-product-info-drawer .zl-layer-modal-panel {
        width: min(60rem, calc(100vw - 2rem));
    }

    .zl-legal-modal-panel {
        width: min(100vw, 42rem);
    }

    .zl-cookie-notice {
        right: 1rem;
        bottom: 1rem;
        left: auto;
        width: min(32rem, calc(100vw - 2rem));
    }
}

@media (max-width: 767px) {
    .app-shell {
        padding: 0;
    }

    .zl-app-shell-body .zl-app-shell-spacer {
        display: none;
    }

    .zl-app-shell-body .app-panel:not(#domu) {
        padding-bottom: calc(6.15rem + env(safe-area-inset-bottom));
    }

    #domu.app-panel {
        min-height: calc(100vh - 5.85rem);
        min-height: calc(100svh - 5.85rem);
        align-items: center;
    }

    .zl-home-hero {
        min-height: calc(100vh - 5.85rem);
        min-height: calc(100svh - 5.85rem);
        place-items: center;
        padding-top: clamp(.75rem, 2svh, 1.25rem);
        padding-bottom: calc(.95rem + env(safe-area-inset-bottom));
    }

    .zl-hero-orb {
        width: min(84vw, 22rem);
        margin-top: .05rem;
        margin-bottom: .35rem;
    }

    .zl-home-hero .app-panel-title {
        font-size: clamp(2.85rem, 12.5vw, 3.2rem);
        line-height: .98;
    }

    .zl-home-hero .app-panel-lead {
        font-size: clamp(.95rem, 3.7vw, 1.04rem);
        line-height: 1.55;
    }

    .zl-product-grid {
        gap: 1rem;
    }

    .zl-product-card {
        padding: 1rem;
    }

    .zl-product-card h3 {
        font-size: 1rem;
        line-height: 1.18;
    }

    .zl-product-info-drawer .zl-layer-modal-panel {
        width: calc(100vw - .75rem);
        max-height: calc(100svh - .75rem);
        border-radius: .9rem;
    }

    .zl-product-info-body {
        grid-template-columns: 1fr;
        gap: .85rem;
    }

    .zl-product-info-media {
        width: min(100%, 14rem);
        max-height: 14rem;
    }

    .zl-product-info-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .zl-product-info-actions form,
    .zl-product-info-primary,
    .zl-product-info-guide {
        width: 100%;
    }

    .zl-cart-drawer-panel {
        width: min(100vw, 28rem);
    }

    .zl-cart-drawer-item {
        grid-template-columns: 4rem minmax(0, 1fr);
    }

    .zl-cart-drawer-media {
        width: 4rem;
        height: 4rem;
    }

    .zl-cart-drawer-line {
        grid-column: 2;
        align-items: flex-start;
        flex-direction: row;
        justify-content: space-between;
    }

    .zl-card-media {
        margin-bottom: .9rem;
    }

    .zl-desktop-scroll-top {
        display: none;
    }

    #o-nas.zl-about-rebuild {
        width: 100%;
        min-height: auto;
        margin: 0;
        border-right: 0;
        border-left: 0;
        border-radius: 0;
        box-shadow: none;
    }

    .zl-about-rebuild-shell {
        padding: 2rem 1rem calc(2.5rem + env(safe-area-inset-bottom));
    }

    .zl-about-rebuild-head,
    .zl-about-rebuild-grid {
        grid-template-columns: 1fr;
    }

    .zl-about-rebuild-head {
        gap: .95rem;
        align-items: start;
    }

    .zl-about-rebuild-head h2 {
        font-size: clamp(2.35rem, 12vw, 3.25rem);
    }

    .zl-about-rebuild-story,
    .zl-about-rebuild-map article {
        padding: 1rem;
    }

    .zl-about-rebuild-map article {
        gap: .8rem;
    }

    #o-nas.zl-about-page {
        width: 100%;
        min-height: auto;
        margin: 0;
        border-right: 0;
        border-left: 0;
        border-radius: 0;
        box-shadow: none;
    }

    #o-nas.zl-about-page > div {
        padding: 2rem 1rem calc(2.5rem + env(safe-area-inset-bottom));
    }

    #o-nas.zl-about-page > div > div {
        grid-template-columns: 1fr;
        gap: 1.4rem;
    }

    #o-nas.zl-about-page .app-panel-title {
        font-size: clamp(2.35rem, 12vw, 3.1rem);
    }

    #o-nas.zl-about-page li {
        padding: .82rem .85rem;
    }

    #o-nas.zl-about-page > div > div > div:last-child {
        padding: 1.2rem;
    }
}

@media (max-width: 370px) {
    .zl-hero-orb {
        width: min(84vw, 20rem);
    }

    .zl-home-hero .app-panel-title {
        font-size: 2.65rem;
    }
}

/* v089: O nas must keep the same 900px app format as the other panels. */
#o-nas.zl-about-rebuild {
    position: relative;
    isolation: isolate;
    width: 100%;
    min-height: calc(100vh - 8.2rem);
    margin: 0;
    overflow: hidden;
    border: 0;
    border-radius: 0;
    background: #fff;
    box-shadow: none;
}

#o-nas.zl-about-rebuild::before {
    background:
        linear-gradient(180deg, rgba(253, 251, 247, .86), rgba(255, 255, 255, 0) 34%),
        radial-gradient(circle at 88% 10%, rgba(212, 175, 55, .12), transparent 15rem);
}

#o-nas.zl-about-rebuild .zl-about-rebuild-shell {
    width: 100%;
    max-width: 900px;
    padding: clamp(2.25rem, 5vw, 3.6rem) clamp(1rem, 3.5vw, 2.25rem);
}

#o-nas.zl-about-rebuild .zl-about-rebuild-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: .95rem;
    max-width: 44rem;
    border-bottom: 0;
    padding-bottom: 0;
}

#o-nas.zl-about-rebuild .zl-about-rebuild-head h2 {
    max-width: 11em;
    font-size: clamp(2.15rem, 5vw, 3.45rem);
    line-height: 1;
}

#o-nas.zl-about-rebuild .zl-about-rebuild-head p {
    max-width: 42rem;
    color: rgba(74, 55, 40, .78);
    font-size: clamp(.98rem, 1.5vw, 1.08rem);
    line-height: 1.68;
}

#o-nas.zl-about-rebuild .zl-about-rebuild-grid {
    grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
    gap: 1rem;
    margin-top: .45rem;
}

#o-nas.zl-about-rebuild .zl-about-rebuild-story {
    border: 0;
    border-radius: .65rem;
    background: var(--zl-green);
    box-shadow: none;
    padding: clamp(1.15rem, 2.5vw, 1.55rem);
}

#o-nas.zl-about-rebuild .zl-about-rebuild-story .zl-about-rebuild-label {
    background: rgba(255, 255, 255, .12);
    color: rgba(255, 255, 255, .9);
}

#o-nas.zl-about-rebuild .zl-about-rebuild-story p {
    color: rgba(255, 255, 255, .86);
    font-size: .98rem;
    line-height: 1.62;
}

#o-nas.zl-about-rebuild .zl-about-rebuild-line {
    background: linear-gradient(90deg, rgba(212, 175, 55, .78), rgba(212, 175, 55, 0));
}

#o-nas.zl-about-rebuild .zl-about-rebuild-map {
    gap: .65rem;
}

#o-nas.zl-about-rebuild .zl-about-rebuild-map article {
    border: 1px solid rgba(212, 175, 55, .24);
    border-radius: .65rem;
    background: rgba(253, 251, 247, .82);
    box-shadow: none;
    padding: .9rem 1rem;
}

#o-nas.zl-about-rebuild .zl-about-rebuild-map article span {
    width: 2.05rem;
    height: 2.05rem;
    background: #fff;
}

#o-nas.zl-about-rebuild .zl-about-rebuild-map strong {
    font-size: .95rem;
}

#o-nas.zl-about-rebuild .zl-about-rebuild-map p {
    color: rgba(74, 55, 40, .78);
    font-size: .92rem;
}

@media (max-width: 767px) {
    #o-nas.zl-about-rebuild {
        min-height: auto;
    }

    #o-nas.zl-about-rebuild .zl-about-rebuild-shell {
        padding: 2rem 1rem calc(2.6rem + env(safe-area-inset-bottom));
    }

    #o-nas.zl-about-rebuild .zl-about-rebuild-head h2 {
        font-size: clamp(2.15rem, 10vw, 2.95rem);
    }

    #o-nas.zl-about-rebuild .zl-about-rebuild-grid {
        grid-template-columns: 1fr;
        gap: .85rem;
    }
}

/* ================================================================
   REDESIGN v090 — jednotny system karet napric sekcemi
   Pruvodci (produkty), Tradice a O nas sdili stejnou kartu,
   stejny zlaty ciselny cip, stejne stiny a hover.
   ================================================================ */

/* --- Pruvodci: auto-fit mrizka pro libovolny pocet fermentu --- */
.zlr-grid-auto {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(258px, 1fr));
    gap: 1.4rem;
    margin-top: 2.6rem;
}

/* Sjednoceni produktovych karet: zlaty prouzek misto ruznych akcentu */
.zlr-section-products .zl-card {
    border-color: rgba(212, 175, 55, .28);
    border-radius: 16px;
}
.zlr-section-products .zl-card-bar {
    background: var(--zl-gold);
    height: 4px;
}
.zlr-section-products .zl-card-kicker {
    color: var(--zl-gold-dark);
}
.zlr-section-products .zl-card:hover {
    border-color: rgba(212, 175, 55, .55);
}

/* --- Sdilena ciselna karta (Tradice + O nas) --- */
.zlr-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.4rem;
}
@media (max-width: 820px) {
    .zlr-grid-3 { grid-template-columns: 1fr; }
}

.zlr-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
    border: 1px solid rgba(212, 175, 55, .28);
    border-radius: 16px;
    padding: 1.7rem;
    box-shadow: 0 .9rem 2.2rem rgba(42, 59, 36, .07);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.zlr-card:hover {
    transform: translateY(-.35rem);
    box-shadow: 0 1.4rem 3rem rgba(42, 59, 36, .14);
    border-color: rgba(212, 175, 55, .55);
}
.zlr-chip {
    display: inline-grid;
    place-items: center;
    width: 2.7rem;
    height: 2.7rem;
    border-radius: 999px;
    background: linear-gradient(145deg, var(--zl-gold-light, #F3E5AB), var(--zl-gold));
    color: var(--zl-green);
    font-family: "Playfair Display", serif;
    font-weight: 600;
    font-size: 1.15rem;
    box-shadow: 0 .4rem .9rem rgba(170, 140, 44, .25);
    margin-bottom: 1.15rem;
}
.zlr-card h3 {
    margin: 0 0 .55rem;
    color: var(--zl-green);
    font-family: "Playfair Display", serif;
    font-size: 1.35rem;
    font-weight: 600;
    line-height: 1.2;
}
.zlr-card p {
    margin: 0;
    color: rgba(74, 55, 40, .82);
    font-size: .97rem;
    line-height: 1.62;
}

/* --- Tradice: teckovana spojnice mezi kroky --- */
.zlr-steps { position: relative; }
.zlr-steps::before {
    content: "";
    position: absolute;
    top: 3rem;
    left: 16%;
    right: 16%;
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--zl-gold) 0 8px, transparent 8px 16px);
    opacity: .55;
    z-index: 0;
}
@media (max-width: 820px) { .zlr-steps::before { display: none; } }
.zlr-steps > * { position: relative; z-index: 1; }

/* --- O nas: lead + citat --- */
.zlr-about-lead {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 2.6rem;
}
@media (max-width: 820px) { .zlr-about-lead { grid-template-columns: 1fr; } }
.zlr-about-badge {
    display: inline-block;
    margin-bottom: 1rem;
    border-radius: 999px;
    background: rgba(42, 59, 36, .07);
    color: var(--zl-green);
    padding: .35rem .8rem;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.zlr-about-lead h3 {
    margin: 0;
    color: var(--zl-green);
    font-family: "Playfair Display", serif;
    font-size: clamp(1.8rem, 3.4vw, 2.7rem);
    font-weight: 600;
    line-height: 1.06;
}
.zlr-about-lead > div > p {
    margin-top: 1rem;
    color: rgba(74, 55, 40, .82);
    font-size: 1.05rem;
    line-height: 1.7;
}
.zlr-quote {
    border: 1px solid rgba(212, 175, 55, .28);
    border-radius: 16px;
    background: linear-gradient(145deg, #fff, rgba(243, 229, 171, .35));
    padding: 2rem;
    box-shadow: 0 .9rem 2.2rem rgba(42, 59, 36, .07);
}
.zlr-quote .mark {
    font-family: "Playfair Display", serif;
    font-size: 3rem;
    color: var(--zl-gold);
    line-height: .5;
}
.zlr-quote p {
    margin: .4rem 0 0;
    color: var(--zl-green);
    font-family: "Playfair Display", serif;
    font-style: italic;
    font-size: 1.22rem;
    line-height: 1.5;
}

/* --- O nas: zlaty rozcestnikovy CTA pruh na Jeeerky --- */
.zlr-cta-band {
    position: relative;
    overflow: hidden;
    margin: 2.6rem 0 1rem;
    border-radius: 20px;
    background: var(--zl-green);
    padding: 2.8rem 1.5rem;
    text-align: center;
    color: #fff;
}
.zlr-cta-band::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 85% 18%, rgba(212, 175, 55, .3), transparent 42%);
    pointer-events: none;
}
.zlr-cta-band h3 {
    position: relative;
    margin: 0;
    color: #fff;
    font-family: "Playfair Display", serif;
    font-size: clamp(1.55rem, 3vw, 2.15rem);
    font-weight: 600;
}
.zlr-cta-band p {
    position: relative;
    max-width: 42ch;
    margin: .7rem auto 1.6rem;
    color: rgba(255, 255, 255, .82);
    line-height: 1.6;
}

/* --- Sdilena tlacitka redesignu --- */
.zlr-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .4rem;
    border: 1px solid transparent;
    border-radius: 999px;
    padding: .72rem 1.5rem;
    font-weight: 800;
    font-size: .95rem;
    line-height: 1.1;
    text-decoration: none;
    cursor: pointer;
    transition: background .18s ease, color .18s ease, transform .18s ease;
}
.zlr-btn-gold {
    background: var(--zl-gold);
    color: #fff;
    box-shadow: 0 .7rem 1.5rem rgba(170, 140, 44, .24);
}
.zlr-btn-gold:hover, .zlr-btn-gold:focus-visible {
    background: var(--zl-gold-dark);
    transform: translateY(-1px);
    outline: none;
}
.zlr-btn-ghost {
    border-color: rgba(212, 175, 55, .55);
    background: rgba(255, 255, 255, .6);
    color: var(--zl-gold-dark);
}
.zlr-btn-ghost:hover, .zlr-btn-ghost:focus-visible {
    background: rgba(243, 229, 171, .4);
    outline: none;
}

/* ================================================================
   REDESIGN v091 — jednostrankovy web s kotvami (misto app-shell panelu)
   ================================================================ */

/* Vsechny sekce jsou videt pod sebou (rusi se prepinani panelu).
   Legacy skryta sekce (#o-nas-legacy) zustava skryta. */
html { scroll-behavior: smooth; }
body.has-shell-js .app-panel:not([hidden]):not(.hidden),
.app-panel:not([hidden]):not(.hidden) { display: block !important; }
body.has-shell-js #domu.app-panel,
#domu.app-panel { display: flex !important; }
.app-panel { scroll-margin-top: 6rem; }

/* Misto na fixni horni listu */
body { padding-top: 5.2rem; }

/* Horni "pill" navigace s kotvami */
.zlr-topnav-wrap {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 60;
    display: flex;
    justify-content: center;
    padding: .7rem 1rem;
    pointer-events: none;
}
.zlr-topnav {
    pointer-events: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: .3rem;
    width: min(920px, 100%);
    border: 1px solid rgba(212, 175, 55, .28);
    border-radius: 20px;
    background: rgba(255, 255, 255, .97);
    padding: .5rem;
    box-shadow: 0 .8rem 2rem rgba(42, 59, 36, .12);
}
.zlr-topnav a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .15rem;
    border-radius: 14px;
    padding: .6rem .4rem;
    color: var(--zl-brown);
    font-size: .74rem;
    font-weight: 800;
    line-height: 1.05;
    text-decoration: none;
    text-align: center;
}
.zlr-topnav a svg {
    width: 1.3rem;
    height: 1.3rem;
}
.zlr-topnav a:hover,
.zlr-topnav a:focus-visible,
.zlr-topnav a.is-active {
    background: rgba(243, 229, 171, .6);
    color: var(--zl-gold-dark);
    outline: none;
}

/* Stara spodni app-shell navigace se uz nepouziva */
.zl-app-shell-nav,
.zl-app-shell-spacer { display: none !important; }

/* Posun kotevnich cilu pod fixni listu i pro cookie/drawer prvky */
@media (max-width: 420px) {
    .zlr-topnav a { font-size: .68rem; }
    body { padding-top: 4.9rem; }
}

/* ================================================================
   REDESIGN v092 — sladeni s demem: jedno plynule platno + sirka 1140
   ================================================================ */

/* Kontejner sekci na stejnou sirku jako demo (1140 px) */
.zlr-container {
    width: min(1140px, calc(100vw - 2rem));
    margin: 0 auto;
}

/* Sekce nemaji vlastni pozadi ani pruhy: vse plave na jednom platne
   (krem + jemny raster z .zl-app-shell-body), presne jako v demu. */
#pruvodci.app-panel,
#tradice.app-panel,
#o-nas.app-panel {
    background: transparent !important;
    border-top: 0 !important;
}

/* Dekorativni linka nad Pruvodci uz neni potreba (delala dojem boxu) */
#pruvodci.app-panel > .absolute {
    display: none;
}

/* Vetsi vzdusnost mezi sekcemi jako v demu */
#pruvodci.app-panel,
#tradice.app-panel,
#o-nas.app-panel {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
}
