@font-face {
  font-family: 'YekanBakh';
  src: url('../Fonts/YekanBakh-VF.ttf') format('truetype');
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

html, body {
  direction: rtl;
  font-family: 'YekanBakh', Tahoma, 'Segoe UI', Arial, sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*, *::before, *::after { font-family: inherit; }
button, input, textarea, select, option, optgroup { font-family: 'YekanBakh', Tahoma, sans-serif; }

:root {
  --cream-light-value: #FAF8FB;
  --cream-light-rgb:   250,248,251;
  --cream-dark-value:  #1B1128;
  --cream-dark-rgb:    27,17,40;

  --page-pad-x: 16px;
  --content-max: 1180px;
}
@media (min-width: 380px)  { :root { --page-pad-x: 18px; } }
@media (min-width: 576px)  { :root { --page-pad-x: 22px; } }
@media (min-width: 768px)  { :root { --page-pad-x: 30px; } }
@media (min-width: 992px)  { :root { --page-pad-x: 40px; } }
@media (min-width: 1200px) { :root { --page-pad-x: 48px; } }

:root, [data-bs-theme="light"] {
  --brand:          #572D77;
  --brand-rgb:      87,45,119;
  --brand-light:    #724989;
  --brand-soft:     rgba(87,45,119,.09);
  --brand-glow:     rgba(87,45,119,.26);

  --brand-dark:     #3D2055;
  --brand-dark-rgb: 61,32,85;

  --cream:          var(--cream-light-value);
  --cream-deep:     #E3D9EA;
  --powder:         #E3D9EA;
  --powder-rgb:     185,164,200;

  --steel:          #E8B7D0;
  --steel-rgb:      232,183,208;
  --steel-soft:     rgba(232,183,208,.16);
  --steel-glow:     rgba(232,183,208,.38);

  --ink:            #32333A;
  --ink-rgb:        50,51,58;
  --ink-muted:      #756F82;

  --border-warm:    var(--powder);
  --surface:        #FFFFFF;
  --surface-raised: #FDF9FC;
  --surface-glass:  rgba(255,255,255,.80);
  --overlay-bg:     rgba(250,248,251,.92);
  --backdrop:       rgba(50,51,58,.50);

  --shadow-card:    0 2px 16px rgba(87,45,119,.08);
  --shadow-hover:   0 14px 36px rgba(87,45,119,.18);
  --shadow-sticky:  0 4px 24px rgba(87,45,119,.10);
  --shadow-brand:   0 4px 18px rgba(87,45,119,.26);

  --ease:           cubic-bezier(.32,.72,0,1);
  --ease-std:       cubic-bezier(.16,1,.3,1);
  --ease-fall:      cubic-bezier(.55,.06,.68,.19);
  --ease-press:     cubic-bezier(.34,1.1,.64,1);
  --dur-fast:       160ms;
  --dur:            240ms;
  --dur-slow:       440ms;
  --dur-press:      100ms;

  --sw-0: linear-gradient(135deg,#8E5FA8 0%,#572D77 100%);
  --sw-1: linear-gradient(135deg,#F4A0C6 0%,#D6549A 100%);
  --sw-2: linear-gradient(135deg,#C9AEDD 0%,#8A5FB0 100%);
  --sw-3: linear-gradient(135deg,#F0C3DE 0%,#E8B7D0 100%);
  --sw-4: linear-gradient(135deg,#9B7FC7 0%,#5C3A8C 100%);
  --sw-5: linear-gradient(135deg,#E3B8D8 0%,#B968A0 100%);
  --sw-6: linear-gradient(135deg,#B0A0D0 0%,#6E4E9E 100%);
  --sw-7: linear-gradient(135deg,#F2C9E0 0%,#D88CBB 100%);
  --sw-8: linear-gradient(135deg,#7ECBC4 0%,#3E9C94 100%);
  --sw-9: linear-gradient(135deg,#E8C98A 0%,#C9963E 100%);
}

[data-bs-theme="dark"] {
  --brand:          #C3AAD6;
  --brand-rgb:      195,170,214;
  --brand-light:    #E8B7D0;
  --brand-soft:     rgba(195,170,214,.16);
  --brand-glow:     rgba(195,170,214,.30);

  --brand-dark:     #3D2055;
  --brand-dark-rgb: 61,32,85;

  --cream:          var(--cream-dark-value);
  --cream-deep:     #140C1E;
  --powder:         rgba(195,170,214,.24);
  --powder-rgb:     195,170,214;

  --steel:          #E8B7D0;
  --steel-rgb:      232,183,208;
  --steel-soft:     rgba(232,183,208,.18);
  --steel-glow:     rgba(232,183,208,.34);

  --ink:            #F5F1F8;
  --ink-rgb:        245,241,248;
  --ink-muted:      #B7A6CB;

  --border-warm:    var(--powder);
  --surface:        #251A33;
  --surface-raised: #32243F;
  --surface-glass:  rgba(32,22,46,.86);
  --overlay-bg:     rgba(24,15,35,.95);
  --backdrop:       rgba(10,6,16,.72);

  --shadow-card:    0 2px 16px rgba(0,0,0,.5);
  --shadow-hover:   0 14px 36px rgba(0,0,0,.66);
  --shadow-sticky:  0 4px 24px rgba(0,0,0,.55);
  --shadow-brand:   0 4px 18px rgba(195,170,214,.24);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

html { scroll-snap-type: y mandatory; }
.hero, .categories-section, .products-section {
  scroll-snap-align: start;
  scroll-snap-stop: always;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-snap-type: none; }
}

button, a, [role="button"] {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
button { border: 0; background: none; padding: 0; }

body {
  background-color: var(--cream);
  color: var(--ink);
  font-size: 15px;
  line-height: 1.6;
  min-height: 100vh;
  transition: background-color var(--dur-slow) var(--ease-std), color var(--dur-slow) var(--ease-std);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  font-variant-numeric: tabular-nums;
}

::selection { background: var(--brand); color: #fff; }

html.scroll-locked, html.scroll-locked body { overflow: hidden; height: 100%; }

a { color: inherit; text-decoration: none; }

:focus-visible { outline: 2px solid var(--steel); outline-offset: 3px; border-radius: 4px; }

.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.cat-empty {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--ink-muted);
}
.cat-empty i { font-size: 2.2rem; display: block; margin-bottom: .6rem; color: var(--steel); }
.cat-empty p { margin: 0; font-size: .88rem; }

.preloader {
  position: fixed;
  inset: 0;
  z-index: 4000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  overflow: hidden;
}
.preloader-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('../images/backgrounds/cafe-loading.PNG');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.04);
}
.preloader-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg,
      rgba(var(--brand-dark-rgb), .30) 0%,
      rgba(var(--brand-dark-rgb), .22) 40%,
      rgba(var(--brand-dark-rgb), .30) 70%,
      rgba(var(--ink-rgb), .55) 100%);
  mix-blend-mode: color;
}
.preloader-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(var(--ink-rgb), .16);
}
.preloader-core {
  position: relative;
  z-index: 2;
  width: min(340px, 84vw);
  text-align: center;
  transition: opacity 260ms var(--ease-std), transform 260ms var(--ease-std);
}
.preloader-logo {
  width: 96px;
  height: 96px;
  object-fit: contain;
  margin: 0 auto 1.4rem;
  display: block;
  filter: drop-shadow(0 8px 22px rgba(0,0,0,.5)) drop-shadow(0 2px 8px rgba(0,0,0,.35));
  animation: logo-pop 700ms var(--ease) both;
}
@keyframes logo-pop { from { transform: scale(.3); opacity: 0; } to { transform: scale(1); opacity: 1; } }

.preloader-dots { display: flex; align-items: center; justify-content: center; gap: 7px; }
.preloader-dots span { width: 7px; height: 7px; border-radius: 50%; background: var(--brand-light); animation: dot-bounce 1.1s ease-in-out infinite; }
.preloader-dots span:nth-child(2) { animation-delay: .15s; }
.preloader-dots span:nth-child(3) { animation-delay: .3s; }
@keyframes dot-bounce { 0%, 80%, 100% { transform: scale(.55); opacity: .4; } 40% { transform: scale(1); opacity: 1; } }

.preloader-dissolve {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  filter: url(#bubbleteale-goo);
}
.preloader-bubble {
  position: absolute;
  border-radius: 50%;
  background: var(--cream);
  transform: scale(1);
  will-change: transform;
}
.preloader-bubble.pop {
  transition: transform var(--bubble-dur, 700ms) var(--ease-fall);
  transform: scale(0);
}
.preloader.is-dissolving { background: transparent; }
.preloader.is-dissolving .preloader-bg,
.preloader.is-dissolving .preloader-overlay { opacity: 0; transition: opacity 220ms var(--ease-std); }
.preloader.is-dissolving .preloader-core { opacity: 0; transform: scale(.82); }

.preloader.is-hidden { visibility: hidden; pointer-events: none; }

@media (prefers-reduced-motion: reduce) {
  .preloader-logo { animation: none; }
  .preloader-bubble.pop { transition-duration: 1ms !important; }
}

.hero, .categories-section, .products-section { opacity: 0; }
html.app-ready .hero              { animation: section-in 560ms var(--ease) 40ms  forwards; }
html.app-ready .categories-section{ animation: section-in 560ms var(--ease) 120ms forwards; }
html.app-ready .products-section  { animation: section-in 560ms var(--ease) 180ms forwards; }
@keyframes section-in { 0% { opacity: 0; transform: translate3d(0,14px,0); } 100% { opacity: 1; transform: translate3d(0,0,0); } }
@media (prefers-reduced-motion: reduce) {
  .hero, .categories-section, .products-section { opacity: 1 !important; animation: none !important; transform: none !important; }
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('../images/backgrounds/cafe-loading.PNG');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg,
      rgba(var(--brand-dark-rgb), .58) 0%,
      rgba(var(--brand-dark-rgb), .30) 30%,
      rgba(var(--brand-dark-rgb), .38) 68%,
      rgba(var(--brand-dark-rgb), .74) 100%);
}

.hero-bubbles { position: absolute; inset: 0; z-index: 1; overflow: hidden; pointer-events: none; }
.hero-bubble {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 26%, rgba(255,255,255,.6), rgba(255,255,255,.05) 68%);
  border: 1px solid rgba(255,255,255,.28);
  will-change: transform;
  animation: bubble-drift 15s ease-in-out infinite;
}
.hero-bubble:nth-child(1) { width: 62px; height: 62px; left: 8%;  top: 16%; animation-duration: 13s;   animation-delay: 0s; }
.hero-bubble:nth-child(2) { width: 34px; height: 34px; left: 24%; top: 64%; animation-duration: 16.5s; animation-delay: 1.2s; }
.hero-bubble:nth-child(3) { width: 86px; height: 86px; left: 80%; top: 12%; animation-duration: 19s;   animation-delay: .4s; }
.hero-bubble:nth-child(4) { width: 26px; height: 26px; left: 66%; top: 72%; animation-duration: 11.5s; animation-delay: 2s; }
.hero-bubble:nth-child(5) { width: 48px; height: 48px; left: 42%; top: 6%;  animation-duration: 15s;   animation-delay: .8s; }
.hero-bubble:nth-child(6) { width: 20px; height: 20px; left: 90%; top: 46%; animation-duration: 12s;   animation-delay: 1.6s; }
.hero-bubble:nth-child(7) { width: 70px; height: 70px; left: 4%;  top: 78%; animation-duration: 18s;   animation-delay: 2.4s; }
.hero-bubble:nth-child(8) { width: 40px; height: 40px; left: 54%; top: 38%; animation-duration: 14s;   animation-delay: .6s; }
@keyframes bubble-drift {
  0%, 100% { transform: translate3d(0,0,0); opacity: .55; }
  50%      { transform: translate3d(14px,-24px,0); opacity: .9; }
}
@media (prefers-reduced-motion: reduce) { .hero-bubble { animation: none; opacity: .6; } }

.hero-header {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: max(env(safe-area-inset-top, 0px), 14px) var(--page-pad-x) 0;
  padding: .65rem .65rem .65rem 1.1rem;
  border-radius: 22px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(16px) saturate(1.3);
  -webkit-backdrop-filter: blur(16px) saturate(1.3);
  box-shadow: 0 8px 26px rgba(0,0,0,.16);
}
.hero-brand-name {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -.01em;
  color: #FFFFFF;
  text-shadow: 0 2px 10px rgba(0,0,0,.35);
}

.hero-core {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
  padding: 1.1rem var(--page-pad-x);
  text-align: center;
}
.hero-logo {
  width: min(168px, 42vw);
  height: min(168px, 42vw);
  object-fit: contain;
  filter: drop-shadow(0 14px 34px rgba(0,0,0,.38)) drop-shadow(0 2px 10px rgba(0,0,0,.25));
  animation: hero-logo-in 900ms var(--ease) both;
}
@keyframes hero-logo-in {
  0%   { opacity: 0; transform: translate3d(0,10px,0) scale(.86); }
  100% { opacity: 1; transform: translate3d(0,0,0) scale(1); }
}

.hero-info-panel {
  display: flex;
  flex-direction: column;
  gap: .55rem;
  width: min(360px, 88vw);
  padding: .9rem 1.1rem;
  border-radius: 22px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.24);
  backdrop-filter: blur(16px) saturate(1.3);
  -webkit-backdrop-filter: blur(16px) saturate(1.3);
  box-shadow: 0 12px 34px rgba(0,0,0,.22);
  animation: hero-panel-in 700ms var(--ease) 180ms both;
}
@keyframes hero-panel-in {
  0%   { opacity: 0; transform: translate3d(0,12px,0); }
  100% { opacity: 1; transform: translate3d(0,0,0); }
}
.hero-info-item {
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: .3rem .2rem;
  color: #FFFFFF;
  font-size: .84rem;
  font-weight: 600;
  text-shadow: 0 1px 6px rgba(0,0,0,.3);
  border-radius: 12px;
  transition: transform var(--dur-press) var(--ease-press), opacity var(--dur) var(--ease-std);
}
.hero-info-item:active { transform: scale(.97); opacity: .85; }
.hero-info-icon {
  width: 30px; height: 30px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,.16);
  font-size: .92rem;
}
.hero-info-text { min-width: 0; overflow-wrap: anywhere; }

.hero-credit {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  padding: .5rem .9rem;
  border-radius: 50rem;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.20);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: rgba(255,255,255,.85);
  font-size: .68rem;
  animation: hero-panel-in 700ms var(--ease) 260ms both;
}
.hero-credit-text { white-space: nowrap; }
.hero-credit-sep { opacity: .5; }
.hero-credit-link { color: #fff; text-decoration: underline; font-weight: 700; }
.hero-credit-socials { display: flex; gap: 6px; }
.hero-social-dot {
  width: 22px; height: 22px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.16);
  color: #fff;
  font-size: .68rem;
  flex-shrink: 0;
  transition: transform var(--dur-press) var(--ease-press), background var(--dur) var(--ease-std);
}
.hero-social-dot:active { transform: scale(.88); }
@media (hover: hover) and (pointer: fine) {
  .hero-social-dot:hover { background: rgba(255,255,255,.3); }
}

.hero-scroll-indicator {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .15rem;
  padding: 0 var(--page-pad-x) max(env(safe-area-inset-bottom, 0px), 22px);
  color: #FFFFFF;
  cursor: pointer;
  animation: scroll-hint-float 2.6s ease-in-out infinite;
}
.hero-scroll-title { font-size: .86rem; font-weight: 800; text-shadow: 0 1px 6px rgba(0,0,0,.35); }
.hero-scroll-sub { font-size: .68rem; opacity: .82; text-shadow: 0 1px 6px rgba(0,0,0,.3); margin-bottom: .3rem; }
.hero-scroll-arrow { font-size: 1.15rem; opacity: .92; }
@keyframes scroll-hint-float {
  0%, 100% { transform: translate3d(0,0,0); opacity: .92; }
  50%      { transform: translate3d(0,7px,0); opacity: 1; }
}

.theme-btn {
  -webkit-appearance: none; appearance: none;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.28);
  background: rgba(255,255,255,.18);
  color: #FFFFFF;
  font-size: 1.02rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,.14);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease-std), background var(--dur) var(--ease-std);
  outline: none;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  will-change: transform;
}
@media (hover: hover) and (pointer: fine) {
  .theme-btn:hover { transform: rotate(22deg) scale(1.1); background: rgba(255,255,255,.22); }
}
.theme-btn:active { transform: rotate(22deg) scale(.9); transition-duration: var(--dur-press); transition-timing-function: var(--ease-press); }
.theme-btn i { transition: transform var(--dur-slow) var(--ease), opacity var(--dur) var(--ease-std); }
.theme-btn.spinning i { animation: theme-spin var(--dur-slow) var(--ease); }
@keyframes theme-spin {
  0%   { transform: rotate(0deg) scale(.6); opacity: 0; }
  60%  { transform: rotate(180deg) scale(1.15); opacity: 1; }
  100% { transform: rotate(360deg) scale(1); opacity: 1; }
}

.theme-bubble {
  position: fixed;
  top: var(--bubble-y, 50%);
  left: var(--bubble-x, 50%);
  width: calc(var(--bubble-radius, 100vmax) * 2);
  height: calc(var(--bubble-radius, 100vmax) * 2);
  border-radius: 50%;
  background: rgba(var(--bubble-color-rgb, 250,248,251), .55);
  backdrop-filter: blur(22px) saturate(1.3);
  -webkit-backdrop-filter: blur(22px) saturate(1.3);
  box-shadow: inset 0 0 80px rgba(255,255,255,.08);
  opacity: 0;
  transform: translate3d(-50%, -50%, 0) scale(0);
  transform-origin: center center;
  z-index: 3000;
  pointer-events: none;
  overflow: hidden;
  contain: strict;
  will-change: transform, opacity;
}
.theme-bubble::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 32% 28%, rgba(255,255,255,.22), transparent 55%);
  mix-blend-mode: overlay;
}
.theme-bubble.expanding {
  transition: transform var(--dur-slow) var(--ease), opacity calc(var(--dur-slow) * .45) var(--ease-std);
  opacity: 1;
  transform: translate3d(-50%, -50%, 0) scale(1);
}
.theme-bubble.retreating {
  transition: transform var(--dur-slow) var(--ease-std), opacity var(--dur-slow) var(--ease-std);
  opacity: 0;
  transform: translate3d(-50%, -50%, 0) scale(0);
}
@media (prefers-reduced-motion: reduce) {
  .theme-bubble.expanding, .theme-bubble.retreating { transition-duration: 1ms !important; }
}
@media (pointer: coarse) {
  .theme-bubble { backdrop-filter: blur(14px) saturate(1.3); -webkit-backdrop-filter: blur(14px) saturate(1.3); }
}
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .theme-bubble { background: rgba(var(--bubble-color-rgb, 250,248,251), .92); }
}

