/* color variables */
:root {
  --theme-color: 255, 177, 104;
  --theme-secondary: 41, 46, 54;
  --white: 255, 255, 255;
  --black: 0, 0, 0;
  --light-white: 255, 248, 245;
  --box-bg: 245, 245, 245;
}
/* base scss files */
/*=====================
    Reset CSS start
==========================*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Josefin Sans", serif;
  background-color: rgba(var(--white), 1);
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  /* height: 100vh; */
  box-shadow: 0px 5px 24px rgba(0, 0, 0, 0.2);
}
section,
.section-t-space {
  padding-top: 20px;
}

h1 {
  font-weight: 600;
  font-size: 20px;
  line-height: 29px;
  margin-bottom: 0;
}

h2 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 0;
}

h3 {
  font-size: 16px;
  margin-bottom: 0;
}

h4 {
  font-size: 15px;
  line-height: 20px;
  margin-bottom: 0;
}

h5 {
  font-size: 14px;
  line-height: 1;
  margin-bottom: 0;
}

h6 {
  font-size: calc(12px + 1 * (100vw - 320px) / 1600);
  margin-bottom: 0;
}

p {
  font-size: 13px;
  line-height: 1.2;
  margin-bottom: 0;
}

a {
  text-decoration: none;
}
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.navbar > .container {
  /* max-width: 1355px; */
}
/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}
ul {
  padding: 0;
  margin-bottom: 0;
}

li {
  list-style: none;
  display: inline-block;
  font-size: 14px;
}
.btn-primary {
  background: #e1b168;
  border: none;
  font-family: "Metropolis", sans-serif;
  text-transform: capitalize;
}
.btn-primary:hover {
  background: #292e36;
}

.btn-secondary-1 {
  background: #292e36;
  color: #fff;
}
.btn-outline-primary {
  --bs-btn-color: #292e36;
  --bs-btn-border-color: #e1b168;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #292e36;
  --bs-btn-hover-border-color: #292e36;
  --bs-btn-focus-shadow-rgb: 13, 110, 253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #292e36;
  --bs-btn-active-border-color: #292e36;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #e1b168;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #e1b168;
  --bs-gradient: none;
  font-family: "Metropolis", sans-serif;
}

header {
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.h-logo img {
  width: 40px;
  background: #292e36;
  float: left;
  border-radius: 8px;
  padding: 2px;
}
.h-logo h3 {
  font-family: "Cormorant Infant", serif;
  font-size: 24px;
  font-weight: bold;
  padding: 6px 12px;
  float: left;
  text-transform: uppercase;
}
.menu {
  display: flex;
  gap: 15px;
  padding-bottom: 0px;
  top: -4px;
  position: relative;
}
.menu .link {
  display: flex;
  border: 1px solid #d9d9d9;
  padding: 5px 10px;
  align-items: center;
  gap: 5px;
  border-radius: 4px;
  font-family: "Josefin Sans", sans-serif;
  color: #000;
}
.menu .link:hover,
.menu .link.active {
  border: 1px solid #e1b168;
}
.menu .link .img {
  width: 15px;
  height: 15px;
}
.menu .link h6 {
  color: rgba(var(--dark-text), 1);
}
.menu .link .close {
  color: rgba(var(--dark-text), 1);
  display: none;
}
.top-banner:hover {
  border-radius: 10px;
  width: 100%;
  float: left;
  box-shadow: 0px 5px 24px rgba(0, 0, 0, 0.2);
}
.top-banner img {
  border-radius: 10px;
  width: 100%;
}

.primary-sidebar .sidebar-widget {
  position: relative;
  padding: 10px;
  border: 1px solid #d9d9d9;
  border-radius: 10px;
}
.section-title {
  position: relative;
  border-bottom: 1px solid #ececec;
  padding-bottom: 10px;
  font-size: 26px;
}
.section-title:after {
  content: "";
  width: 80px;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #e1b168;
}
.widget-category ul li {
  display: flex;
  align-items: center;
  line-height: 48px;
  border-radius: 5px;
  border: 1px solid #d9d9d9;
  padding: 9px 18px;
  margin: 0 0 15px;
  justify-content: space-between;
  transition: 0.3s;
  -moz-transition: 0.3s;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  font-family: "Josefin Sans", sans-serif;
}
.widget-category ul li.active,
.widget-category ul li:hover {
  border: 1px solid #e1b168;
  cursor: pointer;
}
.widget-category ul li a {
  display: flex;
  align-items: center;
  padding: 0;
  line-height: 1.5;
  color: #253d4e;
  font-size: 18px;
  font-family: "Josefin Sans", sans-serif;
}
.widget-category .count {
  display: inline-block;
  background-color: rgba(225, 177, 104, 0.3);
  width: 24px;
  height: 24px;
  line-height: 24px;
  text-align: center;
  border-radius: 20px;
  margin-left: 5px;
  font-size: 12px;
  color: #292e36;
  font-family: "Josefin Sans", sans-serif;
}

.vertical-product-box {
  display: flex;
  align-items: center;
  border: 1px solid rgba(var(--black), 0.05);
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.06);
  border-radius: 10px;
  height: 100%;
}

