/* ═══════════════════════════════════════════════════════════
   MEZZE RESTAURANT – CSS
   Farben: #1a2e1a (Dunkelgrün) | #c9a84c (Gold)
   Fonts:  Montserrat (Headings) | Poppins (Body)
   ═══════════════════════════════════════════════════════════ */
/* Inhalt: Reset · Base · Grid · Utils · Header · Nav · Footer */

/* =============================================================
   RESET, BASE, GRID, UTILS
   ============================================================= */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: var(--ff-body);
    font-size: 16px;
    line-height: 1.8;
    color: var(--mz-text);
    background: #fff;
}
html, body { overflow-x: hidden; max-width: 100%; }
h1, h2, h3, h4, h5, h6 {
    font-family: var(--ff-heading);
    font-weight: 700;
    line-height: 1.3;
    color: var(--mz-dark);
    margin-top: 0;
}
h1 {
    font-size: clamp(36px, 5vw, 64px);
}
h2 {
    font-size: clamp(28px, 4vw, 46px);
}
h3 {
    font-size: clamp(22px, 3vw, 32px);
}
h4 {
    font-size: 22px;
}
h5 {
    font-size: 18px;
}
h6 {
    font-size: 16px;
}
p {
    margin-bottom: 16px;
}
a {
    text-decoration: none;
    transition: all .3s;
}
img {
    max-width: 100%;
    height: auto;
}
ul {
    list-style: none;
}
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}
[class*="col-"] {
    padding: 0 15px;
    width: 100%;
}
@media(min-width:768px) {
    .col-md-4 {
        flex: 0 0 33.333%;
        max-width: 33.333%;
    }
    .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}
@media(min-width:992px) {
    .col-lg-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }
    .col-lg-4 {
        flex: 0 0 33.333%;
        max-width: 33.333%;
    }
    .col-lg-5 {
        flex: 0 0 41.666%;
        max-width: 41.666%;
    }
    .col-lg-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    .col-lg-7 {
        flex: 0 0 58.333%;
        max-width: 58.333%;
    }
    .col-lg-8 {
        flex: 0 0 66.666%;
        max-width: 66.666%;
    }
}
@media(min-width:1200px) {
    .col-xl-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }
    .col-xl-4 {
        flex: 0 0 33.333%;
        max-width: 33.333%;
    }
    .col-xl-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}
.d-flex {
    display: flex !important;
}
.d-none {
    display: none !important;
}
.d-block {
    display: block !important;
}
.align-items-center {
    align-items: center !important;
}
.justify-content-center {
    justify-content: center !important;
}
.justify-content-between {
    justify-content: space-between !important;
}
.flex-wrap {
    flex-wrap: wrap !important;
}
.text-center {
    text-align: center !important;
}
.text-white {
    color: #fff !important;
}
.gap-10 {
    gap: 10px;
}
.gap-20 {
    gap: 20px;
}
.gap-30 {
    gap: 30px;
}
.mb-0 {
    margin-bottom: 0 !important;
}
.mb-10 {
    margin-bottom: 10px !important;
}
.mb-20 {
    margin-bottom: 20px !important;
}
.mb-30 {
    margin-bottom: 30px !important;
}
.mb-40 {
    margin-bottom: 40px !important;
}
.mb-50 {
    margin-bottom: 50px !important;
}
.mt-10 {
    margin-top: 10px !important;
}
.mt-20 {
    margin-top: 20px !important;
}
.mt-30 {
    margin-top: 30px !important;
}
.pt-80 {
    padding-top: 80px !important;
}
.pb-80 {
    padding-bottom: 80px !important;
}
.pt-100 {
    padding-top: 100px !important;
}
.pb-100 {
    padding-bottom: 100px !important;
}
@media(min-width:992px) {
    .d-lg-none {
        display: none !important;
    }
    .d-lg-flex {
        display: flex !important;
    }
    .d-lg-block {
        display: block !important;
    }
}
@media(max-width:991px) {
    .d-lg-show {
        display: block !important;
    }
}
/* =============================================================

HEADER & NAV
   ============================================================= */
.mz-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: rgba(26, 46, 26, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    height: 68px;
    display: flex;
    align-items: center;
    transition: all .3s;
    border-bottom: 1px solid rgba(201, 168, 76, 0.12);
}
.mz-header.scrolled {
    background: rgba(26, 46, 26, 0.99);
    height: 68px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.25);
}
.mz-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.mz-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}
.mz-logo-img {
    height: 52px;
    width: auto;
    display: block;
}
.mz-logo-img:hover {
    opacity: .85;
}
.mz-nav > ul {
    display: flex;
    gap: 32px;
    align-items: center;
    list-style: none;
}
.mz-nav > ul > li > a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 4px 0;
    position: relative;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
}
.mz-nav > ul > li > a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--mz-gold);
    transition: width .3s;
}
.mz-nav > ul > li > a.active {
    color: var(--mz-gold);
}
.mz-nav > ul > li > a:hover::after, .mz-nav > ul > li > a.active::after {
    width: 100%;
}
.mz-nav-reserve {
    background: var(--mz-gold) !important;
    color: var(--mz-dark) !important;
    padding: 9px 22px !important;
    border-radius: 30px;
    font-weight: 600 !important;
    font-size: 12px !important;
    letter-spacing: 1px !important;
}
.mz-nav-reserve::after {
    display: none !important;
}
.mz-nav-reserve:hover {
    background: var(--mz-gold-lt) !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(201, 168, 76, 0.35);
}
.mz-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    background: none;
    border: none;
}
.mz-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--mz-gold);
    transition: all .3s;
    border-radius: 2px;
}
.mz-hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.mz-hamburger.open span:nth-child(2) {
    opacity: 0;
}
.mz-hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}
body.nav-open {
    overflow: hidden;
}
@media(max-width:991px) {
    .mz-hamburger {
        display: flex;
    }
    .mz-nav {
        display: none;
        position: fixed;
        top: 68px;
        left: 0;
        width: 100%;
        background: rgba(20, 38, 20, 0.98);
        padding: 10px 0 20px;
        border-top: 1px solid rgba(201, 168, 76, 0.15);
        max-height: calc(100vh - 68px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    .mz-nav.open {
        display: block;
    }
    .mz-nav > ul {
        flex-direction: column;
        gap: 0;
    }
    .mz-nav > ul > li > a {
        padding: 13px 24px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.04);
        justify-content: space-between;
    }
    .mz-nav-reserve {
        margin: 14px 24px 0;
        display: inline-block;
        text-align: center;
    }
}
/* ═══════════════════════════════════════════════════════════

/* 16. FOOTER                                              */
/* ─────────────────────────────────────────────────────── */
.mz-footer {
    background: var(--mz-dark);
}
.mz-footer-top {
    padding: 80px 0 40px;
}
.mz-footer-logo-img {
    height: 70px;
    width: auto;
    display: block;
    margin-bottom: 16px;
}
.mz-footer-desc {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, .55);
    margin-bottom: 22px;
}
.mz-footer-social {
    display: flex;
    gap: 10px;
}
.mz-footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .5);
    font-size: 15px;
    transition: all .3s;
}
.mz-footer-social a:hover {
    border-color: var(--mz-gold);
    color: var(--mz-gold);
    background: rgba(201, 168, 76, .08);
}
.mz-footer-heading {
    font-family: var(--ff-body);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--mz-gold);
    margin-bottom: 18px;
}
.mz-footer-links {
    list-style: none;
}
.mz-footer-links li {
    margin-bottom: 9px;
}
.mz-footer-links a {
    color: rgba(255, 255, 255, .55);
    font-size: 14px;
    transition: all .3s;
}
.mz-footer-links a:hover {
    color: var(--mz-gold);
    padding-left: 5px;
}
.mz-footer-hours {
    list-style: none;
}
.mz-footer-hours li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .05);
    font-size: 13px;
    color: rgba(255, 255, 255, .6);
}
.mz-footer-hours li.closed {
    color: rgba(255, 255, 255, .25);
}
.mz-footer-contact {
    list-style: none;
}
.mz-footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 14px;
    color: rgba(255, 255, 255, .6);
    align-items: flex-start;
}
.mz-footer-contact li i {
    color: var(--mz-gold);
    font-size: 15px;
    margin-top: 3px;
    flex-shrink: 0;
}
.mz-footer-contact a {
    color: rgba(255, 255, 255, .6);
}
.mz-footer-contact a:hover {
    color: var(--mz-gold);
}
.mz-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .06);
    padding: 22px 0;
}
.mz-footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
}
.mz-footer-bottom-inner p {
    margin: 0;
    font-size: 13px;
    color: rgba(255, 255, 255, .35);
}
.mz-footer-bottom-inner ul {
    display: flex;
    gap: 20px;
    list-style: none;
}
.mz-footer-bottom-inner ul a {
    font-size: 13px;
    color: rgba(255, 255, 255, .35);
}
.mz-footer-bottom-inner ul a:hover {
    color: var(--mz-gold);
}
/* Demo Badge */
.mz-demo-badge {
    text-align: center;
    padding: 12px 0;
    font-size: 12px;
    color: rgba(255, 255, 255, .3);
    border-top: 1px solid rgba(255, 255, 255, .04);
    margin-top: 10px;
}
.mz-demo-badge a {
    color: var(--mz-gold);
    opacity: .7;
}
.mz-demo-badge a:hover {
    opacity: 1;
}
/* ─────────────────────────────────────────────────────── */

