body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #222;
  background-color: #e6e6e6 !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

.btn-check:focus+.btn,
.btn:focus {
  outline: 0;
  box-shadow: none !important;
}

h1.heading {
  font-family: "Roboto", sans-serif;
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 20px;
}

.mobile-view {
  display: none;
}

/* @media (min-width: 1400px){
.container, .container-lg, .container-md, .container-sm, .container-xl {
    max-width: 1140px !important;
}} */

/*=============================
        Responsive 
==============================*/
/* Mobile and Tablet Styling */
@media (max-width: 991px) {

  /* banner */
  .desktop-view {
    display: none !important;
  }

  .mobile-view {
    display: block !important;
  }

  /* categories */
  .food-slider .item {
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 10px;
  }

  .food-slider .item img {
    width: 100%;
    height: 190px;
  }

  .food-slider button.owl-prev {
    left: 0 !important;
  }

  .food-slider button.owl-next {
    right: 0 !important;
  }

  .menu-item {
    height: 170px !important;
  }

  .menu-item img {
    width: 85px !important;
    height: 90px !important;

  }
}

@media (max-width: 991px) and (min-width: 678px) {
  .col-lg-6.col-12.mb-2.menu-container {
    width: 50% !important;
  }
}

@media (max-width: 1195px) and (min-width: 768px) {
  .food-slider {
    grid-template-columns: repeat(4, 1fr) !important;
  }
}

@media (max-width: 767px) and (min-width: 578px) {
  .food-slider {
    grid-template-columns: repeat(3, 1fr) !important;
  }
  form.footer-wrapper {
    display: block !important;
  }
  button.checkout-btn {
    width: 100% !important;
}
.progress-step {
    display: block !important;
}
.progress-bar{
    display: none !important;
}
}

@media (max-width: 576px) and (min-width: 200px) {
  form.footer-wrapper {
    display: block !important;
  }
  button.checkout-btn {
    width: 100% !important;
}
.progress-step {
    display: block !important;
}
.progress-bar{
    display: none !important;
}
.btn{
    width: 100% !important;
}
}
/* Mobile Responsive */
@media (max-width: 768px) {
  .restaurant-header {
    padding: 10px 0 !important;
  }

  .navigation {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }

  .nav {
    display: none !important;
    position: absolute;
    top: 60px;
    /* Adjust based on header height */
    right: 0;
    width: 100%;
    background: white;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    padding: 10px;
  }

  .nav.active {
    display: block !important;
  }

  .nav-toggler.open {
    transform: rotate(90deg);
    /* Example: Rotate icon when menu is open */
  }

  .nav ul {
    flex-direction: column;
    width: 100%;
    text-align: left;
    margin: 0 10px;
  }

  .nav ul li {
    margin: 10px 0;
  }

  .enq-btn {
    margin: 10px;
    text-align: left;
  }

  .cart-icon {
    margin: 10px auto;
  }

  .cart-icon i {
    margin-left: 10px;
  }

  .cart-icon .badge {
    top: -8px !important;
    right: -38% !important;
  }

  .nav-toggler {
    background: none;
    border: none;
    font-size: 24px;
    display: block  !important;
    cursor: pointer;
    margin-left: 15px;
    /*margin-right: 15px;*/
  }
  .nav-toggler i {
    transition: transform 0.3s ease-in-out;
  }

  /* Optional: Adjust for better alignment */
  .nav-toggler.open i {
    transform: rotate(180deg);
    /* Smooth rotation */
  }

  .cart-sidebar.open {
    width: 300px;
  }
}

