*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

        :root {
            --bg: #0C0C0C;
            --surface: #151515;
            --surface-2: #1C1C1C;
            --border: rgba(255,255,255,0.08);
            --text: #EDEDED;
            --text-dim: #7A7A7A;
            --red: #E63946;
            --red-soft: rgba(230,57,70,0.12);
            --green: #2A9D8F;
            --white: #FFFFFF;
            --radius: 24px;
            --radius-sm: 14px;
        }

        html { scroll-behavior: smooth; overflow-x: hidden; }
        body {
            font-family: 'Outfit', sans-serif;
            background: var(--bg);
            color: var(--text);
            overflow-x: hidden;
        }

        /* ── NAV ── */
        .navbar {
            position: fixed; top: 0; left: 0; right: 0; z-index: 999;
            padding: 1.2rem 3rem;
            display: flex; align-items: center; justify-content: space-between;
            transition: all 0.4s ease;
        }
        .navbar.solid {
            background: rgba(12,12,12,0.8);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border);
            padding: 0.8rem 3rem;
        }
        .nav-brand img { height: 48px; filter: brightness(0) invert(1); }
        .nav-center { display: flex; gap: 0; }
        .nav-center a {
            color: var(--text-dim); text-decoration: none;
            font-size: 0.85rem; font-weight: 400;
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            transition: all 0.3s ease;
        }
        .nav-center a:hover { color: var(--text); background: var(--surface); }
        .nav-right { display: flex; align-items: center; gap: 1rem; }
        .nav-phone {
            color: var(--text-dim); text-decoration: none;
            font-size: 0.85rem; display: flex; align-items: center; gap: 0.5rem;
            transition: color 0.3s;
        }
        .nav-phone:hover { color: var(--text); }
        .nav-btn {
            padding: 0.65rem 1.8rem;
            background: var(--red); color: #fff;
            border-radius: 50px; text-decoration: none;
            font-size: 0.8rem; font-weight: 600;
            transition: all 0.3s;
        }
        .nav-btn:hover { background: #d32f3c; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(230,57,70,0.3); }

        .hamburger { display: none; cursor: pointer; flex-direction: column; gap: 5px; }
        .hamburger span { width: 24px; height: 2px; background: var(--text); }

        /* ── HERO ── */
        .hero {
            min-height: 100vh;
            display: flex; align-items: center; justify-content: center;
            position: relative; overflow: hidden;
            padding: 0 3rem;
        }
        .hero-bg-grid {
            position: absolute; 
            inset: -5px; /* Extend beyond bounds to hide image edges */
            display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: 1fr 1fr;
            gap: 4px; opacity: 0.5;
        }
        .hero-bg-cell {
            overflow: hidden;
        }
        .hero-bg-cell img {
            width: 100%; height: 100%; object-fit: cover;
            transition: transform 20s ease;
        }
        .hero:hover .hero-bg-cell img { transform: scale(1.15); }
        .hero-gradient {
            position: absolute;
            inset: -10px;
            background: 
                linear-gradient(to bottom, rgba(12,12,12,0) 50%, rgba(12,12,12,1) 98%),
                linear-gradient(to top, rgba(12,12,12,0) 75%, rgba(12,12,12,0.9) 100%),
                radial-gradient(circle at center, rgba(12,12,12,0) 0%, rgba(12,12,12,1) 150%);
            z-index: 1;
            pointer-events: none;
        }
        .hero-content {
            position: relative; z-index: 2;
            text-align: center; max-width: 900px;
        }
        .hero-chip {
            display: inline-flex; align-items: center; gap: 0.6rem;
            background: var(--surface); border: 1px solid var(--border);
            padding: 0.5rem 1.5rem; border-radius: 50px;
            font-size: 0.8rem; color: var(--text-dim);
            margin-bottom: 2.5rem;
            animation: fadeIn 1s ease 0.3s both;
        }
        .chip-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); animation: blink 2s ease infinite; }
        @keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }
        .hero-h1 {
            font-family: 'Lora', serif;
            font-size: clamp(3rem, 7vw, 6rem);
            font-weight: 700; line-height: 1.1;
            margin-bottom: 1.5rem;
            animation: fadeIn 1s ease 0.6s both;
        }
        .hero-h1 .accent { color: var(--red); }
        .hero-p {
            font-size: 1.1rem; font-weight: 300;
            color: var(--text-dim); max-width: 550px; margin: 0 auto 2.5rem;
            line-height: 1.8;
            animation: fadeIn 1s ease 0.9s both;
        }
        .hero-ctas {
            display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
            animation: fadeIn 1s ease 1.2s both;
        }
        .cta-primary {
            padding: 1rem 2.8rem;
            background: var(--red); color: #fff;
            border-radius: 50px; text-decoration: none;
            font-weight: 600; font-size: 0.9rem;
            transition: all 0.3s; border: none; cursor: pointer;
        }
        .cta-primary:hover { background: #d32f3c; transform: translateY(-3px); box-shadow: 0 12px 35px rgba(230,57,70,0.4); }
        .cta-secondary {
            padding: 1rem 2.8rem;
            background: var(--surface); color: var(--text);
            border: 1px solid var(--border); border-radius: 50px;
            text-decoration: none; font-weight: 500; font-size: 0.9rem;
            transition: all 0.3s; cursor: pointer;
        }
        .cta-secondary:hover { border-color: var(--red); color: var(--red); }

        .hero-scroll {
            position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
            display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
            animation: fadeIn 1s ease 1.5s both;
        }
        .mouse {
            width: 24px; height: 38px; border: 2px solid var(--border);
            border-radius: 12px; position: relative;
        }
        .mouse::after {
            content: ''; width: 3px; height: 8px;
            background: var(--red); border-radius: 3px;
            position: absolute; top: 6px; left: 50%; transform: translateX(-50%);
            animation: mouseScroll 2s ease infinite;
        }
        @keyframes mouseScroll { 0% { opacity: 1; top: 6px; } 100% { opacity: 0; top: 20px; } }
        @keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

        /* ── SECTION UTIL ── */
        section { padding: 7rem 0; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
        .tag-line {
            display: inline-flex; align-items: center; gap: 0.6rem;
            font-size: 0.75rem; font-weight: 600; letter-spacing: 3px;
            text-transform: uppercase; color: var(--red);
            margin-bottom: 1rem;
        }
        .tag-line::before { content: ''; width: 30px; height: 2px; background: var(--red); }
        .sec-title {
            font-family: 'Lora', serif;
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 700; margin-bottom: 1rem;
        }
        .sec-desc { font-size: 1rem; color: var(--text-dim); max-width: 500px; line-height: 1.8; }

        /* ── ABOUT BENTO ── */
        #ueber { 
            background: var(--bg); 
            margin-top: -2px; 
            position: relative; 
            z-index: 2; 
        }
        .bento-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            grid-template-rows: 300px 300px;
            gap: 1rem;
        }
        .bento-item {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            overflow: hidden;
            position: relative;
            transition: all 0.4s ease;
        }
        .bento-item:hover { border-color: rgba(230,57,70,0.3); transform: translateY(-4px); }
        .bento-item img {
            width: 100%; height: 100%; object-fit: cover;
            transition: transform 0.6s ease;
        }
        .bento-item:hover img { transform: scale(1.05); }
        .bento-large { grid-column: span 2; grid-row: span 2; }
        .bento-text {
            padding: 2.5rem; display: flex; flex-direction: column; justify-content: center;
        }
        .bento-text h3 {
            font-family: 'Lora', serif;
            font-size: 1.6rem; margin-bottom: 1rem;
        }
        .bento-text p { font-size: 0.9rem; color: var(--text-dim); line-height: 1.8; }
        .bento-stat {
            padding: 2rem; display: flex; flex-direction: column;
            align-items: center; justify-content: center; text-align: center;
        }
        .bento-stat .big {
            font-family: 'Lora', serif;
            font-size: 3rem; font-weight: 700; color: var(--red);
        }
        .bento-stat .small { font-size: 0.8rem; color: var(--text-dim); margin-top: 0.3rem; }

        /* ── MENU ── */
        #karte { background: var(--surface); }
        .menu-header {
            display: flex; justify-content: space-between; align-items: flex-end;
            margin-bottom: 3rem; flex-wrap: wrap; gap: 2rem;
        }
        .menu-filter {
            display: flex; gap: 0.5rem; flex-wrap: wrap;
        }
        .filter-btn {
            padding: 0.6rem 1.5rem; background: var(--surface-2);
            border: 1px solid var(--border); border-radius: 50px;
            color: var(--text-dim); font-size: 0.8rem; font-weight: 500;
            cursor: pointer; transition: all 0.3s;
            font-family: 'Outfit', sans-serif;
        }
        .filter-btn.active, .filter-btn:hover { background: var(--red); color: #fff; border-color: var(--red); }

        .menu-items { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
        .m-card {
            background: var(--surface-2);
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
            padding: 1.8rem;
            display: flex; justify-content: space-between; align-items: flex-start;
            gap: 1rem;
            transition: all 0.3s ease;
        }
        .m-card:hover { border-color: rgba(230,57,70,0.3); background: rgba(230,57,70,0.04); }
        .m-card-left { flex: 1; }
        .m-name { font-weight: 600; font-size: 1rem; margin-bottom: 0.4rem; }
        .m-desc { font-size: 0.8rem; color: var(--text-dim); line-height: 1.6; }
        .m-badges { display: flex; gap: 0.5rem; margin-top: 0.6rem; }
        .m-badge {
            font-size: 0.65rem; padding: 0.2rem 0.6rem;
            border-radius: 50px; font-weight: 600; letter-spacing: 0.5px;
        }
        .m-badge-v { background: rgba(42,157,143,0.15); color: var(--green); }
        .m-badge-s { background: var(--red-soft); color: var(--red); }
        .m-badge-p { background: rgba(255,183,77,0.15); color: #FFB74D; }
        .m-price {
            font-family: 'Lora', serif;
            font-size: 1.3rem; font-weight: 700; color: var(--red);
            white-space: nowrap;
        }

        /* ── GALLERY HORIZONTAL ── */
        #fotos { background: var(--bg); overflow: hidden; }
        .gallery-scroll {
            display: flex; gap: 1rem;
            overflow-x: auto; padding-bottom: 1rem;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }
        .gallery-scroll::-webkit-scrollbar { display: none; }
        .gal-item {
            flex: 0 0 350px; height: 450px;
            border-radius: var(--radius);
            overflow: hidden; position: relative;
            border: 1px solid var(--border);
        }
        .gal-item img {
            width: 100%; height: 100%; object-fit: cover;
            transition: transform 0.6s ease;
        }
        .gal-item:hover img { transform: scale(1.08); }
        .gal-overlay {
            position: absolute; inset: 0;
            background: linear-gradient(transparent 50%, rgba(0,0,0,0.7));
            display: flex; align-items: flex-end; padding: 1.5rem;
            opacity: 0; transition: opacity 0.4s;
        }
        .gal-item:hover .gal-overlay { opacity: 1; }
        .gal-overlay span { font-size: 0.85rem; font-weight: 500; }

        /* ── REVIEWS ── */
        #stimmen { background: var(--surface); }
        .reviews-scroll {
            display: grid; grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
        }
        .rev-card {
            background: var(--surface-2);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 2.5rem;
            transition: all 0.3s;
        }
        .rev-card:hover { border-color: rgba(230,57,70,0.3); transform: translateY(-5px); }
        .rev-stars { color: #F59E0B; margin-bottom: 1rem; font-size: 0.9rem; letter-spacing: 2px; }
        .rev-text {
            font-family: 'Lora', serif;
            font-style: italic; font-size: 1rem;
            color: var(--text-dim); line-height: 1.8;
            margin-bottom: 1.5rem;
        }
        .rev-author { display: flex; align-items: center; gap: 1rem; }
        .rev-avatar {
            width: 44px; height: 44px; border-radius: 50%;
            background: var(--red-soft); display: flex; align-items: center; justify-content: center;
            font-weight: 700; color: var(--red); font-size: 1rem;
        }
        .rev-name { font-weight: 600; font-size: 0.9rem; }
        .rev-source { font-size: 0.75rem; color: var(--text-dim); }

        /* ── CONTACT ── */
        #kontakt { background: var(--bg); }
        .contact-split {
            display: grid; grid-template-columns: 1fr 1fr;
            gap: 3rem; align-items: start;
        }
        .contact-split > * { min-width: 0; }
        .contact-left h2 { margin-bottom: 1.5rem; }
        .contact-left .sec-desc { margin-bottom: 2.5rem; }
        .c-info {
            display: flex; gap: 1.2rem; margin-bottom: 1.5rem;
            align-items: flex-start;
        }
        .c-icon {
            width: 48px; height: 48px;
            background: var(--surface); border: 1px solid var(--border);
            border-radius: 14px;
            display: flex; align-items: center; justify-content: center;
            font-size: 1.2rem; flex-shrink: 0;
        }
        .c-label { font-size: 0.7rem; color: var(--text-dim); letter-spacing: 2px; text-transform: uppercase; }
        .c-value { font-weight: 500; margin-top: 0.2rem; }
        .contact-right {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 2.5rem;
        }
        .contact-right h3 {
            font-family: 'Lora', serif;
            font-size: 1.5rem; margin-bottom: 1.5rem;
        }
        .field { margin-bottom: 1.2rem; }
        .field label { display: block; font-size: 0.75rem; color: var(--text-dim); margin-bottom: 0.4rem; letter-spacing: 1px; }
        .field input, .field select, .field textarea {
            width: 100%; max-width: 100%; padding: 0.9rem 1rem;
            background: var(--surface-2); border: 1px solid var(--border);
            border-radius: 10px; color: var(--text);
            font-family: 'Outfit', sans-serif; font-size: 0.9rem;
            outline: none; transition: border-color 0.3s;
        }
        .field textarea { resize: vertical; min-height: 80px; }
        .field input:focus, .field select:focus, .field textarea:focus { border-color: var(--red); }
        .field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
        .field-row > * { min-width: 0; }
        .btn-reserve {
            width: 100%; padding: 1rem;
            background: var(--red); color: #fff; border: none;
            border-radius: 50px; font-family: 'Outfit', sans-serif;
            font-size: 0.85rem; font-weight: 600;
            cursor: pointer; transition: all 0.3s; margin-top: 0.5rem;
        }
        .btn-reserve:hover { background: #d32f3c; transform: translateY(-2px); }

        /* ── FOOTER ── */
        footer {
            background: var(--surface);
            border-top: 1px solid var(--border);
            padding: 4rem 3rem 2rem;
        }
        .foot-grid {
            display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 3rem; max-width: 1200px; margin: 0 auto;
        }
        .foot-brand img { height: 45px; filter: brightness(0) invert(1); margin-bottom: 1rem; }
        .foot-brand p { font-size: 0.85rem; color: var(--text-dim); line-height: 1.8; }
        .foot-col h4 { font-size: 0.8rem; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 1.2rem; color: var(--text); }
        .foot-col a, .foot-col p { display: block; font-size: 0.85rem; color: var(--text-dim); text-decoration: none; margin-bottom: 0.6rem; transition: color 0.3s; }
        .foot-col a:hover { color: var(--red); }
        .foot-col ul { list-style: none; padding: 0; margin: 0; }
        .foot-col ul li { display: flex; align-items: flex-start; gap: 0.5rem; margin-bottom: 0.6rem; font-size: 0.85rem; color: var(--text-dim); }
        .foot-col ul li svg { flex-shrink: 0; margin-top: 2px; color: var(--text-dim); }
        .foot-col ul li a { display: inline; color: var(--text-dim); text-decoration: none; }
        .foot-col ul li a:hover { color: var(--red); }
        .footer-hours li { display: flex; justify-content: space-between; gap: 1rem; }
        .footer-hours .day { font-weight: 500; color: var(--text); }
        .footer-hours .time { color: var(--text-dim); }
        .footer-legal-row { max-width: 1200px; margin: 1.5rem auto 0; padding-top: 1rem; }
        .footer-legal-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
        .footer-legal-links a { font-size: 0.8rem; color: var(--text-dim); text-decoration: none; transition: color 0.3s; }
        .footer-legal-links a:hover { color: var(--red); }
        .foot-bottom {
            max-width: 1200px; margin: 2rem auto 0;
            padding-top: 1.5rem; border-top: 1px solid var(--border);
            text-align: center; font-size: 0.8rem; color: var(--text-dim);
        }
        .footer-social { display: flex; justify-content: center; gap: 1rem; margin-top: 1rem; }
        .footer-social a { color: var(--text-dim); transition: color 0.3s; }
        .footer-social a:hover { color: var(--red); }
        .footer-copyright { margin: 0; }

        /* ── ANIM ── */
        .anim { opacity: 0; transform: translateY(30px); transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1); }
        .anim.on { opacity: 1; transform: translateY(0); }

        /* ── RESPONSIVE ── */
        @media (max-width: 1024px) {
            .bento-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
            .bento-large { grid-column: span 2; height: auto; min-height: 350px; }
            .menu-items { grid-template-columns: 1fr; }
            .reviews-scroll { grid-template-columns: 1fr; }
            .contact-split { grid-template-columns: 1fr; }
            .foot-grid { grid-template-columns: 1fr 1fr; }
        }
        @media (max-width: 768px) {
            .navbar { padding: 1rem 1.5rem; }
            .navbar.solid { padding: 0.8rem 1.5rem; }
            .nav-center, .nav-phone, .nav-btn { display: none; }
            .hamburger { display: flex; }
            section { padding: 4rem 0; }
            .container { padding: 0 1rem; }
            .hero { padding: 0 1rem; }
            .bento-grid { grid-template-columns: 1fr; }
            .bento-large { grid-column: span 1; height: auto; min-height: 300px; }
            .menu-header { flex-direction: column; align-items: flex-start; }
            .gal-item { flex: 0 0 280px; height: 350px; }
            .field-row { grid-template-columns: 1fr; }
            .foot-grid { grid-template-columns: 1fr; }
            .page-header { padding: 100px 1rem 2rem; min-height: 30vh; }
            .contact-split > div > div { padding: 1.2rem !important; }
        }

        /* Mobile fixes */
        .menu-item > div:first-child, .mi > div:first-child, .m-card-left, .m5-item > div:first-child, .menu-card-header { flex: 1; padding-right: 1rem; }
        .menu-item-price, .mi-price, .m-price, .m5-item-price, .menu-card-price { flex-shrink: 0; }
        @media (max-width: 768px) {
            .menu-item, .mi, .m-card, .m5-item { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
            .menu-card-header { flex-direction: column; align-items: flex-start; gap: 0.2rem; width: 100%; }
        }

/* ── ADDITIONAL FRONTEND / CMS ── */
.mobile-nav {
    position: fixed; inset: 0; z-index: 998;
    background: rgba(12,12,12,0.98);
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2rem;
    opacity: 0; visibility: hidden; transition: all 0.4s;
}
.mobile-nav.open { opacity: 1; visibility: visible; }
.mobile-nav a { font-size: 1.5rem; font-family: 'Lora', serif; color: var(--text); text-decoration: none; }
.mobile-nav a:hover { color: var(--red); }

.page-header {
  position: relative;
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 120px 2rem 3rem;
}
.page-header-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-header-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-header-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(12,12,12,0.6) 0%, rgba(12,12,12,0.9) 100%);
  z-index: 1;
}
.page-header-content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.page-header-content h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.page-header-content p {
  font-size: 1rem;
  color: var(--text-dim);
  max-width: 500px;
  margin: 0 auto;
}

.legal-content { max-width: 800px; margin: 0 auto; padding: 4rem 1.5rem; line-height: 1.8; color: var(--text-dim); }
.legal-content h1, .legal-content h2 { color: var(--text); font-family: 'Lora', serif; margin-bottom: 1rem; }
.legal-content h1 { font-size: 2.5rem; margin-bottom: 2rem; }

.qr-menu { text-align: center; padding: 4rem 1.5rem; }
.error-page { text-align: center; padding: 8rem 1.5rem; min-height: 70vh; display: flex; flex-direction: column; align-items: center; justify-content: center; }

/* Widgets */
.whatsapp-btn {
    position: fixed; bottom: 24px; right: 24px; width: 60px; height: 60px;
    background: #25D366; color: #fff; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; font-size: 1.8rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2); z-index: 99; transition: transform 0.3s;
    text-decoration: none;
}
.whatsapp-btn:hover { transform: scale(1.1); }

.chatbot-toggle {
    position: fixed; bottom: 94px; right: 24px; width: 60px; height: 60px;
    background: var(--red); color: #fff; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; font-size: 1.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2); z-index: 99; cursor: pointer; transition: transform 0.3s;
}
.chatbot-toggle:hover { transform: scale(1.1); }

.chatbot-window {
    position: fixed; bottom: 164px; right: 24px; width: 350px; height: 500px;
    background: var(--surface); border: 1px solid var(--border); border-radius: 14px;
    z-index: 99; display: flex; flex-direction: column; overflow: hidden;
    opacity: 0; visibility: hidden; transform: translateY(20px); transition: all 0.3s;
}
.chatbot-window.open { opacity: 1; visibility: visible; transform: translateY(0); }

.cookie-consent {
    position: fixed; bottom: 0; left: 0; right: 0; background: var(--surface);
    border-top: 1px solid var(--border); padding: 1.5rem; z-index: 9999;
    display: flex; justify-content: space-between; align-items: center; gap: 1rem;
    transform: translateY(100%); transition: transform 0.4s;
}
.cookie-consent.show { transform: translateY(0); }

/* Toast Notifications */
.toast-container { position: fixed; top: 24px; right: 24px; z-index: 10000; display: flex; flex-direction: column; gap: 8px; }
.toast { display: flex; align-items: center; gap: 12px; padding: 14px 20px; background: var(--surface); border: 1px solid var(--border); border-radius: 14px; box-shadow: 0 12px 32px rgba(0,0,0,0.2); font-size: 0.9rem; min-width: 300px; max-width: 420px; animation: toast-in 0.3s ease; }
.toast--success { border-left: 3px solid var(--green); }
.toast--error { border-left: 3px solid var(--red); }
@keyframes toast-in { from { opacity: 0; transform: translateX(20px); } to { opacity: 1; transform: translateX(0); } }

/* Additional missing variables used in admin css */
:root {
    --green-soft: rgba(42,157,143,0.15);
    --radius-xs: 8px;
    --t-fast: 0.2s;
    --t-base: 0.3s;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --font-sans: 'Outfit', sans-serif;
    --font-serif: 'Lora', serif;
    --shadow-sm: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 12px 32px rgba(0,0,0,0.2);
    --overlay: rgba(0,0,0,0.7);
}

/* Skeleton */
.skeleton { position: relative; overflow: hidden; background: var(--surface-2); border-radius: var(--radius-xs); }
.skeleton::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.04) 50%, transparent 100%); animation: skeleton-shimmer 1.5s ease-in-out infinite; }
@keyframes skeleton-shimmer { 0% { transform: translateX(-100%); } 100% { transform: translateX(100%); } }