/* SCROLL ANIMATIONS                                       */
/* ─────────────────────────────────────────────────────── */
[data-reveal] {
    opacity: 0;
    transition: opacity 0.7s ease, transform 0.7s ease;
    will-change: opacity, transform;
}
[data-reveal="fade-up"] {
    transform: translateY(40px);
}
[data-reveal="fade-down"] {
    transform: translateY(-30px);
}
[data-reveal="fade-left"] {
    transform: translateX(40px);
}
[data-reveal="fade-right"] {
    transform: translateX(-40px);
}
[data-reveal="zoom"] {
    transform: scale(0.93);
}
[data-reveal="fade"] {
    transform: none;
}
[data-reveal].revealed {
    opacity: 1;
    transform: none;
}
[data-delay="100"] {
    transition-delay: 0.1s;
}
[data-delay="200"] {
    transition-delay: 0.2s;
}
[data-delay="300"] {
    transition-delay: 0.3s;
}
[data-delay="400"] {
    transition-delay: 0.4s;
}
[data-delay="500"] {
    transition-delay: 0.5s;
}
[data-delay="600"] {
    transition-delay: 0.6s;
}
@media (prefers-reduced-motion: reduce) {
    [data-reveal] {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}
/* ─────────────────────────────────────────────────────── */
/* FLYOUT NAVIGATION DROPDOWN                              */
/* ─────────────────────────────────────────────────────── */
/* L1 Panel */
.mz-dd-l1 {
    display: none;
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    transform: translateX(-50%);
    width: 180px;
    background: var(--mz-dark);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 12px;
    padding: 6px 0;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    z-index: 500;
    list-style: none;
}
.mz-dd-l1::before {
    content: '';
    position: absolute;
    top: -7px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 13px;
    height: 13px;
    background: var(--mz-dark);
    border-left: 1px solid rgba(201, 168, 76, 0.2);
    border-top: 1px solid rgba(201, 168, 76, 0.2);
}
.mz-has-dd.open .mz-dd-l1 {
    display: block;
}
.mz-has-dd.open > a .mz-dd-arrow {
    transform: rotate(180deg);
}
/* L1 Item (mit Sub) */
.mz-dd-l1-item {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 16px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
    cursor: default;
    transition: color .15s, background .15s;
    border-radius: 6px;
    margin: 2px 4px;
}
.mz-dd-l1-item::after {
    content: "›";
    opacity: 0.5;
    font-size: 14px;
}
.mz-dd-l1-item:hover {
    color: var(--mz-gold);
    background: rgba(201, 168, 76, 0.08);
}
/* L1 Item (direkt, kein Sub) */
.mz-dd-l1-direct a {
    display: block;
    padding: 10px 16px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
    border-radius: 6px;
    margin: 2px 4px;
    transition: all .15s;
}
.mz-dd-l1-direct a::after {
    display: none !important;
}
.mz-dd-l1-direct a:hover {
    color: var(--mz-gold);
    background: rgba(201, 168, 76, 0.08);
}
/* L2 Panel */
.mz-dd-l2 {
    display: none;
    position: absolute;
    top: -6px;
    left: calc(100% + 6px);
    width: 210px;
    background: var(--mz-dark);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 12px;
    padding: 6px 0;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    z-index: 501;
    list-style: none;
}
.mz-dd-l1-item:hover .mz-dd-l2 {
    display: block;
}
.mz-dd-l2 li a {
    display: block;
    padding: 9px 16px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all .2s;
}
.mz-dd-l2 li a::after {
    display: none !important;
}
.mz-dd-l2 li a:hover {
    color: var(--mz-gold);
    padding-left: 22px;
}
/* ── MOBILE ───────────────────────────────────────────── */
@media(max-width: 991px) {
    .mz-dd-l1 {
        display: none;
        position: static;
        transform: none;
        width: 100%;
        border: none;
        border-radius: 0;
        box-shadow: none;
        padding: 0;
        background: rgba(0, 0, 0, 0.2);
    }
    .mz-dd-l1::before {
        display: none;
    }
    .mz-has-dd.open .mz-dd-l1 {
        display: block;
    }
    /* Alle L1-Items bündig, gleiche Breite */
    .mz-dd-l1-item, .mz-dd-l1-direct a {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 12px 24px;
        margin: 0;
        border-radius: 0;
        position: static;
        font-size: 12px;
        font-weight: 600;
        letter-spacing: 1px;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.7);
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        background: none;
    }
    .mz-dd-l1-item::after {
        content: "+";
    }
    .mz-dd-l1-item.sub-open {
        color: var(--mz-gold);
    }
    .mz-dd-l1-item.sub-open::after {
        content: "−";
    }
    .mz-dd-l1-direct a::after {
        display: none !important;
    }
    .mz-dd-l1-direct a:hover {
        background: rgba(201, 168, 76, 0.06);
        padding-left: 24px;
    }
    /* L2 mobile: klappt darunter auf */
    .mz-dd-l2 {
        display: none;
        position: static;
        width: 100%;
        border: none;
        border-radius: 0;
        box-shadow: none;
        padding: 0;
        background: rgba(0, 0, 0, 0.15);
    }
    .mz-dd-l1-item:hover .mz-dd-l2 {
        display: none;
    }
    .mz-dd-l1-item.sub-open .mz-dd-l2 {
        display: block;
    }
    .mz-dd-l2 li a {
        padding: 10px 36px !important;
        font-size: 11px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    }
}
/* ═══════════════════════════════════════════════════════════
   MEZZE RESTAURANT – Haupt-CSS
   Farben: #1a2e1a (Dunkelgrün) | #c9a84c (Gold)
   Fonts:  Montserrat (Headings) | Poppins (Body)
   Fonts zentral von andi24.de — DSGVO-konform, kein CDN
   ═══════════════════════════════════════════════════════════ */

