:root {
  --bg: #080706;
  --paper: #14110f;
  --paper-soft: #1d1714;
  --ink: #fff8ef;
  --muted: #c7b8a8;
  --line: rgba(255, 232, 205, 0.14);
  --soft: #211714;
  --accent: #e3382e;
  --accent-soft: rgba(227, 56, 46, 0.16);
  --gold: #f4c06a;
  --shadow: 0 20px 44px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at 50% -120px, rgba(227, 56, 46, 0.32), transparent 34%),
    radial-gradient(circle at 92% 28%, rgba(227, 56, 46, 0.16), transparent 22%),
    radial-gradient(circle at 8% 56%, rgba(244, 192, 106, 0.12), transparent 24%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, #170806 0%, #0b0706 44%, #160706 100%);
  background-attachment:
    fixed,
    fixed,
    fixed,
    fixed,
    fixed;
  background-size:
    auto,
    auto,
    auto,
    34px 34px,
    auto;
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse at 50% 18%, rgba(255, 255, 255, 0.055), transparent 34%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 18px);
  content: "";
  pointer-events: none;
}

body::after {
  position: fixed;
  inset: auto 0 0;
  z-index: -1;
  height: 52vh;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(227, 56, 46, 0.18), transparent 62%),
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.24));
  content: "";
  pointer-events: none;
}

button {
  font: inherit;
  cursor: pointer;
}

.splash-screen {
  display: none;
}

.site-header {
  padding: 24px 16px 18px;
}

.header-inner {
  position: relative;
  display: grid;
  width: min(920px, 100%);
  margin: 0 auto;
  place-items: center;
  min-height: 88px;
}

.logo-link {
  display: inline-flex;
  justify-content: center;
  width: min(235px, 62vw);
}

.logo-link picture {
  display: block;
  width: 100%;
}

.logo-link img {
  display: block;
  width: 100%;
  height: auto;
}

.language-switch {
  position: absolute;
  right: 0;
  top: 50%;
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-50%);
}

.lang-btn {
  display: grid;
  width: 42px;
  height: 32px;
  min-width: 0;
  min-height: 0;
  place-items: center;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  padding: 0;
  overflow: hidden;
}

.lang-btn.is-active {
  box-shadow:
    0 0 0 2px var(--accent),
    0 10px 22px rgba(227, 56, 46, 0.22);
}

.lang-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-page {
  width: min(920px, 100%);
  margin: 0 auto;
  padding: 2px 16px 52px;
}

.page-title {
  position: relative;
  width: fit-content;
  margin: 6px auto 32px;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.8rem, 14vw, 5.8rem);
  font-style: italic;
  font-weight: 700;
  line-height: 0.9;
  text-align: center;
  text-transform: none;
}

.page-title::before,
.page-title::after {
  position: absolute;
  top: 56%;
  width: min(18vw, 120px);
  height: 1px;
  background: var(--line);
  content: "";
}

.page-title::before {
  right: calc(100% + 18px);
}

.page-title::after {
  left: calc(100% + 18px);
}

.category-filters {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin: -8px auto 42px;
  padding: 12px;
  border: 1px solid rgba(255, 232, 205, 0.12);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(39, 12, 8, 0.94), rgba(17, 8, 6, 0.9)),
    rgba(0, 0, 0, 0.45);
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.28),
    inset 0 0 0 1px rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(16px);
}

.filter-btn {
  min-height: 44px;
  border: 1px solid rgba(255, 232, 205, 0.15);
  border-radius: 999px;
  padding: 0 18px;
  color: rgba(255, 246, 233, 0.8);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 -12px 22px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  font: inherit;
  font-size: clamp(0.86rem, 2.2vw, 0.98rem);
  font-weight: 900;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.filter-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(244, 192, 106, 0.44);
  color: #fff;
}

