 /* General Reset */
    .menu-section {
      padding: 60px 0;
    }

    /* Tab Buttons */
    .tab-buttons {
      list-style: none;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      padding: 15px 0;
      gap: 10px;
    }

    .tab-buttons li {
      position: relative;
      cursor: pointer;
      color: white;
      font-size: 16px;
      font-weight: bold;
      text-transform: uppercase;
      transition: color 0.3s ease, transform 0.2s ease;
      padding: 8px 16px;
      border-radius: 4px;
    }

    .tab-buttons li:hover {
      color: #ffcc00;
      transform: scale(1.05);
    }

    .tab-buttons li::after {
      content: "♦";
      color: #ffcc00;
      margin-left: 5px;
    }

    .tab-buttons li:last-child::after {
      content: "";
    }

    .tab-buttons li.active-btn {
      color: #ffcc00;
    }

    .tab-buttons li.active-btn::before {
      content: "";
      position: absolute;
      bottom: -5px;
      left: 0;
      right: 0;
      height: 3px;
      background-color: #ffcc00;
    }

    /* Tab Content */
    .tab-content {
      display: none;
      padding: 40px 0;
      border-top: 1px solid #ddd;
    }

    .tab-content.active {
      display: block;
    }

    /* Dish Block */
    .dish-block {
      margin-bottom: 20px;
      padding-bottom: 15px;
    }

    .title h6 {
      font-size: 18px;
      font-weight: 600;
    }

    .price {
      font-size: 16px;
      color: #e74c3c;
      font-weight: bold;
    }

    .menu-list-line {
      display: inline-block;
      width: 100%;
      max-width: 100%;
      height: 1px;
      background: #ddd;
      margin: 10px 0;
    }

    @media (max-width: 768px) {
      .tab-buttons {
        flex-direction: column;
        align-items: stretch;
      }

      .title-box h4 {
        font-size: 20px;
      }

      .dish-block .title h6 {
        font-size: 16px;
      }
    }