    /* =====================================================
       GLOBAL STYLES & RESET
       ===================================================== */
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: 'Times New Roman', Times, serif, Helvetica, sans-serif;
      color: #333;
      background-color: #f9f9f9;
      line-height: 1.6;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
    }

    /* =====================================================
       TOP BAR & HEADER
       ===================================================== */
    .top-bar {
      background-color: #cc0000;
      color: #fff;
      font-size: 13px;
      padding: 6px 0;
    }

    .top-bar .container {
      display: flex;
      justify-content: flex-start;
      gap: 20px;
    }

    .top-bar a {
      color: #fff;
    }

    header {
      background-color: #fff;
      border-bottom: 1px solid #eaeaea;
      padding: 15px 0;
    }

    header .container {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .logo img {
      max-width: 120px;
    }

    nav ul {
      display: flex;
      list-style: none;
      align-items: center;
      gap: 25px;
    }

    nav ul li a {
      font-weight: bold;
      font-size: 13px;
      text-transform: uppercase;
      color: #333;
      transition: color 0.2s;
    }

    nav ul li a:hover,
    nav ul li a.active {
      color: #cc0000;
    }

    /* =====================================================
   HERO / BANNER SECTION
   ===================================================== */
.hero {
  position: relative;
  background: linear-gradient(
      rgba(0, 0, 0, 0.4),
      rgba(0, 0, 0, 0.4)
    ),
    url('../images/hero.jpg')
      center/cover no-repeat;
  min-height: 400px;
  display: flex;
  align-items: center;
}

.hero .container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.hero-text {
  color: #fff;
  max-width: 500px;
}

.hero-text h1 {
  font-size: 38px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
  margin-bottom: 20px;
}

.btn-red {
  display: inline-block;
  background-color: #cc0000;
  color: #fff;
  padding: 12px 25px;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 3px;
  transition: background-color 0.2s;
}

.btn-red:hover {
  background-color: #a00000;
}

/* Floating Opening Times Card inside Hero */
.hero-opening-box {
  background-color: #f7fad2;
  border: 1px solid #e1e5a5;
  padding: 20px;
  width: 340px;
  max-width: 100%;
  border-radius: 4px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.hero-opening-box h3 {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
  font-size: 18px;
  color: #222;
}

.hero-opening-box p {
  color: #333;
  margin-bottom: 12px;
}

.hero-opening-box p:last-child {
  margin-bottom: 0;
}

.opening-row {
  text-align: center;
  margin-bottom: 10px;
  font-size: 13px;
}

.opening-row .days {
  font-weight: bold;
  color: #cc0000;
  display: block;
}


/* =====================================================
   HERO - SMALL SCREENS
   ===================================================== */
@media (max-width: 768px) {

  .hero {
    min-height: auto;
    padding: 50px 0;
  }

  .hero .container {
    flex-direction: column;
    align-items: stretch;
    gap: 30px;
  }

  .hero-text {
    max-width: 100%;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 32px;
    margin-bottom: 20px;
  }

  .hero-text .btn-red {
    margin: 5px;
  }

  .hero-opening-box {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    padding: 20px;
  }

  .hero-opening-box h3 {
    font-size: 17px;
  }

}


/* =====================================================
   HERO - VERY SMALL SCREENS
   ===================================================== */
@media (max-width: 480px) {

  .hero {
    padding: 40px 0;
  }

  .hero .container {
    gap: 25px;
  }

  .hero-text h1 {
    font-size: 28px;
  }

  .hero-text .btn-red {
    display: block;
    width: 100%;
    margin: 8px 0;
  }

  .hero-opening-box {
    padding: 18px 15px;
  }

  .hero-opening-box h3 {
    font-size: 16px;
  }

  .hero-opening-box p {
    font-size: 14px;
  }

}

    /* =====================================================
       CATEGORY ICONS SECTION
       ===================================================== */
    .categories {
      padding: 50px 0;
      background-color: #fff;
    }

    .categories-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 20px;
      text-align: center;
    }

    .category-item img {
      width: 100%;
      max-width: 200px;
      margin-bottom: 10px;
      border: 1px solid #EAEAEA;
      object-fit: cover;
    }

    .category-item h4 {
      font-size: 16px;
      color: #333;
    }

    /* =====================================================
       INFO & DELIVERY SECTION
       ===================================================== */
    .info-section {
      padding: 40px 0;
      background-color: #fff;
    }

    .info-grid {
      display: grid;
      grid-template-columns: 2fr 1fr;
    }

    @media (max-width: 768px) {
      .info-grid {
        grid-template-columns: 1fr;
      }
    }

    .info-text {
      padding: 30px 20px;
      background-color: rgba(246, 246, 4, 0.1);
    }

    .info-text p {
      margin-bottom: 15px;
      font-size: 14px;
      color: #555;
    }

    .delivery-box {
      background-color: #f7fad2;
      border: 1px solid #e1e5a5;
      padding: 25px;
      text-align: center;
      border-radius: 4px;
    }

    .delivery-box h3 {
      color: #cc0000;
      font-size: 22px;
      margin-bottom: 15px;
      font-family: Georgia, serif;
    }

    .delivery-box p {
      font-size: 13px;
      margin-bottom: 8px;
      font-weight: 600;
    }

    /* Menu CTA Banner */
    .cta-banner {
      text-align: center;
      padding: 30px 0;
    }

    /* =====================================================
       CUSTOM TIMETABLE SECTION
       ===================================================== */
    .timetable-modern {
      padding: 60px 0;
      background-color: #fff;
    }

    .section-header {
      text-align: center;
      margin-bottom: 40px;
    }

    .section-header .kicker {
      text-transform: uppercase;
      color: #cc0000;
      font-weight: bold;
      font-size: 14px;
      letter-spacing: 1px;
    }

    .section-header h2 {
      font-size: 32px;
      margin: 5px 0 10px;
    }

    .section-header p {
      color: #666;
    }

    .timetable-wrapper {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
    }

    .timetable-card {
      background-color: #f9f9f9;
      border: 1px solid #e0e0e0;
      border-radius: 8px;
      padding: 20px;
    }

    table.amrt-timetable-table th.amrt-timetable-table-thead-tr-th {
      background-color: #a00000;
      color: white;
      padding: 5px;
      font-size: 18px;
    }

    /* Map Section Header */
    .map-header {
      text-align: center;
      padding: 30px 0 15px;
    }

    .map-header h2 {
      color: #cc0000;
      font-size: 28px;
      font-family: Georgia, serif;
    }

    .map-wrapper {
      width: 100%;
      line-height: 0;
    }

    .contact-details {
      padding-bottom: 2rem;
      text-align: center;
    }

    .contact-item {
      margin: 1rem;
    }

    .contact-item:last-child {
      margin-top: 2rem;
      ;
    }

    /* =====================================================
       FOOTER
       ===================================================== */
    footer {
      background-color: #111;
      color: #888;
      text-align: center;
      padding: 15px 0;
      font-size: 12px;
    }

    /* =====================================================
   RESPONSIVE NAVBAR
   ===================================================== */

.navbar-actions {
  display: none;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 5px;
  color: #333;
  font-size: 22px;
  cursor: pointer;
}

.mobile-cart {
  display: none;
  color: #333;
  font-size: 20px;
  cursor: pointer;
}

.mobile-cart:hover {
  color: #cc0000;
}

@media (max-width: 768px) {

  header .container {
    position: relative;
  }

  .navbar-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-left: auto;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .mobile-cart {
    display: block;
  }

  header nav {
    display: none;
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    border-top: 1px solid #eaeaea;
    border-bottom: 1px solid #eaeaea;
    z-index: 1000;
  }

  header nav.nav-open {
    display: block;
  }

  header nav ul {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 15px;
  }

  header nav ul li {
    width: 100%;
  }

  header nav ul li a {
    display: block;
    width: 100%;
    padding: 12px 0;
  }

  /* Keep the cart outside the mobile menu */
  header nav ul li:last-child {
    display: none;
  }
}

@media (min-width: 769px) {
  .navbar-actions {
    display: none;
  }
}