.categories-section {
  position: relative;
  min-height: 100svh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: clamp(2.2rem, 8vh, 4rem) 0;
}
.section-inner {
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 var(--page-pad-x);
}
.section-heading { text-align: center; margin-bottom: 1.6rem; }
.section-title {
  font-size: clamp(1.5rem, 4vw, 1.9rem);
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--ink);
  margin: 0 0 .35rem;
}
.section-subtitle { font-size: .86rem; color: var(--ink-muted); margin: 0; }

.search-box {
  position: relative;
  display: flex;
  align-items: center;
  max-width: 480px;
  margin: 0 auto 1.6rem;
  border-radius: 26px;
  background: var(--surface-glass);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1.5px solid var(--border-warm);
  box-shadow: var(--shadow-card);
  transition: border-color var(--dur) var(--ease-std), box-shadow var(--dur) var(--ease-std);
}
.search-box:focus-within { border-color: var(--brand); box-shadow: 0 0 0 4px var(--brand-soft); }
.search-icon { position: absolute; right: 18px; font-size: 1rem; color: var(--ink-muted); pointer-events: none; }
.search-input {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: 0;
  outline: none;
  color: var(--ink);
  font-size: .92rem;
  font-weight: 600;
  padding: .95rem 3rem .95rem 1.1rem;
}
.search-input::placeholder { color: var(--ink-muted); font-weight: 500; }

