header {
  display: flex;
  justify-content: space-between;
  padding: 15px;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}
@media (min-width: 1200px) {
  header {
    flex-direction: row;
  }
}
header nav {
  display: flex;
  gap: 15px;
}
header nav ul {
  display: flex;
  gap: 15px;
}
header nav ul li {
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
}
header nav ul li a {
  transition: all 0.3s ease;
}
header nav ul li a:hover {
  color: rgb(189, 32, 32);
}
header nav .menu {
  display: none;
  cursor: pointer;
}
@media (max-width: 992px) {
  header nav .menu {
    display: block;
  }
}
header .contacts {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
@media (min-width: 576px) {
  header .contacts {
    flex-direction: row;
  }
}
header .contacts div {
  display: flex;
  gap: 10px;
  align-items: center;
}
header .contacts h5 {
  margin-bottom: 0;
}
header .contacts h5 a {
  font-weight: 400 !important;
  font-size: 16px !important;
  transition: all 0.3s ease;
}
header .contacts h5 a:hover {
  color: red;
}
@media (min-width: 1200px) {
  header .contacts {
    flex-shrink: 0;
  }
}
header .contacts button {
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  line-height: 18px;
  font-weight: 500;
  color: white;
  background-color: #000;
  transition: all 0.3s ease;
}
header .contacts button:hover {
  background-color: rgb(189, 32, 32);
}
@media (max-width: 992px) {
  header nav ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 120px;
    left: 0;
    background: white;
    width: 100%;
    padding: 10px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1000;
  }
  header nav ul.active {
    display: flex;
  }
}
header .logo-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
@media (min-width: 1200px) {
  header .logo-wrapper {
    flex-grow: 1;
    width: 100%;
    max-width: 700px;
  }
}
header .logo-wrapper img {
  width: 100%;
  max-width: 75px;
  height: 75px;
  border-radius: 50%;
}

.footer-wrap {
  background-color: #000;
  color: #fff;
  padding: 20px;
}
.footer-wrap .container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.footer-wrap .container .footer-section {
  flex: 1 1 200px;
  margin: 10px;
  padding: 10px;
}
.footer-wrap .container .footer-section img {
  width: 75px;
  height: 75px;
  border-radius: 50%;
}
.footer-wrap .container .footer-section h3 {
  font-size: 18px;
  margin-bottom: 10px;
}
.footer-wrap .container .footer-section h4 {
  font-size: 16px;
  margin-bottom: 10px;
}
.footer-wrap .container .footer-section p {
  font-size: 14px;
  line-height: 1.6;
}
.footer-wrap .container .footer-section ul {
  list-style-type: none;
  padding: 0;
}
.footer-wrap .container .footer-section ul li {
  margin-bottom: 5px;
}
.footer-wrap .container .footer-section ul li a {
  color: #fff;
  text-decoration: none;
}
.footer-wrap .container .footer-section ul li a:hover {
  color: red;
}
.footer-wrap .container .footer-section .social-icons a {
  margin-right: 10px;
  font-size: 20px;
  color: #fff;
  text-decoration: none;
}
.footer-wrap .container .footer-section .social-icons a:hover {
  color: red;
}
.footer-wrap .container .footer-section .contact-info p {
  font-size: 14px;
  line-height: 1.6;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}
@media (min-width: 768px) {
  .footer-wrap .container .footer-section .contact-info p {
    justify-content: start;
  }
}
@media (max-width: 768px) {
  .footer-wrap .container .footer-section {
    flex: 1 1 100%;
    text-align: center;
    margin-bottom: 20px;
  }
  .footer-wrap .container .footer-section .social-icons {
    text-align: center;
  }
}
@media (max-width: 480px) {
  .footer-wrap .container .footer-section h3 {
    font-size: 16px;
  }
  .footer-wrap .container .footer-section h4 {
    font-size: 14px;
  }
  .footer-wrap .container .footer-section p {
    font-size: 12px;
  }
  .footer-wrap .container .footer-section .contact-info p {
    font-size: 12px;
  }
}
.footer-wrap .copyright {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
}
.footer-wrap .copyright a {
  color: #000;
  text-decoration: none;
}
.footer-wrap .copyright a:hover {
  color: red;
}