.filter-btn.is-active {
  border-color: rgba(244, 192, 106, 0.72);
  color: #fff;
  background:
    radial-gradient(circle at 50% 0, rgba(255, 255, 255, 0.2), transparent 44%),
    linear-gradient(135deg, rgba(227, 56, 46, 0.95), rgba(123, 16, 12, 0.98));
  box-shadow:
    0 10px 26px rgba(227, 56, 46, 0.28),
    inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.menu-sections {
  display: grid;
  gap: 76px;
}

.menu-category.is-entering {
  animation: category-enter 0.42s ease both;
  animation-delay: var(--category-delay, 0s);
}

.menu-category.is-entering .product-card {
  animation: card-enter 0.42s ease both;
  animation-delay: calc(var(--category-delay, 0s) + var(--card-delay, 0s));
}

.menu-category h2 {
  position: relative;
  display: grid;
  width: min(100%, 620px);
  min-height: 66px;
  margin: 0 auto 26px;
  place-items: center;
  border: 1px solid rgba(255, 231, 192, 0.22);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 0, rgba(255, 255, 255, 0.24), transparent 38%),
    linear-gradient(90deg, rgba(87, 7, 5, 0.8), rgba(227, 56, 46, 0.95) 34%, rgba(227, 56, 46, 0.95) 66%, rgba(87, 7, 5, 0.8));
  color: #fff;
  font-size: clamp(1.35rem, 5.6vw, 2.15rem);
  font-weight: 900;
  letter-spacing: 0.075em;
  line-height: 1;
  padding: 14px 22px 15px;
  text-align: center;
  text-shadow:
    0 2px 0 rgba(65, 5, 4, 0.55),
    0 0 18px rgba(255, 255, 255, 0.22);
  text-transform: uppercase;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    inset 0 -20px 42px rgba(0, 0, 0, 0.18),
    0 18px 36px rgba(0, 0, 0, 0.32),
    0 0 34px rgba(227, 56, 46, 0.16);
}

.menu-category h2::before {
  position: absolute;
  inset: -7px auto auto 50%;
  width: min(76%, 440px);
  height: 13px;
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(244, 192, 106, 0.95) 0 2px, transparent 3px) 0 50% / 28px 10px repeat-x;
  filter: drop-shadow(0 0 10px rgba(244, 192, 106, 0.42));
  transform: translateX(-50%);
  content: "";
}

.menu-category h2::after {
  position: absolute;
  inset: auto 14px 9px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 242, 218, 0.55), transparent);
  content: "";
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 18px;
}

.product-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 232, 205, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 28%),
    var(--paper);
  box-shadow:
    0 20px 44px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(227, 56, 46, 0.04);
}

@keyframes category-enter {
  from {
    transform: translateY(16px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes card-enter {
  from {
    transform: translateY(18px) scale(0.985);
    opacity: 0;
  }
  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

.product-card::before {
  position: absolute;
  inset: 0 0 auto;
  z-index: 1;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--gold), var(--accent));
  content: "";
}

.product-card figure {
  position: relative;
  display: grid;
  min-height: 248px;
  margin: 0;
  place-items: center;
  padding-top: 28px;
  padding-bottom: 14px;
  background:
    radial-gradient(circle at 76% 18%, rgba(227, 56, 46, 0.18), transparent 26%),
    radial-gradient(circle at center, rgba(255, 232, 205, 0.18), transparent 58%),
    linear-gradient(145deg, #251915, #0f0c0a 72%);
}

.product-card figure::before {
  position: absolute;
  inset: 16px 16px auto auto;
  width: 42px;
  height: 42px;
  border-top: 1px solid rgba(244, 192, 106, 0.18);
  border-right: 1px solid rgba(244, 192, 106, 0.18);
  content: "";
}

.product-card[data-category="grill"] figure::before {
  display: none;
}

.product-card figure::after {
  position: absolute;
  right: 18px;
  bottom: 13px;
  left: 18px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(244, 192, 106, 0.34), transparent);
  content: "";
}

.product-card img {
  width: min(170px, 86%);
  height: 158px;
  object-fit: contain;
  filter: drop-shadow(0 18px 22px rgba(0, 0, 0, 0.44));
  transform: translateY(6px);
}

.product-content {
  display: grid;
  gap: 9px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(0, 0, 0, 0.1));
  padding: 16px 15px 16px;
  text-align: center;
}

.product-eyebrow {
  margin: 0;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.product-content h3 {
  margin: 0;
  font-size: clamp(1.08rem, 4.7vw, 1.38rem);
  font-weight: 900;
  line-height: 1.15;
}

.product-description {
  margin: 0;
  color: var(--muted);
  font-size: clamp(0.92rem, 3.7vw, 1.03rem);
  font-weight: 650;
  line-height: 1.35;
}

.product-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 5px;
  border: 1px solid rgba(244, 192, 106, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(227, 56, 46, 0.11), rgba(244, 192, 106, 0.06));
  padding: 11px 12px;
}

.product-info .price {
  flex: 1;
  color: var(--accent);
  font-size: clamp(1.22rem, 4.8vw, 1.55rem);
  font-weight: 950;
  line-height: 1.15;
  text-align: left;
}

.price-options {
  display: grid;
  flex: 1;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(244, 192, 106, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(227, 56, 46, 0.14), rgba(244, 192, 106, 0.08));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.025),
    0 10px 22px rgba(0, 0, 0, 0.1);
}