/* ─────────────────────────────────────────────────────── */

/* andi24 Logo im Footer */
.mz-andi24-link {
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
}
.mz-andi24-logo {
    height: 96px;
    width: auto;
    vertical-align: middle;
    opacity: .8;
    transition: opacity .2s;
}
.mz-andi24-logo:hover {
    opacity: 1;
}
/* ─────────────────────────────────────────────────────── */
/* FOOTER – 4-Spalten Layout (eine Zeile, luftig)          */
/* ─────────────────────────────────────────────────────── */
.mz-footer-top {
    padding: 52px 0 32px !important;
}
.mz-footer-top .row {
    display: grid !important;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr !important;
    gap: 0 48px !important;
    align-items: start !important;
    flex-wrap: unset !important;
    margin: 0 !important;
}
/* alle Spalten – kein flex-col-Verhalten mehr */
.mz-footer-top [class*="col-"] {
    flex: unset !important;
    max-width: unset !important;
    width: unset !important;
    padding: 0 !important;
    margin-bottom: 0 !important;
}
/* mb-40 global-Override zurücksetzen im Footer */
.mz-footer-top .mb-40 {
    margin-bottom: 0 !important;
}

/* Logo-Spalte */
.mz-footer-logo-img {
    height: 54px !important;
    width: auto !important;
    display: block !important;
    margin-bottom: 14px !important;
}
.mz-footer-desc {
    font-size: 13px !important;
    line-height: 1.65 !important;
    margin-bottom: 16px !important;
}
.mz-footer-social {
    gap: 8px !important;
}

/* Headings aller Spalten */
.mz-footer-heading {
    font-size: 11px !important;
    margin-bottom: 14px !important;
}

/* Alle Footer-Listen – einheitlicher Rhythmus */
.mz-footer-hours li,
.mz-footer-links li,
.mz-footer-contact li {
    font-size: 13px !important;
    line-height: 1.4 !important;
    margin-bottom: 10px !important;
}
.mz-footer-hours li {
    padding: 0 !important;
    border-bottom: none !important;
}
.mz-footer-links li a {
    font-size: 13px !important;
    line-height: 1.4 !important;
}
.mz-footer-contact li {
    gap: 10px !important;
    align-items: flex-start !important;
}

/* Responsive: 2 Spalten ab Tablet */
@media (max-width: 991px) {
    .mz-footer-top .row {
        grid-template-columns: 1fr 1fr !important;
        gap: 32px 40px !important;
    }
}
@media (max-width: 540px) {
    .mz-footer-top .row {
        grid-template-columns: 1fr !important;
        gap: 28px 0 !important;
    }
}/* ═══════════════════════════════════════════════════════════
   MEZZE RESTAURANT – CSS
   Farben: #1a2e1a (Dunkelgrün) | #c9a84c (Gold)
   Fonts:  Montserrat (Headings) | Poppins (Body)
   ═══════════════════════════════════════════════════════════ */
/* Inhalt: Buttons · Sections · Hero · Feature Cards · Reviews · CTA · About · Alerts · Page Hero */

MEZZE RESTAURANT – Haupt-CSS
   Farben: #1a2e1a (Dunkelgrün) | #c9a84c (Gold)
   Fonts:  Montserrat (Headings) | Poppins (Body)
   Fonts zentral von andi24.de — DSGVO-konform, kein CDN
   ═══════════════════════════════════════════════════════════ */
