/* ── JUMP-TO-SECTION NAV ── */
.menu-nav-wrap {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 1500px;
    margin: 0 auto 40px;
}
.menu-nav {
    display: flex;
    flex-wrap: nowrap;
    flex: 1 1 auto;
    min-width: 0;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    list-style: none;
}
.menu-nav::-webkit-scrollbar {
    display: none;
}
.menu-nav li {
    padding: 0 35px;
    flex: 0 0 auto;
    margin-bottom: 0;
}
.menu-nav a {
    display: inline-block;
    margin: 0 auto;
    text-decoration: none;
    white-space: nowrap;
    font-size: 30px;
    font-weight: normal;
    text-transform: uppercase;
    color: var(--black);
    line-height: 1;
}
.menu-nav a.active {
    text-decoration: underline;
}
.menu-nav-arrow {
    flex: 0 0 auto;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    box-sizing: border-box;
    width: 40px;
    height: 40px;
    border: 1px solid #A3A3A3;
    border-radius: 100%;
    background-color: var(--white);
    padding: 0;
    cursor: pointer;
    position: relative;
    z-index: 1;
    
}
.menu-nav-arrow:before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('../images/svg/arrow-right-icon.svg') no-repeat center center;
}
.menu-nav-arrow.menu-nav-prev:before {
    background-image: url('../images/svg/arrow-left-icon.svg');
}
.menu-nav-arrow:hover {
    background-color: var(--theme);
    border-color: var(--theme);
}
.menu-nav-arrow:hover:before {
    filter: invert(1) grayscale(1) brightness(100);
}
.menu-nav-arrow[hidden] {
    display: none;
}

/* ── 3-COL GRID ── */
    .columns {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        column-gap: 110px;
    }

    /* ── ITEM ── */
    .item {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 32px;
      padding: 5px 0;
    }

    /* Group of items with NO separator between them, blank gap after */
    .item-group {
      border-bottom: 1px solid #D2D2D2;
      padding:22px 0;
      margin-bottom: 0;

      &:last-child{
        border-bottom: 0;
        padding-bottom: 0;
      }

      & .heading-30{
        text-transform: capitalize;
      }
    }

    .item-left { flex: 1 1 0; min-width: 0; }

    .item-text {
        font-size: 20px;
        line-height: 1.4;
        color: #414141;
    }
    .item-text strong {
        font-weight: normal;
        color: var(--black);
        font-size: 24px;
    }

    /* "Swap toast for croissant" style sub-line */
    .item-subline {
      display: flex;
      justify-content: space-between;
    }

    /* Add-on lines */
    .item-addon {
      display: flex;
      justify-content: space-between;

    }

    .item-price {
        font-size: 24px;
        font-weight: normal;
        white-space: nowrap;
        flex-shrink: 0;
        text-align: right;
        min-width: 38px;
        color: var(--black);
    }

    /* ── SECTION HEADINGS ── */
    .sec-heading {
      font-size: 15px;
      font-weight: 400;
      font-style: italic;
      color: #111;
      margin: 1.6rem 0 0.3rem;
    }

    /* ── NOTICES ── */
    .notices {
      margin-top: 1.4rem;
      padding: 35px 30px;
      background: #ECECEC;
      border-radius: 2px;
      margin-left: 0;
    }
    .notices li {
      color: var(--black);
      padding-left: 22px;
      list-style: none;
      position: relative;

      &:last-child{
        margin-bottom: 0;
      }

      &::before{
        content: "";
        position: absolute;
        top:10px;
        left: 0;
        width: 10px;
        height: 10px;
        background-color: var(--black);
        border-radius: 100%;
      }
    }

.menu-wrapper ul.resp-tabs-list{
   justify-content: center;
    margin-bottom: 40px;
}

.beverages-wrapper .col .item-group > .heading-30{text-transform: uppercase;}
.menu-section-title{text-transform: uppercase;margin-bottom: 25px;}
.beverages-wrapper .col .item-group .item-left .heading-24{text-transform: capitalize;}



  .menu-detail-pg .testimonial-sec .content-width{max-width: 100%;}

  .dishes-wrapper{
    background-color: var(--primary);
    padding: 160px 180px 95px;
  }
  .dishes-content{
    display: flex;
    flex-wrap: wrap;
  }
  .dishes-content .block-left{
    width: 565px;
    padding-right: 0;
    position: sticky;
    align-self: flex-start;
    top: 130px;
  }
  .dishes-content .block-right{width: calc(100% - 565px);}

  .dishes-content .block-left h2{
        font-size: 50px;
        margin-bottom: 15px;
  }

  .dishes-information{
      display: flex;
      flex-wrap: wrap;
  }
  .panel-tab{
      width: 412px;
      padding-right: 50px;
      position: sticky;
      top: 150px;
      align-self: flex-start;
  }
  .panel-content{
    width: calc(100% -  412px);
    padding-left: 150px;
    border-left: 3px double rgb(210 210 210 / 50%);
  }
.panel-item{
    margin-left: 0;
    max-width: 350px;
}
.panel-item li {
  font-size: 30px;
  margin-bottom: 30px;
  list-style: none;
  line-height: 1.2;

  & a.active{
    font-weight: normal;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;

    &::after{
      content: "";
      flex-shrink: 0;
      width: 16px;
      height: 16px;
      background: url('../images/svg/arrow-right-icon.svg') no-repeat center center;
      background-size: contain;
    }
  }

  &:last-child{
    margin-bottom: 0;
  }

}
.panel-content .panel-row {
  scroll-margin-top: 140px;
  & img{
    border-radius: 5px;
    margin-bottom: 30px;
    width: 818px;
    max-width: 100%;
    height: 450px;
    object-fit: cover;
  }
  & .heading-36{
    text-transform: capitalize;
  }
}
.panel-content .panel-row:not(:last-child){
    margin-bottom: 50px;
}
.faq-accordion{
    margin-bottom: 40px;
}