.product-box {
  display: flex;
  width: 100%;
  gap: 15px;
  padding: 15px;
}
.product-box .product-content {
  width: 100%;
  position: relative;
}
.product-box .product-content .product-name {
  font-size: 18px;
  margin: 10px 0 0;
  color: #253d4e;
  font-family: "Josefin Sans", sans-serif;
}
.product-box .product-content .product-price {
  font-size: 14px;
  font-weight: 600;
  color: rgba(var(--light-text), 1);
  font-family: "Metropolis", sans-serif;
}
.product-box .product-content .product-price h6 {
  font-size: 18px;
  padding: 10px 0;
}
.product-box .product-content .product-price span {
  color: #e1b168;
}
.product-box .product-content .product-price s {
  padding: 0 8px;
  color: #808080;
}
.product-box .product-content p {
  padding: 0;
  color: #000;
  border-top: 1px solid #e1e1e1;
  padding-top: 5px;
  margin-top: 5px;
  font-family: "Josefin Sans";
  font-size: 16px;
}
.product-box .product-img {
  padding: 5px;
  float: left;
}
.product-box .product-img .img {
  border-radius: 5px;
}

.product-box .add-btn {
  border-radius: 5px;
  font-family: "Metropolis", sans-serif;
  background: #e1b168;
  width: 80px;
}
.product-box .add-btn a {
  color: #fff;
}
.plus-minus {
  border: 1px solid rgba(var(--theme-color), 1);
  padding: 0px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  background-color: rgba(var(--white), 1);
  text-align: center;
  width: 105px;
}
.plus-minus .sub {
  background: #e1b168;
  color: #fff;
  padding: 5px;
  border-bottom-left-radius: 5px;
  border-top-left-radius: 5px;
  cursor: pointer;
}
.plus-minus .add {
  background: #e1b168;
  color: #fff;
  padding: 5px;
  border-bottom-right-radius: 5px;
  border-top-right-radius: 5px;
  cursor: pointer;
}
.plus-minus input {
  background-color: rgba(var(--white), 1);
  color: rgba(var(--theme-color), 1);
  border: none;
  font-size: 18px;
  outline: none;
  width: 52px;
  color: #000;
  text-align: center;
}

.empty-tab h2 {
  font-size: 22px;
  color: #000;
  font-family: "Cormorant Infant", sans-serif;
  font-weight: normal;
}
.empty-tab h5 {
  font-size: 20px;
  line-height: 22px;
}
.modal-title {
  font-family: "Josefin Sans", sans-serif;
}
.filter-box h3 {
  font-size: 16px;
  font-family: "Metropolis", sans-serif;
  margin-bottom: 10px;
  margin-top: 10px;
}
.btn-outline-primary p.txt {
  text-transform: uppercase;
  font-size: 14px;
}
.btn-outline-primary p.amount {
  font-size: 16px;
  font-weight: bold;
  line-height: 20px;
}

