/* Aytaçoğlu menu desktop experience. Mobile remains controlled by style.css. */
@media (min-width: 981px) {
  .menu-editorial-layout.menu-editorial-layout-full {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 0 !important;
  }

  .menu-editorial-layout-full .menu-ajax-stage,
  .menu-editorial-layout-full .menu-category-intro {
    width: 100%;
    min-width: 0;
  }

  .menu-category-bar {
    top: 92px;
  }

  .menu-category-bar button {
    height: 70px;
  }

  .menu-explorer {
    padding-bottom: 120px;
  }

  .menu-explorer > .menu-editorial-layout {
    width: min(1280px, calc(100% - 56px));
    padding-top: 68px;
  }

  .menu-category-intro {
    padding-top: 0;
  }

  .menu-category-heading {
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    align-items: end;
    gap: 60px;
    margin-bottom: 38px;
  }

  .menu-category-heading h2 {
    margin: 0;
    font-size: clamp(42px, 4vw, 62px);
  }

  .menu-category-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }

  .menu-category-card,
  .menu-category-card:nth-child(1),
  .menu-category-card:nth-child(2),
  .menu-category-card:nth-child(4),
  .menu-category-card:nth-child(5) {
    grid-column: span 1;
    min-height: 310px;
    border-radius: 4px;
    animation: menuDesktopCardIn 0.55s both;
  }

  .menu-category-card:nth-child(2) { animation-delay: 0.05s; }
  .menu-category-card:nth-child(3) { animation-delay: 0.1s; }
  .menu-category-card:nth-child(4) { animation-delay: 0.15s; }
  .menu-category-card:nth-child(5) { animation-delay: 0.2s; }

  .menu-category-card:after {
    inset: 9px;
  }

  .menu-category-label {
    left: 18px;
    bottom: 18px;
    padding: 9px 13px;
    font-size: 16px;
  }

  .menu-ajax-stage {
    position: relative;
    min-height: 420px;
  }

  .menu-ajax-stage.is-loading {
    opacity: 1;
  }

  .menu-ajax-stage.is-loading > * {
    opacity: 0.22;
    filter: blur(2px);
    transform: scale(0.992);
    transition: 0.25s ease;
  }

  .menu-ajax-stage.is-loading:after {
    content: "";
    position: absolute;
    z-index: 6;
    left: 50%;
    top: 120px;
    width: 42px;
    height: 42px;
    margin-left: -21px;
    border: 2px solid rgba(23, 21, 15, 0.15);
    border-top-color: var(--red);
    border-radius: 50%;
    animation: menuDesktopSpin 0.7s linear infinite;
  }

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

  .menu-product-card {
    display: flex;
    min-width: 0;
    min-height: 0;
    flex-direction: column;
    border: 1px solid rgba(23, 21, 15, 0.09);
    border-radius: 4px;
    box-shadow: 0 12px 34px rgba(39, 29, 18, 0.055);
    animation: menuDesktopCardIn 0.5s both;
  }

  .menu-product-card:nth-child(2n) {
    animation-delay: 0.06s;
  }

  .menu-product-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 24px 56px rgba(39, 29, 18, 0.11);
  }

  .menu-product-photo {
    height: 285px;
    min-height: 285px;
  }

  .menu-product-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 26px 28px 24px;
  }

  .menu-product-meta {
    font-size: 9px;
  }

  .menu-product-content h3 {
    margin: 15px 0 10px;
    font-size: 33px;
  }

  .menu-product-content p {
    min-height: 46px;
    font-size: 13px;
    line-height: 1.6;
  }

  .menu-product-price,
  .menu-product-prices {
    margin-top: 15px;
  }

  .menu-product-price {
    min-height: 62px;
  }

  .menu-product-price strong {
    font-size: 25px;
  }

  .menu-product-prices > span {
    min-height: 68px;
  }

  .menu-product-prices strong {
    font-size: 19px;
  }

  .menu-product-content > a {
    min-height: 50px;
    margin-top: auto;
    font-size: 9px;
  }
}

@media (min-width: 981px) and (max-width: 1180px) {
  .menu-explorer > .menu-editorial-layout {
    width: min(100% - 38px, 1120px);
  }

  .menu-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .menu-category-card,
  .menu-category-card:nth-child(1),
  .menu-category-card:nth-child(2),
  .menu-category-card:nth-child(4),
  .menu-category-card:nth-child(5) {
    min-height: 275px;
  }

  .menu-product-photo {
    height: 250px;
    min-height: 250px;
  }

  .menu-product-content {
    padding: 23px;
  }

  .menu-product-content h3 {
    font-size: 29px;
  }
}

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

@keyframes menuDesktopSpin {
  to { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) and (min-width: 981px) {
  .menu-category-card,
  .menu-product-card,
  .menu-ajax-stage.is-loading:after {
    animation: none;
  }
}
