@font-face { font-family: "Kook"; src: url("/fonts/Kook-Light.ttf") format("truetype"); font-weight: 300; font-display: swap; }
@font-face { font-family: "Kook"; src: url("/fonts/Kook-Regular.ttf") format("truetype"); font-weight: 400; font-display: swap; }
@font-face { font-family: "Kook"; src: url("/fonts/Kook-Medium.ttf") format("truetype"); font-weight: 500; font-display: swap; }
@font-face { font-family: "Kook"; src: url("/fonts/Kook-Bold.ttf") format("truetype"); font-weight: 700; font-display: swap; }

:root {
  --jam: #c93638;
  --jam-dark: #8f2027;
  --jam-deep: #4b1116;
  --honeydew: #f6ffea;
  --peach: #ffde96;
  --coral: #fa855a;
  --success: #2e9d61;
  --ink: #431316;
  --muted: #886062;
  --line: rgba(67, 19, 22, .13);
  --glass-line: rgba(246, 255, 234, .36);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }
body { margin: 0; overflow-x: hidden; background: var(--jam); color: var(--ink); font-family: "Kook", Tahoma, sans-serif; -webkit-font-smoothing: antialiased; }
body::before, body::after { content: ""; position: fixed; z-index: 0; width: 58vw; height: 58vw; min-width: 540px; min-height: 540px; border-radius: 50%; pointer-events: none; filter: blur(110px); opacity: .18; will-change: transform; }
body::before { top: 25vh; right: -26vw; background: var(--peach); animation: shadow-dance-a 28s ease-in-out infinite alternate; }
body::after { bottom: -35vw; left: -26vw; background: var(--jam-deep); animation: shadow-dance-b 34s ease-in-out infinite alternate; }
@keyframes shadow-dance-a { 0% { transform: translate3d(0, 0, 0) scale(.92); } 50% { transform: translate3d(-10vw, 25vh, 0) scale(1.08); } 100% { transform: translate3d(7vw, 55vh, 0) scale(.98); } }
@keyframes shadow-dance-b { 0% { transform: translate3d(0, 0, 0) scale(1); } 50% { transform: translate3d(17vw, -25vh, 0) scale(.9); } 100% { transform: translate3d(-4vw, -52vh, 0) scale(1.12); } }

button, input, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { cursor: pointer; }
button:disabled { cursor: default; }
a { color: inherit; text-decoration: none; }
svg { width: 1em; height: 1em; display: block; stroke-width: 1.75; }
.site-shell { position: relative; z-index: 1; min-height: 100vh; }
.glass { border: 1px solid rgba(255, 255, 255, .52); background: rgba(246, 255, 234, .72); box-shadow: 0 18px 55px rgba(75, 17, 22, .16), inset 0 1px 0 rgba(255, 255, 255, .72); backdrop-filter: blur(24px) saturate(135%); -webkit-backdrop-filter: blur(24px) saturate(135%); }
.glass-dark { border: 1px solid rgba(246, 255, 234, .15); background: linear-gradient(145deg, rgba(75, 17, 22, .89), rgba(94, 19, 25, .78)); box-shadow: 0 26px 70px rgba(75, 17, 22, .24), inset 0 1px 0 rgba(246, 255, 234, .1); backdrop-filter: blur(22px) saturate(125%); -webkit-backdrop-filter: blur(22px) saturate(125%); }