/* form Section start*/
.form-wrap {
  margin: 40px 0 50px;
  padding: 0 15px;
}
.form-wrap .container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  width: 100%;
}
@media (min-width: 992px) {
  .form-wrap .container {
    flex-direction: row;
  }
}
.form-wrap .container .map-wrap {
  width: 100%;
}
@media (min-width: 992px) {
  .form-wrap .container .map-wrap {
    max-width: 600px;
  }
}
.form-wrap .container .map-wrap iframe {
  width: 100%;
  height: 400px;
}
@media (min-width: 992px) {
  .form-wrap .container .map-wrap iframe {
    height: 600px;
  }
}
.form-wrap .container .form-holder {
  padding: 10px;
  width: 100%;
  max-width: 600px;
}
.form-wrap .container .form-holder form {
  padding: 10px;
}
.form-wrap .container .form-holder form .heading {
  margin-bottom: 20px;
}
.form-wrap .container .form-holder form .heading h2 {
  position: relative;
}
.form-wrap .container .form-holder form .heading h2::after {
  content: "";
  position: absolute;
  height: 2px;
  background: red;
  width: 147px;
  bottom: -7px;
  left: 0;
}
.form-wrap .container .form-holder form button {
  background: #000;
  color: white;
  transition: all 0.3s ease;
}
.form-wrap .container .form-holder form button:hover {
  background-color: red;
}
.form-wrap .container .form-holder form .input-field {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .form-wrap .container .form-holder form .input-field {
    flex-direction: row;
  }
}
.form-wrap .container .form-holder form input,
.form-wrap .container .form-holder form textarea {
  padding: 10px 15px;
  border: 1px solid #ccc;
  width: 100%;
  box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.2);
  outline: none;
}
.form-wrap .container .form-holder form input,
.form-wrap .container .form-holder form textarea {
  border: 1px solid #ccc;
}
.form-wrap .container .form-holder form textarea {
  height: 100px;
  resize: none;
  margin-bottom: 30px;
}

/* form Section end*/
/* Contact Card Section start*/
.contact-card-wrap {
  margin-bottom: 50px;
  color: #fff;
}
.contact-card-wrap .card-wrap {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
  justify-content: center;
}
@media (min-width: 576px) {
  .contact-card-wrap .card-wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .contact-card-wrap .card-wrap {
    grid-template-columns: repeat(3, 1fr);
  }
}
.contact-card-wrap .card-wrap .card {
  width: 100%;
  max-width: 400px;
  padding: 20px;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 0 auto;
  transition: all 0.3s ease;
}
.contact-card-wrap .card-wrap .card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
}
.contact-card-wrap .card-wrap .card .icon {
  font-size: 25px;
}
@media (min-width: 992px) {
  .contact-card-wrap .card-wrap .card .icon {
    font-size: 30px;
  }
}
.contact-card-wrap .card-wrap .card .title strong {
  display: block;
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 600;
}
.contact-card-wrap .card-wrap .card .title span {
  font-size: 16px;
}