/* ----------------------------------------------------------------
   21. Admin Panel Styles
   ---------------------------------------------------------------- */

/* Admin Layout */
.admin-layout {
  display: flex;
  min-height: 100vh;
}

/* Sidebar */
.admin-sidebar {
  width: 260px;
  background: var(--surface);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: 100;
  transition: transform var(--t-base) var(--ease);
}

.admin-sidebar__header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}

.admin-sidebar__logo {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
}

.admin-sidebar__logo span { color: var(--red); }

.admin-sidebar__badge {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 8px;
  background: var(--red-soft);
  color: var(--red);
  border-radius: 4px;
  margin-left: 8px;
}

.admin-sidebar__nav {
  flex: 1;
  overflow-y: auto;
  padding: 16px 12px;
}

.admin-nav-group {
  margin-bottom: 24px;
}

.admin-nav-group__title {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-dim);
  padding: 0 12px;
  margin-bottom: 8px;
}

.admin-nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-dim);
  border-radius: var(--radius-xs);
  transition: all var(--t-fast) var(--ease);
  margin-bottom: 2px;
}

.admin-nav-link i {
  font-size: 1rem;
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}

.admin-nav-link:hover {
  background: var(--surface-2);
  color: var(--text);
}

.admin-nav-link.active {
  background: var(--red-soft);
  color: var(--red);
}