/* Fonts werden in header.php geladen (zentral von andi24.de) */
/* ─────────────────────────────────────────────────────── */
/* 1. BUTTONS                                              */
/* ─────────────────────────────────────────────────────── */
.mz-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 36px;
    border-radius: 40px;
    font-family: var(--ff-body);
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.5px;
    border: 1.5px solid transparent;
    border-style: solid;
    cursor: pointer;
    transition: all .3s;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    -webkit-appearance: none;
    appearance: none;
}
button.mz-btn {
    border-radius: 40px;
    border: 1.5px solid transparent;
    border-style: solid;
    -webkit-appearance: none;
    appearance: none;
}
a.mz-btn {
    border-radius: 40px;
    border: 1.5px solid transparent;
    border-style: solid;
}
.mz-btn-gold {
    background: var(--mz-gold);
    color: var(--mz-dark);
}
.mz-btn-outline {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
}
.mz-btn-dark {
    background: var(--mz-dark);
    color: #fff;
}
.mz-btn-ghost {
    background: transparent;
    color: var(--mz-gold);
    border: 1.5px solid var(--mz-gold);
}
.mz-btn-gold:hover {
    background: var(--mz-gold-lt);
    color: var(--mz-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 168, 76, .35);
}
.mz-btn-outline:hover {
    border-color: var(--mz-gold);
    color: var(--mz-gold);
    transform: translateY(-2px);
}
.mz-btn-dark:hover {
    background: var(--mz-warm);
    color: var(--mz-gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26, 46, 26, .3);
}
.mz-btn-ghost:hover {
    background: var(--mz-gold);
    color: var(--mz-dark);
    transform: translateY(-2px);
}
.mz-btn-sm {
    padding: 10px 24px;
    font-size: 13px;
}
.mz-btn-lg {
    padding: 17px 46px;
    font-size: 16px;
}
/* ─────────────────────────────────────────────────────── */
/* 2. SECTION HEADER                                       */
/* ─────────────────────────────────────────────────────── */
.mz-section {
    padding: 68px 0;
}
.page-speisekarte .mz-section {
    padding-top: 68px;
}
.mz-section-sm {
    padding: 60px 0;
}
.mz-bg-light {
    background: var(--mz-light);
}
.mz-bg-cream {
    background: var(--mz-cream);
}
.mz-bg-dark {
    background: var(--mz-dark);
}
.mz-bg-white {
    background: #fff;
}
.mz-section-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--mz-gold);
    margin-bottom: 10px;
}
.mz-section-title {
    margin-bottom: 16px;
}
.mz-section-title.on-dark {
    color: #fff;
}
.mz-section-desc {
    font-size: 17px;
    color: #888;
    max-width: 600px;
    line-height: 1.75;
}
.mz-section-desc.on-dark {
    color: rgba(255, 255, 255, 0.65);
}
.mz-divider {
    width: 48px;
    height: 2px;
    background: var(--mz-gold);
    margin: 14px 0 22px;
}
.mz-divider.center {
    margin-left: auto;
    margin-right: auto;
}
/* ─────────────────────────────────────────────────────── */
/* 3. HERO                                                 */
/* ─────────────────────────────────────────────────────── */
.mz-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--mz-dark);
    overflow: hidden;
}
.mz-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('../img/restaurant/hero-bg.webp');
    background-size: cover;
    background-position: center;
    opacity: .42;
}
.mz-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 46, 26, .88) 0%, rgba(26, 46, 26, .45) 55%, rgba(26, 46, 26, .72) 100%);
}
.mz-hero-content {
    position: relative;
    z-index: 2;
    padding: 130px 0 90px;
}
.mz-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201, 168, 76, .12);
    border: 1px solid rgba(201, 168, 76, .3);
    color: var(--mz-gold);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 22px;
}
.mz-hero-title {
    color: #fff;
    margin-bottom: 18px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, .25);
}
.mz-hero-title em {
    font-style: italic;
    color: var(--mz-gold);
}
.mz-hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, .8);
    max-width: 510px;
    margin-bottom: 40px;
    line-height: 1.75;
}
.mz-hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
}
.mz-hero-stats {
    display: flex;
    gap: 44px;
    margin-top: 64px;
    flex-wrap: wrap;
}
.mz-hero-stat-num {
    font-family: var(--ff-heading);
    font-size: 38px;
    font-weight: 700;
    color: var(--mz-gold);
    line-height: 1;
}
.mz-hero-stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, .55);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}
.mz-scroll-cue {
    position: absolute;
    bottom: 38px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, .4);
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: mzBounce 2.2s ease-in-out infinite;
}
.mz-scroll-cue i {
    font-size: 18px;
}
@keyframes mzBounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0)
    }
    50% {
        transform: translateX(-50%) translateY(9px)
    }
}
/* ─────────────────────────────────────────────────────── */
/* 4. FEATURE CARDS                                        */
/* ─────────────────────────────────────────────────────── */
.mz-feature-card {
    background: #fff;
    border-radius: 16px;
    padding: 40px 28px;
    text-align: center;
    border: 1px solid var(--mz-border);
    transition: all .3s;
    height: 100%;
}
.mz-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(26, 46, 26, .1);
    border-color: var(--mz-gold);
}
.mz-feature-icon {
    width: 68px;
    height: 68px;
    background: rgba(201, 168, 76, .1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 26px;
    color: var(--mz-gold);
    transition: all .3s;
}
.mz-feature-card:hover .mz-feature-icon {
    background: var(--mz-gold);
    color: var(--mz-dark);
}
.mz-feature-title {
    font-size: 20px;
    color: var(--mz-dark);
    margin-bottom: 10px;
}
.mz-feature-text {
    font-size: 15px;
    color: #888;
    line-height: 1.7;
    margin: 0;
}
/* ─────────────────────────────────────────────────────── */
/* 5. SPEISEKARTE                                          */
/* ─────────────────────────────────────────────────────── */
.mz-menu-tabs {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}
.mz-menu-tab {
    padding: 10px 28px;
    border-radius: 30px;
    border: 1.5px solid var(--mz-border);
    background: transparent;
    color: var(--mz-text);
    font-family: var(--ff-body);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all .3s;
}
.mz-menu-tab.active, .mz-menu-tab:hover {
    background: var(--mz-dark);
    border-color: var(--mz-dark);
    color: var(--mz-gold);
}
.mz-menu-panel {
    display: none;
}
.mz-menu-panel.active {
    display: block;
}
.mz-menu-category {
    margin-bottom: 40px;
}
.mz-menu-cat-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--mz-gold);
    padding-bottom: 12px;
    border-bottom: 1px solid var(--mz-border);
    margin-bottom: 6px;
}
.mz-menu-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px 0;
    border-bottom: 1px solid rgba(232, 224, 208, .6);
    gap: 20px;
}
.mz-menu-item:last-child {
    border-bottom: none;
}
.mz-menu-item-name {
    font-family: var(--ff-heading);
    font-size: 17px;
    color: var(--mz-dark);
    margin-bottom: 3px;
}
.mz-menu-item-desc {
    font-size: 14px;
    color: #999;
    margin: 0;
    line-height: 1.5;
}
.mz-menu-item-tags {
    display: flex;
    gap: 6px;
    margin-top: 6px;
    flex-wrap: wrap;
}
.mz-menu-tag {
    font-size: 10px;
    padding: 2px 10px;
    border-radius: 20px;
    font-weight: 600;
    letter-spacing: 0.5px;
    background: rgba(201, 168, 76, .1);
    color: var(--mz-gold);
    border: 1px solid rgba(201, 168, 76, .2);
}
.mz-menu-tag.vegan {
    background: rgba(80, 160, 80, .1);
    color: #3a8a3a;
    border-color: rgba(80, 160, 80, .2);
}
.mz-menu-tag.scharf {
    background: rgba(220, 60, 60, .1);
    color: #c03030;
    border-color: rgba(220, 60, 60, .2);
}
.mz-menu-tag.gluten {
    background: rgba(150, 100, 50, .1);
    color: #7a5a2a;
    border-color: rgba(150, 100, 50, .2);
}
.mz-menu-item-price {
    font-family: var(--ff-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--mz-gold);
    white-space: nowrap;
    flex-shrink: 0;
    padding-top: 2px;
}
/* ─────────────────────────────────────────────────────── */
/* 6. GALERIE                                              */
/* ─────────────────────────────────────────────────────── */
.mz-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}
.mz-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background: var(--mz-dark);
}
.mz-gallery-item::before {
    content: '';
    display: block;
    padding-top: 100%;
}
.mz-gallery-item.tall::before {
    padding-top: 210%;
}
.mz-gallery-item img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s;
}
.mz-gallery-item:hover img {
    transform: scale(1.06);
}
.mz-gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 46, 26, .65);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .3s;
}
.mz-gallery-item:hover .mz-gallery-overlay {
    opacity: 1;
}
.mz-gallery-overlay i {
    color: var(--mz-gold);
    font-size: 32px;
}
@media(max-width:768px) {
    .mz-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .mz-gallery-item.tall::before {
        padding-top: 100%;
    }
}
/* ─────────────────────────────────────────────────────── */
/* 7. TEAM                                                 */
/* ─────────────────────────────────────────────────────── */
.mz-team-card {
    text-align: center;
    transition: all .3s;
}
.mz-team-card:hover {
    transform: translateY(-5px);
}
.mz-team-img-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    margin-bottom: 20px;
}
.mz-team-img-wrap img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: transform .4s;
}
.mz-team-card:hover .mz-team-img-wrap img {
    transform: scale(1.05);
}
.mz-team-name {
    font-family: var(--ff-heading);
    font-size: 22px;
    color: var(--mz-dark);
    margin-bottom: 4px;
}
.mz-team-role {
    font-size: 13px;
    color: var(--mz-gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.mz-team-bio {
    font-size: 14px;
    color: #888;
    margin-top: 10px;
}
/* ─────────────────────────────────────────────────────── */
/* 8. ÖFFNUNGSZEITEN                                       */
/* ─────────────────────────────────────────────────────── */
.mz-hours-card {
    background: var(--mz-dark);
    border-radius: 20px;
    padding: 44px 38px;
}
.mz-hours-row {
    display: flex;
    justify-content: space-between;
    padding: 13px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
    font-size: 15px;
}
.mz-hours-row:last-child {
    border-bottom: none;
}
.mz-hours-day {
    color: rgba(255, 255, 255, .65);
}
.mz-hours-time {
    color: var(--mz-gold);
    font-weight: 600;
}
.mz-hours-row.closed .mz-hours-time {
    color: #555;
    font-weight: 400;
}
/* ─────────────────────────────────────────────────────── */
/* 9. RESERVIERUNGSFORMULAR                                */
/* ─────────────────────────────────────────────────────── */
.mz-form-wrap {
    background: #fff;
    border-radius: 20px;
    padding: 50px 44px;
    box-shadow: 0 20px 60px rgba(26, 46, 26, .1);
}
.mz-form-group {
    margin-bottom: 22px;
}
.mz-form-group label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--mz-dark);
    margin-bottom: 8px;
}
.mz-form-control {
    width: 100%;
    padding: 13px 18px;
    border: 1.5px solid var(--mz-border);
    border-radius: 10px;
    font-family: var(--ff-body);
    font-size: 15px;
    color: var(--mz-dark);
    background: #fff;
    transition: border-color .3s;
    outline: none;
    -webkit-appearance: none;
}
.mz-form-control:focus {
    border-color: var(--mz-gold);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, .12);
}
.mz-form-control::placeholder {
    color: #c0b8a8;
}
select.mz-form-control {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c9a84c' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}
.mz-form-row {
    display: flex;
    gap: 20px;
}
.mz-form-row .mz-form-group {
    flex: 1;
}
@media(max-width:600px) {
    .mz-form-row {
        flex-direction: column;
        gap: 0;
    }
    .mz-form-wrap {
        padding: 32px 24px;
    }
}
/* ─────────────────────────────────────────────────────── */
/* 10. GUTSCHEINE                                          */
/* ─────────────────────────────────────────────────────── */
.mz-voucher-card {
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid var(--mz-gold);
    transition: all .3s;
}
.mz-voucher-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 24px 60px rgba(201, 168, 76, .2);
}
.mz-voucher-top {
    background: var(--mz-dark);
    padding: 40px 35px 50px;
    position: relative;
}
.mz-voucher-top::after {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 0;
    right: 0;
    height: 32px;
    background: #fff;
    border-radius: 100% 100% 0 0;
}
.mz-voucher-value {
    font-family: var(--ff-heading);
    font-size: 66px;
    font-weight: 700;
    color: var(--mz-gold);
    line-height: 1;
}
.mz-voucher-label {
    color: rgba(255, 255, 255, .6);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 4px;
}
.mz-voucher-bottom {
    background: #fff;
    padding: 30px 35px;
}
.mz-voucher-title {
    font-family: var(--ff-heading);
    font-size: 20px;
    color: var(--mz-dark);
    margin-bottom: 8px;
}
.mz-voucher-desc {
    font-size: 14px;
    color: #999;
    margin-bottom: 22px;
    line-height: 1.6;
}
/* ─────────────────────────────────────────────────────── */
/* 11. REVIEWS                                             */
/* ─────────────────────────────────────────────────────── */
.mz-review-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    border: 1px solid var(--mz-border);
    transition: all .3s;
    height: 100%;
}
.mz-review-card:hover {
    box-shadow: 0 16px 44px rgba(26, 46, 26, .08);
    transform: translateY(-4px);
}
.mz-review-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 14px;
}
.mz-review-stars i {
    color: var(--mz-gold);
    font-size: 15px;
    font-weight: 900;
}
.mz-review-text {
    font-size: 15px;
    font-style: italic;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}
