/** Shopify CDN: Minification failed

Line 506:0 Expected "}" to go with "{"

**/
.menu-section {
    padding: 20px;
    text-align: center;
  }

  .menu-categories-wrapper {
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 10px;
    -webkit-overflow-scrolling: touch; 
    margin-bottom: 30px;
  }

  .menu-categories-wrapper::-webkit-scrollbar {
    display: none;
  }

  .menu-categories {
    display: inline-block;
  }

  .menu-category {
    display: inline-block;
    padding: 10px 20px;
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-right: 15px;
  }

  .menu-category:hover {
    background-color: #555;
  }

  .menu-items {
    margin-bottom: 50px;
  }

  .title-status {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
  }

  .title-status h3 {
    margin: 0;
  }

  .not-available-badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-width: 168px;
    max-width: 100%;
    padding: 9px 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, #3d3d3d 0%, #2a2a2a 45%, #454545 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 0.56em;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    line-height: 1;
    white-space: nowrap;
    overflow: hidden;
  }

  .not-available-badge::after {
    content: '';
    position: absolute;
    top: 0;
    left: -55%;
    width: 38%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.08) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-22deg);
    animation: badgeShine 2.8s linear infinite;
  }

  .not-available-icon {
    color: #c20016;
    font-size: 1.35em;
    line-height: 1;
    display: inline-block;
    text-shadow: 0 0 0 rgba(194, 0, 22, 0.2);
    animation: unavailablePulse 1.4s ease-in-out infinite;
  }

  .menu-item.unavailable .menu-image {
    filter: grayscale(100%) opacity(0.65);
  }

  .menu-item.unavailable .menu-info h3,
  .menu-item.unavailable .ingredients,
  .menu-item.unavailable .price {
    color: #8a8a8a !important;
  }

  @keyframes unavailablePulse {
    0%, 100% {
      transform: scale(0.95);
      opacity: 0.9;
      text-shadow: 0 0 0 rgba(194, 0, 22, 0.2);
    }
    50% {
      transform: scale(1.16);
      opacity: 1;
      text-shadow: 0 0 10px rgba(194, 0, 22, 0.95), 0 0 18px rgba(194, 0, 22, 0.65);
    }
  }

  @keyframes badgeShine {
    0% {
      left: -55%;
    }
    100% {
      left: 125%;
    }
  }

@media (min-width: 769px) {
  .menu-item {
    display: flex;
    align-items: center;
    justify-content: center; 
    margin-bottom: 20px;
    text-align: left;
  }

  .menu-info {
    display: flex;
    flex-direction: column;
    text-align: left;
    justify-content: flex-start;
    width: 60%; 
  }

  .title-price {
    display: flex;
    justify-content: space-between; 
    width: 100%;
  }

  .menu-image {
    width: 250px;
    height: auto;
    margin-right: 25px;
    border-radius: 20px;
    object-fit: cover;
  }

  .no-image {
    width: 250px; 
    height: auto;
    margin-right: 25px;
    background: transparent; 
  }

  .menu-info h3 {
    font-size: 1.6em;
    margin-bottom: 5px;
  }

  .ingredients {
    color: #666;
    margin-top: 5px;
  }

  .price {
    font-weight: bold;
    color: #fff;
    font-size: 1.6em;
    white-space: nowrap;
  }

  .menu-item.unavailable .title-price {
    align-items: center;
    gap: 18px;
  }

  .menu-item.unavailable .title-status {
    align-items: center;
    gap: 12px;
    flex-wrap: nowrap;
  }

  .menu-item.unavailable .not-available-badge {
    min-width: 162px;
    padding: 8px 16px;
    font-size: 0.54em;
  }
}