.admin-nav-link__badge {
  margin-left: auto;
  padding: 2px 8px;
  font-size: 0.65rem;
  font-weight: 600;
  background: var(--red);
  color: var(--white);
  border-radius: 100px;
}

.admin-sidebar__footer {
  padding: 16px 12px;
  border-top: 1px solid var(--border);
}

.admin-sidebar__user {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--radius-xs);
}

.admin-sidebar__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--red-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-weight: 600;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.admin-sidebar__user-name {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--white);
}

.admin-sidebar__user-role {
  font-size: 0.7rem;
  color: var(--text-dim);
}

/* Admin Main Content */
.admin-main {
  flex: 1;
  margin-left: 260px;
  min-height: 100vh;
  background: var(--bg);
}

/* Admin Header / Topbar */
.admin-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  position: sticky;
  top: 0;
  z-index: 50;
}

.admin-topbar__left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.admin-topbar__toggle {
  display: none;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-xs);
  color: var(--text-dim);
  font-size: 1.2rem;
  transition: all var(--t-fast) var(--ease);
}

.admin-topbar__toggle:hover {
  background: var(--surface);
  color: var(--white);
}

.admin-topbar__title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
}

.admin-topbar__subtitle {
  font-size: 0.8rem;
  color: var(--text-dim);
}

