/*
================================
Paicafe Custom Stylesheet
================================
*/

/* Class to apply the Myanmar font */
.lang-mm {
    font-family: 'Padauk', sans-serif;
}
/* --------------------------------
1. Variables & Global Styles
--------------------------------
*/

:root {
    --brand-primary: #C2410C;
    --brand-secondary: #0F766E;
    --brand-accent: #D97706;
    --page-bg: #F5F7F2;
    --page-bg-soft: #EEF4EB;
    --surface-card: #FFFDF8;
    --surface-card-muted: #F6F0E6;
    --surface-control: #EEF6F3;
    --surface-control-hover: #E2EFEA;
    --nav-bg: rgba(255, 253, 248, 0.9);
    --text-dark: #1F2933;
    --text-muted: #64716D;
    --border-light: #D9E4DD;
    --shadow-soft: 0 18px 48px rgba(23, 53, 47, 0.1);
    --font-sans: 'Poppins', sans-serif;
    color-scheme: light;
}

.light {
    color-scheme: light;
}

.dark {
    color-scheme: dark;
    --brand-primary: #FB923C;
    --brand-secondary: #5EEAD4;
    --brand-accent: #FBBF24;
    --page-bg: #071316;
    --page-bg-soft: #0B1D21;
    --surface-card: #122126;
    --surface-card-muted: #172B31;
    --surface-control: #1D333A;
    --surface-control-hover: #28454D;
    --nav-bg: rgba(18, 33, 38, 0.9);
    --text-dark: #E7F0ED;
    --text-muted: #9FB5AF;
    --border-light: #28454D;
    --shadow-soft: 0 22px 56px rgba(0, 0, 0, 0.34);
}
html, body {
    height: 100%;
}

/* ... (the rest of your stylesheet remains the same) ... */
body {
    font-family: var(--font-sans);
    color: var(--text-dark);
    background:
        linear-gradient(135deg, rgba(15, 118, 110, 0.08), transparent 34%),
        linear-gradient(315deg, rgba(217, 119, 6, 0.08), transparent 38%),
        var(--page-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3 {
    font-weight: 700;
}

.lang-mm {
    font-family: 'Padauk', sans-serif;
}

#page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease-out;
}

.dark #page-loader {
    background-color: #020617;
}

.coffee-loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.coffee-loader__svg {
    width: min(220px, 56vw);
    height: auto;
    filter: drop-shadow(0 18px 34px rgba(234, 88, 12, 0.22));
}

.dark .coffee-loader__svg {
    filter: drop-shadow(0 18px 40px rgba(234, 88, 12, 0.34));
}

.coffee-loader__brand {
    color: var(--brand-primary);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.28em;
}

.coffee-loader__pot {
    transform-origin: 146px 56px;
    animation: coffeePotTilt 1.6s ease-in-out infinite;
}

.coffee-loader__pour {
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: coffeePour 1.6s ease-in-out infinite;
}

.coffee-loader__fill {
    animation: coffeeFill 1.6s ease-in-out infinite;
}

.coffee-loader__steam path {
    opacity: 0;
    animation: coffeeSteam 1.8s ease-in-out infinite;
}

.coffee-loader__steam path:nth-child(2) {
    animation-delay: 0.2s;
}

.coffee-loader__steam path:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes coffeePotTilt {
    0%, 100% { transform: rotate(0deg); }
    35%, 72% { transform: rotate(-7deg); }
}

@keyframes coffeePour {
    0%, 18% { stroke-dashoffset: 48; opacity: 0; }
    28%, 72% { stroke-dashoffset: 0; opacity: 1; }
    86%, 100% { stroke-dashoffset: -48; opacity: 0; }
}

@keyframes coffeeFill {
    0%, 18% { transform: translateY(26px); }
    72%, 100% { transform: translateY(-8px); }
}

@keyframes coffeeSteam {
    0%, 25% { opacity: 0; transform: translateY(8px); }
    45% { opacity: 0.8; }
    100% { opacity: 0; transform: translateY(-14px); }
}

/*
--------------------------------
2. Reusable Components
--------------------------------
*/