.mz-review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.mz-review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--mz-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--ff-heading);
    font-size: 17px;
    font-weight: 700;
    color: var(--mz-dark);
    flex-shrink: 0;
}
.mz-review-name {
    font-weight: 600;
    color: var(--mz-dark);
    font-size: 15px;
}
.mz-review-source {
    font-size: 12px;
    color: #bbb;
}
/* ─────────────────────────────────────────────────────── */
/* 12. CTA BANNER                                          */
/* ─────────────────────────────────────────────────────── */
.mz-cta {
    padding: 100px 0;
    background: var(--mz-dark);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.mz-cta::before {
    content: '"';
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--ff-heading);
    font-size: 500px;
    color: rgba(201, 168, 76, .03);
    pointer-events: none;
    line-height: 1;
}
/* ─────────────────────────────────────────────────────── */
/* 13. ABOUT                                               */
/* ─────────────────────────────────────────────────────── */
.mz-about-img {
    border-radius: 18px;
    width: 100%;
    height: 500px;
    object-fit: cover;
}
.mz-about-badge {
    position: absolute;
    bottom: 28px;
    right: -16px;
    background: var(--mz-gold);
    color: var(--mz-dark);
    padding: 22px 28px;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 12px 35px rgba(201, 168, 76, .3);
}
.mz-about-badge-num {
    font-family: var(--ff-heading);
    font-size: 38px;
    font-weight: 700;
    line-height: 1;
    display: block;
}
.mz-about-badge-text {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}
@media(max-width:991px) {
    .mz-about-badge {
        right: 16px;
        bottom: 16px;
    }
    .mz-about-img {
        height: 350px;
    }
}
/* ─────────────────────────────────────────────────────── */
/* 14. PAGE HERO (Unterseiten)                             */
/* ─────────────────────────────────────────────────────── */
.mz-page-hero {
    background: var(--mz-dark);
    padding: 140px 0 70px;
    position: relative;
    overflow: hidden;
}
.mz-page-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../img/restaurant/pattern.svg') repeat;
    opacity: .04;
    pointer-events: none;
}
.mz-page-hero-title {
    color: #fff;
    margin-bottom: 10px;
}
.mz-breadcrumb {
    display: flex;
    gap: 8px;
    align-items: center;
    color: rgba(255, 255, 255, .5);
    font-size: 13px;
}
.mz-breadcrumb a {
    color: rgba(255, 255, 255, .5);
}
.mz-breadcrumb a:hover {
    color: var(--mz-gold);
}
.mz-breadcrumb span {
    color: var(--mz-gold);
}
/* ─────────────────────────────────────────────────────── */
/* 15. FLASH MESSAGES / ALERTS                             */
/* ─────────────────────────────────────────────────────── */
.mz-alert {
    padding: 16px 22px;
    border-radius: 10px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
}
.mz-alert-success {
    background: rgba(80, 160, 80, .1);
    color: #2a7a2a;
    border: 1px solid rgba(80, 160, 80, .2);
}
.mz-alert-error {
    background: rgba(220, 60, 60, .1);
    color: #c03030;
    border: 1px solid rgba(220, 60, 60, .2);
}
.mz-alert-info {
    background: rgba(201, 168, 76, .1);
    color: #7a5c1a;
    border: 1px solid rgba(201, 168, 76, .2);
}
/* ─────────────────────────────────────────────────────── */
/* 16. FOOTER                                              */
/* ─────────────────────────────────────────────────────── */
.mz-footer {
    background: var(--mz-dark);
}
.mz-footer-top {
    padding: 80px 0 40px;
}
.mz-footer-logo-text {
    font-family: var(--ff-heading);
    font-size: 30px;
    color: var(--mz-gold);
    letter-spacing: 4px;
    text-transform: uppercase;
    display: block;
}
.mz-footer-logo-sub {
    font-size: 9px;
    color: rgba(255, 255, 255, .35);
    letter-spacing: 3px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 18px;
}
.mz-footer-desc {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, .55);
    margin-bottom: 22px;
}
.mz-footer-social {
    display: flex;
    gap: 10px;
}
.mz-footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .5);
    font-size: 15px;
    transition: all .3s;
}
.mz-footer-social a:hover {
    border-color: var(--mz-gold);
    color: var(--mz-gold);
    background: rgba(201, 168, 76, .08);
}
.mz-footer-heading {
    font-family: var(--ff-body);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--mz-gold);
    margin-bottom: 18px;
}
.mz-footer-links {
    list-style: none;
}
.mz-footer-links li {
    margin-bottom: 9px;
}
.mz-footer-links a {
    color: rgba(255, 255, 255, .55);
    font-size: 14px;
    transition: all .3s;
}
.mz-footer-links a:hover {
    color: var(--mz-gold);
    padding-left: 5px;
}
.mz-footer-hours {
    list-style: none;
}
.mz-footer-hours li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .05);
    font-size: 13px;
    color: rgba(255, 255, 255, .6);
}
.mz-footer-hours li.closed {
    color: rgba(255, 255, 255, .25);
}
.mz-footer-contact {
    list-style: none;
}
.mz-footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 14px;
    color: rgba(255, 255, 255, .6);
    align-items: flex-start;
}
.mz-footer-contact li i {
    color: var(--mz-gold);
    font-size: 15px;
    margin-top: 3px;
    flex-shrink: 0;
}
.mz-footer-contact a {
    color: rgba(255, 255, 255, .6);
}
.mz-footer-contact a:hover {
    color: var(--mz-gold);
}
.mz-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .06);
    padding: 22px 0;
}
.mz-footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
}
.mz-footer-bottom-inner p {
    margin: 0;
    font-size: 13px;
    color: rgba(255, 255, 255, .35);
}
.mz-footer-bottom-inner ul {
    display: flex;
    gap: 20px;
    list-style: none;
}
.mz-footer-bottom-inner ul a {
    font-size: 13px;
    color: rgba(255, 255, 255, .35);
}
.mz-footer-bottom-inner ul a:hover {
    color: var(--mz-gold);
}
/* Demo Badge */
.mz-demo-badge {
    text-align: center;
    padding: 12px 0;
    font-size: 12px;
    color: rgba(255, 255, 255, .3);
    border-top: 1px solid rgba(255, 255, 255, .04);
    margin-top: 10px;
}
.mz-demo-badge a {
    color: var(--mz-gold);
    opacity: .7;
}
.mz-demo-badge a:hover {
    opacity: 1;
}
/* ─────────────────────────────────────────────────────── */