.search-input::-webkit-search-cancel-button,
.search-input::-webkit-search-decoration { -webkit-appearance: none; appearance: none; }
.search-clear-btn {
  position: absolute;
  left: 10px;
  width: 30px; height: 30px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-muted);
  background: var(--brand-soft);
  font-size: .78rem;
  transition: transform var(--dur-press) var(--ease-press), color var(--dur) var(--ease-std), background var(--dur) var(--ease-std);
}
.search-clear-btn:active { transform: scale(.88); }
@media (hover: hover) and (pointer: fine) {
  .search-clear-btn:hover { color: var(--brand); background: var(--steel-soft); }
}

.cat-accordion { display: flex; flex-direction: column; gap: 10px; margin-bottom: 1.6rem; }

.cat-row {
  -webkit-appearance: none; appearance: none;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 22px;
  border: 1.5px solid var(--border-warm);
  background: var(--surface);
  color: inherit;
  font: inherit;
  text-align: right;
  cursor: pointer;
  outline: none;
  transition: border-color var(--dur) var(--ease-std), box-shadow var(--dur) var(--ease), background var(--dur) var(--ease-std), transform var(--dur-press) var(--ease-press);
}
@media (hover: hover) and (pointer: fine) {
  .cat-row:hover { border-color: var(--steel); box-shadow: 0 8px 22px var(--steel-glow); }
}
.cat-row:active { transform: scale(.98); transition-duration: var(--dur-press); transition-timing-function: var(--ease-press); }
.cat-row.active,
.cat-row-parent[aria-expanded="true"] {
  border-color: var(--brand);
  background: var(--brand-soft);
  box-shadow: var(--shadow-brand);
}