.admin-topbar__right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.admin-topbar__btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-xs);
  border: 1px solid var(--border);
  color: var(--text-dim);
  font-size: 1rem;
  transition: all var(--t-fast) var(--ease);
  position: relative;
}

.admin-topbar__btn:hover {
  background: var(--surface);
  color: var(--white);
}

.admin-topbar__btn .badge {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--red);
  color: var(--white);
  font-size: 0.55rem;
  font-weight: 700;
  border-radius: 50%;
}

/* Admin Content Area */
.admin-content {
  padding: 32px;
}

/* Dashboard Cards / Stats */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}

.stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 24px;
  transition: transform var(--t-base) var(--ease),
              box-shadow var(--t-base) var(--ease);
}

.stat-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.stat-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.stat-card__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-xs);
  font-size: 1.1rem;
}

.stat-card__icon--red {
  background: var(--red-soft);
  color: var(--red);
}

.stat-card__icon--green {
  background: var(--green-soft);
  color: var(--green);
}

.stat-card__icon--blue {
  background: rgba(59, 130, 246, 0.12);
  color: #3B82F6;
}

.stat-card__icon--yellow {
  background: rgba(244, 185, 66, 0.12);
  color: #F4B942;
}

.stat-card__trend {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  font-weight: 600;
}