.btn-brand {
    @apply inline-block px-6 py-3 rounded-full font-semibold text-white shadow-md transition-all duration-300 ease-in-out;
    background-color: var(--brand-primary);
    border-radius: 9999px;
}
.btn-brand:hover {
    background-color: var(--brand-secondary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-outline {
    @apply inline-block px-6 py-3 rounded-full font-semibold shadow-sm transition-all duration-300 ease-in-out;
    background-color: transparent;
    color: var(--brand-primary);
    border: 2px solid var(--brand-primary);
}
.btn-outline:hover {
    background-color: var(--brand-primary);
    color: white;
}


/* FIX: A single, clean style for all form inputs */
.form-input {
    @apply w-full mt-1 px-4 py-2 bg-gray-50 border border-gray-300 rounded-md transition;
    background-color: var(--surface-control);
    border-color: var(--border-light);
    color: var(--text-dark);
}
.form-input:focus {
    @apply outline-none border-transparent ring-2 ring-orange-500;
    background-color: var(--surface-card);
}


/*
--------------------------------
3. Animations & Print Styles
--------------------------------
*/

.subtle-fade-in {
    animation: fadeIn 0.8s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Public café interface polish */
html { scroll-behavior: smooth; }

body { line-height: 1.65; }

.cafe-navbar {
    position: sticky;
    top: 0;
    z-index: 40;
    background: color-mix(in srgb, var(--surface-card) 90%, transparent) !important;
    border-color: color-mix(in srgb, var(--border-light) 72%, transparent) !important;
    box-shadow: 0 8px 30px rgba(50, 35, 24, .07);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.cafe-navbar a { font-weight: 600; transition: color .2s ease, transform .2s ease; }
.cafe-navbar a:hover { transform: translateY(-1px); }
.cafe-navbar img { border-radius: 12px; box-shadow: 0 4px 14px rgba(50, 35, 24, .14); }
.cafe-navbar__inner { max-width: 1380px; min-height: 70px; }
.cafe-brand { gap: .7rem; flex-shrink: 0; text-decoration: none; }
.cafe-brand:hover { transform: none !important; }
.cafe-brand__mark { display:grid; place-items:center; width:48px; height:48px; filter:drop-shadow(0 7px 9px rgba(154,52,18,.18)); }
.cafe-brand__mark svg { width:100%; height:100%; }
.cafe-brand__type { display:flex; flex-direction:column; line-height:1; }
.cafe-brand__type strong { color:var(--text-dark); font-size:1.05rem; letter-spacing:-.03em; }
.cafe-brand__type small { margin-top:.3rem; color:var(--brand-primary); font-size:.58rem; font-weight:800; letter-spacing:.18em; text-transform:uppercase; }
.cafe-nav-link { position:relative; padding:.65rem .8rem; border-radius:.75rem; color:var(--text-muted); font-size:.86rem; }
.cafe-nav-link:hover,.cafe-nav-link.active { color:var(--brand-primary); background:color-mix(in srgb,var(--brand-primary) 8%,transparent); }
.cafe-nav-link.active::after { content:""; position:absolute; left:50%; bottom:.25rem; width:16px; height:2px; border-radius:2px; background:var(--brand-primary); transform:translateX(-50%); }
.desktop-cart-link { display:flex; align-items:center; gap:.45rem; min-height:42px; padding:.55rem .7rem .55rem .9rem; border:1px solid var(--border-light); border-radius:999px; color:var(--text-dark); background:var(--surface-control); }
.desktop-cart-link b { display:grid; place-items:center; min-width:24px; height:24px; padding:0 .35rem; border-radius:999px; color:white; background:var(--brand-primary); font-size:.68rem; }
.halal-badge { display:flex; flex-direction:column; align-items:center; justify-content:center; width:44px; height:44px; border:1px solid color-mix(in srgb,var(--brand-secondary) 28%,var(--border-light)); border-radius:50%; color:var(--brand-secondary); background:color-mix(in srgb,var(--brand-secondary) 7%,transparent); line-height:1; }
.halal-badge span { font-size:.75rem; font-weight:800; }.halal-badge small{margin-top:2px;font-size:.42rem;font-weight:800;letter-spacing:.08em}
.dark .cafe-brand__type strong { color:#f8fafc; }
@media (min-width:768px) {
    .cafe-navbar { padding:.65rem 1rem; background:transparent !important; border:0 !important; box-shadow:none; }
    .cafe-navbar__inner { position:relative; padding-right:1.3rem !important; border:1px solid var(--border-light); border-radius:2.5rem 1.2rem 1.2rem 2.5rem; background:var(--nav-bg); box-shadow:0 15px 42px rgba(46,32,22,.12),inset 0 1px 0 rgba(255,255,255,.8); overflow:hidden; }
    .cafe-navbar__inner::before { content:""; position:absolute; z-index:0; top:-2px; right:-1px; bottom:-2px; width:72px; background:repeating-linear-gradient(8deg,transparent 0 7px,rgba(255,255,255,.035) 8px,rgba(0,0,0,.055) 10px),linear-gradient(100deg,#704129,#321a12); border-left:9px solid #9ca3af; box-shadow:-4px 0 9px rgba(0,0,0,.18); transform:skewX(-8deg); }
    .cafe-navbar__inner > * { position:relative; z-index:1; }
    .halal-badge { margin-left:.4rem; color:#fff7ed; border-color:rgba(255,255,255,.2); background:rgba(255,255,255,.08); }
}
@media (min-width:768px) and (max-width:1120px) {
    .cafe-navbar__inner { padding-inline:1rem !important; }
    .cafe-navbar__inner > div { gap:.25rem !important; }
    .cafe-nav-link { padding-inline:.55rem; }
    .halal-badge { display:none; }
    .cafe-brand__type small { display:none; }
}

.cafe-main { max-width: 1280px; }

.cafe-hero {
    min-height: clamp(520px, 68vh, 720px);
    border-radius: 2rem !important;
    isolation: isolate;
    box-shadow: 0 28px 70px rgba(38, 28, 19, .2);
}

.cafe-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(90deg, rgba(28, 18, 12, .83), rgba(28, 18, 12, .45) 56%, rgba(28, 18, 12, .22));
}

.cafe-hero > img { opacity: .72 !important; transform: scale(1.015); }
.cafe-hero > div { align-items: flex-start !important; text-align: left !important; max-width: 760px; }
.cafe-hero h1 { letter-spacing: -.045em; text-wrap: balance; text-shadow: 0 3px 24px rgba(0,0,0,.22); }
.cafe-hero h1 span { color: #fdba74; }
.cafe-hero p { color: rgba(255,255,255,.85); }
.cafe-hero__eyebrow {
    display: inline-flex;
    margin-bottom: 1.25rem;
    padding: .5rem .9rem;
    border: 1px solid rgba(255,255,255,.3);
    border-radius: 999px;
    background: rgba(255,255,255,.12);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
}
.cafe-hero__brand { display:flex; align-items:center; gap:.7rem; margin-bottom:1.15rem; padding:.55rem .85rem .55rem .55rem; border:1px solid rgba(255,255,255,.24); border-radius:1rem; background:rgba(23,13,8,.24); backdrop-filter:blur(10px); }
.cafe-hero__brand img { width:42px; height:42px; filter:drop-shadow(0 6px 7px rgba(0,0,0,.22)); }
.cafe-hero__brand span { display:flex; flex-direction:column; line-height:1; }.cafe-hero__brand strong{font-size:1rem;letter-spacing:.16em}.cafe-hero__brand small{margin-top:.28rem;color:#fed7aa;font-size:.58rem;font-weight:700;letter-spacing:.08em;text-transform:uppercase}
.cafe-hero__actions { display: flex; flex-wrap: wrap; gap: .8rem; }
.cafe-hero__secondary {
    padding: .75rem 1.5rem;
    border: 1px solid rgba(255,255,255,.55);
    border-radius: 999px;
    color: white;
    font-weight: 600;
    transition: .25s ease;
}
.cafe-hero__secondary:hover { background: white; color: #7c2d12; transform: translateY(-2px); }
.cafe-hero__facts { display:flex; flex-wrap:wrap; gap:1.2rem; margin-top:2rem; color:rgba(255,255,255,.78); font-size:.72rem; font-weight:600; }
.cafe-hero__facts span { display:inline-flex; align-items:center; gap:.4rem; }.cafe-hero__facts i{color:#fdba74}

.btn-brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .4rem;
    min-height: 46px;
    padding: .7rem 1.35rem;
    box-shadow: 0 10px 22px rgba(194, 65, 12, .22);
}

.cafe-main h2 { letter-spacing: -.035em; text-wrap: balance; }
.cafe-highlights {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    margin: -1rem 0 5rem;
}
.cafe-highlights article {
    display: flex;
    align-items: center;
    gap: .9rem;
    padding: 1.2rem;
    border: 1px solid var(--border-light);
    border-radius: 1.25rem;
    background: color-mix(in srgb, var(--surface-card) 92%, transparent);
    box-shadow: 0 12px 32px rgba(40, 31, 22, .06);
}
.cafe-highlights i { color: var(--brand-primary); font-size: 1.35rem; }
.cafe-highlights strong, .cafe-highlights span { display: block; }
.cafe-highlights strong { font-size: .9rem; color: var(--text-dark); }
.cafe-highlights span { margin-top: .15rem; color: var(--text-muted); font-size: .74rem; line-height: 1.45; }
.cafe-main .bg-white, .cafe-main .bg-gray-50 { border: 1px solid color-mix(in srgb, var(--border-light) 70%, transparent); }
.cafe-main .shadow-lg, .cafe-main .shadow-xl, .cafe-main .shadow-md { box-shadow: var(--shadow-soft) !important; }
.cafe-main img.object-cover { transition: transform .45s cubic-bezier(.2,.7,.2,1); }
.cafe-main a:hover img.object-cover, .cafe-main .overflow-hidden:hover > img.object-cover { transform: scale(1.035); }

@media (max-width: 767px) {
    body { padding-bottom: 74px; }
    .cafe-main { padding: 1rem !important; }
    .cafe-hero { min-height: 560px; margin-bottom: 4rem !important; border-radius: 1.35rem !important; }
    .cafe-hero > div { padding: 1.5rem !important; justify-content: flex-end !important; }
    .cafe-hero h1 { font-size: clamp(2.35rem, 11vw, 3.5rem); }
    .cafe-hero__actions { width: 100%; }
    .cafe-hero__actions a { width: 100%; }
    .cafe-hero__facts { gap:.65rem 1rem; margin-top:1.25rem; }
    .cafe-highlights { grid-template-columns: 1fr 1fr; margin-bottom: 3.5rem; }
    .cafe-highlights article { align-items: flex-start; padding: 1rem; }
    .cafe-main .py-20 { padding-top: 3.5rem !important; padding-bottom: 3.5rem !important; }
    .cafe-main h2.text-4xl { font-size: 1.9rem !important; }
    .mobile-floating-bar { margin: 0 .65rem .65rem; border-radius: 1.25rem; box-shadow: 0 12px 35px rgba(30,20,14,.2); }
}
 { .cafe-highlights { grid-template-columns: 1fr; } }

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/*
--------------------------------
4. Dark Mode Compatibility Layer
--------------------------------
*/

.dark .form-input,
.dark input,
.dark select,
.dark textarea {
    background-color: var(--surface-control);
    border-color: var(--border-light);
    color: var(--text-dark);
}

.dark input::placeholder,
.dark textarea::placeholder {
    color: #6f8983;
}

.bg-white,
.bg-white\/70,
.bg-white\/80,
.bg-white\/90,
.bg-white\/95 {
    background-color: color-mix(in srgb, var(--surface-card) 88%, transparent) !important;
}

.bg-gray-50,
.bg-slate-50,
.bg-slate-50\/30,
.bg-slate-50\/50 {
    background-color: color-mix(in srgb, var(--surface-card-muted) 78%, transparent) !important;
}

.bg-gray-100,
.bg-gray-200,
.bg-slate-100,
.bg-slate-200,
.bg-slate-800,
.bg-slate-900,
.bg-slate-950 {
    background-color: var(--surface-control) !important;
}

.dark .dark\:bg-white,
.dark .dark\:bg-slate-900,
.dark .dark\:bg-slate-900\/50,
.dark .dark\:bg-slate-900\/70,
.dark .dark\:bg-slate-900\/80 {
    background-color: color-mix(in srgb, var(--surface-card) 84%, transparent) !important;
}

.dark .dark\:bg-slate-950,
.dark .dark\:bg-slate-950\/20,
.dark .dark\:bg-slate-950\/30,
.dark .dark\:bg-slate-950\/50 {
    background-color: color-mix(in srgb, var(--page-bg-soft) 78%, transparent) !important;
}

.dark .dark\:bg-slate-800,
.dark .dark\:bg-slate-700 {
    background-color: var(--surface-control) !important;
}

.dark .dark\:border-slate-700,
.dark .dark\:border-slate-800,
.dark .dark\:border-white\/5 {
    border-color: var(--border-light) !important;
}

.border-gray-100,
.border-gray-200,
.border-gray-300,
.border-slate-100,
.border-slate-200,
.border-slate-300,
.border-slate-700,
.border-slate-800,
hr {
    border-color: var(--border-light) !important;
}

.shadow-md,
.shadow-lg,
.shadow-xl,
.shadow-2xl {
    box-shadow: var(--shadow-soft) !important;
}

.hover\:bg-gray-50:hover,
.hover\:bg-gray-100:hover,
.hover\:bg-gray-200:hover,
.hover\:bg-slate-50:hover,
.hover\:bg-slate-100:hover,
.hover\:bg-slate-200:hover,
.dark .hover\:bg-gray-50:hover,
.dark .hover\:bg-gray-100:hover,
.dark .hover\:bg-gray-200:hover,
.dark .hover\:bg-slate-700:hover,
.dark .hover\:bg-slate-800:hover {
    background-color: var(--surface-control-hover) !important;
}

nav.bg-white,
.mobile-floating-bar,
footer.bg-white {
    background-color: var(--nav-bg) !important;
    backdrop-filter: blur(16px);
    border-color: var(--border-light) !important;
}

.dark .bg-white,
.dark .bg-gray-50,
.dark .bg-gray-100 {
    background-color: var(--surface-card) !important;
}

.dark .bg-white\/70,
.dark .bg-white\/80,
.dark .bg-white\/90,
.dark .bg-white\/95 {
    background-color: color-mix(in srgb, var(--surface-card) 82%, transparent) !important;
}

.dark .bg-gray-200,
.dark .bg-slate-100,
.dark .bg-slate-200 {
    background-color: var(--surface-control) !important;
}

.dark .bg-slate-50,
.dark .bg-slate-50\/30,
.dark .bg-slate-50\/50 {
    background-color: color-mix(in srgb, var(--surface-card-muted) 68%, transparent) !important;
}

.dark .bg-blue-100 {
    background-color: rgba(30, 64, 175, 0.28) !important;
}

.dark .bg-green-50,
.dark .bg-green-100 {
    background-color: rgba(6, 78, 59, 0.28) !important;
}

.dark .bg-red-50,
.dark .bg-red-100 {
    background-color: rgba(127, 29, 29, 0.28) !important;
}

.dark .bg-yellow-100 {
    background-color: rgba(113, 63, 18, 0.32) !important;
}

.dark .text-gray-900,
.dark .text-gray-800,
.dark .text-gray-700,
.dark .text-slate-900,
.dark .text-slate-800,
.dark .text-slate-700,
.dark h1:not([class*="text-"]),
.dark h2:not([class*="text-"]),
.dark h3:not([class*="text-"]),
.dark h4:not([class*="text-"]),
.dark h5:not([class*="text-"]),
.dark h6:not([class*="text-"]) {
    color: #e2e8f0 !important;
}

.dark .text-gray-600,
.dark .text-gray-500,
.dark .text-gray-400,
.dark .text-slate-600,
.dark .text-slate-500,
.dark .text-slate-400,
.dark p:not([class*="text-"]),
.dark label:not([class*="text-"]),
.dark td:not([class*="text-"]),
.dark th:not([class*="text-"]) {
    color: #94a3b8 !important;
}

.dark .text-blue-500,
.dark .text-blue-600,
.dark .hover\:text-blue-600:hover {
    color: #60a5fa !important;
}

.dark .text-green-700,
.dark .text-green-800 {
    color: #86efac !important;
}

.dark .text-red-700,
.dark .text-red-800 {
    color: #fca5a5 !important;
}

.dark .text-yellow-800 {
    color: #fde68a !important;
}

.dark .border-gray-100,
.dark .border-gray-200,
.dark .border-gray-300,
.dark .border-slate-100,
.dark .border-slate-200,
.dark .border-slate-300,
.dark hr {
    border-color: var(--border-light) !important;
}

.dark .shadow-md,
.dark .shadow-lg,
.dark .shadow-xl,
.dark .shadow-2xl {
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35) !important;
}

.dark .hover\:bg-gray-50:hover,
.dark .hover\:bg-gray-100:hover,
.dark .hover\:bg-gray-200:hover {
    background-color: var(--surface-control-hover) !important;
}

.dark table,
.dark thead,
.dark tbody,
.dark tr {
    border-color: var(--border-light) !important;
}

.dark tr.hover\:bg-gray-50:hover,
.dark tr.hover\:bg-slate-50:hover {
    background-color: color-mix(in srgb, var(--surface-control-hover) 78%, transparent) !important;
}

.dark .prose,
.dark .prose p,
.dark .prose li,
.dark .prose strong {
    color: #cbd5e1 !important;
}

.dark .line-through {
    color: #64748b !important;
}

.dark [class*="divide-gray-"] > :not([hidden]) ~ :not([hidden]),
.dark [class*="divide-slate-"] > :not([hidden]) ~ :not([hidden]) {
    border-color: #334155 !important;
}

.dark .mobile-floating-bar .active {
    color: var(--brand-secondary) !important;
}

.dark iframe {
    filter: grayscale(0.25) invert(0.9) contrast(0.9);
}

.theme-toggle {
    flex-shrink: 0;
}
.theme-glyph { display:block; width:20px; height:20px; margin:auto; overflow:visible; fill:none; stroke:currentColor; stroke-width:1.8; stroke-linecap:round; stroke-linejoin:round; transition:transform .35s cubic-bezier(.2,.8,.2,1); }
.theme-glyph__moon { display:block; }
.theme-glyph__sun { display:none; }
.dark .theme-glyph__moon { display:none; }
.dark .theme-glyph__sun { display:block; }
.theme-toggle:hover .theme-glyph { transform:rotate(12deg) scale(1.08); }
.theme-toggle[aria-pressed="true"] .theme-glyph { transform:rotate(20deg); }

@media print {
    body > *:not(.voucher-print-area) {
        display: none;
    }
    body {
        background-color: #FFFFFF;
        margin: 0;
        padding: 0;
    }
    .voucher-print-area {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        box-shadow: none !important;
        border: none !important;
        display: block;
        visibility: visible;
    }
}

/* Lightweight menu and mobile navigation */
[x-cloak] { display: none !important; }
.menu-intro { max-width: 680px; margin: 1.5rem auto 2.25rem; text-align: center; }
.menu-intro span { color: var(--brand-primary); font-size: .75rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.menu-intro h1 { margin: .45rem 0 .3rem; font-size: clamp(2.2rem, 6vw, 4rem); line-height: 1.05; letter-spacing: -.055em; }
.menu-intro p { color: var(--text-muted); }
.menu-toolbar { top: 68px !important; margin-inline: auto; padding: .8rem !important; border: 1px solid var(--border-light) !important; border-radius: 1.2rem; box-shadow: 0 10px 35px rgba(35,25,18,.08); }
.menu-toolbar .relative { margin-bottom: .65rem !important; }
.menu-toolbar .form-input { margin-top: 0; min-height: 48px; border-radius: .85rem; box-shadow: none !important; }
.menu-search-clear { position: absolute; right: .75rem; top: 50%; translate: 0 -50%; width: 32px; height: 32px; border-radius: 50%; color: var(--text-muted); background: var(--surface-control); }
.menu-result-count { margin: .65rem .25rem 0; color: var(--text-muted); font-size: .75rem; }
.menu-result-count strong { color: var(--brand-primary); }
.menu-filter-row { display: flex; align-items: center; justify-content: space-between; gap: .75rem; margin-top: .75rem; padding-top: .75rem; border-top: 1px solid var(--border-light); }
.menu-offer-toggle input { position: absolute; opacity: 0; pointer-events: none; }
.menu-offer-toggle span { display: inline-flex; align-items: center; gap: .4rem; padding: .55rem .8rem; border: 1px solid var(--border-light); border-radius: .75rem; color: var(--text-muted); font-size: .75rem; font-weight: 700; cursor: pointer; transition: .2s ease; }
.menu-offer-toggle input:checked + span { color: white; border-color: var(--brand-secondary); background: var(--brand-secondary); }
.menu-sort { display: flex; align-items: center; gap: .45rem; color: var(--text-muted); font-size: .72rem; font-weight: 700; }
.menu-sort select { max-width: 170px; padding: .55rem 1.8rem .55rem .7rem; border: 1px solid var(--border-light); border-radius: .75rem; background: var(--surface-control); color: var(--text-dark); font: inherit; }
.menu-result-meta { display: flex; justify-content: space-between; align-items: center; }
.menu-result-meta button { margin-top: .65rem; color: var(--brand-primary); font-size: .72rem; font-weight: 700; }
.menu-product-card { border-radius: 1.35rem !important; content-visibility: auto; contain-intrinsic-size: auto 430px; }
.menu-product-card > a { background: var(--surface-card-muted); }
.menu-product-card img { aspect-ratio: 4 / 3; height: auto !important; }
.menu-empty { margin: 4rem auto; max-width: 420px; text-align: center; color: var(--text-muted); }
.menu-empty svg { width: 56px; margin: 0 auto 1rem; color: var(--brand-primary); }
.menu-empty h2 { color: var(--text-dark); font-size: 1.5rem; }
.menu-empty button { margin-top: 1rem; padding: .7rem 1rem; border-radius: 999px; background: var(--brand-primary); color: white; font-weight: 700; }

.mobile-floating-bar { left: 50% !important; right: auto !important; bottom: max(.7rem, env(safe-area-inset-bottom)) !important; width: min(94%, 430px); transform: translateX(-50%); padding: .3rem .35rem; border: 1px solid color-mix(in srgb, var(--brand-primary) 32%, var(--border-light)) !important; border-radius: 1.45rem !important; box-shadow: 0 18px 48px rgba(31,23,18,.2), inset 0 1px 0 rgba(255,255,255,.8) !important; overflow: visible; }
.mobile-floating-bar::before { content:""; position:absolute; inset:3px; border:1px solid color-mix(in srgb, var(--brand-accent) 16%, transparent); border-radius:1.18rem; pointer-events:none; }
.mobile-floating-bar > div { height: 62px !important; }
.mobile-floating-bar a, .mobile-floating-bar button { position: relative; flex: 1; min-width: 0; height: 52px; border-radius: 1rem; font-size: .68rem; transition: color .2s ease, background .2s ease, transform .2s ease; }
.mobile-floating-bar a:active, .mobile-floating-bar button:active { transform: scale(.92); }
.mobile-floating-bar .active:not(.cart-link) { color: var(--brand-primary) !important; background: color-mix(in srgb, var(--brand-primary) 10%, transparent); }
.mobile-floating-bar .active::after { display: none !important; }
.mobile-menu-action__icon { display: grid; place-items: center; width: 34px; height: 34px; perspective: 180px; transform-style: preserve-3d; }
.cutlery-emblem { width: 34px; height: 34px; overflow: visible; filter: drop-shadow(0 5px 5px rgba(67,20,7,.25)); transform-style: preserve-3d; transition: transform .35s cubic-bezier(.2,.8,.2,1), filter .35s ease; }
.cutlery-tools { transform-origin: 32px 31px; }
.cutlery-shine { stroke-dasharray: 32; stroke-dashoffset: 32; }
.mobile-menu-action:hover .cutlery-emblem, .mobile-menu-action:focus-visible .cutlery-emblem { transform: rotateX(12deg) rotateY(-14deg) translateY(-2px) scale(1.08); }
.mobile-menu-action.active .cutlery-emblem { width: 43px; height: 43px; animation: cutleryFloat 3.2s ease-in-out infinite; filter: drop-shadow(0 8px 8px rgba(154,52,18,.34)); }
.mobile-menu-action.active .cutlery-tools { animation: cutleryTools .65s cubic-bezier(.2,.9,.3,1) both; }
.mobile-menu-action.active .cutlery-shine { animation: plateShine 2.8s ease-in-out infinite .4s; }
.mobile-floating-bar .cart-link { top: -13px !important; width: 58px; max-width: 58px; height: 58px; padding: .55rem !important; color: white !important; background: linear-gradient(145deg, #ea580c, #b93808) !important; border: 4px solid var(--page-bg); box-shadow: 0 9px 22px rgba(194,65,12,.32) !important; }
.mobile-floating-bar #mobile-cart-count { color: white !important; background: #0f766e !important; border: 2px solid white; }
@keyframes cutleryFloat { 0%,100% { transform: translateY(0) rotateX(0); } 50% { transform: translateY(-3px) rotateX(8deg); } }
@keyframes cutleryTools { 0% { transform: scale(.72) rotate(-12deg); opacity:.2; } 65% { transform: scale(1.12) rotate(4deg); } 100% { transform:scale(1); opacity:1; } }
@keyframes plateShine { 0%,35% { stroke-dashoffset:32; opacity:0; } 55% { stroke-dashoffset:0; opacity:.75; } 75%,100% { stroke-dashoffset:-32; opacity:0; } }

@media (max-width: 767px) {
    .menu-page { padding-inline: 0 !important; }
    .menu-intro { margin-top: .5rem; padding-inline: .75rem; }
    .menu-toolbar { top: .5rem !important; margin-inline: 0; }
    .menu-product-card { display: grid !important; grid-template-columns: 116px 1fr; min-height: 150px; }
    .menu-product-card > a { height: 100%; }
    .menu-product-card img { width: 100%; height: 100% !important; aspect-ratio: auto; }
    .menu-product-card > div { padding: 1rem !important; }
    .menu-product-card h3 { font-size: 1rem !important; }
    .menu-product-card .text-xl, .menu-product-card .text-2xl { font-size: 1.05rem !important; }
}


/* Chef knife mobile navigation — based on the supplied blade reference */
@media (max-width: 767px) {
    .mobile-floating-bar {
        width: min(96%, 480px);
        min-height: 72px;
        padding: .3rem .35rem .3rem .65rem;
        border: 1px solid rgba(117,105,92,.26) !important;
        border-radius: 2.6rem 1.4rem 1.4rem 2.6rem !important;
        background:
            linear-gradient(100deg, transparent 78%, rgba(255,255,255,.2) 78.5%, transparent 80%),
            linear-gradient(90deg, #fffdfa 0 78%, #683a24 78%, #321b14 100%) !important;
        box-shadow: 0 18px 35px rgba(35,25,19,.25), inset 0 1px 0 white, inset 0 -2px 4px rgba(61,48,37,.08) !important;
    }
    .mobile-floating-bar::before {
        inset: 5px 21.5% 5px 5px;
        border: 1px solid rgba(183,170,155,.25);
        border-radius: 2.2rem .55rem .55rem 2.2rem;
    }
    .mobile-floating-bar::after {
        content: "";
        position: absolute;
        z-index: 0;
        top: -1px;
        bottom: -1px;
        left: 76.5%;
        width: 8%;
        border-radius: 45% 20% 20% 45%;
        background: linear-gradient(100deg, #6b7280, #f8fafc 43%, #71717a 62%, #3f3f46);
        box-shadow: inset 1px 0 2px rgba(255,255,255,.8), 3px 0 8px rgba(0,0,0,.2);
        transform: skewX(-10deg);
        pointer-events: none;
    }
    .mobile-floating-bar > div { position: relative; z-index: 1; padding-right: 0; }
    .mobile-floating-bar a, .mobile-floating-bar button { max-width: none; border-radius: .9rem; }
    .mobile-floating-bar a:nth-child(-n+5) { flex: .95; }
    .mobile-floating-bar .knife-handle-action {
        flex: 1.15;
        margin-left: .45rem;
        color: #fff7ed !important;
        text-shadow: 0 1px 2px rgba(0,0,0,.55);
    }
    .mobile-floating-bar .knife-handle-action::before {
        content: "";
        position: absolute;
        z-index: -1;
        inset: .25rem;
        border: 1px solid rgba(255,255,255,.14);
        border-radius: 999px;
        background: repeating-linear-gradient(8deg, transparent 0 5px, rgba(255,255,255,.035) 6px, rgba(0,0,0,.05) 8px);
    }
    .mobile-floating-bar .cart-link {
        top: 0 !important;
        max-width: none;
        height: 52px;
        padding: 0 !important;
        color: var(--text-muted) !important;
        background: transparent !important;
        border: 0;
        box-shadow: none !important;
    }
    .mobile-floating-bar .cart-link.active { color: var(--brand-primary) !important; background: rgba(194,65,12,.08) !important; }
    .mobile-menu-action.active .cutlery-emblem { width: 38px; height: 38px; }
    .dark .mobile-floating-bar {
        border-color: rgba(255,237,213,.2) !important;
        background: linear-gradient(90deg, #26221e 0 78%, #60351f 78%, #25130e 100%) !important;
        box-shadow: 0 18px 38px rgba(0,0,0,.48), inset 0 1px 0 rgba(255,255,255,.08) !important;
    }
}