.cat-row-icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  background: var(--surface-raised);
  color: var(--brand);
  font-size: 1.2rem;
}
.cat-row-icon img { width: 100%; height: 100%; object-fit: cover; }
.cat-row-icon img.is-vector { object-fit: contain; padding: 7px; }

.cat-row-text { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 1px; }
.cat-row-name { font-size: .92rem; font-weight: 800; color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cat-row-meta { font-size: .72rem; color: var(--ink-muted); }

.cat-row-arrow {
  flex-shrink: 0;
  font-size: .85rem;
  color: var(--ink-muted);
  transition: transform var(--dur-slow) var(--ease-std);
}
.cat-row-parent[aria-expanded="true"] .cat-row-arrow { transform: rotate(-90deg); color: var(--brand); }

.cat-group-body {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows var(--dur-slow) var(--ease-std);
}
.cat-group-body.open { grid-template-rows: 1fr; }
.cat-group-inner { min-height: 0; overflow: hidden; }

.cat-group-body .cat-group-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  padding: 10px 2px 4px;
}

.cat-subrow {
  -webkit-appearance: none; appearance: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 12px 14px;
  border-radius: 18px;
  border: 1.5px solid var(--border-warm);
  background: var(--surface);
  color: inherit;
  font: inherit;
  text-align: right;
  cursor: pointer;
  outline: none;
  opacity: 0;
  transform: translate3d(0,-6px,0);
  transition:
    opacity var(--dur-slow) var(--ease-std),
    transform var(--dur-slow) var(--ease-std),
    border-color var(--dur) var(--ease-std),
    background var(--dur) var(--ease-std),
    box-shadow var(--dur) var(--ease);
}
.cat-group-body.open .cat-subrow {
  opacity: 1;
  transform: translate3d(0,0,0);

  transition-delay: calc(var(--stagger-i, 0) * 45ms + 60ms), calc(var(--stagger-i, 0) * 45ms + 60ms), 0s, 0s, 0s;
}