/* INDEXSEITE – Utility-Klassen (kein inline style mehr)   */
/* ─────────────────────────────────────────────────────── */
/* Stern solid */
.mz-star-solid {
    font-weight: 900;
}
/* Speisekarte-Link-Wrap */
.mz-speisekarte-link-wrap {
    text-align: center;
    margin-bottom: 20px;
}
/* Über-uns Zeile */
.mz-about-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}
.mz-about-img-wrap {
    flex: 0 0 calc(41.666% - 20px);
    position: relative;
}
.mz-about-text {
    flex: 0 0 calc(50% - 20px);
    padding-left: 20px;
}
@media (max-width: 991px) {
    .mz-about-img-wrap, .mz-about-text {
        flex: 0 0 100%;
        padding-left: 0;
    }
}
/* Abstände */
.mz-mt-14 {
    margin-top: 14px;
}
.mz-mt-36 {
    margin-top: 36px;
}
.mz-mb-16 {
    margin-bottom: 16px;
}
/* CTA */
.mz-cta-desc {
    margin: 0 auto 36px;
    max-width: 500px;
}
.mz-cta-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}
/* Newsletter */
.mz-newsletter-wrap {
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
}
.mz-newsletter-title {
    font-size: 28px;
    margin-bottom: 12px;
}
.mz-newsletter-desc {
    color: #888;
    margin-bottom: 28px;
}
.mz-newsletter-form-row {
    display: flex;
    gap: 10px;
    max-width: 420px;
    margin: 0 auto;
}
.mz-newsletter-input {
    border-radius: 40px;
    border: 1.5px solid var(--mz-border);
    flex: 1;
}
.mz-newsletter-btn {
    white-space: nowrap;
    flex-shrink: 0;
    border-radius: 40px;
    padding: 14px 24px;
    align-self: stretch;
}
.mz-newsletter-consent {
    max-width: 420px;
    margin: 12px auto 0;
    text-align: left;
}
.mz-consent-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 13px;
    color: #888;
    line-height: 1.5;
}
.mz-consent-check {
    margin-top: 3px;
    flex-shrink: 0;
    accent-color: var(--mz-gold);
}
.mz-consent-link {
    color: var(--mz-gold);
    text-decoration: underline;
}
.mz-newsletter-msg {
    margin-top: 14px;
    font-size: 14px;
    min-height: 20px;
}
.mz-msg-ok {
    color: #2a7a2a;
}
.mz-msg-err {
    color: #c03030;
}
/* ─────────────────────────────────────────────────────── *//* ═══════════════════════════════════════════════════════════
   MEZZE RESTAURANT – CSS
   Farben: #1a2e1a (Dunkelgrün) | #c9a84c (Gold)
   Fonts:  Montserrat (Headings) | Poppins (Body)
   ═══════════════════════════════════════════════════════════ */
/* Inhalt: Speisekarte · Galerie · Über uns · Gutscheine · Legal · Kontakt · Reservierung */