/*=============================
            Header
==============================*/
/* General Header Styling */
.restaurant-header {
  background: #fff;
  padding: 10px 20px;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.restaurant-header .navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.restaurant-header .logo img {
  height: 50px;
}

.restaurant-header .nav-wrapper {
  display: flex;
  align-items: center;
}

/* Desktop Navigation */
.restaurant-header .nav {
  display: flex;
  align-items: center;
}

.restaurant-header .nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.restaurant-header .nav ul li {
  margin: 0 15px;
}

.restaurant-header .nav ul li a {
  text-decoration: none;
  font-size: 16px;
  color: #333;
  transition: 0.3s;
}

.restaurant-header .nav ul li a:hover {
  color: #ff6600;
}

/* Contact Button */
.restaurant-header .enquire-btn {
  padding: 8px 20px;
  background: #ff6600;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: 0.3s;
  border-radius: 50px;
}

.restaurant-header .enquire-btn:hover {
  background: #e65c00;
}

/* Cart Icon */
.restaurant-header .cart-icon {
  position: relative;
  font-size: 20px;
  /* margin-left: 20px; */
  cursor: pointer;
}

.restaurant-header .cart-icon .badge {
  position: absolute;
  top: -10px;
  right: -16px;
  background: red;
  color: white;
  font-size: 11px;
  line-height: 1;
  border-radius: 50%;
  padding: 5px 8px;
}

/* Mobile Menu */
.restaurant-header .nav-toggler {
  display: none;
  flex-direction: column;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.restaurant-header .nav-toggler span {
  background: #333;
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px 0;
  transition: 0.3s;
}


/*=============================
            Bannenr 
==============================*/

.restaurant-banner .owl-carousel .item {
  height: 550px;
}

.restaurant-banner .banner-slider {
  position: relative;
  width: 100%;
  overflow: visible;
  z-index: 0;
}

.restaurant-banner .owl-carousel .item {
  display: block;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

/* Custom navigation buttons */
.owl-prev,
.owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5) !important;
  color: #fff !important;
  border: none;
  font-size: 20px;
  width: 40px;
  height: 40px;
  line-height: 35px;
  text-align: center;
  cursor: pointer;
  z-index: 10;
  border-radius: 50%;
}

.owl-prev {
  left: 10px;
}

.owl-next {
  right: 10px;
}

.owl-prev:hover,
.owl-next:hover {
  background-color: #f57b00 !important;
}

/*=============================
            Categories 
==============================*/
.food-slider {
  position: relative;
  padding: 0 10px;
  text-align: center;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.food-slider .item img {
  width: 100%;
  height: 250px;
  margin-bottom: 10px;
  object-fit: cover;
  border-radius: 10px;
}

.food-slider .item a {
  text-decoration: none;
}

.food-slider .item a p {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  color: #000;
}

div#categories .owl-nav {
  visibility: visible;
  display: block;
}

.food-slider button.owl-prev {
  left: -40px;
}

.food-slider button.owl-next {
  right: -40px;
}

p.ctitle-btn {
  background-color: #f57b00;
  padding: 7px 10px 10px;
  color: #fff !important;
  border-radius: 4px;
}

/*=============================
            Menu Item 
==============================*/
.menu-item-wrapper {
  margin: 0 5px;
}

.menu-item {
  border-bottom: 1px solid #ddd;
  padding: 0 5px;
  /* margin-bottom: 15px; */
  background-color: #f8f9fa;
  border-radius: 5px;
  height: 130px;
}

.menu-item img {
  width: 100px;
  height: 100px;
  border-radius: 5px;
  object-fit: cover;
}

select.price-option {
  background: #3a3735;
  color: #fff;
  padding: 0 3px 5px 4px;
  border-radius: 4px;
}

.menu-item .btn {
  padding: 3px;
  width: 90px;
  font-size: 16px;
  font-weight: 500;
  background-color: #f57b00;
  color: #fff;
  border: none;
}

.menu-item .btn:hover {
  background-color: #dd7002;
  color: #fff;
}

.menu-item .customizable {
  font-size: 0.9rem;
  color: #007bff;
  cursor: pointer;
}

.menu-item .col-4 img {
  margin: 0 auto;
}

.menu-container .menu-item:last-child {
  border-bottom: none;
}

/*=============================
            Cart Item 
==============================*/
.cart-sidebar {
  position: fixed;
  top: 0;
  right: -350px;
  width: 350px;
  height: 100%;
  background-color: #fff;
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
  z-index: 1050;
  overflow-y: auto;
  transition: right 0.3s ease-in-out;
}

.cart-sidebar {
  position: fixed;
  top: 0;
  right: -350px;
  width: 350px;
  height: 100%;
  background-color: #fff;
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  overflow-y: auto;
  transition: right 0.3s ease-in-out;
}

.cart-sidebar.open {
  right: 0;
}

.cart-header {
  padding: 15px;
  background-color: #007bff;
  color: #fff;
  text-align: center;
  position: relative;
  justify-content: space-between;
  display: flex;
}

.cart-body {
  padding: 15px;
}

.cart-item {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
}

.cart-item img {
  width: 75px;
  height: 80px;
  border-radius: 10px;
  margin-right: 15px;
  object-fit: cover;
}

.cart-footer {
  padding: 15px;
  border-top: 1px solid #ddd;
  text-align: center;
}

.cart-icon {
  position: relative;
  cursor: pointer;
}

div#cart-icon i {
  font-size: 20px;
  color: #000000;
  margin-left: 20px;
}

.cart-iem-content p {
  margin-bottom: 0;
}

.quantity-control {
  background: #ffffff;
  width: fit-content;
  border-radius: 10px;
  padding: 2px 5px;
  text-align: center;
  align-self: center;
  align-content: center;
  justify-content: space-between;
  display: inline-flex;
  margin-top: 5px;
  border: 1px solid #efefef;
}

.quantity-control button.btn {
  padding: 0 10px;
}

button.btn.btn-danger.btn-sm.remove-item {
  text-align: end;
  margin-top: -5px;
  padding: 0 6px 5px 6px;
  line-height: 1;
}


/*=============================
            Cart Page 
==============================*/
.cart-container {
  max-width: 900px;
  margin: 90px auto;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.cart-header {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}

.cart-item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #ddd;
}

.cart-item:last-child {
  border-bottom: none;
}

.cart-item img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
}

.cart-item-details {
  flex: 1;
  margin-left: 15px;
}

.quantity-controls {
  display: flex;
  align-items: center;
}

.quantity-controls button {
  width: 30px;
  height: 30px;
  border: none;
  background: #007bff;
  color: white;
  border-radius: 5px;
  font-size: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.quantity-controls span {
  margin: 0 10px;
  font-size: 16px;
  font-weight: bold;
}

.cart-footer {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.checkout-btn {
  background: #007bff;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
}

.checkout-btn:hover {
  background: #0056b3;
}

/* footer*/
.restaurant-footer {
  background-color: #000;
  padding: 10px 0;
  align-items: center;
  text-align: center;
}

.restaurant-footer p {
  margin-bottom: 0;
  font-size: 13px;
  color: #fff;
}