.cat-subrow.active { border-color: var(--brand); background: var(--brand-soft); box-shadow: var(--shadow-brand); }
@media (hover: hover) and (pointer: fine) {
  .cat-subrow:hover { border-color: var(--steel); background: var(--steel-soft); box-shadow: 0 6px 16px var(--steel-glow); }
}
.cat-subrow:active { transform: scale(.96); transition-duration: var(--dur-press); transition-timing-function: var(--ease-press); }

.cat-subrow-top { width: 100%; display: flex; align-items: center; justify-content: space-between; }
.cat-subrow-icon {
  width: 30px; height: 30px;
  flex-shrink: 0;
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  background: var(--surface-raised);
  color: var(--brand);
  font-size: .92rem;
}
.cat-subrow-icon img { width: 100%; height: 100%; object-fit: cover; }
.cat-subrow-icon img.is-vector { object-fit: contain; padding: 5px; }
.cat-subrow.active .cat-subrow-icon { color: var(--brand); background: var(--surface); }
.cat-subrow-name { width: 100%; font-size: .82rem; font-weight: 800; color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cat-subrow-count {
  font-size: .68rem; font-weight: 700; color: var(--ink-muted);
  background: var(--surface-raised); border-radius: 50rem; padding: .1rem .5rem;
}

.view-switcher { display: flex; justify-content: center; }
.view-switcher-track {
  display: inline-flex;
  gap: 4px;
  padding: 5px;
  border-radius: 20px;
  background: var(--surface-glass);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1.5px solid var(--border-warm);
  box-shadow: var(--shadow-card);
}
.view-btn {
  -webkit-appearance: none; appearance: none;
  width: 40px; height: 38px;
  border-radius: 15px;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-muted);
  font-size: 1rem;
  cursor: pointer;
  transition: background var(--dur) var(--ease-std), color var(--dur) var(--ease-std), transform var(--dur-press) var(--ease-press);
}
.view-btn.active { background: var(--brand); color: #fff; box-shadow: var(--shadow-brand); }
.view-btn:active { transform: scale(.9); transition-duration: var(--dur-press); transition-timing-function: var(--ease-press); }

.products-section {
  position: relative;
  min-height: 100svh;
  min-height: 100dvh;
  padding-top: clamp(1.4rem, 4vh, 2.2rem);
  padding-bottom: clamp(2.4rem, 6vh, 3.4rem);
}

.products-header {
  position: sticky;
  top: clamp(10px, 2.4vh, 18px);
  z-index: 500;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 12px 16px 10px;
  margin: 0 0 1.2rem;
  border-radius: 26px;
  border-radius: max(26px, 1.6rem);
  border: 1px solid var(--border-warm);
  background: var(--overlay-bg);
  backdrop-filter: blur(20px) saturate(1.35);
  -webkit-backdrop-filter: blur(20px) saturate(1.35);
  box-shadow: var(--shadow-card);
  transition: box-shadow var(--dur-slow) var(--ease-std), transform var(--dur-slow) var(--ease-std);
}
.products-header.is-stuck { box-shadow: var(--shadow-sticky); transform: translate3d(0,0,0) scale(1.005); }
.products-header-row { display: flex; align-items: center; gap: 12px; }

.products-header-subnav {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 2px;
  scroll-behavior: smooth;
}
.products-header-subnav::-webkit-scrollbar { display: none; }
.subnav-chip {
  -webkit-appearance: none; appearance: none;
  flex-shrink: 0;
  padding: 6px 14px;
  border-radius: 50rem;
  border: 1.5px solid var(--border-warm);
  background: var(--surface-raised);
  color: var(--ink-muted);
  font: inherit;
  font-size: .74rem;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
  transition: border-color var(--dur) var(--ease-std), background var(--dur) var(--ease-std), color var(--dur) var(--ease-std), transform var(--dur-press) var(--ease-press);
}
.subnav-chip.active { border-color: var(--brand); background: var(--brand); color: #fff; }
.subnav-chip:active { transform: scale(.94); transition-duration: var(--dur-press); }
@media (hover: hover) and (pointer: fine) {
  .subnav-chip:not(.active):hover { border-color: var(--steel); color: var(--ink); }
}

.back-to-cats-btn {
  width: 40px; height: 40px;
  flex-shrink: 0;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: var(--surface-raised);
  border: 1.5px solid var(--border-warm);
  color: var(--brand);
  font-size: 1.1rem;
  cursor: pointer;
  transition: transform var(--dur-press) var(--ease-press), border-color var(--dur) var(--ease-std);
}
.back-to-cats-btn:active { transform: scale(.9); transition-duration: var(--dur-press); }
@media (hover: hover) and (pointer: fine) {
  .back-to-cats-btn:hover { border-color: var(--brand); }
}

.products-header-icon {
  width: 34px; height: 34px;
  flex-shrink: 0;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  background: var(--surface-raised);
  color: var(--brand);
  font-size: .98rem;
}
.products-header-icon img { width: 100%; height: 100%; object-fit: cover; }
.products-header-icon img.is-vector { object-fit: contain; padding: 5px; }
.products-header-icon[hidden] { display: none; }

.products-header-text { min-width: 0; flex: 1; }
.products-header-title {
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--ink);
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.products-header-count { font-size: .74rem; color: var(--ink-muted); }

.cat-panel { display: none; }
.cat-panel.active { display: block; }

#menuMain.is-searching .cat-panel { display: block; }
#menuMain.is-searching .cat-panel:not(:has(.menu-card:not(.search-hide))) { display: none; }
#menuMain.is-searching .cat-panel .cat-empty { display: none; }
.menu-card.search-hide { display: none; }

.menu-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
[data-view="compact"] .menu-items { grid-template-columns: repeat(3, 1fr); gap: 10px; }
[data-view="list"] .menu-items { grid-template-columns: 1fr; gap: 10px; }
[data-view="fancy"] .menu-items { grid-template-columns: repeat(2, 1fr); gap: 18px; padding-top: 4px; }

.menu-card {
  -webkit-appearance: none; appearance: none;
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0;
  border-radius: 30px;
  border-radius: max(30px, 1.85rem);
  background: var(--surface);
  border: 1px solid var(--border-warm);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  cursor: pointer;
  text-align: right;
  color: inherit;
  font: inherit;
  transform: translate3d(0,0,0);
  will-change: transform;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease-std);
}
@media (hover: hover) and (pointer: fine) {
  .menu-card:hover { transform: translate3d(0,-5px,0); box-shadow: var(--shadow-hover); border-color: var(--steel); }
  .menu-card:hover .menu-card-img img { transform: scale(1.06); }
}
.menu-card:active { transform: translate3d(0,-1px,0) scale(.96); transition-duration: var(--dur-press); transition-timing-function: var(--ease-press); }

.menu-card-img {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--surface-raised);
  flex-shrink: 0;
}
.menu-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform var(--dur-slow) var(--ease); }
.menu-card-placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-muted);
  font-size: 1.6rem;
  background: linear-gradient(135deg, var(--surface-raised), var(--cream-deep));
}