.stat-card__trend--up { color: var(--green); }
.stat-card__trend--down { color: var(--red); }

.stat-card__value {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-card__label {
  font-size: 0.8rem;
  color: var(--text-dim);
}

/* Admin Tables */
.admin-table-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.admin-table-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 12px;
}

.admin-table-header__title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
}

.admin-table-header__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.admin-search {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-xs);
  transition: border-color var(--t-fast) var(--ease);
}

.admin-search:focus-within {
  border-color: var(--red);
}

.admin-search i {
  color: var(--text-dim);
  font-size: 0.85rem;
}

.admin-search input {
  width: 180px;
  font-size: 0.85rem;
  color: var(--text);
}

.admin-search input::placeholder {
  color: var(--text-dim);
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
}

.admin-table th {
  padding: 12px 24px;
  text-align: left;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  background: var(--surface-2);
  border-bottom: 1px solid var(--border);
}

.admin-table td {
  padding: 14px 24px;
  font-size: 0.9rem;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}

.admin-table tr:last-child td {
  border-bottom: none;
}

.admin-table tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}

.admin-table__img {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-xs);
  object-fit: cover;
}

.admin-table__actions {
  display: flex;
  align-items: center;
  gap: 6px;
}

.admin-table__btn {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-xs);
  font-size: 0.8rem;
  color: var(--text-dim);
  transition: all var(--t-fast) var(--ease);
}