@media (max-width: 768px) {
  .menu-item {
    display: flex;
    flex-direction: column;
    align-items: center; 
    justify-content: center;
    text-align: center;
    margin-bottom: 40px; 
    width: 100%; 
    padding: 0 20px; 
  }

  .menu-details {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%; 
  }

  .menu-image {
    display: block; 
    max-width: 350px; 
    width: 100%; 
    height: auto;
    margin-left: auto; 
    margin-right: auto; 
    margin-bottom: 15px;
    border-radius: 20px; 
    object-fit: cover; 
    
    margin-right: 0; 
  }

  .menu-info {
    text-align: center;
    width: 100%; 
    margin-top: 10px; 
  }

  .menu-item.unavailable .title-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
  }

  .menu-item.unavailable .title-status {
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }

  .menu-item.unavailable .not-available-badge {
    min-width: 176px;
    max-width: 220px;
    padding: 10px 18px;
    font-size: 0.66em;
    letter-spacing: 0.07em;
    margin: 0 auto;
  }

  .menu-info h3 {
    font-size: 1.6em; 
    margin-bottom: 5px;
  }

  .price {
    font-weight: bold; 
    font-size: 1.6em; 
    color: white; 
    margin-top: 10px;
  }

  .ingredients {
    color: #666; 
    margin-top: 5px;
    font-size: 1em; 
  }
}

  .category-heading {
    text-align: center;
    margin-bottom: 30px;
  }

  .category-icon {
    width: 150px; 
    height: auto;
    display: block;
    border-radius: 20px; 
    margin: 0 auto 10px;
  }

  .category-text {
    font-size: 1.8em; 
    font-weight: bold;
    color: #333; 
  }

  .parent-nav {
    text-align: center;
    margin-bottom: 20px;
    position: relative; 
    z-index: 10; 
  }

  .parent-nav-btn {
    padding: 15px 40px;
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 25px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-right: 15px;
    z-index: 11; 
  }

  .parent-nav-btn:hover {
    background-color: #555;
  }

  .parent-nav-btn.active {
    background-color: #c20016; 
  }

  .menu-section {
    padding: 20px;
    text-align: center;
    z-index: 1; 
  }

  .menu-categories-wrapper {
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 10px;
    -webkit-overflow-scrolling: touch;
  }

  .menu-categories-wrapper::-webkit-scrollbar {
    display: none;
  }

  .menu-categories {
    display: inline-block;
  }

  .menu-category {
    display: inline-block;
    padding: 10px 20px;
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-right: 15px;
  }

  .menu-category:hover {
    background-color: #555;
  }

  .menu-category.active {
    background-color: #c20016;
  }

  @media (max-width: 768px) {
    .menu-categories-wrapper {
      position: sticky;
      top: 0;
      background-color: #f8f8f8;
      z-index: 999;
    }

.parent-nav {
  text-align: center;
  margin-bottom: 10px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px; 
  padding: 10px;
  position: sticky;

}

@media (max-width: 768px) {
  .menu-categories-wrapper {
    position: sticky;
    top: 100px; 
    background-color: transparent; 
    z-index: 997; 
  }

  .parent-nav {
    top: 60px; 
    background-color: transparent; 
  }

  .parent-nav-btn {
    padding: 10px 30px;
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }

  .parent-nav-btn.active {
    background-color: #c20016; 
  }

  .section-divider {
    width: 80%; 
    border: none;
    height: 2px; 
    background-color: white; 
    margin: 15px auto; 
  }

  .menu-categories-wrapper {
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 10px;
    -webkit-overflow-scrolling: touch;
    background-color: transparent;
  }

  .menu-categories-wrapper::-webkit-scrollbar {
    display: none;
  }

  .menu-categories {
    display: inline-block;
  }

  .menu-category {
    display: inline-block;
    padding: 10px 20px;
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-right: 15px;
  }

  .menu-category:hover {
    background-color: #555;
  }

  .menu-category.active {
    background-color: #c20016;
  }

.menu-section {
    padding: 20px;
    text-align: center;
    z-index: 1; 
    background-color: #000; 
}

@media (max-width: 768px) {
    
    .menu-categories-wrapper {
        position: sticky;
        top: 90px; 
        background-color: transparent; 
        z-index: 1; 
    }

    .parent-nav {
        position: relative; 
        top: 0; 
        background-color: transparent; 
    }

  .menu-image {
    display: block;
    max-width: 100%; 
    width: auto; 
    height: auto; 
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 15px;
    border-radius: 20px;
    object-fit: cover;
  }

}