.price-option {
  position: relative;
  display: grid;
  gap: 5px;
  min-width: 0;
  border: 0;
  border-radius: 0;
  background:
    radial-gradient(circle at 50% 0, rgba(255, 255, 255, 0.07), transparent 52%);
  padding: 9px 10px;
  text-align: center;
}

.price-option + .price-option {
  border-left: 1px solid rgba(244, 192, 106, 0.22);
}

.price-option + .price-option::before {
  position: absolute;
  top: 12px;
  bottom: 12px;
  left: -1px;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.28), transparent);
  content: "";
}

.price-label {
  color: #fff3df;
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.price-value {
  color: var(--accent);
  font-size: clamp(1.12rem, 4.4vw, 1.4rem);
  font-weight: 950;
  line-height: 1;
  white-space: nowrap;
}

.product-info .calorie {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  min-height: 26px;
  padding: 5px 9px;
  border: 1px solid rgba(244, 192, 106, 0.24);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(244, 192, 106, 0.2), rgba(244, 192, 106, 0.08));
  color: #ffffff;
  font-size: 0.86rem;
  font-weight: 900;
  white-space: nowrap;
}

/* Porsiyon sütunu içindeki gram / kalori satırları */
.price-option .opt-meta {
  margin-top: 2px;
  font-size: 0.74rem;
  font-weight: 800;
  line-height: 1.15;
  white-space: nowrap;
}
.price-option .opt-measure {
  color: #ffe9c7;
}
.price-option .opt-cal {
  color: #ffd7a3;
}

.product-card[data-category="grill"]:not([data-product="ekmek-arasi-inegol"]) .product-info {
  display: flex;
  gap: 12px;
  justify-content: space-between;
  text-align: left;
}

.product-card[data-category="grill"]:not([data-product="ekmek-arasi-inegol"]) figure::after {
  bottom: 3px;
}

.product-card[data-category="grill"]:not([data-product="ekmek-arasi-inegol"]) .product-info .price {
  display: block;
  width: auto;
  max-width: 100%;
  text-align: left;
  white-space: nowrap;
}

.product-card[data-category="grill"]:not([data-product="ekmek-arasi-inegol"]) .price-options {
  max-width: 100%;
}

.product-card[data-category="grill"]:not([data-product="ekmek-arasi-inegol"]) .price-label {
  font-size: 0.6rem;
}

.product-card[data-category="grill"]:not([data-product="ekmek-arasi-inegol"]) .price-value {
  font-size: clamp(1.26rem, 4.8vw, 1.56rem);
}