/* PAGE HERO (alle Unterseiten)                            */
/* ─────────────────────────────────────────────────────── */
.mz-page-hero {
    background: var(--mz-dark);
    padding: 140px 0 60px;
    text-align: center;
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}
.mz-page-hero-title {
    font-size: clamp(32px, 5vw, 56px);
    color: #fff;
    margin-bottom: 12px;
}
.mz-page-hero-desc {
    color: rgba(255, 255, 255, 0.55);
    font-size: 16px;
    margin: 0;
}
/* ─────────────────────────────────────────────────────── */
/* GALERIE                                                 */
/* ─────────────────────────────────────────────────────── */
.mz-galerie-filter-bar {
    background: var(--mz-light);
    border-bottom: 1px solid var(--mz-border);
    padding: 16px 0;
    position: sticky;
    top: 80px;
    z-index: 90;
}
.mz-galerie-filter-inner {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.mz-filter-btn {
    background: none;
    border: 1px solid var(--mz-border);
    border-radius: 30px;
    padding: 7px 18px;
    font-size: 13px;
    font-weight: 500;
    color: var(--mz-text);
    cursor: pointer;
    transition: all .25s;
    font-family: var(--ff-body);
}
.mz-filter-btn:hover, .mz-filter-btn.active {
    background: var(--mz-dark);
    color: var(--mz-gold);
    border-color: var(--mz-dark);
}
.mz-galerie-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
@media (max-width: 768px) {
    .mz-galerie-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 480px) {
    .mz-galerie-grid {
        grid-template-columns: 1fr;
    }
}
.mz-galerie-item {
    border-radius: 12px;
    overflow: hidden;
}
.mz-galerie-img-wrap {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    cursor: pointer;
    background: var(--mz-cream);
}
.mz-galerie-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s;
}
.mz-galerie-img-wrap:hover .mz-galerie-img {
    transform: scale(1.05);
}
.mz-galerie-placeholder {
    background: var(--mz-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--mz-border);
    font-size: 40px;
}
.mz-galerie-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 46, 26, 0);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 20px;
    transition: background .3s;
}
.mz-galerie-img-wrap:hover .mz-galerie-overlay {
    background: rgba(26, 46, 26, 0.7);
}
.mz-galerie-caption {
    color: #fff;
    opacity: 0;
    transform: translateY(8px);
    transition: all .3s;
}
.mz-galerie-img-wrap:hover .mz-galerie-caption {
    opacity: 1;
    transform: translateY(0);
}
.mz-galerie-caption strong {
    display: block;
    font-size: 15px;
    margin-bottom: 4px;
}
.mz-galerie-caption span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
}
.mz-galerie-overlay > .ai-expand {
    color: var(--mz-gold);
    font-size: 20px;
    position: absolute;
    top: 16px;
    right: 16px;
    opacity: 0;
    transition: opacity .3s;
}
.mz-galerie-img-wrap:hover .ai-expand {
    opacity: 1;
}
/* Lightbox */
.mz-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}
.mz-lightbox.open {
    display: flex;
}
.mz-lightbox-content {
    max-width: 90vw;
    max-height: 90vh;
    text-align: center;
}
.mz-lightbox-img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 8px;
    object-fit: contain;
}
.mz-lightbox-caption {
    color: rgba(255, 255, 255, 0.7);
    margin-top: 12px;
    font-size: 14px;
}
.mz-lightbox-close, .mz-lightbox-prev, .mz-lightbox-next {
    position: fixed;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
}
.mz-lightbox-close {
    top: 20px;
    right: 20px;
}
.mz-lightbox-prev {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}
.mz-lightbox-next {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}
.mz-lightbox-close:hover, .mz-lightbox-prev:hover, .mz-lightbox-next:hover {
    background: var(--mz-gold);
    color: var(--mz-dark);
}
/* ─────────────────────────────────────────────────────── */
/* ÜBER UNS – Team                                         */
/* ─────────────────────────────────────────────────────── */
.mz-team-card {
    text-align: center;
}
.mz-team-img-wrap {
    margin-bottom: 20px;
}
.mz-team-img-placeholder {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(201, 168, 76, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: var(--mz-gold);
    font-size: 40px;
}
.mz-team-name {
    font-size: 20px;
    color: var(--mz-gold);
    margin-bottom: 4px;
}
.mz-team-rolle {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.45);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}
.mz-team-bio {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
}
/* Statistiken */
.mz-stats-row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}
.mz-stat-card {
    text-align: center;
    flex: 1;
    min-width: 140px;
}
.mz-stat-card-num {
    font-family: var(--ff-heading);
    font-size: 48px;
    font-weight: 800;
    color: var(--mz-gold);
    line-height: 1;
    margin-bottom: 8px;
}
.mz-stat-card-label {
    font-size: 13px;
    color: var(--mz-text);
    text-transform: uppercase;
    letter-spacing: 1px;
}
/* ─────────────────────────────────────────────────────── */
/* GUTSCHEINE                                              */
/* ─────────────────────────────────────────────────────── */
.mz-gutschein-wrap {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}
@media (max-width: 991px) {
    .mz-gutschein-wrap {
        flex-direction: column;
    }
}
.mz-gutschein-preview {
    flex: 0 0 320px;
    position: sticky;
    top: 100px;
}
@media (max-width: 991px) {
    .mz-gutschein-preview {
        position: static;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }
}
.mz-gutschein-card {
    background: var(--mz-dark);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(201, 168, 76, 0.2);
}
.mz-gutschein-logo {
    font-family: var(--ff-heading);
    font-size: 28px;
    font-weight: 800;
    color: var(--mz-gold);
    letter-spacing: 4px;
    margin-bottom: 4px;
}
.mz-gutschein-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
}
.mz-gutschein-value {
    font-family: var(--ff-heading);
    font-size: 64px;
    font-weight: 800;
    color: var(--mz-gold);
    line-height: 1;
    margin-bottom: 12px;
}
.mz-gutschein-to {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 16px;
}
.mz-gutschein-msg {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
    min-height: 20px;
}
.mz-gutschein-form-wrap {
    flex: 1;
}
.mz-gutschein-form {}
.mz-fieldset {
    border: none;
    padding: 0;
    margin: 0 0 28px;
}
.mz-fieldset legend {
    font-weight: 600;
    font-size: 15px;
    color: var(--mz-dark);
    margin-bottom: 14px;
}
.mz-betrag-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.mz-betrag-option {
    cursor: pointer;
}
.mz-betrag-option input {
    display: none;
}
.mz-betrag-option span {
    display: block;
    padding: 10px 22px;
    border: 2px solid var(--mz-border);
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    color: var(--mz-text);
    transition: all .2s;
}
.mz-betrag-option input:checked + span {
    border-color: var(--mz-gold);
    background: var(--mz-gold);
    color: var(--mz-dark);
}
.mz-betrag-option:hover span {
    border-color: var(--mz-gold);
}
.mz-form-row {
    display: flex;
    gap: 16px;
}
@media (max-width: 600px) {
    .mz-form-row {
        flex-direction: column;
    }
}
.mz-gutschein-hinweis {
    font-size: 13px;
    color: #999;
    margin-top: 16px;
}
/* ─────────────────────────────────────────────────────── */
/* LEGAL (Impressum, Datenschutz, AGB)                     */
/* ─────────────────────────────────────────────────────── */
.mz-legal-content {
    max-width: 800px;
    margin: 0 auto;
}
.mz-legal-content h2 {
    font-size: 22px;
    margin: 40px 0 12px;
    color: var(--mz-dark);
}
.mz-legal-content h3 {
    font-size: 17px;
    margin: 24px 0 8px;
    color: var(--mz-dark);
}
.mz-legal-content p {
    color: var(--mz-text);
    line-height: 1.8;
    margin-bottom: 14px;
}
.mz-legal-content a {
    color: var(--mz-gold);
}
.mz-legal-list {
    list-style: disc;
    padding-left: 24px;
    color: var(--mz-text);
    line-height: 2;
    margin-bottom: 14px;
}
.mz-legal-meta {
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid var(--mz-border);
    font-size: 13px;
    color: #aaa;
}
/* ─────────────────────────────────────────────────────── */
/* KONTAKT                                                 */
/* ─────────────────────────────────────────────────────── */
.mz-kontakt-layout {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}
.mz-kontakt-form-wrap {
    flex: 1;
}
.mz-kontakt-info {
    flex: 0 0 300px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
@media (max-width: 991px) {
    .mz-kontakt-layout {
        flex-direction: column;
    }
    .mz-kontakt-info {
        flex: none;
        width: 100%;
    }
}
.mz-card {
    background: #fff;
    border-radius: 16px;
    padding: 36px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}
.mz-card-title {
    font-size: 22px;
    margin-bottom: 24px;
    color: var(--mz-dark);
}
.mz-form-msg {
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    margin-bottom: 20px;
    display: none;
}
.mz-form-msg.mz-msg-ok {
    display: block;
    background: #d4edda;
    color: #155724;
}
.mz-form-msg.mz-msg-err {
    display: block;
    background: #f8d7da;
    color: #721c24;
}
.mz-textarea {
    resize: vertical;
    min-height: 120px;
}
.mz-btn-full {
    width: 100%;
    justify-content: center;
}
.mz-info-card {
    background: #fff;
    border-radius: 14px;
    padding: 24px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
}
.mz-info-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(201, 168, 76, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--mz-gold);
    font-size: 18px;
    margin-bottom: 12px;
}
.mz-info-card-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--mz-dark);
    margin-bottom: 6px;
}
.mz-info-link {
    color: var(--mz-gold);
    font-weight: 500;
    font-size: 15px;
    display: block;
    margin-bottom: 6px;
}
.mz-info-text {
    font-size: 13px;
    color: #888;
    line-height: 1.6;
    margin: 0;
}
.mz-btn-outline-dark {
    border: 2px solid var(--mz-dark);
    color: var(--mz-dark);
    background: none;
    margin-top: 12px;
}
.mz-btn-outline-dark:hover {
    background: var(--mz-dark);
    color: #fff;
}
.mz-map-wrap {
    margin-top: 40px;
    border-radius: 16px;
    overflow: hidden;
}
.mz-map-frame {
    width: 100%;
    height: 360px;
    border: none;
    display: block;
}
/* ─────────────────────────────────────────────────────── */
/* SPEISEKARTE                                             */
/* ─────────────────────────────────────────────────────── */
.mz-menu-nav {
    background: #fff;
    border-bottom: 1px solid var(--mz-border);
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    z-index: 89;
}
.mz-menu-nav-wrap {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}
.mz-menu-nav-inner {
    display: flex;
    gap: 0;
    overflow-x: auto;
    scrollbar-width: none;
}
.mz-menu-nav-inner::-webkit-scrollbar {
    display: none;
}
.mz-menu-nav-link {
    display: inline-block;
    padding: 14px 22px;
    font-size: 13px;
    font-weight: 500;
    color: var(--mz-text);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    transition: all .25s;
}
.mz-menu-nav-link:hover, .mz-menu-nav-link.active {
    color: var(--mz-gold);
    border-bottom-color: var(--mz-gold);
    text-decoration: none;
}
.mz-menu-nav-fade-right {
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 100%;
    background: linear-gradient(to right, transparent, #fff 80%);
    pointer-events: none;
    cursor: default;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 12px;
}
.mz-menu-nav-fade-right::after {
    content: "›";
    font-size: 24px;
    color: var(--mz-gold);
    opacity: 0.9;
	pointer-events: auto;  /* ← neu */
    cursor: pointer;       /* ← neu */
}
.mz-menu-nav-fade-right.hidden {
    display: none;
}
.mz-menu-nav-fade-left {
    position: absolute;
    top: 0;
    left: 0;
    width: 120px;
    height: 100%;
    background: linear-gradient(to left, transparent, #fff 80%);
    pointer-events: none;
    cursor: default;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 12px;
}
.mz-menu-nav-fade-left::after {
    content: "‹";
    font-size: 24px;
    color: var(--mz-gold);
    opacity: 0.9;
	pointer-events: auto;  /* ← neu */
    cursor: pointer;       /* ← neu */
}
.mz-menu-nav-fade-left.hidden {
    display: none;
}
@media(max-width:991px) {
    .mz-menu-nav {
        top: 68px;
    }
}
.mz-header.scrolled ~ * .mz-menu-nav, .mz-header.scrolled + * .mz-menu-nav {
    top: 68px;
}
.mz-menu-section {
    margin-bottom: 0;
    padding: 50px 0;
    border-bottom: 1px solid var(--mz-border);
}
.mz-menu-section:last-of-type {
    border-bottom: none;
}
.mz-menu-section-header {
    margin-bottom: 28px;
}
.mz-menu-section-title {
    font-size: clamp(22px, 3vw, 32px);
    color: var(--mz-dark);
    margin-bottom: 6px;
}
.mz-menu-section-desc {
    color: #888;
    font-size: 15px;
    margin-bottom: 8px;
}
.mz-menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 60px;
}
@media (max-width: 768px) {
    .mz-menu-grid {
        grid-template-columns: 1fr;
    }
}
.mz-menu-legende {
    border-top: 1px solid var(--mz-border);
    padding-top: 24px;
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}
.mz-legende-hinweis {
    width: 100%;
    font-size: 13px;
    color: #aaa;
    margin: 4px 0 0;
}
.mz-empty-state {
    text-align: center;
    padding: 80px 20px;
    color: #aaa;
}
.mz-empty-state i {
    font-size: 48px;
    display: block;
    margin-bottom: 16px;
    color: var(--mz-border);
}
/* ─────────────────────────────────────────────────────── */

/* RESERVIERUNG – 3-Schritt-Flow                           */
/* ─────────────────────────────────────────────────────── */
.mz-reservierung-layout {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}
.mz-reservierung-form-wrap { flex: 1; min-width: 0; }
.mz-reservierung-info      { flex: 0 0 300px; display: flex; flex-direction: column; gap: 20px; }
@media (max-width: 991px) {
    .mz-reservierung-layout { flex-direction: column; }
    .mz-reservierung-info   { width: 100%; }
}

/* Steps */
.mz-steps {
    display: flex;
    align-items: center;
    margin-bottom: 28px;
    gap: 0;
}
.mz-step {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
}
.mz-step-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--mz-border);
    color: #aaa;
    font-weight: 700;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s;
    flex-shrink: 0;
}
.mz-step span {
    font-size: 12px;
    color: #aaa;
    font-weight: 500;
    transition: color .3s;
    white-space: nowrap;
}
.mz-step.active .mz-step-num   { background: var(--mz-gold); color: var(--mz-dark); }
.mz-step.active span            { color: var(--mz-dark); font-weight: 600; }
.mz-step.complete .mz-step-num  { background: var(--mz-dark); color: #fff; }
.mz-step-line {
    flex: 1;
    height: 2px;
    background: var(--mz-border);
    margin: 0 8px;
}
@media (max-width: 480px) {
    .mz-step span { display: none; }
    .mz-step-line { margin: 0 4px; }
}

/* Step-Panel */
.mz-step-panel { margin-bottom: 0; }

/* Step 2 header */
.mz-step2-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}
.mz-step2-meta {
    font-size: 13px;
    color: #888;
    margin: 2px 0 0;
}
.mz-back-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1.5px solid var(--mz-border);
    background: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--mz-text);
    flex-shrink: 0;
    transition: all .2s;
}
.mz-back-btn:hover { border-color: var(--mz-gold); color: var(--mz-gold); }