/* Contact Card Section end*/
body,
html {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.hero {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 300px;
  display: flex;
  justify-content: start;
  align-items: center;
  padding: 15px;
  margin-bottom: 40px;
}
@media (min-width: 992px) {
  .hero {
    height: 500px;
  }
}
.hero h1 {
  color: #fff;
  font-weight: 800;
  display: flex;
  justify-content: start;
  align-items: center;
  height: 100%;
  /* Adjust height to 100% to maintain full view */
}

.bookingForm {
  overflow: hidden;
  margin-bottom: 40px;
  text-align: center;
}
.bookingForm h2 {
  padding: 0 15px;
  margin-bottom: 30px;
}
.bookingForm h3 span {
  color: red;
}
.bookingForm .container {
  /* Left Side: Slick Slider */
  /* Right Side: Form */
}
.bookingForm .container .table-wrap {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
  position: relative;
  width: 100%;
  height: 100%;
  /* You can adjust the height as needed */
  overflow: hidden;
}
@media (min-width: 992px) {
  .bookingForm .container .table-wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}
.bookingForm .container .slider {
  overflow: hidden;
  width: 100%;
  display: flex;
  width: 100%;
  transition: transform 1s ease-in-out;
}
.bookingForm .container .slider img {
  width: 100%;
  height: auto;
}
.bookingForm .container .formWrap {
  display: flex;
  flex-direction: column;
  gap: 15px;
  height: 100%;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}
.bookingForm .container .formWrap .inputField {
  display: flex;
  flex-direction: column;
}
.bookingForm .container .formWrap .inputField label {
  text-align: left;
  margin-bottom: 10px;
}
.bookingForm .container .formWrap .inputField input,
.bookingForm .container .formWrap .inputField select {
  padding: 10px;
  border: none;
  outline: none;
  box-shadow: 2px 2px 2px #ddd;
  margin-bottom: 30px;
}
.bookingForm .container .formWrap .saveBtn {
  width: 100%;
  background-color: #000;
  color: #fff;
  transition: all 0.3s ease;
}
.bookingForm .container .formWrap .saveBtn:hover {
  background-color: red;
}

body,
html {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* Hero Section Styles */
.hero-section {
  position: relative;
  width: 100%;
  height: 100%;
  /* You can adjust the height as needed */
  overflow: hidden;
}
.hero-section img {
  width: 100%;
}
.hero-section .slider {
  width: 100%;
  display: flex;
  transition: transform 1s ease-in-out;
}
.hero-section .slick-dots li button:before {
  top: 0px;
  width: 10px;
  height: 10px;
  background-color: red;
  color: transparent;
  border-radius: 50px;
}
.hero-section .slick-dots .slick-active {
  background-color: red !important;
  width: 40px;
  height: 10px;
  border-radius: 50px;
}
.hero-section .slick-dots button::before {
  width: 30px;
  height: 30px;
}
.hero-section .slider div {
  width: 100%;
  flex: 0 0 auto;
}
.hero-section .slider img {
  width: 100%;
  /* Ensure images take full width */
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  /* Ensures images cover the container while maintaining aspect ratio */
}

#about {
  margin-bottom: 80px;
}
#about h1 {
  text-align: center;
  margin-bottom: 30px;
}
#about h1 span {
  color: red;
}
#about .aboutwrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
@media (min-width: 992px) {
  #about .aboutwrap {
    flex-wrap: nowrap;
  }
}
#about .aboutwrap .imgwrap {
  height: 300px;
  width: 100%;
  max-width: 600px;
  overflow: hidden;
  border-radius: 30px;
  transition: all 0.3s ease;
  margin: 0 auto;
}
@media (min-width: 992px) {
  #about .aboutwrap .imgwrap {
    height: 400px;
  }
}
#about .aboutwrap .imgwrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 30px;
  transition: transform 0.3s ease;
}
#about .aboutwrap .imgwrap img:hover {
  transform: scale(1.1);
  /* Slightly enlarge on hover */
}
#about .aboutwrap .textwrap {
  width: 100%;
}
@media (min-width: 992px) {
  #about .aboutwrap .textwrap {
    max-width: 600px;
  }
}
#about .aboutwrap .textwrap h2 {
  font-weight: 600;
}
#about .aboutwrap .textwrap .sub-heading {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
@media (min-width: 576px) {
  #about .aboutwrap .textwrap .sub-heading {
    flex-wrap: nowrap;
  }
}
#about .aboutwrap .textwrap .sub-heading strong {
  font-size: 18px;
  line-height: 22px;
}

#food {
  margin-bottom: 20px;
}
#food h1 {
  text-align: center;
  padding: 0 15px;
}
#food h1 span {
  color: red;
}
#food .food-card {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
}
@media (min-width: 576px) {
  #food .food-card {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 768px) {
  #food .food-card {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1070px) {
  #food .food-card {
    grid-template-columns: repeat(4, 1fr);
  }
}
#food .food-card .card {
  margin-bottom: 50px;
  background-color: #fff;
  border-radius: 30px;
  padding: 0px 10px 15px;
  text-align: center;
  box-shadow: rgba(0, 0, 0, 0.07) 0px -2px 11px 0px;
  min-height: 210px;
  transition: all 0.3s ease-in-out;
}
#food .food-card .card:hover {
  background: red;
  color: #fff;
}
#food .food-card .card .img-wrap {
  max-width: 220px;
  margin: -40px auto 30px;
  position: relative;
  transition: all 0.3s ease;
  overflow: hidden;
  border-radius: 30px;
}
#food .food-card .card .img-wrap img {
  height: 220px;
  width: 100%;
  border-radius: 30px;
  position: relative;
  transition: all 0.3s ease;
}
#food .food-card .card .img-wrap strong {
  display: block;
  font-size: 14px;
  line-height: 18px;
  font-weight: 500;
  text-align: left;
  padding: 5px 10px;
  background-color: #fff;
  color: #000;
  border-radius: 30px;
  position: absolute;
  bottom: 15px;
  left: 15px;
}
#food .food-card .card .img-wrap img:hover {
  transform: scale(1.1);
  border-radius: 30px;
}
#food .food-card .card h3 {
  font-weight: 500;
  font-size: 22px;
  line-height: 26px;
}
#food .food-card .card p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
#food .food-card .card button {
  color: white;
  background: #000;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 20px;
  margin-left: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: inherit;
  transition: all 0.3s ease;
}
#food .food-card .card button:hover {
  background-color: #fff;
  color: #000;
}