.site-footer {
  border-top: 1px solid var(--line);
  background:
    linear-gradient(180deg, #0c0908 0%, #050403 100%);
  padding: 32px 16px 38px;
}

.footer-inner {
  display: grid;
  width: min(920px, 100%);
  margin: 0 auto;
  gap: 18px;
}

.footer-contact {
  display: grid;
  grid-template-columns: 128px 1fr;
  gap: 22px;
  align-items: center;
  min-height: 178px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  padding: 20px;
}

.footer-logo {
  width: 128px;
  height: auto;
}

.footer-details {
  display: grid;
  gap: 12px;
}

.footer-line {
  display: grid;
  gap: 5px;
  color: var(--muted);
  font-style: normal;
  line-height: 1.45;
}

.footer-line a {
  color: inherit;
  text-decoration: none;
}

.footer-line strong {
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.payment-area {
  display: grid;
  align-content: stretch;
  gap: 14px;
  min-height: 178px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  padding: 20px;
}

.payment-area p {
  margin: 0;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 850;
  letter-spacing: 0.02em;
}

.payment-logos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.payment-logos img {
  width: 100%;
  height: 56px;
  object-fit: contain;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 9px;
}

@media (min-width: 760px) {
  .product-grid {
    gap: 32px 28px;
  }

  .product-card figure {
    min-height: 314px;
    padding-top: 36px;
    padding-bottom: 18px;
  }

  .product-card img {
    width: min(232px, 86%);
    height: 218px;
  }

  .product-content {
    padding: 16px 18px 18px;
  }

  .footer-inner {
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
    align-items: stretch;
  }

  .payment-area {
    justify-content: stretch;
  }
}

@media (max-width: 700px) {
  .splash-screen {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: grid;
    place-items: center;
    background:
      radial-gradient(circle at 50% 30%, rgba(227, 56, 46, 0.32), transparent 36%),
      linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
      linear-gradient(180deg, #100b09 0%, #050403 100%);
    background-size:
      auto,
      34px 34px,
      auto;
    opacity: 1;
    transition:
      opacity 0.45s ease,
      visibility 0.45s ease;
  }

  .splash-screen img {
    width: min(250px, 68vw);
    height: auto;
    animation: splashLogo 1.15s ease both;
  }

  body.splash-hidden .splash-screen {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
  }

  .menu-page {
    opacity: 0;
    transform: translateY(18px);
  }

  body.site-ready .menu-page {
    animation: menuIntro 0.75s cubic-bezier(0.2, 0.8, 0.2, 1) both;
  }

  .site-header {
    background: transparent;
    padding: 20px 20px 14px;
  }

  .header-inner {
    width: 100%;
    min-height: 108px;
    align-items: center;
    justify-items: center;
  }

  .language-switch {
    position: static;
    display: contents;
    border: 0;
    background: transparent;
    transform: none;
  }

  .lang-btn[data-lang="en"] {
    position: absolute;
    left: 21px;
    top: 50%;
    z-index: 20;
    transform: translateY(-50%);
  }

  .lang-btn[data-lang="tr"] {
    position: absolute;
    right: 21px;
    top: 50%;
    z-index: 20;
    transform: translateY(-50%);
  }

  .lang-btn {
    width: 40px;
    height: 27px;
    border-radius: 0;
  }

  .lang-btn.is-active {
    box-shadow: 0 0 0 2px var(--accent);
  }

  .logo-link {
    width: 172px;
  }

  .menu-page {
    width: 100%;
    padding: 2px 18px 48px;
    background: transparent;
  }

  .page-title {
    margin: 0 auto 34px;
    padding-top: 24px;
    color: #fff;
    font-size: clamp(3.4rem, 18vw, 5rem);
    text-shadow: none;
  }

  .page-title::before,
  .page-title::after {
    display: none;
  }

  .category-filters {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
    width: 100%;
    margin: -10px auto 34px;
    padding: 10px;
    overflow: visible;
    border-radius: 16px;
  }

  .filter-btn {
    width: 100%;
    min-height: 42px;
    padding: 0 10px;
    font-size: clamp(0.78rem, 3.4vw, 0.92rem);
    white-space: normal;
  }

  .menu-sections {
    gap: 66px;
  }

  .menu-category h2 {
    display: grid;
    width: auto;
    min-height: 62px;
    margin: 0 auto 24px;
    background:
      radial-gradient(circle at 50% 0, rgba(255, 255, 255, 0.24), transparent 38%),
      linear-gradient(90deg, rgba(87, 7, 5, 0.8), rgba(227, 56, 46, 0.95) 34%, rgba(227, 56, 46, 0.95) 66%, rgba(87, 7, 5, 0.8));
    color: #fff;
    padding: 14px 17px 15px;
    font-size: clamp(1.45rem, 7.2vw, 2rem);
    line-height: 1;
  }

  .menu-category h2::before,
  .menu-category h2::after {
    display: block;
  }

  .product-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .product-card {
    width: min(100%, 440px);
    margin: 0 auto;
  }

  .product-card figure {
    min-height: 310px;
    padding-top: 36px;
    padding-bottom: 16px;
  }

  .product-card img {
    width: min(292px, 88%);
    height: 244px;
    transform: translateY(8px);
  }

  .product-content {
    gap: 10px;
    padding: 18px 18px 20px;
  }

  .product-content h3 {
    font-size: clamp(1.35rem, 6.4vw, 1.9rem);
  }

  .product-description {
    font-size: 1rem;
  }

  .product-info {
    display: flex;
    gap: 12px;
    justify-content: space-between;
    justify-items: stretch;
  }

  .product-info .price {
    max-width: 100%;
    font-size: clamp(1.24rem, 5.4vw, 1.55rem);
    line-height: 1.22;
    overflow-wrap: anywhere;
    text-align: left;
  }

  .price-options {
    gap: 0;
  }

  .price-option {
    padding: 9px 5px;
  }

  .price-label {
    font-size: clamp(0.55rem, 2.35vw, 0.66rem);
  }

  .price-value {
    font-size: clamp(1.08rem, 4.45vw, 1.28rem);
  }

  .product-card[data-category="grill"]:not([data-product="ekmek-arasi-inegol"]) .price-label {
    font-size: clamp(0.52rem, 2.1vw, 0.6rem);
  }

  .product-card[data-category="grill"]:not([data-product="ekmek-arasi-inegol"]) .price-value {
    font-size: clamp(1.18rem, 4.85vw, 1.36rem);
  }

  .product-card[data-category="grill"]:not([data-product="ekmek-arasi-inegol"]) .product-info .price {
    display: block;
    justify-self: auto;
    width: auto;
    font-size: clamp(1.03rem, 4.25vw, 1.18rem);
    line-height: 1.15;
    overflow-wrap: normal;
    text-align: left;
    white-space: nowrap;
  }

  .product-card[data-category="grill"]:not([data-product="ekmek-arasi-inegol"]) .product-info {
    gap: 12px;
  }

  .product-info .calorie {
    min-height: 28px;
    padding: 6px 11px;
    font-size: 0.9rem;
  }

  .site-footer {
    padding: 24px 12px 30px;
  }

  .footer-contact {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 16px;
    min-height: 0;
    padding: 18px 16px;
    text-align: center;
  }

  .footer-logo {
    width: 142px;
  }

  .footer-details {
    width: 100%;
  }

  .payment-area {
    min-height: 0;
    padding: 18px 14px;
    text-align: center;
  }

  .payment-logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .payment-logos img {
    height: 50px;
    padding: 8px;
  }
}

@keyframes splashLogo {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.88);
  }
  55% {
    opacity: 1;
    transform: translateY(0) scale(1.04);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes menuIntro {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .menu-category.is-entering,
  .menu-category.is-entering .product-card {
    animation: none;
  }
}