/* Dauer-Slider */
.mz-dauer-slider-wrap { padding: 8px 0; }
.mz-range-slider {
    width: 100%;
    -webkit-appearance: none;
    height: 4px;
    border-radius: 2px;
    background: linear-gradient(to right, var(--fill-color, #86efac) 0%, var(--fill-color, #86efac) 50%, var(--mz-border) 50%);
    outline: none;
    cursor: pointer;
}
.mz-range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--fill-color, #86efac);
    border: 3px solid #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,.15);
    cursor: pointer;
    transition: background 0.3s;
}
.mz-range-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--fill-color, #86efac);
    border: 3px solid #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,.15);
    cursor: pointer;
    transition: background 0.3s;
}
.mz-dauer-labels {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #aaa;
    margin-top: 6px;
}
.mz-dauer-current {
    font-weight: 700;
    color: var(--mz-gold);
    font-size: 14px;
}

/* Slots Grid */
.mz-slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
    gap: 10px;
    margin-top: 4px;
}
.mz-slot-btn {
    position: relative;
    padding: 12px 8px;
    border: 2px solid var(--mz-border);
    border-radius: 10px;
    background: #fff;
    font-family: var(--ff-body);
    font-size: 16px;
    font-weight: 600;
    color: var(--mz-dark);
    cursor: pointer;
    transition: all .2s;
    text-align: center;
}
.mz-slot-btn:hover:not(.belegt) {
    border-color: var(--mz-gold);
    color: var(--mz-gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(201,168,76,.2);
}
.mz-slot-btn.selected {
    border-color: var(--mz-gold);
    background: var(--mz-gold);
    color: var(--mz-dark);
    transform: translateY(-2px);
}
.mz-slot-btn.belegt {
    background: var(--mz-light);
    color: #ccc;
    cursor: not-allowed;
    border-color: var(--mz-border);
}
.mz-slot-badge {
    display: block;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    color: var(--mz-gold);
    margin-top: 3px;
}
.mz-slot-badge.belegt { color: #ccc; }
.mz-slot-btn.selected .mz-slot-badge { color: var(--mz-dark); }

/* Loading Spinner */
.mz-slots-loading {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 24px 0;
    color: #888;
}
.mz-spinner {
    width: 22px;
    height: 22px;
    border: 3px solid var(--mz-border);
    border-top-color: var(--mz-gold);
    border-radius: 50%;
    animation: mzSpin .7s linear infinite;
    flex-shrink: 0;
}
@keyframes mzSpin { to { transform: rotate(360deg); } }

/* Tisch-Grid in Sidebar */
.mz-tisch-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 4px;
}
.mz-tisch-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--mz-light);
    border-radius: 8px;
    padding: 8px 10px;
}
.mz-tisch-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(201,168,76,.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--mz-gold);
    font-size: 13px;
    flex-shrink: 0;
}
.mz-tisch-info strong {
    display: block;
    font-size: 12px;
    color: var(--mz-dark);
    line-height: 1.2;
}
.mz-tisch-info span {
    font-size: 11px;
    color: #aaa;
}

/* Success */
.mz-success-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(80,160,80,.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 36px;
    color: #3a8a3a;
}

/* Hours List */
.mz-hours-list {
    list-style: none;
}
.mz-hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 7px 0;
    border-bottom: 1px solid var(--mz-border);
    font-size: 13px;
    color: var(--mz-text);
}
.mz-hours-list li:last-child { border-bottom: none; }
.mz-hours-list li.closed { color: #ccc; }