#chefs h2 {
  text-align: center;
  margin-bottom: 70px;
}
#chefs h2 span {
  color: red;
}
#chefs .card-wrap {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
}
@media (min-width: 576px) {
  #chefs .card-wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  #chefs .card-wrap {
    grid-template-columns: repeat(3, 1fr);
  }
}
#chefs .card-wrap .card {
  border-radius: 30px;
  background-color: #fff;
  box-shadow: 1px 1px 13px 0px rgba(114, 107, 107, 0.4);
  padding: 15px;
  text-align: center;
  margin-bottom: 40px;
  min-height: 230px;
  transition: all 0.3s ease;
}
#chefs .card-wrap .card:hover {
  transform: translateY(-10px);
  box-shadow: 1px 1px 13px 0px rgba(193, 14, 14, 0.4);
  border: 2px solid red;
}
#chefs .card-wrap .card .img-wrap {
  box-shadow: 0px -2px 8px 0px rgba(114, 107, 107, 0.4);
  border: 1px solid #fff;
  border-radius: 50%;
  width: 100px;
  margin: -50px auto 20px;
}
#chefs .card-wrap .card .img-wrap img {
  width: 100%;
  height: 100px;
  border-radius: 50%;
}

body,
html {
  overflow: visible !important;
}

.hero {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 300px;
  display: flex;
  justify-content: start;
  align-items: center;
  padding: 15px;
}
@media (min-width: 992px) {
  .hero {
    height: 500px;
  }
}
.hero h1 {
  color: #fff;
  font-weight: 800;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  /* Adjust height to 100% to maintain full view */
}

#filter-tabs {
  position: sticky;
  top: 0;
  z-index: 999;
  background-color: #000;
  display: flex;
  gap: 20px;
  justify-content: space-evenly;
  margin-bottom: 80px;
  padding: 20px 15px;
  white-space: nowrap;
  scroll-behavior: smooth;
  overflow-x: auto;
}
#filter-tabs a {
  color: #fff;
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 10px;
}
#filter-tabs a:hover, #filter-tabs a:active {
  background: red;
  border-radius: 30px;
}

#filter-tabs button#scroll-right {
  display: none;
  /* Hide by default */
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  border: none;
  padding: 5px 10px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
}

#filter-tabs button#scroll-right.active {
  display: inline-block;
}

#filter-tabs::-webkit-scrollbar {
  height: 4px;
  /* Adjust width of the scrollbar */
}

#filter-tabs::-webkit-scrollbar-track {
  background: #f0f0f0;
  /* Track color */
}

#filter-tabs::-webkit-scrollbar-thumb {
  background: red;
  /* Thumb color */
  border-radius: 5px;
  /* Optional rounded corners */
}

#filter-tabs a.active {
  background-color: red;
  color: #fff;
  border-radius: 30px;
}