.admin-table__btn:hover {
  background: var(--surface-2);
  color: var(--white);
}

.admin-table__btn--edit:hover { color: #3B82F6; }
.admin-table__btn--delete:hover { color: var(--red); }

.admin-table__status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: 100px;
}

.admin-table__status--active {
  background: var(--green-soft);
  color: var(--green);
}

.admin-table__status--inactive {
  background: var(--red-soft);
  color: var(--red);
}

.admin-table__status--pending {
  background: rgba(244, 185, 66, 0.12);
  color: #F4B942;
}

/* Pagination */
.admin-pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  border-top: 1px solid var(--border);
}

.admin-pagination__info {
  font-size: 0.8rem;
  color: var(--text-dim);
}

.admin-pagination__btns {
  display: flex;
  gap: 4px;
}

.admin-pagination__btn {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-xs);
  font-size: 0.8rem;
  color: var(--text-dim);
  transition: all var(--t-fast) var(--ease);
}

.admin-pagination__btn:hover {
  background: var(--surface-2);
  color: var(--white);
}

.admin-pagination__btn.active {
  background: var(--red);
  color: var(--white);
}

/* Admin Forms / Modals */
.admin-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--t-base) var(--ease),
              visibility var(--t-base) var(--ease);
}

.admin-modal.open {
  opacity: 1;
  visibility: visible;
}

.admin-modal__overlay {
  position: absolute;
  inset: 0;
  background: var(--overlay);
}

.admin-modal__content {
  position: relative;
  width: 100%;
  max-width: 600px;
  max-height: 90vh;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transform: translateY(16px) scale(0.95);
  transition: transform var(--t-base) var(--ease);
}

.admin-modal.open .admin-modal__content {
  transform: translateY(0) scale(1);
}

.admin-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}

.admin-modal__title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
}

.admin-modal__close {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--text-dim);
  transition: all var(--t-fast) var(--ease);
  cursor: pointer;
}

.admin-modal__close:hover {
  background: var(--surface-2);
  color: var(--white);
}

.admin-modal__body {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
}

.admin-modal__footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  padding: 16px 24px;
  border-top: 1px solid var(--border);
}

/* Admin form card */
.admin-form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 24px;
}

.admin-form-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}

.admin-form-card__title {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
}

.admin-form-card__body {
  padding: 24px;
}

/* Toggle switch */
.toggle {
  position: relative;
  width: 44px;
  height: 24px;
  cursor: pointer;
}

.toggle input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}

.toggle__slider {
  position: absolute;
  inset: 0;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: background var(--t-fast) var(--ease);
}

.toggle__slider::before {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 16px;
  height: 16px;
  background: var(--text-dim);
  border-radius: 50%;
  transition: transform var(--t-fast) var(--ease),
              background var(--t-fast) var(--ease);
}

.toggle input:checked + .toggle__slider {
  background: var(--green-soft);
  border-color: var(--green);
}

.toggle input:checked + .toggle__slider::before {
  transform: translateX(20px);
  background: var(--green);
}

/* Drag handle */
.drag-handle {
  cursor: grab;
  color: var(--text-dim);
  opacity: 0.5;
  transition: opacity var(--t-fast) var(--ease);
}

.drag-handle:hover { opacity: 1; }
.drag-handle:active { cursor: grabbing; }

/* File upload */
.file-upload {
  border: 2px dashed var(--border);
  border-radius: var(--radius-sm);
  padding: 32px;
  text-align: center;
  transition: all var(--t-fast) var(--ease);
  cursor: pointer;
}

.file-upload:hover,
.file-upload.dragover {
  border-color: var(--red);
  background: var(--red-soft);
}

.file-upload__icon {
  font-size: 2rem;
  color: var(--text-dim);
  margin-bottom: 12px;
}

.file-upload__text {
  font-size: 0.9rem;
  color: var(--text-dim);
  margin-bottom: 4px;
}

.file-upload__hint {
  font-size: 0.75rem;
  color: var(--text-dim);
  opacity: 0.6;
}

.file-upload input[type="file"] {
  display: none;
}

/* Image preview */
.img-preview {
  position: relative;
  display: inline-block;
  border-radius: var(--radius-xs);
  overflow: hidden;
}

.img-preview img {
  display: block;
  max-width: 200px;
  max-height: 150px;
  object-fit: cover;
}