.menu-card-info { flex: 1; display: flex; flex-direction: column; gap: 4px; padding: .8rem .9rem .95rem; min-width: 0; }
.menu-card-name { font-size: .88rem; font-weight: 800; color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.menu-card-desc {
  font-size: .74rem; color: var(--ink-muted); line-height: 1.55;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  min-height: calc(.74rem * 1.55 * 2);
}
.menu-card-footer { margin-top: auto; padding-top: .3rem; }
.menu-card-price { font-size: .92rem; font-weight: 800; color: var(--brand); }
.menu-card-price small { font-size: .68rem; font-weight: 600; color: var(--ink-muted); margin-right: 2px; }

[data-view="list"] .menu-card { flex-direction: row-reverse; border-radius: 24px; }
[data-view="list"] .menu-card-img { width: 96px; aspect-ratio: 1 / 1; flex-shrink: 0; }
[data-view="list"] .menu-card-info { padding: .65rem .9rem; justify-content: center; }
[data-view="list"] .menu-card-desc { -webkit-line-clamp: 1; min-height: 0; }

[data-view="compact"] .menu-card { border-radius: 22px; }
[data-view="compact"] .menu-card-img { aspect-ratio: 1 / 1; }
[data-view="compact"] .menu-card-info { padding: .55rem .6rem .7rem; gap: 2px; }
[data-view="compact"] .menu-card-name { font-size: .76rem; }
[data-view="compact"] .menu-card-desc { display: none; }
[data-view="compact"] .menu-card-price { font-size: .8rem; }

[data-view="fancy"] .menu-card {
  border-radius: 32px;
  border-radius: max(32px, 2rem);
  border-color: transparent;
  background: linear-gradient(165deg, var(--surface) 0%, var(--surface-raised) 100%);
  box-shadow: 0 14px 28px var(--brand-glow), 0 3px 10px var(--steel-glow);
  animation: fancy-float 5.5s ease-in-out infinite;
  max-width: 340px;
  margin: 0 auto;
  width: 100%;
}
[data-view="fancy"] .menu-card:nth-child(3n+2) {
  border-radius: 26px;
  border-radius: max(26px, 1.6rem);
  background: linear-gradient(150deg, var(--surface) 0%, var(--surface-raised) 120%);
  box-shadow: 0 12px 26px var(--steel-glow), 0 3px 10px var(--brand-glow);
  animation-duration: 6.4s;
  animation-delay: .35s;
}
[data-view="fancy"] .menu-card:nth-child(3n+3) {
  border-radius: 38px;
  border-radius: max(38px, 2.35rem);
  box-shadow: 0 16px 34px var(--brand-glow), 0 4px 14px var(--steel-glow), inset 0 0 0 1px rgba(var(--brand-rgb),.08);
  animation-duration: 4.9s;
  animation-delay: .65s;
}
@keyframes fancy-float {
  0%, 100% { transform: translate3d(0,0,0); }
  50%      { transform: translate3d(0,-5px,0); }
}
@media (hover: hover) and (pointer: fine) {
  [data-view="fancy"] .menu-card:hover {
    animation-play-state: paused;
    transform: translate3d(0,-8px,0);
    box-shadow: 0 20px 40px var(--brand-glow), 0 6px 16px var(--steel-glow);
  }
  [data-view="fancy"] .menu-card:hover .menu-card-img img { transform: scale(1.07); }
}
[data-view="fancy"] .menu-card:active {
  animation-play-state: paused;
  transform: translate3d(0,-2px,0) scale(.97);
}
[data-view="fancy"] .menu-card-img {
  width: calc(100% - 18px);
  margin: 9px 9px 0;
  aspect-ratio: 1 / 1;
  border-radius: 24px;
  border-radius: max(24px, 1.5rem);
}
[data-view="fancy"] .menu-card:nth-child(3n+3) .menu-card-img { border-radius: 30px; border-radius: max(30px, 1.85rem); }
[data-view="fancy"] .menu-card-info { padding: .65rem .9rem .95rem; }
[data-view="fancy"] .menu-card-name { font-size: .88rem; }
[data-view="fancy"] .menu-card-price { font-size: .95rem; color: var(--brand); }
[data-view="fancy"] .menu-card-desc { -webkit-line-clamp: 1; min-height: 0; }
@media (prefers-reduced-motion: reduce) {
  [data-view="fancy"] .menu-card { animation: none; }
}

.menu-card.card-fall-out {
  animation: card-fall-out var(--dur-slow) var(--ease-fall) both !important;
  animation-delay: var(--fall-delay, 0ms) !important;
  pointer-events: none;
}
@keyframes card-fall-out {
  0%   { opacity: 1; transform: translate3d(0,0,0) scale(1); }
  100% { opacity: 0; transform: translate3d(0,26px,0) scale(.92); }
}
.menu-card.card-cascade-in {
  animation: card-rain-in var(--dur-slow) var(--ease) both !important;
  animation-delay: var(--cascade-delay, 0ms) !important;
}
@keyframes card-rain-in {
  0%   { opacity: 0; transform: translate3d(0,-22px,0) scale(.94); }
  100% { opacity: 1; transform: translate3d(0,0,0) scale(1); }
}

.menu-card.is-flip-fade { opacity: .55; }
.menu-card.is-flipping {
  transition: transform var(--dur-slow) var(--ease), opacity var(--dur) var(--ease-std);
  opacity: 1;
}

.menu-card.is-flipping, .menu-card.is-flip-fade { animation: none !important; }

.product-sheet {
  --bs-offcanvas-height: auto;
  --bs-offcanvas-bg: var(--overlay-bg);
  --bs-offcanvas-color: var(--ink);
  --bs-offcanvas-border-color: var(--border-warm);
  --bs-offcanvas-box-shadow: none;
  --bs-offcanvas-padding-x: 0;
  --bs-offcanvas-padding-y: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  max-height: min(86vh, 720px);
  max-height: min(86svh, 720px);
  display: flex;
  flex-direction: column;
  border-radius: 28px 28px 0 0;
  border: 1px solid var(--border-warm);
  border-bottom: none;
  background: var(--overlay-bg);
  color: var(--ink);
  backdrop-filter: blur(24px) saturate(1.3);
  -webkit-backdrop-filter: blur(24px) saturate(1.3);
  box-shadow: 0 -18px 50px rgba(0,0,0,.28);
  will-change: transform;
  transform: translate3d(0, 100%, 0);
  transition: transform var(--dur-slow) var(--ease);
}
.product-sheet.showing,
.product-sheet.show:not(.hiding) { transform: translate3d(0, 0, 0); }
.product-sheet.is-dragging { transition: none !important; }

.offcanvas-backdrop {
  --bs-backdrop-bg: var(--backdrop);
  --bs-backdrop-opacity: 1;
  background: var(--backdrop);
}
.offcanvas-backdrop.show { opacity: 1; }

.sheet-drag-handle {
  display: flex; justify-content: center;
  padding: 12px 0 6px;
  cursor: grab;
  touch-action: none;
  flex-shrink: 0;
}
.sheet-drag-handle span { width: 42px; height: 4.5px; border-radius: 50rem; background: var(--border-warm); }

.sheet-close-btn {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 3;
  width: 34px; height: 34px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--surface-glass);
  border: 1px solid var(--border-warm);
  color: var(--ink);
  font-size: .82rem;
  cursor: pointer;
  transition: transform var(--dur-press) var(--ease-press), background var(--dur) var(--ease-std);
}
.sheet-close-btn:active { transform: scale(.88); }