.food {
  margin-bottom: 30px;
}
.food h2 {
  text-align: center;
  padding: 0 15px;
}
.food h2 span {
  color: red;
}
.food .food-card {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
  margin: 80px auto 0;
}
@media (min-width: 576px) {
  .food .food-card {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 768px) {
  .food .food-card {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1070px) {
  .food .food-card {
    grid-template-columns: repeat(4, 1fr);
  }
}
.food .food-card .card {
  margin-bottom: 30px;
  background-color: #fff;
  border-radius: 30px;
  padding: 0px 10px 15px;
  text-align: center;
  box-shadow: rgba(0, 0, 0, 0.07) 0px -2px 11px 0px;
  min-height: 210px;
  transition: all 0.3s ease-in-out;
}
.food .food-card .card:hover {
  background: red;
  color: #fff;
}
.food .food-card .card .img-wrap {
  max-width: 220px;
  margin: -40px auto 30px;
  position: relative;
  transition: all 0.3s ease;
  overflow: hidden;
  border-radius: 30px;
}
.food .food-card .card .img-wrap img {
  height: 220px;
  width: 100%;
  border-radius: 30px;
  position: relative;
  transition: all 0.3s ease;
}
.food .food-card .card .img-wrap strong {
  display: block;
  font-size: 14px;
  line-height: 18px;
  font-weight: 500;
  text-align: left;
  padding: 5px 10px;
  color: #000;
  background-color: #fff;
  border-radius: 30px;
  position: absolute;
  bottom: 15px;
  left: 15px;
}
.food .food-card .card h3 {
  font-weight: 500;
  font-size: 22px;
  line-height: 26px;
}
.food .food-card .card p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.food .food-card .card .img-wrap img:hover {
  transform: scale(1.1);
  border-radius: 30px;
}
.food .food-card .card button {
  color: white;
  background: #000;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 20px;
  margin-left: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: inherit;
  transition: all 0.3s ease;
}
.food .food-card .card button:hover {
  background-color: #fff;
  color: #000;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
}
.modal.hidden {
  display: none;
}
.modal .modal-content {
  display: flex;
  flex-direction: column;
  position: relative;
  background: white;
  border-radius: 10px;
  width: 100%;
  max-width: 600px;
  max-height: 90%;
  margin: 15px;
  overflow: hidden;
}
.modal .modal-content .scrollable-content {
  flex: 1;
  overflow-y: auto;
}
.modal .modal-content .scrollable-content::-webkit-scrollbar {
  width: 6px;
}
.modal .modal-content .scrollable-content::-webkit-scrollbar-thumb {
  background-color: red;
  border-radius: 10px;
}
.modal .modal-content .scrollable-content::-webkit-scrollbar-track {
  background-color: #f1f1f1;
  border-radius: 10px;
}
.modal .modal-content .close-modal-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 20px;
  cursor: pointer;
  padding: 5px 6px;
  background-color: red;
  border-radius: 50%;
  color: #fff;
  transition: all 0.3s ease;
}
.modal .modal-content .close-modal-btn:hover {
  background-color: #000;
}
.modal .modal-content .modal-img {
  width: 100%;
  border-radius: 10px;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
}
.modal .modal-content .modal-heading {
  text-align: left;
  padding: 10px 20px;
}
.modal .modal-content .modal-title {
  margin: 20px 0 10px;
  font-size: 24px;
}
.modal .modal-content .modal-para {
  font-size: 16px;
  color: #555;
}
.modal .modal-content textarea {
  resize: none;
  width: 100%;
  height: 100px;
  padding: 10px;
  border-radius: 15px;
  font-family: "Poppins";
  outline: none;
  padding-bottom: 50px;
}
.modal .modal-content .modal-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 10px;
  position: sticky;
  /* Keeps it fixed at the bottom */
  bottom: 0;
  background-color: white;
  border-top: 1px solid #ddd;
}
.modal .modal-content .modal-actions .count {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.modal .modal-content .modal-actions button {
  padding: 10px 15px;
  border: none;
  border-radius: 5px;
  background: #000;
  color: white;
  cursor: pointer;
  transition: background 0.3s;
}
.modal .modal-content .modal-actions button:hover {
  background: red;
}
.modal .modal-content .modal-actions button.decrease-btn, .modal .modal-content .modal-actions button.increase-btn {
  background: #f1f1f1;
  color: #000;
  width: 30px;
  min-width: 30px;
  display: flex;
  justify-content: center;
  font-weight: 600;
}
.modal .modal-content .modal-actions button.decrease-btn:hover, .modal .modal-content .modal-actions button.increase-btn:hover {
  background: #ddd;
}
.modal .modal-content .modal-actions .quantity {
  font-size: 20px;
  font-weight: bold;
}

.order-checkout {
  padding: 20px;
  font-family: "Poppins", sans-serif;
}
.order-checkout h1 {
  font-size: 28px;
  margin-bottom: 20px;
}
.order-checkout .checkout-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 768px) {
  .order-checkout .checkout-container {
    flex-direction: row;
  }
}
.order-checkout .checkout-container .cart,
.order-checkout .checkout-container .order-summary {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 20px;
  flex: 1;
}
@media (min-width: 470px) {
  .order-checkout .checkout-container .cart,
  .order-checkout .checkout-container .order-summary {
    min-width: 300px;
  }
}
.order-checkout .checkout-container .cart h2,
.order-checkout .checkout-container .order-summary h2 {
  font-size: 20px;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.order-checkout .checkout-container .cart h2 .cart-icon,
.order-checkout .checkout-container .order-summary h2 .cart-icon {
  width: 20px;
  height: 20px;
  background: url("cart-icon.png") no-repeat center;
  margin-right: 10px;
}
.order-checkout .checkout-container .cart .cart-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.order-checkout .checkout-container .cart .cart-item .item-img {
  width: 70px;
  height: 70px;
  border-radius: 10px;
  margin-right: 15px;
  -o-object-fit: cover;
     object-fit: cover;
}
.order-checkout .checkout-container .cart .cart-item .item-details {
  flex: 1;
}
.order-checkout .checkout-container .cart .cart-item .item-details h3 {
  font-size: 16px;
  margin: 0;
}
.order-checkout .checkout-container .cart .cart-item .item-details p {
  font-size: 14px;
  color: #555;
  margin: 5px 0 0;
}
.order-checkout .checkout-container .cart .cart-item .item-price {
  font-size: 16px;
  font-weight: bold;
}
.order-checkout .checkout-container .cart .item-count {
  display: flex;
  justify-content: start;
  align-items: start;
  gap: 15px;
  flex-direction: column-reverse;
}
@media (min-width: 470px) {
  .order-checkout .checkout-container .cart .item-count {
    flex-direction: row;
    justify-content: space-between;
  }
}
.order-checkout .checkout-container .cart .item-count .count {
  display: flex;
  justify-content: center;
  gap: 10px;
  align-items: center;
}
.order-checkout .checkout-container .cart .item-count .count button {
  width: 50px;
  min-width: 50px;
  font-size: 16px;
  font-weight: 600;
}
.order-checkout .checkout-container .order-summary .restaurant-name {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 20px;
}
.order-checkout .checkout-container .order-summary .summary-details .summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}
.order-checkout .checkout-container .order-summary .summary-details .summary-row:last-child {
  font-weight: bold;
  color: #000;
}
.order-checkout .checkout-container .order-summary .place-order-btn {
  width: 100%;
  padding: 10px;
  background: #000;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  cursor: pointer;
  transition: background 0.3s;
}
.order-checkout .checkout-container .order-summary .place-order-btn:hover {
  background: red;
}