.app-header { width: min(1390px, calc(100% - 46px)); height: 72px; position: fixed; z-index: 80; top: 18px; right: 50%; transform: translateX(50%); padding: 0 12px 0 14px; display: flex; align-items: center; justify-content: space-between; border-radius: 38px; transition: background .3s ease, border-color .3s ease; }
.wordmark { padding: 0 20px; color: var(--jam-deep); font-size: 31px; font-weight: 700; letter-spacing: -.055em; line-height: 1; }
.header-actions { display: flex; align-items: center; gap: 7px; direction: rtl; }
.round-action { width: 48px; height: 48px; position: relative; padding: 0; display: grid; place-items: center; border: 0; border-radius: 50%; background: rgba(255, 255, 255, .56); color: var(--jam-deep); font-size: 21px; transition: transform .18s ease, background .18s ease; }
.round-action:hover { transform: translateY(-2px); background: var(--honeydew); }
.cart-button b { min-width: 20px; height: 20px; position: absolute; top: -4px; left: -3px; padding: 0 4px; display: grid; place-items: center; border: 2px solid var(--honeydew); border-radius: 10px; background: var(--jam); color: #fff; font-size: 8px; font-weight: 700; }

.scroll-hero { height: 190vh; position: relative; --hero-progress: 0; }
.hero-stage { height: 100vh; position: sticky; top: 0; overflow: hidden; isolation: isolate; background: var(--jam-deep); }
.hero-stage video { width: 100%; height: 100%; display: block; object-fit: cover; transform: translateZ(0) scale(calc(1.02 + var(--hero-progress) * .025)); backface-visibility: hidden; will-change: transform; }
.video-shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(51, 8, 11, .28), transparent 32%, rgba(51, 8, 11, .16) 69%, rgba(201, 54, 56, .28)); pointer-events: none; }
.hero-title { position: absolute; z-index: 3; right: 50%; bottom: 22vh; transform: translateX(50%) translateY(calc(var(--hero-progress) * -22px)); display: grid; justify-items: center; gap: 24px; color: var(--honeydew); text-align: center; opacity: calc(.72 + var(--hero-progress) * .28); filter: drop-shadow(0 20px 38px rgba(44, 6, 9, .42)); }
.hero-wordmark { font-size: clamp(86px, 15vw, 230px); font-weight: 700; letter-spacing: -.085em; line-height: .72; text-shadow: 0 4px 28px rgba(44, 6, 9, .24); }
.hero-subtitle { padding: 10px 17px 9px; border: 1px solid rgba(246,255,234,.3); border-radius: 22px; background: rgba(75,17,22,.2); color: var(--honeydew); font-size: clamp(13px, 1.25vw, 18px); font-weight: 500; letter-spacing: -.015em; backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
.scroll-indicator { position: absolute; right: 50%; bottom: 48px; transform: translateX(50%); display: flex; flex-direction: column; align-items: center; gap: 8px; color: rgba(246, 255, 234, .82); font-size: 8px; letter-spacing: .06em; opacity: calc(1 - var(--hero-progress) * 1.7); }
.scroll-indicator svg { font-size: 18px; transform: rotate(-90deg); animation: scroll-nudge 1.8s ease-in-out infinite; }
@keyframes scroll-nudge { 50% { transform: rotate(-90deg) translateX(-5px); } }
.hero-fade { height: 44vh; position: absolute; right: 0; bottom: -1px; left: 0; background: linear-gradient(180deg, transparent, rgba(201,54,56,.24) 32%, rgba(201,54,56,.78) 68%, var(--jam) 100%); pointer-events: none; }

.order-surface { position: relative; z-index: 3; margin-top: -1px; padding: 38px 0 94px; background: linear-gradient(180deg, var(--jam) 0%, #bd3035 74%, #af2930 100%); }
.surface-inner { width: min(1370px, calc(100% - 56px)); margin: 0 auto; }
.calendar-heading { margin-bottom: 28px; display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; color: var(--honeydew); }
.calendar-heading > div:first-child > span { display: flex; align-items: center; gap: 8px; color: var(--peach); font-size: 14px; font-weight: 500; }
.calendar-heading > div:first-child > span svg { font-size: 16px; }
.calendar-heading h1 { margin: 7px 0 0; font-size: clamp(44px, 5vw, 72px); line-height: .95; letter-spacing: -.055em; }
.month-selector { min-width: 178px; height: 46px; margin-top: 15px; padding: 0 16px; border: 1px solid rgba(246,255,234,.28); border-radius: 23px; outline: 0; background: rgba(75,17,22,.18); color: var(--honeydew); font-size: 13px; font-weight: 500; }
.month-selector option { color: var(--ink); }
.week-switcher { min-width: 252px; height: 56px; padding: 6px; display: grid; grid-template-columns: 44px 1fr 44px; align-items: center; border-radius: 29px; color: var(--honeydew); }
.week-switcher button { width: 44px; height: 44px; padding: 0; display: grid; place-items: center; border: 0; border-radius: 50%; background: rgba(246, 255, 234, .08); color: var(--honeydew); font-size: 17px; }
.week-switcher button:hover:not(:disabled) { background: rgba(246, 255, 234, .15); }
.week-switcher button:disabled { opacity: .28; }
.week-switcher strong { text-align: center; font-size: 14px; font-weight: 500; }

.date-strip { margin-bottom: 32px; padding: 9px; display: grid; grid-auto-columns: minmax(92px, 1fr); grid-auto-flow: column; gap: 8px; overflow-x: auto; border: 1px solid rgba(246, 255, 234, .2); border-radius: 31px; background: rgba(75, 17, 22, .13); scrollbar-width: none; }
.date-strip::-webkit-scrollbar { display: none; }
.date-strip button { min-width: 92px; height: 92px; position: relative; padding: 12px 8px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px; border: 1px solid transparent; border-radius: 23px; background: transparent; color: rgba(246, 255, 234, .7); transition: transform .2s ease, background .2s ease, color .2s ease; }
.date-strip button:hover { transform: translateY(-2px); color: var(--honeydew); }
.date-strip button.active { background: var(--honeydew); color: var(--jam-deep); box-shadow: 0 12px 28px rgba(75, 17, 22, .16); }
.date-strip button.muted:not(.active) { opacity: .48; }
.date-strip span { font-size: 12px; font-weight: 500; }
.date-strip b { font-size: 30px; line-height: 1; }
.date-strip i { width: 22px; height: 22px; position: absolute; top: 7px; left: 7px; display: grid; place-items: center; border-radius: 50%; background: var(--success); color: #fff; box-shadow: 0 5px 13px rgba(20, 101, 60, .28); font-size: 12px; }

.menu-layout { display: grid; grid-template-columns: minmax(0, 1fr) 350px; gap: 24px; align-items: start; direction: ltr; }
.daily-panel, .month-summary { direction: rtl; }
.daily-panel { min-width: 0; }
.daily-heading { min-height: 68px; margin-bottom: 18px; display: flex; align-items: center; justify-content: space-between; gap: 20px; color: var(--honeydew); }
.daily-heading span { color: rgba(246, 255, 234, .72); font-size: 13px; }
.daily-heading h2 { margin: 3px 0 0; font-size: 34px; letter-spacing: -.035em; }
.selected-chip { min-height: 38px; padding: 0 13px; display: flex; align-items: center; gap: 7px; border: 1px solid rgba(246, 255, 234, .24); border-radius: 20px; background: rgba(246, 255, 234, .1); color: var(--peach); font-size: 9px; }
.selected-chip svg { font-size: 14px; }

.meal-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.meal-card { min-height: 228px; padding: 0; overflow: hidden; display: grid; grid-template-columns: 44% 56%; direction: ltr; border: 1px solid rgba(255, 255, 255, .7); border-radius: 28px; background: var(--honeydew); color: var(--ink); box-shadow: 0 20px 48px rgba(75, 17, 22, .15); text-align: right; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.meal-enter { animation: meal-enter .62s cubic-bezier(.18,.8,.25,1) var(--delay, 0ms) backwards; }
@keyframes meal-enter { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.meal-card:hover { transform: translateY(-5px); box-shadow: 0 27px 60px rgba(75, 17, 22, .22); }
.meal-card.selected { border: 3px solid var(--peach); box-shadow: 0 26px 64px rgba(75, 17, 22, .26), 0 0 0 4px rgba(255, 222, 150, .18); }
.meal-card:disabled { opacity: .75; }
.meal-photo { min-width: 0; position: relative; overflow: hidden; }
.meal-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent 55%, rgba(246,255,234,.35)); }
.meal-photo img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform .45s cubic-bezier(.2,.8,.2,1); }
.meal-card:hover .meal-photo img { transform: scale(1.055); }
.meal-photo i { position: absolute; z-index: 2; top: 13px; right: 13px; padding: 7px 10px; border-radius: 15px; background: rgba(75, 17, 22, .78); color: var(--honeydew); font-size: 7.5px; font-style: normal; backdrop-filter: blur(10px); }
.meal-copy { min-width: 0; padding: 24px 22px; display: flex; flex-direction: column; align-items: flex-start; justify-content: space-between; direction: rtl; }
.meal-copy strong { font-size: clamp(20px, 2vw, 29px); line-height: 1.32; letter-spacing: -.04em; }
.meal-copy em { min-height: 39px; padding: 0 14px; display: flex; align-items: center; gap: 7px; border-radius: 20px; background: rgba(201, 54, 56, .08); color: var(--jam); font-size: 9px; font-style: normal; font-weight: 700; }
.meal-copy em svg { font-size: 14px; }
.meal-card.selected .meal-copy em { background: var(--jam); color: #fff; }

.no-menu { min-height: 474px; display: flex; flex-direction: column; align-items: center; justify-content: center; border: 1px dashed rgba(246, 255, 234, .4); border-radius: 30px; color: rgba(246, 255, 234, .7); text-align: center; }
.no-menu > svg { font-size: 46px; }
.no-menu h3 { margin: 17px 0 0; color: var(--honeydew); font-size: 17px; font-weight: 500; }

.month-summary { height: min(610px, calc(100vh - 126px)); min-height: 480px; position: sticky; top: 104px; padding: 22px; overflow: hidden; display: flex; flex-direction: column; border-radius: 30px; color: var(--honeydew); }
.summary-head { padding-bottom: 18px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid rgba(246, 255, 234, .13); }
.summary-head > div { display: flex; align-items: center; gap: 11px; }
.summary-head > div > svg { width: 43px; height: 43px; padding: 11px; border: 1px solid rgba(246, 255, 234, .13); border-radius: 50%; color: var(--peach); }
.summary-head span { display: grid; gap: 3px; }
.summary-head strong { font-size: 16px; }
.summary-head small { color: rgba(246, 255, 234, .62); font-size: 11px; }
.summary-head button { width: 38px; height: 38px; padding: 0; display: grid; place-items: center; border: 0; border-radius: 50%; background: rgba(246, 255, 234, .08); color: var(--honeydew); font-size: 16px; }
.order-list { flex: 1; min-height: 0; padding: 8px 3px 8px 0; overflow-y: auto; scrollbar-width: thin; scrollbar-color: rgba(201,54,56,.35) transparent; }
.order-list.compact { margin-left: -4px; color: var(--honeydew); scrollbar-color: rgba(246,255,234,.18) transparent; }
.empty-orders { min-height: 250px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 13px; color: rgba(246, 255, 234, .48); font-size: 9px; }
.empty-orders svg { font-size: 37px; }
.side-sheet .empty-orders { color: var(--muted); }
.saved-order { min-height: 80px; padding: 11px 0; display: grid; grid-template-columns: 57px minmax(0, 1fr) 32px; align-items: center; gap: 11px; border-bottom: 1px solid rgba(246, 255, 234, .1); }
.saved-order img { width: 57px; height: 57px; border-radius: 15px; object-fit: cover; }
.saved-order > div { min-width: 0; display: grid; gap: 4px; }
.saved-order span { overflow: hidden; color: rgba(246, 255, 234, .67); font-size: 13px; line-height: 1.35; text-overflow: ellipsis; white-space: nowrap; }
.saved-order strong { overflow: hidden; font-size: 15px; line-height: 1.35; font-weight: 500; text-overflow: ellipsis; white-space: nowrap; }
.saved-order button { width: 30px; height: 30px; padding: 0; display: grid; place-items: center; border: 0; border-radius: 50%; background: rgba(246, 255, 234, .07); color: rgba(246, 255, 234, .6); font-size: 13px; }
.side-sheet .saved-order { border-color: var(--line); }
.side-sheet .saved-order span { color: var(--muted); }
.side-sheet .saved-order strong { color: var(--ink); }
.side-sheet .saved-order button { background: rgba(201,54,56,.08); color: var(--jam); }
.profile-link { min-height: 50px; padding: 0 15px; display: grid; grid-template-columns: 18px 1fr 18px; align-items: center; gap: 9px; border: 1px solid rgba(246, 255, 234, .13); border-radius: 25px; background: rgba(246, 255, 234, .07); color: var(--honeydew); font-size: 9px; text-align: right; }

.about-section { width: min(1370px, calc(100% - 56px)); position: relative; z-index: 3; margin: 38px auto 28px; padding: 42px; overflow: hidden; border: 1px solid rgba(246, 255, 234, .18); border-radius: 38px; background: linear-gradient(145deg, rgba(75, 17, 22, .84), rgba(95, 20, 25, .72)); color: var(--honeydew); box-shadow: 0 28px 80px rgba(75, 17, 22, .22), inset 0 1px 0 rgba(246, 255, 234, .08); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); }
.about-section::after { content: ""; width: 310px; height: 310px; position: absolute; left: -120px; bottom: -180px; border-radius: 50%; background: var(--coral); filter: blur(80px); opacity: .16; pointer-events: none; }
.about-heading { position: relative; z-index: 1; margin-bottom: 31px; display: grid; justify-items: start; gap: 12px; direction: rtl; text-align: right; }
.about-heading span { display: flex; align-items: center; gap: 9px; color: var(--peach); font-size: 27px; font-weight: 700; }
.about-heading span svg { font-size: 22px; }
.about-heading h2 { margin: 0; font-size: clamp(38px, 4vw, 58px); line-height: 1; letter-spacing: -.055em; text-align: right; }
.about-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.about-card { min-height: 235px; padding: 25px; display: flex; flex-direction: column; justify-content: space-between; gap: 25px; border: 1px solid rgba(246, 255, 234, .11); border-radius: 27px; background: rgba(246, 255, 234, .055); }
.about-card > svg { width: 47px; height: 47px; padding: 12px; border: 1px solid rgba(246, 255, 234, .12); border-radius: 50%; background: rgba(246, 255, 234, .07); color: var(--peach); }
.about-card p { margin: 0; color: rgba(246, 255, 234, .82); font-size: 13px; line-height: 2.05; }
.about-closing { position: relative; z-index: 1; margin: 22px 0 0; padding: 22px 0 0; border-top: 1px solid rgba(246, 255, 234, .12); color: var(--peach); font-size: 13px; text-align: center; }

.site-footer { width: min(1370px, calc(100% - 56px)); min-height: 280px; position: relative; z-index: 3; margin: 0 auto; padding: 48px 0 62px; display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; color: var(--honeydew); }
.site-footer::before { content: ""; position: absolute; top: 0; right: 0; left: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(246,255,234,.36), transparent); }
.footer-contact { max-width: 820px; display: grid; gap: 13px; }
.footer-contact strong { color: var(--peach); font-size: 24px; }
.contact-address { display: flex; align-items: flex-start; gap: 8px; color: rgba(246,255,234,.72); font-size: 12px; line-height: 1.8; }
.contact-address svg { flex: 0 0 auto; margin-top: 3px; color: var(--peach); font-size: 16px; }
.contact-links { display: flex; flex-wrap: wrap; gap: 8px; direction: rtl; }
.contact-links a { min-height: 39px; padding: 0 12px; display: flex; align-items: center; gap: 7px; border: 1px solid rgba(246,255,234,.14); border-radius: 20px; background: rgba(246,255,234,.055); font-size: 11px; direction: ltr; transition: background .18s ease, transform .18s ease; }
.contact-links a:hover { transform: translateY(-2px); background: rgba(246,255,234,.1); }
.contact-links svg { color: var(--peach); font-size: 14px; }
.mimzai-credit { display: flex; flex-direction: column; align-items: flex-end; gap: 4px; direction: ltr; }
.mimzai-credit small { color: rgba(246,255,234,.54); font-family: Arial, sans-serif; font-size: 7px; letter-spacing: .18em; }
.mimzai-credit b { color: var(--honeydew); font-family: Arial, sans-serif; font-size: 26px; font-weight: 900; letter-spacing: -.07em; }
.mimzai-credit b span { color: var(--peach); }

.modal-layer { position: fixed; inset: 0; z-index: 110; display: flex; direction: ltr; }
.modal-backdrop { position: absolute; inset: 0; padding: 0; border: 0; background: rgba(52, 8, 12, .66); backdrop-filter: blur(13px); -webkit-backdrop-filter: blur(13px); animation: fade-in .2s ease both; }
@keyframes fade-in { from { opacity: 0; } }
.search-layer { align-items: flex-start; justify-content: center; padding: 112px 22px 22px; }
.search-panel { width: min(680px, 100%); max-height: calc(100dvh - 135px); position: relative; z-index: 2; padding: 15px; overflow: hidden; direction: rtl; border-radius: 28px; animation: modal-in .3s cubic-bezier(.2,.8,.2,1) both; }
@keyframes modal-in { from { opacity: 0; transform: translateY(-14px) scale(.98); } }
.search-field { height: 58px; padding: 0 15px; display: grid; grid-template-columns: 22px 1fr 38px; align-items: center; gap: 8px; border: 1px solid var(--line); border-radius: 22px; background: rgba(255,255,255,.66); color: var(--jam); font-size: 18px; }
.search-field input { width: 100%; min-width: 0; border: 0; outline: 0; background: transparent; color: var(--ink); font-size: 13px; }
.search-field button { width: 36px; height: 36px; padding: 0; display: grid; place-items: center; border: 0; border-radius: 50%; background: rgba(201,54,56,.07); color: var(--jam); font-size: 16px; }
.search-results { max-height: calc(100dvh - 225px); padding-top: 9px; overflow-y: auto; }
.search-results > p { margin: 0; padding: 44px 12px; color: var(--muted); font-size: 10px; text-align: center; }
.search-results > button { width: 100%; min-height: 74px; padding: 9px; display: grid; grid-template-columns: 58px 1fr 30px; align-items: center; gap: 12px; border: 0; border-bottom: 1px solid var(--line); background: transparent; color: var(--ink); text-align: right; }
.search-results img { width: 58px; height: 55px; border-radius: 15px; object-fit: cover; }
.search-results button > span { min-width: 0; display: grid; gap: 4px; }
.search-results strong { font-size: 11px; }
.search-results small { color: var(--muted); font-size: 8px; }
.search-results button > svg { color: var(--jam); font-size: 15px; }

.side-modal { justify-content: flex-start; }
.side-sheet { width: min(520px, 100%); height: 100dvh; position: relative; z-index: 2; padding: 28px 27px 24px; overflow: hidden; display: flex; flex-direction: column; direction: rtl; background: var(--honeydew); box-shadow: 35px 0 90px rgba(52,8,12,.32); animation: sheet-in .32s cubic-bezier(.2,.8,.2,1) both; }
@keyframes sheet-in { from { transform: translateX(-100%); } }
.sheet-head { flex: 0 0 auto; padding-bottom: 21px; display: flex; align-items: flex-start; justify-content: space-between; border-bottom: 1px solid var(--line); }
.sheet-head span { color: var(--jam); font-size: 9px; }
.sheet-head h2 { margin: 5px 0 0; color: var(--ink); font-size: 28px; letter-spacing: -.04em; }
.sheet-head > button { width: 42px; height: 42px; padding: 0; display: grid; place-items: center; border: 0; border-radius: 50%; background: rgba(201,54,56,.08); color: var(--jam); font-size: 18px; }
.side-sheet > .order-list { padding-top: 12px; }

.signin-state { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.signin-state > svg { width: 70px; height: 70px; padding: 17px; border: 1px solid rgba(201,54,56,.12); border-radius: 50%; background: rgba(201,54,56,.06); color: var(--jam); }
.signin-state h3 { margin: 19px 0 23px; font-size: 24px; }
.primary-action { width: 100%; min-height: 54px; padding: 0 18px; display: flex; align-items: center; justify-content: space-between; border: 0; border-radius: 27px; background: var(--jam); color: #fff; font-size: 10px; font-weight: 700; }
.primary-action svg { font-size: 17px; }
.auth-panel { flex: 1; min-height: 0; padding-top: 18px; overflow-y: auto; }
.auth-tabs { padding: 5px; display: grid; grid-template-columns: .8fr .9fr 1.5fr; gap: 5px; border-radius: 18px; background: rgba(201,54,56,.07); }
.auth-tabs button { min-height: 42px; padding: 0 7px; border: 0; border-radius: 14px; background: transparent; color: var(--muted); font-size: 9px; }
.auth-tabs button.active { background: var(--jam); color: #fff; box-shadow: 0 8px 20px rgba(201,54,56,.18); }
.auth-form { padding-top: 18px; }
.auth-help { margin: -2px 0 15px; padding: 11px 13px; border-radius: 14px; background: rgba(255,222,150,.32); color: var(--muted); font-size: 9px; line-height: 1.8; }
.profile-form { padding: 24px 3px 4px 0; overflow-y: auto; }
.profile-form label { margin-bottom: 16px; display: grid; gap: 8px; color: var(--muted); font-size: 9px; font-weight: 700; }
.profile-form label > span { display: flex; align-items: center; gap: 7px; }
.profile-form label > span svg { color: var(--jam); font-size: 15px; }
.profile-form input, .profile-form select { width: 100%; height: 52px; padding: 0 14px; border: 1px solid var(--line); border-radius: 16px; outline: 0; background: rgba(255,255,255,.68); color: var(--ink); font-size: 11px; }
.profile-form input:focus, .profile-form select:focus { border-color: rgba(201,54,56,.58); box-shadow: 0 0 0 4px rgba(201,54,56,.07); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.form-error { margin: 0 0 14px; color: var(--jam); font-size: 9px; text-align: center; }
.text-button { width: 100%; margin-top: 12px; padding: 9px; border: 0; background: transparent; color: var(--muted); font-size: 9px; }
.profile-view { flex: 1; min-height: 0; padding-top: 21px; overflow-y: auto; }
.identity-card { min-height: 82px; padding: 13px; display: grid; grid-template-columns: 54px 1fr auto; align-items: center; gap: 11px; border: 1px solid var(--line); border-radius: 22px; background: rgba(255,255,255,.5); }
.identity-card > span { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 50%; background: var(--jam); color: #fff; font-size: 22px; }
.identity-card > div { display: grid; gap: 3px; }
.identity-card strong { font-size: 12px; }
.identity-card small { color: var(--muted); font-size: 8px; }
.identity-card button { padding: 7px 10px; border: 0; border-radius: 14px; background: rgba(201,54,56,.08); color: var(--jam); font-size: 8px; }
.profile-details { margin: 12px 0 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.profile-details > div { min-height: 70px; padding: 13px; display: grid; align-content: center; gap: 5px; border-radius: 18px; background: rgba(255,222,150,.3); }
.profile-details span { color: var(--muted); font-size: 8px; }
.profile-details b { font-size: 11px; }
.history-head { padding-bottom: 11px; display: flex; align-items: center; gap: 8px; border-bottom: 1px solid var(--line); color: var(--jam); font-size: 15px; }
.history-head strong { color: var(--ink); font-size: 11px; }
.profile-view .order-list { max-height: 370px; }
.signout-link { width: max-content; margin: 18px auto 0; padding: 4px 0; display: block; border: 0; border-bottom: 1px solid rgba(201,54,56,.35); background: transparent; color: var(--jam); font-size: 9px; }
.admin-entry { min-height: 48px; margin-top: 14px; padding: 0 14px; display: grid; grid-template-columns: 18px 1fr 18px; align-items: center; gap: 8px; border-radius: 17px; background: var(--jam-deep); color: var(--honeydew); font-size: 9px; }
.admin-entry svg:first-child { color: var(--peach); font-size: 16px; }
.loading-state { flex: 1; padding-top: 40px; display: grid; align-content: start; gap: 12px; }
.loading-state span { height: 58px; border-radius: 18px; background: linear-gradient(90deg, rgba(201,54,56,.05), rgba(201,54,56,.11), rgba(201,54,56,.05)); background-size: 200% 100%; animation: skeleton 1.4s linear infinite; }
@keyframes skeleton { to { background-position: -200% 0; } }
.toast { position: fixed; z-index: 140; right: 50%; bottom: 20px; transform: translateX(50%); padding: 12px 16px; display: flex; align-items: center; gap: 8px; border: 1px solid rgba(255,255,255,.28); border-radius: 22px; background: var(--jam-deep); color: var(--honeydew); box-shadow: 0 16px 45px rgba(75,17,22,.3); font-size: 9px; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease var(--delay, 0ms), transform .7s cubic-bezier(.18,.8,.25,1) var(--delay, 0ms); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1080px) {
  .menu-layout { grid-template-columns: 1fr; }
  .month-summary { height: auto; min-height: 0; position: static; }
  .month-summary .order-list { max-height: 330px; }
}

@media (max-width: 800px) {
  .app-header { width: calc(100% - 26px); height: 64px; top: 13px; padding: 0 8px 0 9px; }
  .wordmark { padding: 0 12px; font-size: 27px; }
  .header-actions { gap: 4px; }
  .round-action { width: 43px; height: 43px; font-size: 19px; }
  .cart-button b { min-width: 18px; height: 18px; top: -3px; left: -3px; font-size: 7px; }
  .scroll-hero { height: 175vh; }
  .hero-stage video { object-position: center; }
  .hero-title { bottom: 25vh; gap: 18px; }
  .hero-wordmark { font-size: clamp(82px, 27vw, 145px); }
  .hero-fade { height: 52vh; }
  .order-surface { padding-top: 23px; }
  .surface-inner { width: calc(100% - 28px); }
  .calendar-heading { align-items: flex-start; flex-direction: column; gap: 19px; }
  .calendar-heading h1 { font-size: 48px; }
  .week-switcher { width: 100%; min-width: 0; }
  .date-strip { margin-right: -14px; margin-left: -14px; padding-right: 14px; padding-left: 14px; border-right: 0; border-left: 0; border-radius: 0; }
  .date-strip button { min-width: 91px; height: 92px; border-radius: 21px; }
  .date-strip span { font-size: 12px; }
  .date-strip b { font-size: 29px; }
  .daily-heading { min-height: 58px; }
  .daily-heading h2 { font-size: 30px; }
  .meal-grid { grid-template-columns: 1fr; gap: 12px; }
  .meal-card { min-height: 190px; grid-template-columns: 42% 58%; border-radius: 25px; }
  .meal-copy { padding: 20px 17px; }
  .meal-copy strong { font-size: 23px; }
  .no-menu { min-height: 340px; }
  .month-summary { padding: 19px; border-radius: 26px; }
  .about-section { width: calc(100% - 28px); margin-top: 26px; padding: 26px 17px 20px; border-radius: 30px; }
  .about-heading { margin-bottom: 20px; gap: 10px; }
  .about-heading h2 { font-size: 39px; }
  .about-heading span { font-size: 22px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-card { min-height: 0; padding: 20px; gap: 16px; border-radius: 23px; }
  .about-card p { font-size: 12px; }
  .about-closing { font-size: 12px; line-height: 1.9; }
  .site-footer { width: calc(100% - 28px); min-height: 350px; padding-bottom: 44px; flex-direction: column; align-items: flex-start; }
  .contact-links { flex-direction: column; align-items: flex-start; }
  .contact-links a { width: max-content; }
  .mimzai-credit { align-items: flex-start; }
  .search-layer { padding: 88px 13px 13px; }
  .side-modal { align-items: flex-end; }
  .side-sheet { width: 100%; height: min(92dvh, 820px); padding: 23px 19px 18px; border-radius: 30px 30px 0 0; animation-name: sheet-up; }
  @keyframes sheet-up { from { transform: translateY(100%); } }
}

@media (max-width: 470px) {
  .header-actions .round-action:nth-child(2) { display: none; }
  .meal-card { min-height: 176px; }
  .meal-photo i { top: 10px; right: 10px; }
  .meal-copy strong { font-size: 20px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .meal-enter { animation: none; }
}