.product-sheet .offcanvas-body {
  flex: 1 1 auto;
  min-height: 0;
  padding: 0 0 max(1.6rem, env(safe-area-inset-bottom, 0px));
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-y: contain;
}

.sheet-media { position: relative; width: 100%; aspect-ratio: 16 / 11; max-height: 260px; background: var(--surface-raised); touch-action: none; cursor: grab; flex-shrink: 0; }
.sheet-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sheet-media-placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-muted);
  font-size: 2.2rem;
  background: linear-gradient(135deg, var(--surface-raised), var(--cream-deep));
}
.sheet-cat-badge {
  position: absolute;
  bottom: 12px; right: 14px;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px 6px 8px;
  border-radius: 50rem;
  background: rgba(var(--ink-rgb), .55);
  color: #fff;
  font-size: .74rem;
  font-weight: 700;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.sheet-cat-visual { width: 20px; height: 20px; border-radius: 50%; overflow: hidden; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,.2); font-size: .68rem; flex-shrink: 0; }
.sheet-cat-visual img { width: 100%; height: 100%; object-fit: cover; }
.sheet-cat-visual img.is-vector { object-fit: contain; padding: 3px; }

.sheet-body { padding: 1.3rem 1.4rem 0; }
.sheet-item-name { font-size: 1.2rem; font-weight: 800; color: var(--ink); margin: 0 0 .5rem; }
.sheet-price-row { display: flex; align-items: baseline; gap: 5px; margin-bottom: .9rem; }
.sheet-price { font-size: 1.35rem; font-weight: 800; color: var(--brand); }
.sheet-price-unit { font-size: .78rem; color: var(--ink-muted); font-weight: 600; }
.sheet-desc { font-size: .86rem; line-height: 1.85; color: var(--ink-muted); margin: 0; white-space: pre-line; }