.loader-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #f8f8f8;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
}

.loader-text {
  padding: 10px;
  font-size: 60px;
  line-height: 64px;
  font-weight: bold;
  background: linear-gradient(90deg, black, red, black);
  background-size: 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: color-shift 3s linear infinite;
  animation-delay: 1s;
}
@media (min-width: 768px) {
  .loader-text {
    font-size: 80px;
    line-height: 84px;
  }
}

@keyframes color-shift {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}
.login,
.signup {
  overflow-x: hidden;
  margin-bottom: 40px;
}
.login .container,
.signup .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-direction: column;
}
@media (min-width: 992px) {
  .login .container,
  .signup .container {
    flex-direction: row;
    justify-content: space-between;
  }
}
@media (min-width: 992px) {
  .login .container form,
  .signup .container form {
    width: 50%;
  }
}
.login .container form h2,
.signup .container form h2 {
  font-size: 40px;
  line-height: 45px;
  background: linear-gradient(45deg, red, black);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  margin-bottom: 30px;
}
.login .container form label,
.signup .container form label {
  display: block;
  font-size: 20px;
  line-height: 24px;
  font-weight: 400;
  margin-bottom: 10px;
}
.login .container form input,
.signup .container form input {
  margin-bottom: 20px;
  width: 100%;
  padding: 12px 20px;
  border-radius: 8px;
  border: 2px solid transparent;
  outline: none;
  box-shadow: 0px 2px 7px black;
  transition: all 0.3s;
}
.login .container form input:focus,
.signup .container form input:focus {
  background: linear-gradient(white, white) padding-box, linear-gradient(45deg, black, red) border-box;
  box-shadow: 0px 2px 7px rgba(0, 0, 0, 0.5);
}
.login .container form button,
.signup .container form button {
  background: #000;
  color: white;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}