.categories .food-categories {
  position: relative;
  width: 100%;
  /* height: 80%; */
  object-fit: contain;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  margin: 0 auto;
  border-radius: 8px;
  z-index: 1;
  background: linear-gradient(
    360deg,
    #f8e27f 20%,
    rgba(245, 245, 245, 0.5098039216) 100%
  );
}
@media (max-width: 420px) {
  .categories .food-categories {
    height: 100%;
    width: 100%;
  }
}
.categories .food-categories.food {
  background: rgba(var(--white), 1);
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.06);
  border-radius: 8px;
}
.categories .food-categories::after {
  content: "";
  position: absolute;
  width: 98%;
  height: 100%;
  border-radius: 9px;
  left: 50%;
  bottom: 2px;
  z-index: -1;
  transform: translateX(-50%);
}
.categories .food-categories .categories-img {
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
  height: 75px;
  object-fit: contain;
}
@media (max-width: 420px) {
  .categories .food-categories .categories-img {
    width: 100%;
    height: 40px;
  }
}
.categories h6 {
  color: rgba(var(--dark-text), 1);
  font-size: 14px;
  margin-top: 10px;
  text-align: center;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

/*=====================
    Product-box CSS start
==========================*/
.products {
  padding-top: 33px;
}
.products .product-box {
  position: relative;
  border: 1px solid;
  border-image-source: linear-gradient(
    180deg,
    rgba(var(--black), 0) -3.45%,
    rgba(var(--black), 0.12) 87.93%
  );
  box-shadow: 0px 2px 12px 0px rgba(0, 0, 0, 0.06);
  border-radius: 8px;
  overflow: visible;
  display: block;
}
[dir="rtl"] .products .product-box {
  direction: rtl;
}
.swiper-slide {
  padding-left: 25px;
}
.swiper-slide.swiper-slide-active {
  padding-left: 0;
}
.products .product-box-bg {
  padding: 0px;
  background-color: rgba(var(--black), 0);
  margin-bottom: 25px;
}
.products .product-box-bg img {
  border-radius: 5px 5px 0 0;
}
.products .product-box-bg a {
  border-radius: 8px;
  margin-bottom: 8px;
}
.products .product-box-bg .product-box-detail {
  background: rgba(0, 0, 0, 0.06);
}
.products .product-box .product-box-img {
  display: block;
}
.products .product-box .product-box-detail h5 {
  color: rgba(var(--dark-text), 1);
  font-weight: 600;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 16px;
  margin-bottom: 5px;
}
.products .product-box .product-box-detail .timing {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 3px;
}
.products .product-box .product-box-detail .timing li {
  position: relative;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 5px;
  color: rgba(var(--dark-text), 1);
}
.products .product-box .product-box-detail .timing li:last-child::after {
  display: none;
}
.products .product-box .product-box-detail .timing li .star {
  width: 12px;
  height: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  background-color: rgba(var(--success-color), 1);
  border-radius: 100%;
}
.products .product-box .product-box-detail .timing li .star i {
  color: rgb(225, 225, 225);
}
.products .product-box .product-box-detail .timing li::after {
  content: "";
  position: absolute;
  margin-left: 40px;
  transform: translateY(-50%) rotate(90deg);
  top: 50%;
  background-color: rgba(var(--dashed-line), 1);
  width: 30%;
  height: 1px;
}
[dir="rtl"] .products .product-box .product-box-detail .timing li::after {
  margin-left: unset;
  margin-right: 44px;
}
.products .product-box .product-box-detail .bottom-panel {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}
.products .product-box .product-box-detail .bottom-panel .price {
  color: rgba(var(--dark-text), 1);
  font-weight: 600;
}
.products .product-box .product-box-detail .bottom-panel .cart {
  width: auto;
  padding: 2px 5px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.products .product-box .product-box-detail .bottom-panel .cart i {
  color: rgba(var(--theme-color), 1);
}
.theme-btn {
  background-color: rgba(var(--theme-color), 1);
  color: #ffffff;
  font-weight: 500;
  font-size: calc(16px + 2 * (100vw - 320px) / 1600);
  border-radius: 8px;
}
.theme-btn:hover {
  background-color: rgba(var(--theme-color), 1);
  color: #000;
}
.my-footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  left: 0;
  z-index: 9;
}
.cart-popup {
  /* position: fixed;
  width: 100%;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  max-width: 1280px; */
  background: linear-gradient(180deg, #414449 1.31%, #1f1f1f 101.06%);
  box-shadow: 0px 0px 13px rgba(0, 0, 0, 0.14);
  border-radius: 10px 10px 0px 0px;
  height: auto;
  padding: 20px;
  display: none;
  display: flex;
  align-items: center;
}
.cart-popup .price-items h3 {
  font-weight: 700;
  font-size: 16px;
  color: rgba(var(--theme-color), 1);
}
.cart-popup .price-items h6 {
  color: rgb(255, 255, 255);
  margin-top: 6px;
}
.cart-popup .cart-btn {
  font-size: 14px;
  display: flex;
  align-items: center;
  padding: 7px 10px;
  margin-left: auto;
}
[dir="rtl"] .cart-popup .cart-btn {
  margin-left: unset;
  margin-right: auto;
}
.extra-adding h3 {
  display: flex;
  align-items: center;
}
.extra-adding h3 div {
  padding: 0 10px;
}
.extra-adding h3::before,
.extra-adding h3::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid #ccc;
}
.extra-adding .t-title {
  font-size: 16px;
}
.extra-adding .t-sub-title {
  font-size: 10px;
  color: #808080;
}
.extra-adding .form-check-input[type="checkbox"] {
  width: 15px;
  height: 15px;
  margin: 2px auto;
}
.extra-adding .list-group-item {
  border-radius: 0 !important;
  margin-bottom: 12px;
  padding: 12px 10px;
  border: 1px solid #dee2e6;
}
.offcanvas-footer {
  text-align: center;
  padding: 10px;
}
.restaurant-details-box {
  position: relative;
  background: rgba(var(--white), 1);
  border: 1px solid rgba(var(--black), 0.05);
  box-shadow: 0px 2px 11px rgba(0, 0, 0, 0.06);
  border-radius: 10px;
  padding: 0;
  margin-top: 0;
  z-index: 1;
}
.restaurant-head {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dashed rgba(var(--dashed-line), 1);
  padding: 12px 0;
}
.restaurant-head .name {
  display: flex;
}
.restaurant-head .name .restaurant-logo {
  width: 40px;
  height: 40px;
}
.restaurant-head .name h3 {
  font-weight: 700;
  color: rgba(var(--dark-text), 1);
}
.restaurant-head .name h6 {
  margin-top: 5px;
  color: rgba(var(--light-text), 1);
}
.restaurant-head .option {
  display: flex;
  gap: 15px;
  font-size: 20px;
}
.restaurant-details-box .restaurant-details {
  padding: 10px 0;
  border-bottom: 1px solid #ccc;
}
.restaurant-details-box .restaurant-details .location {
  /* border-right: 1px solid rgba(var(--dashed-line), 1); */
  padding-right: 15px;
  position: relative;
}
.restaurant-details-box .restaurant-details .location .price {
  font-size: 16px;
  font-weight: bold;
}
.theme-color {
  color: rgba(var(--theme-color), 1);
}
.bill-details {
  position: relative;
}
.bill-details .total-detail {
  position: relative;
  background-color: #eee;
  padding: calc(10px + 5 * (100vw - 320px) / 1600);
  border-radius: 10px;
  margin-bottom: 0;
}
.bill-details .total-detail .sub-total {
  display: flex;
  justify-content: space-between;
}

.bill-details .total-detail .sub-total {
  display: flex;
  justify-content: space-between;
}
.bill-details .total-detail h5 {
  color: rgba(var(--dark-text), 1);
}
.bill-details .total-detail h5 {
  color: rgba(var(--dark-text), 1);
  font-size: 16px;
}
.bill-details .total-detail .free {
  color: rgba(var(--theme-color), 1);
  position: absolute;
  top: 54px;
  right: 20px;
}
.bill-details .total-detail .delivery-info {
  width: 70%;
  margin-bottom: 15px;
  line-height: 1.2;
}
.bill-details .total-detail .sub-total {
  display: flex;
  justify-content: space-between;
}
.bill-details .total-detail .grand-total {
  display: flex;
  justify-content: space-between;
  border-top: 1px dashed rgba(var(--black), 0.22);
  padding: 10px 0 0;
}
.bill-details .total-detail .grand-total h5 {
  color: rgba(var(--dark-text), 1);
}
.bill-details .total-detail .grand-total .amount {
  color: rgba(var(--theme-color), 1);
}

.login-popup .modal-title {
  font-size: 18px;
}
.login-popup p {
  font-size: 18px;
  line-height: 25px;
}
/* cart block */

/* Extra large devices: up to 1399.98px */
@media (max-width: 1399.98px) {
  /* body{
      max-width: 100%;
  } */
}
/* Large devices (desktops): up to 1199.98px */
@media (max-width: 1199.98px) {
}
/* Medium devices (tablets): up to 991.98px */
@media (max-width: 991.98px) {
  .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .collapse:not(.show) {
    display: block;
  }
  .navbar-toggler {
    display: none;
  }
  .menu {
    flex-direction: row;
    top: 0;
  }
}
/* Small devices (phones): up to 767.98px */
@media (max-width: 767.98px) {
  .menu .link h6 {
    display: none;
  }
  .offcanvas-header,
  .offcanvas-body {
    padding: 5px;
  }
  .offcanvas-header .restaurant-head {
    padding: 5px 0;
  }
  .restaurant-details-box .restaurant-details {
    padding: 5px 0;
  }
  .restaurant-details-box .restaurant-details h6{
    font-size: 16px;
  }
  .offcanvas-footer{
      padding-bottom: 0;
      background: #eee;
  }
  .offcanvas-footer .mt-4.mb-2{
    margin: 10px 10px !important;
  }
  .bill-details .total-detail{
    padding: 0;
  }
}
/* Extra small: up to 575.98px */
@media (max-width: 575.98px) {
  /* .menu .link {
    border: 15px solid #808080;
  } */
}