* { scrollbar-width: thin; scrollbar-color: var(--steel) transparent; }
*::-webkit-scrollbar { width: 8px; height: 8px; }
*::-webkit-scrollbar-track { background: transparent; }
*::-webkit-scrollbar-thumb { background: var(--steel); border-radius: 50rem; }

@media (min-width: 576px) {
  .menu-items { grid-template-columns: repeat(3, 1fr); }
  [data-view="compact"] .menu-items { grid-template-columns: repeat(4, 1fr); }
  [data-view="fancy"] .menu-items { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 768px) {
  .hero-logo { width: 190px; height: 190px; }
  .menu-items { grid-template-columns: repeat(3, 1fr); gap: 18px; }
  [data-view="compact"] .menu-items { grid-template-columns: repeat(5, 1fr); }
  [data-view="fancy"] .menu-items { grid-template-columns: repeat(3, 1fr); gap: 22px; max-width: 1020px; margin: 0 auto; }
  [data-view="list"] .menu-items { max-width: 760px; margin: 0 auto; }
  .cat-accordion { max-width: 640px; margin-left: auto; margin-right: auto; }
}
@media (min-width: 992px) {
  .menu-items { grid-template-columns: repeat(4, 1fr); gap: 20px; }
  [data-view="compact"] .menu-items { grid-template-columns: repeat(6, 1fr); }
  [data-view="fancy"] .menu-items { grid-template-columns: repeat(3, 1fr); gap: 26px; max-width: 1080px; }
  .section-title { font-size: 2.1rem; }
  .hero-info-panel { width: 420px; }
}
@media (min-width: 1200px) {
  .menu-items { grid-template-columns: repeat(5, 1fr); }
  [data-view="compact"] .menu-items { grid-template-columns: repeat(7, 1fr); }
  [data-view="fancy"] .menu-items { grid-template-columns: repeat(4, 1fr); max-width: 1160px; }
}

@media (max-width: 359.98px) {
  .hero-logo { width: 132px; height: 132px; }
  .cat-row { padding: 10px 12px; }
  .menu-card-name { font-size: .82rem; }
}

@media (hover: none) {
  .menu-card:hover, .cat-row:hover, .back-to-cats-btn:hover, .hero-social-dot:hover, .subnav-chip:hover { transform: none; box-shadow: var(--shadow-card); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 1ms !important; animation-iteration-count: 1 !important; transition-duration: 1ms !important; scroll-behavior: auto !important; }
  .hero-scroll-indicator { animation: none !important; }
  .cat-group-body { transition: none !important; }
}

@media print {
  .preloader, .hero, .theme-btn, .search-box, .view-switcher, .hero-scroll-indicator,
  .products-header, .sheet-close-btn, .offcanvas-backdrop { display: none !important; }
  .cat-panel { display: block !important; }
  .menu-items { grid-template-columns: repeat(2, 1fr) !important; }
  .menu-card { box-shadow: none !important; border: 1px solid #ccc !important; }
}