.login .container form button:hover,
.signup .container form button:hover {
  background-color: red;
}
.login .container form Span,
.signup .container form Span {
  font-size: 15px;
  line-height: 19px;
}
.login .container form Span a,
.signup .container form Span a {
  transition: all 0.3s ease;
}
.login .container form Span a:hover,
.signup .container form Span a:hover {
  color: red;
}
.login .container .img-wrap,
.signup .container .img-wrap {
  overflow: hidden;
}
.login .container .img-wrap img,
.signup .container .img-wrap img {
  width: 100%;
  height: auto;
}

.profile-page {
  display: flex;
  gap: 20px;
  padding: 20px;
  flex-wrap: wrap;
}
.profile-page .tabs {
  width: 250px;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 20px;
  flex-shrink: 0;
}
.profile-page .tabs .profile-info {
  text-align: center;
}
.profile-page .tabs .profile-info .profile-pic {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 10px;
}
.profile-page .tabs .profile-info h3 {
  font-size: 18px;
  margin: 0;
}
.profile-page .tabs .tab-menu {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}
.profile-page .tabs .tab-menu li {
  margin-bottom: 10px;
  padding: 10px;
  cursor: pointer;
  border-radius: 5px;
  transition: background 0.3s;
}
.profile-page .tabs .tab-menu li.active {
  background: #000;
  color: #fff;
}
.profile-page .tabs .tab-menu li:hover {
  background: rgba(80, 64, 64, 0.1);
}
.profile-page .tabs-content {
  flex: 1;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 20px;
}
.profile-page .tabs-content .tab-pane {
  display: none;
}
.profile-page .tabs-content .tab-pane.active {
  display: block;
}
.profile-page .tabs-content .tab-pane h2 {
  color: #ff4d4d;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .profile-page {
    flex-direction: column;
  }
  .profile-page .tabs {
    width: 100%;
    margin-bottom: 20px;
  }
  .profile-page .tabs-content {
    padding: 15px;
  }
}
@media (max-width: 480px) {
  .profile-page .tabs .tab-menu li {
    padding: 8px;
    font-size: 14px;
  }
  .profile-page .tabs .profile-info h3 {
    font-size: 16px;
  }
  .profile-page .tabs-content .tab-pane h2 {
    font-size: 18px;
  }
}

.responsive-table-container {
  overflow-x: auto;
  width: 100%;
  margin-top: 20px;
}
.responsive-table-container .responsive-table {
  width: 100%;
  border-collapse: collapse;
}
.responsive-table-container .responsive-table thead {
  background-color: #000;
  color: white;
}
.responsive-table-container .responsive-table thead th {
  text-align: left;
  padding: 12px;
  font-size: 16px;
  font-weight: bold;
  white-space: nowrap;
}
.responsive-table-container .responsive-table tbody tr {
  border-bottom: 1px solid #ddd;
}
.responsive-table-container .responsive-table tbody tr:nth-child(even) {
  background-color: #f9f9f9;
}
.responsive-table-container .responsive-table tbody tr td {
  padding: 12px;
  font-size: 14px;
  text-align: left;
  white-space: nowrap;
}
.responsive-table-container .responsive-table tbody tr td button.action-btn {
  background-color: #ff4d4d;
  color: white;
  width: 60px;
  border: none;
  border-radius: 4px;
  padding: 6px 12px;
  cursor: pointer;
  font-size: 14px;
}
.responsive-table-container .responsive-table tbody tr td button.action-btn:hover {
  background-color: #cc3c3c;
}
.responsive-table-container .responsive-table tbody .no-results-row td {
  text-align: center;
  color: #888;
  font-style: italic;
}
.responsive-table-container .responsive-table td,
.responsive-table-container .responsive-table th {
  border: 1px solid #ddd;
}
@media (max-width: 768px) {
  .responsive-table-container .responsive-table thead {
    display: none;
  }
  .responsive-table-container .responsive-table tbody {
    display: block;
    width: 100%;
  }
  .responsive-table-container .responsive-table tbody tr {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
  }
  .responsive-table-container .responsive-table tbody tr td {
    display: flex;
    justify-content: space-between;
    padding: 10px;
  }
  .responsive-table-container .responsive-table tbody tr td::before {
    content: attr(data-label);
    font-weight: bold;
    flex-basis: 40%;
    color: #555;
  }
}
@media (max-width: 480px) {
  .responsive-table-container .responsive-table tbody tr td {
    padding: 8px;
    font-size: 12px;
  }
}