.img-preview__remove {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  font-size: 0.7rem;
  cursor: pointer;
  transition: transform var(--t-fast) var(--ease);
}

.img-preview__remove:hover {
  transform: scale(1.1);
}

/* Admin charts placeholder */
.admin-chart {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 24px;
  min-height: 300px;
}

.admin-chart__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.admin-chart__title {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
}

/* Admin grid layouts */
.admin-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.admin-grid-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}

/* Order status badges */
.order-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 14px;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 100px;
}

.order-status--yeni {
  background: rgba(59, 130, 246, 0.12);
  color: #3B82F6;
}

.order-status--hazirlaniyor {
  background: rgba(244, 185, 66, 0.12);
  color: #F4B942;
}

.order-status--hazir {
  background: var(--green-soft);
  color: var(--green);
}

.order-status--teslim {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-dim);
}

.order-status--iptal {
  background: var(--red-soft);
  color: var(--red);
}

/* Admin notification dropdown */
.admin-notifications {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 360px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--t-fast) var(--ease);
}

.admin-notifications.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.admin-notif-item {
  display: flex;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  transition: background var(--t-fast) var(--ease);
}

.admin-notif-item:hover {
  background: var(--surface-2);
}

.admin-notif-item.unread {
  background: rgba(230, 57, 70, 0.04);
}

.admin-notif-item:last-child {
  border-bottom: none;
}

/* ----------------------------------------------------------------
   22. Print Styles (QR Codes)
   ---------------------------------------------------------------- */