.serving-breakfast {
    position: relative;
    z-index: 0;
    min-height: 468px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 80px 0;
    overflow: hidden;

    /* background image sits at the back */
    .bgimg {
        z-index: 0;
    }

    /* dark overlay on top of the background image */
    &::before {
        position: absolute;
        content: "";
        inset: 0;
        background-color: rgba(0, 0, 0, 0.82);
        z-index: 1;
    }

    & > .container {
        position: relative;
        z-index: 2;
        width: 100%;
    }
}
.serving-breakfast .visit-head p a{
    color: var(--white);

    &:hover{
        color: #7b7b7b;
    }
}


.serving-breakfast .visit-head h2{
    color: var(--white);
    font-size: 50px;
}
.serving-breakfast .visit-head{
  max-width: 1070px;
  margin: 0 auto 50px;

  & p{
    text-transform: capitalize;
  }
}

.serving-areas{
  max-width: 680px;
  margin: 0 auto;
  column-count: 4;

  & li{
    color: var(--white);
    line-height: 1.1;
  }
}
 

.serving-breakfast.suburb-cta ul{
    max-width: 700px;
    margin: 0 auto;
    column-count: 4;
}
.serving-breakfast.suburb-cta ul li{
    color: var(--white);
    line-height: 1.1;
    padding-left: 20px;
    list-style: none;
    position: relative;

    &:before{
        content: "";
        position: absolute;
        left: 0;
        top: 8px;
        width: 8px;
        height: 8px;
        border-radius: 100%;
        background-color: var(--white);
    }
}
.serving-breakfast.suburb-cta ul li:hover a{
    text-decoration: underline;
}

.dishes-wrapper .faq-accordion .accordion_in{
    background: #fff;
}
.dishes-wrapper .faq-accordion .accordion_in.acc_active > .acc_content {
    display: block;
    background-color: var(--white);
    border-top: 1px solid #ccc;
}

  @media (max-width: 1599.98px){
      .menu-nav li{
            padding: 0 25px;
      }
      .menu-nav a{
            font-size: 28px;
      }
      .columns{
        column-gap: 80px;
      }
  }

  @media (max-width: 1439.98px){
    .columns{column-gap: 60px;}
    .item{gap: 32px 15px;}

    .dishes-content .block-left h2{font-size: 36px;}
    .serving-breakfast .visit-head h2{font-size: 36px;}
    .dishes-wrapper{padding: 60px;}
    .dishes-content .block-left{width: 500px;}
    .dishes-content .block-right {width: calc(100% - 500px);}
    .panel-content{padding-left: 80px;}

  }

  @media (max-width: 1199.98px){

    .menu-nav-arrow {
        display: none;
    }
    .menu-nav {
        display: block;
        max-width: 100%;
        padding: 0;
        margin-bottom: 20px;
        overflow-x: visible;
    }
    .menu-nav li {
        padding: 0;
    }
    .menu-nav a {
        display: block;
        font-size: 22px;
        border: 1px solid var(--primary);
        padding: 15px 25px;
        background: var(--primary);
        margin-bottom: 15px;
        position: relative;

        &::after {
            content: "\f107";
            font-family: 'FontAwesome';
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
        }
    }
    .menu-nav li:last-child a {margin-bottom: 0;}
    .columns{grid-template-columns: repeat(1, 1fr);}
    .item-left{line-height: 1;}
    .item-group{padding: 10px 0;}
    .item-text {font-size: 18px;line-height: 1.1;}

    .item-price{font-weight: 600;font-size: 16px;}
    .notices{padding: 25px 20px; }

    .columns.beverages-wrapper .col:last-child{border-bottom: 0;}
    .item{line-height: 1;}
    .dishes-content .block-left h2 ,
    .serving-breakfast .visit-head h2{font-size: 24px;}

    .dishes-content .block-left {width: 350px;}
    .dishes-content .block-right {width: calc(100% - 350px);}

    .panel-tab {width: 250px;padding-right: 30px;}
    .panel-content {padding-left: 30px;width: calc(100% - 250px);}
    .panel-item li{font-size: 22px;margin-bottom: 20px;}

    .serving-breakfast{min-height: auto;padding: 40px 0;}
    .serving-breakfast .visit-head{margin: 0 auto 25px;}

  }


    @media (max-width: 991.98px){
        .dishes-wrapper {padding: 30px;}
        .dishes-content .block-left {width: 100%;padding-right: 0;position: relative;top: 0;}
        .dishes-content .block-right {width: 100%;margin-top: 30px;}
        .panel-tab {width: 100%;background-color: var(--primary);padding: 10px 0;top: 100px;}
        .panel-content {padding-left: 0;width: 100%;border-left: 0;margin-top: 30px;}

        .panel-item{max-width: 100%;display: flex;overflow-x: scroll;gap: 30px;}
        .panel-item li{font-size: 20px;margin-bottom: 15px;min-width: 200px}

        .panel-item li {
            & a.active {
                font-weight: bold;

                &::after {
                    display: none;
                }
            }
        }

  }


    @media (max-width: 800px) {
      .columns { grid-template-columns: 1fr; }
      .col { border-right: none; border-bottom: 1px solid #ccc; }
      nav { justify-content: flex-start; }
      .serving-breakfast.suburb-cta ul{column-count: 2;}
    }
  