form label {
  display: block;
  font-size: 20px;
  line-height: 24px;
  font-weight: 400;
  margin-bottom: 10px;
}
form input {
  margin-bottom: 20px;
  width: 100%;
  padding: 12px 20px;
  border-radius: 8px;
  border: 2px solid transparent;
  outline: none;
  box-shadow: 0px 2px 7px black;
  transition: all 0.3s;
}
form input:focus {
  background: linear-gradient(white, white) padding-box, linear-gradient(45deg, black, red) border-box;
  box-shadow: 0px 2px 7px rgba(0, 0, 0, 0.5);
}
form button {
  background: #000;
  color: white;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}
form button:hover {
  background-color: red;
}

/* loader css */
#loader-test {
  border: 16px solid #f3f3f3;
  border-radius: 50%;
  border-top: 16px solid #3498db;
  width: 120px;
  height: 120px; /* Safari */
  animation: spin 2s linear infinite;
}

/* Safari */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
html {
  margin: 0;
  padding: 0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font: 16px/20px "Poppins", sans-serif;
  color: #171717;
  margin: 0;
  padding: 0;
  background: #fff;
  position: relative;
}

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

::-webkit-scrollbar {
  width: 6px; /* Set the width for vertical scrollbar */
  height: 6px; /* Set the height for horizontal scrollbar */
}

::-webkit-scrollbar-thumb {
  background-color: red; /* Thumb color */
  border-radius: 10px; /* Rounded corners for the scrollbar thumb */
}

::-webkit-scrollbar-track {
  background-color: #f0f0f0; /* Track color (optional) */
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  margin: 0 0 10px;
  font-weight: 700;
}

.h1,
h1 {
  font-weight: 500;
  font-size: 28px;
  line-height: 32px;
}
@media (min-width: 768px) {
  .h1,
  h1 {
    font-size: 32px;
    line-height: 36px;
  }
}
@media (min-width: 992px) {
  .h1,
  h1 {
    font-size: 38px;
    line-height: 42px;
  }
}

.h2,
h2 {
  font-size: 20px;
  line-height: 24px;
}
@media (min-width: 768px) {
  .h2,
  h2 {
    font-size: 24px;
    line-height: 28px;
  }
}
@media (min-width: 992px) {
  .h2,
  h2 {
    font-size: 30px;
    line-height: 34px;
  }
}

h3,
.h3 {
  font-size: 18px;
  line-height: 22px;
}
@media (min-width: 992px) {
  h3,
  .h3 {
    font-size: 24px;
    line-height: 28px;
  }
}

h4,
.h4 {
  font-size: 18px;
  line-height: 22px;
}
@media (min-width: 992px) {
  h4,
  .h4 {
    font-size: 22px;
    line-height: 26px;
  }
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

textarea {
  resize: vertical;
  vertical-align: top;
}

button,
input[type=button],
input[type=reset],
input[type=file],
input[type=submit] {
  cursor: pointer;
}

form,
fieldset {
  margin: 0;
  padding: 0;
  border-style: none;
}

a {
  text-decoration: none;
  color: #000;
}

button {
  min-width: 130px;
  border: none;
  outline: none;
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  text-transform: capitalize;
  padding: 10px 12px;
  border-radius: 14px;
}

.colored {
  color: #fdd835;
}

#hero {
  margin: 30px 0 50px;
  max-width: 100%;
}
#hero .textWrap {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 400px;
  border-radius: 20px;
  background-color: #000;
  color: #fff;
  border-radius: 10px;
  padding: 0 10px;
  margin: 0 15px;
}
#hero .textWrap h1,
#hero .textWrap .h1 {
  font-weight: bold;
  font-size: 25px;
  line-height: 29px;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  #hero .textWrap h1,
  #hero .textWrap .h1 {
    font-size: 28px;
    line-height: 32px;
  }
}
@media (min-width: 992px) {
  #hero .textWrap h1,
  #hero .textWrap .h1 {
    font-size: 32px;
    line-height: 36px;
  }
}/*# sourceMappingURL=styles.css.map */