@media print {
  *,
  *::before,
  *::after {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .navbar,
  .footer,
  .whatsapp-btn,
  .chatbot-toggle,
  .chatbot-window,
  .cookie-banner,
  .admin-sidebar,
  .admin-topbar,
  .no-print {
    display: none !important;
  }

  .admin-main {
    margin-left: 0 !important;
  }

  .qr-print-area {
    display: block;
    text-align: center;
    page-break-inside: avoid;
  }

  .qr-print-card {
    display: inline-block;
    width: 300px;
    padding: 24px;
    margin: 12px;
    border: 2px solid #000;
    border-radius: 12px;
    page-break-inside: avoid;
  }

  .qr-print-card img {
    width: 200px;
    height: 200px;
    margin: 0 auto 12px;
  }

  .qr-print-card__table {
    font-size: 18pt;
    font-weight: 700;
    margin-bottom: 8px;
  }

  .qr-print-card__brand {
    font-size: 10pt;
    color: #666 !important;
  }

  .qr-print-card__url {
    font-size: 8pt;
    color: #999 !important;
    word-break: break-all;
  }

  @page {
    margin: 1cm;
  }
}

/* ----------------------------------------------------------------
   23. Responsive — 1024px
   ---------------------------------------------------------------- */
@media (max-width: 1024px) {
  :root {
    --section-py: 80px;
  }

  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-lang { display: none; }
  .hamburger { display: flex; }

  .bento-grid {
    grid-template-columns: 1fr 1fr;
  }

  .bento-card--wide { grid-column: span 2; }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-brand {
    grid-column: span 2;
    max-width: none;
  }

  .contact-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Admin responsive */
  .admin-sidebar {
    transform: translateX(-100%);
  }

  .admin-sidebar.open {
    transform: translateX(0);
  }

  .admin-main {
    margin-left: 0;
  }

  .admin-topbar__toggle {
    display: flex;
  }

  .admin-grid-2,
  .admin-grid-3 {
    grid-template-columns: 1fr;
  }

  .admin-table-wrap {
    overflow-x: auto;
  }

  .admin-table {
    min-width: 700px;
  }
}

/* ----------------------------------------------------------------
   24. Responsive — 768px
   ---------------------------------------------------------------- */
@media (max-width: 768px) {
  :root {
    --section-py: 64px;
    --nav-h: 64px;
  }

  .bento-grid {
    grid-template-columns: 1fr;
  }

  .bento-card--wide { grid-column: span 1; }
  .bento-card--tall { grid-row: span 1; }

  .menu-grid {
    grid-template-columns: 1fr;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item {
    width: 260px;
    height: 320px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .reservation-form {
    padding: 32px 24px;
  }

  .reservation-form .form-row,
  .reservation-form .form-row--three {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-brand {
    grid-column: span 1;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .mobile-nav a {
    font-size: 1.5rem;
    padding: 12px 0;
  }

  .hero h1 {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .hero-desc {
    font-size: 1rem;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .admin-content {
    padding: 20px 16px;
  }

  .admin-modal__content {
    max-width: 100%;
  }

  .chatbot-window {
    width: calc(100vw - 32px);
    right: 16px;
    bottom: 84px;
    max-height: 70vh;
  }

  .cookie-banner .container {
    flex-direction: column;
    text-align: center;
  }

  .cookie-banner__actions {
    width: 100%;
    justify-content: center;
  }

  .lightbox__nav--prev { left: 12px; }
  .lightbox__nav--next { right: 12px; }

  .allergen-grid {
    grid-template-columns: 1fr;
  }
}

/* ----------------------------------------------------------------
   25. Responsive — 480px
   ---------------------------------------------------------------- */
@media (max-width: 480px) {
  :root {
    --section-py: 48px;
  }

  .container {
    padding: 0 16px;
  }

  .hero-chip {
    font-size: 0.7rem;
    padding: 6px 14px;
  }

  /* .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
  } */

  .scroll-indicator { display: none; }

  .tag-line::before,
  .tag-line::after {
    width: 20px;
  }

  .sec-title {
    font-size: 1.75rem;
  }

  .menu-filters {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    scrollbar-width: none;
    padding-bottom: 8px;
  }

  .menu-filters::-webkit-scrollbar { display: none; }

  .filter-btn {
    flex-shrink: 0;
  }

  .form-card {
    padding: 24px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .cart-sidebar {
    max-width: 100%;
  }

  .whatsapp-btn {
    width: 48px;
    height: 48px;
    font-size: 1.2rem;
    bottom: 88px;
    right: 16px;
  }

  .chatbot-toggle {
    width: 48px;
    height: 48px;
    font-size: 1.1rem;
    right: 16px;
  }

  .chatbot-window {
    right: 8px;
    left: 8px;
    width: auto;
    bottom: 76px;
  }

  .legal-content h1 {
    font-size: 1.75rem;
  }

  .error-page__code {
    font-size: 5rem;
  }
}

/* ----------------------------------------------------------------
   26. Utility Classes
   ---------------------------------------------------------------- */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-red { color: var(--red); }
.text-green { color: var(--green); }
.text-dim { color: var(--text-dim); }
.text-white { color: var(--white); }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mt-5 { margin-top: 48px; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mb-5 { margin-bottom: 48px; }

.p-0 { padding: 0; }
.p-1 { padding: 8px; }
.p-2 { padding: 16px; }
.p-3 { padding: 24px; }
.p-4 { padding: 32px; }

.gap-1 { gap: 8px; }
.gap-2 { gap: 16px; }
.gap-3 { gap: 24px; }
.gap-4 { gap: 32px; }

.d-flex { display: flex; }
.d-grid { display: grid; }
.d-none { display: none; }
.d-block { display: block; }
.d-inline-flex { display: inline-flex; }

.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }

.w-full { width: 100%; }
.h-full { height: 100%; }

.overflow-hidden { overflow: hidden; }
.relative { position: relative; }

.rounded { border-radius: var(--radius); }
.rounded-sm { border-radius: var(--radius-sm); }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Skeleton loading */
.skeleton {
  position: relative;
  overflow: hidden;
  background: var(--surface-2);
  border-radius: var(--radius-xs);
}

.skeleton::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.04) 50%,
    transparent 100%
  );
  animation: skeleton-shimmer 1.5s ease-in-out infinite;
}

@keyframes skeleton-shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* Toast notifications */
.toast-container {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.toast {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  font-size: 0.9rem;
  min-width: 300px;
  max-width: 420px;
  animation: toast-in 0.3s var(--ease);
}

.toast--success {
  border-left: 3px solid var(--green);
}

.toast--error {
  border-left: 3px solid var(--red);
}

.toast--info {
  border-left: 3px solid #3B82F6;
}

.toast__icon {
  font-size: 1.1rem;
  flex-shrink: 0;
}

.toast--success .toast__icon { color: var(--green); }
.toast--error .toast__icon { color: var(--red); }
.toast--info .toast__icon { color: #3B82F6; }

.toast__content { flex: 1; }

.toast__close {
  color: var(--text-dim);
  font-size: 0.8rem;
  cursor: pointer;
  flex-shrink: 0;
  transition: color var(--t-fast) var(--ease);
}

.toast__close:hover { color: var(--white); }

@keyframes toast-in {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.toast.removing {
  animation: toast-out 0.3s var(--ease) forwards;
}

@keyframes toast-out {
  to {
    opacity: 0;
    transform: translateX(20px);
  }
}

/* Body lock when modal open */
body.modal-open {
  overflow: hidden;
}

/* Loading spinner */
.spinner {
  width: 32px;
  height: 32px;
  border: 3px solid var(--border);
  border-top-color: var(--red);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.spinner--sm {
  width: 18px;
  height: 18px;
  border-width: 2px;
}

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  font-size: 0.7rem;
  font-weight: 600;
  border-radius: 100px;
}

.badge--red {
  background: var(--red-soft);
  color: var(--red);
}

.badge--green {
  background: var(--green-soft);
  color: var(--green);
}

/* Divider */
.divider {
  width: 100%;
  height: 1px;
  background: var(--border);
  margin: 24px 0;
}

/* Empty state */
.empty-state {
  text-align: center;
  padding: 64px 24px;
}

.empty-state__icon {
  font-size: 3rem;
  color: var(--text-dim);
  opacity: 0.3;
  margin-bottom: 16px;
}

.empty-state__title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.empty-state__text {
  font-size: 0.9rem;
  color: var(--text-dim);
  margin-bottom: 24px;
}

/* Tabs */
.tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
}

.tab-btn {
  padding: 12px 24px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-dim);
  position: relative;
  transition: color var(--t-fast) var(--ease);
}

.tab-btn::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform var(--t-fast) var(--ease);
}

.tab-btn:hover { color: var(--text); }

.tab-btn.active {
  color: var(--white);
}

.tab-btn.active::after {
  transform: scaleX(1);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

/* Tooltip */
[data-tooltip] {
  position: relative;
}

[data-tooltip]::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  padding: 6px 12px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-xs);
  font-size: 0.75rem;
  color: var(--text);
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all var(--t-fast) var(--ease);
  z-index: 100;
}

[data-tooltip]:hover::after {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* Garden Section */
.garden-section {
    padding: 6rem 3rem;
    background: var(--bg);
    text-align: center;
}
.garden-content { max-width: 800px; margin: 0 auto; }
.garden-image { width: 100%; border-radius: var(--radius); margin-top: 2rem; object-fit: cover; }

