@import url('https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@700&family=Public+Sans:wght@100..900&display=swap');

:root {
  --baseFont: "Public Sans", sans-serif;
  --titleFont: "Cinzel Decorative", serif;
  --primary: #F47C2B;
  --gradientColor1: #ED6A08;
  --gradientColor2: #F4AA06;
  --dark: #2C2C2C;
  --white: #fff;
  --bodyBg: #FAF4EE;
  --imgOverlay: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%,rgba(0,0,0,0.8) 100%);
  --imgOverlay2: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%,rgba(0,0,0,0.9) 100%);
  --btnGradient: linear-gradient(135deg, var(--gradientColor1) 0%,var(--gradientColor2) 50%,var(--gradientColor1) 100%);


  --primaryDark: #FF0D31;
  --secondary: #FFBB00;
  --black: #000;
  --error: #ff5151;
  --fbColor: #1877F2;
  --googleColor: #5F6368;
  --transition: 400ms ease-in-out 0s;
}
body {
  font-size: 18px;
  line-height: 1.7;
  color: var(--dark);
  font-family: var(--baseFont);
  background-color: var(--bodyBg);
}
a, a:hover {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
img {
  max-width: 100%;
}
h1 ,h2, h3, h4 {
  font-family: var(--titleFont);
}

/* cursor */
.customCursor {
  --normalSize: 10px;
  --spotlightSize: 80px;
  --linkSize: 0px;
  position: fixed;
  width: var(--normalSize);
  height: var(--normalSize);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9999;
  transition: width 0.4s ease, height 0.4s ease, background-color 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: var(--white);
  background-color: var(--primary);
  mix-blend-mode: normal;
}
.customCursor.linkHover {
  width: var(--linkSize);
  height: var(--linkSize);
  background-color: #333;
  cursor: pointer;
}
.customCursor.spotlight {
  background: white;
  mix-blend-mode: difference;
  width: var(--spotlightSize);
  height: var(--spotlightSize);
}


/* ===== Scrollbar CSS ===== */
  /* Firefox */
  * {
    scrollbar-width: thin;
    scrollbar-color: var(--primary) var(--dark);
  }

  /* Chrome, Edge, and Safari */
  *::-webkit-scrollbar {
    width: 8px;
  }

  *::-webkit-scrollbar-track {
    background: var(--dark);
  }

  *::-webkit-scrollbar-thumb {
    background-color: var(--primary);
    border-radius: 0px;
    border: 1px solid var(--dark);
  }

/* components */
.textPrimary {
	color: var(--primary);
}
.mdContainer {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.simpleLink {
  position: relative;
  padding-bottom: 2px;
}
.simpleLink::before {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  border-radius: 5px;
  height: 2px;
  bottom: 0;
  left: 0;
  background: currentcolor;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}
.simpleLink:hover::before {
  transform: scaleX(1);
  transform-origin: bottom left;
}
.linkStyle2 {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.subtitle {
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: 2px;
}
.xlTitle {
  font-size: 60px;
  line-height: 1.3;
  font-weight: 700;
}



.btn {
  --br: 30px;
  border-radius: var(--br);
  font-size: 14px;
  letter-spacing: 1px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0;
  min-width: 120px;
  line-height: normal;
  border: none;
  position: relative;
}
.btn::before {
  content: "";
  border-radius: var(--br);
  position: absolute;
  inset: 2px;
  outline: 2px solid;
  outline-offset: 0px;
  transition: all 1250ms cubic-bezier(0.19, 1, 0.22, 1);
}
.btn.btnOutlin::before {
  outline-color: rgba(0, 0, 0, 0.5);
}
.btn.btnPrimary::before {
  outline-color: rgba(244, 124, 43, 1);
}
.btn:hover::before {
	outline-offset: 12px;
}
.btn.btnOutline:hover::before {
  outline-color: rgba(0, 0, 0, 0);
}
.btn.btnPrimary:hover::before {
  outline-color: rgba(244, 124, 43, 0);
}
.btn>span {
  position: relative;
  z-index: 2;
  padding: 16px 30px;
  display: block;
  border-radius: var(--br);
}
.btnPrimary > span {
	background: var(--btnGradient);
	background-size: 200% auto;
	background-position: left top;
	color: var(--dark);
	transition: var(--transition);
	border: 1px solid transparent;
}
.btn.btnPrimary:hover>span {
  background-position: right top;
}
.btn.btnOutline > span {
  border: 1px solid var(--dark);
  background-color: var(--bodyBg);
}


.imgHover {
	position: relative;
  overflow: hidden;
}
.imgHover::before {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 2;
	display: block;
	content: '';
	width: 0;
	height: 0;
	background: rgba(255,255,255,.2);
	border-radius: 100%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	opacity: 0;
}
.imgHover:hover::before {
	-webkit-animation: circle .75s;
	animation: circle .75s;
}
@-webkit-keyframes circle {
	0% {
		opacity: 1;
	}
	40% {
		opacity: 1;
	}
	100% {
		width: 200%;
		height: 200%;
		opacity: 0;
	}
}
@keyframes circle {
	0% {
		opacity: 1;
	}
	40% {
		opacity: 1;
	}
	100% {
		width: 200%;
		height: 200%;
		opacity: 0;
	}
}
.imgHover::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  box-shadow: inset 0 0 40px 10px rgba(0,0,0,0.5);
  opacity: 0;
  transition: opacity 500ms ease-in-out 0s;
}
.imgHover:hover::after {
  opacity: 1;
}
.imgHover img {
  transition: transform 800ms ease-in-out 0s;
}
.imgHover:hover img {
  transform: scale(1.05) rotate(0.5deg);
}


/* Header */
.logo svg, .sidebarLogo svg {
  max-width: 100%;
  height: auto;
}
.sidebarLogo {
	padding: 0 0 10px;
}
.sidebarLogo a {
  display: inline-block;
  max-width: 160px;
}
.logo {
  --logo-height: 50px;
  height: var(--logo-height);
  max-width: 200px;
  display: flex;
  align-items: center;
}
.logo > a > img, .logo > a > svg {
  max-width: 100%;
  object-fit: contain;
  max-height: var(--logo-height);
}
header.headerSection {
  position: sticky;
  top: 0;
  z-index: 9;
  background-color: var(--bodyBg);
  color: var(--dark);
  padding: 20px 0;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}
.menuColMain {
  display: flex;
  justify-content: flex-end;
}
.navItems {
  display: flex;
  column-gap: 40px;
  font-size: 18px;
}
.navItems a {
  font-weight: 500;
  --pVal: 5px 0; 
	padding: var(--pVal);
  position: relative;
  display: block;
}

.navItems a:before {
	position: absolute;
  inset: 0;
	overflow: hidden;
	padding: var(--pVal);
	max-width: 0;
	border-bottom: 2px solid var(--primary);
	color: var(--primary);
	content: attr(data-hover);
	-webkit-transition: max-width 0.5s;
	-moz-transition: max-width 0.5s;
	transition: max-width 0.5s;
}

.navItems a:hover:before, .navItems a:focus:before, .navItems a.active:before {
	max-width: 100%;
}
.navItems a.active {
  color: transparent;
}



.headerRightOption {
	display: flex;
	align-items: center;
	column-gap: 15px;
	padding-left: 20px;
}
.cartCol {
  position: relative;
  display: block;
}
.cartIcon {
	display: block;
}
.cartCount {
	color: var(--white);
	background-color: var(--primary);
	font-size: 12px;
	padding: 2px 4px;
	position: absolute;
	top: -8px;
	right: 0;
	line-height: 1;
	border-radius: 10px;
	min-width: 16px;
	text-align: center;
	font-weight: 600;
}

.menuToggle {
  position: relative;
  width: 26px;
  height: 18px;
  margin-left: auto;
}
.menuToggle > a {
  display: block;
  width: 100%;
  height: 100%;
}
.menuToggle > a > span {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  width: 100%;
  background-color: var(--dark);
  border-radius: 20px;
  transition: all 300ms ease-in-out 0s;
}
.menuToggle > a > span:nth-child(2) {
  top: 8px;
}
.menuToggle > a > span:last-child {
  bottom: 0;
  top: auto;
}
.actNav .menuToggle > a > span:nth-child(1) {
  transform: rotate(135deg);
  top: 8px;
}
.actNav .menuToggle > a > span:nth-child(2) {
  opacity: 0;
  transform: translateX(-25px);
}
.actNav .menuToggle > a > span:nth-child(3) {
  transform: rotate(-135deg);
  bottom: 8px;
}
.menuBackDrop {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 800ms ease-in-out 0s;
  z-index: 9;
  background-color: rgba(19, 15, 38, 0.7);
}

.userLogin {
  position: relative;
}
.userLogin .dropMenu {
	position: absolute;
	top: 100%;
	background: var(--dark);
	box-shadow: 0px 0px 7px rgba(0, 0, 0, 0.9);
	width: 210px;
	text-align: left;
	right: 0;
	display: none;
	z-index: 9;
	padding: 6px 0;
	border-radius: 8px;
}
.userLogin > a {
	padding: 8px 16px 8px 0;
	display: flex;
	align-items: center;
	column-gap: 6px;
	position: relative;
}
.userLogin > a::before {
	content: "";
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 14px;
	height: 14px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath fill='white' d='M201.4 374.6c12.5 12.5 32.8 12.5 45.3 0l160-160c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L224 306.7 86.6 169.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l160 160z'/%3E%3C/svg%3E");
	background-size: contain;
	background-repeat: no-repeat;
}
.userLogin .userName {
  font-size: 16px;
  font-weight: 500;
}
.userLogin .dropMenu a {
	padding: 8px 14px;
	display: block;
	color: var(--white);
	font-size: 14px;
  line-height: 1.2;
	font-weight: normal;
  transition: padding-left var(--transition), background-color var(--transition);
}
.userLogin .dropMenu a:hover {
	background-color: rgba(255, 255, 255, 0.03);
	padding-left: 20px;
}



/* Hero Section */

.bannerStyle {
	display: flex;
	flex-direction: column;
	min-height: calc(100vh - 100px);
	justify-content: center;
	align-items: center;
	position: relative;
	padding: 50px 0;
  background-color: var(--black);
  color: var(--white);
}
.bannerStyle::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--imgOverlay);
}
.parallaxBg {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.bannerContent {
	display: flex;
	flex-direction: column;
	row-gap: 30px;
	color: var(--white);
}
.bannerContentMaxWd {
  margin-left: auto;
  margin-right: auto;
  max-width: 900px;
}
.bannerBtns {
	display: flex;
	flex-wrap: wrap;
	column-gap: 18px;
	row-gap: 15px;
}



.sectionSpace {
  padding: 120px 0;
}



.titleLbl {
  font-size: 18px;
  font-family: var(--titleFont);
}
.openingHourModalContent {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
.simpleList > li + li {
	margin-top: 8px;
}


/* scroll down */
.scroll-down-indicator {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  user-select: none;
  pointer-events: none;
}
.scroll-text {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  color: var(--white);
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  margin-bottom: 18px;
  font-family: inherit;
  animation: fadeInUp 1s;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.scroll-text > span {
  transform: rotate(180deg);
  display: block;
}
.scroll-line {
  width: 2px;
  height: 60px;
  background: var(--primary);
  margin-bottom: 10px;
  animation: growLine 1.2s;
}
.scroll-mouse {
  width: 24px;
  height: 36px;
  border: 2px solid var(--white);
  border-radius: 14px;
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.scroll-dot {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 8px;
  transform: translateX(-50%);
  animation: scrollDotMove 1.5s infinite;
}

.smScrollIndicator {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 30px;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.smScrollIndicator .scroll-line {
	height: 30px;
}

@keyframes scrollDotMove {
  0% { top: 8px; opacity: 1; }
  70% { top: 20px; opacity: 1; }
  100% { top: 20px; opacity: 0; }
}
@keyframes growLine {
  0% { height: 0; }
  100% { height: 60px; }
}
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(20px);}
  100% { opacity: 1; transform: translateY(0);}
}
/*   /scroll down */

.bannerRightLinks {
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 32px;
}
.bannerRightLinks > a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  padding: 1px;
}
.writingText {
  display: block;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
}


.fromTheMenuSection {
  background-color: var(--black, #000);
  color: var(--white, #fff);
}
.overlaySection {
  position: relative;
  overflow: hidden;
}
.overlaySection::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--imgOverlay2);
}


/* login modal */
.modalNewstyle {
  --xSpace: 30px;
  --ySpace: 40px;
  font-size: 16px;
}
.modalNewstyle .modal-body {
  padding: var(--ySpace) var(--xSpace);
  position: relative;
}
.modalNewstyle .modal-header {
  padding: var(--ySpace) var(--xSpace) calc(var(--ySpace) / 2);
  position: relative;
}
.modalNewstyle .modal-header {
	flex-direction: column;
	row-gap: 5px;
}
.modalNewstyle .modal-header + .modal-body {
  padding-top: 10px;
  padding-bottom: calc(var(--ySpace) + 10px);
}
.modalNewstyle .modal-content {
  background-color: var(--dark);
}
html:not([data-bs-theme="dark"]) .modalNewstyle .modal-content {
	background-color: var(--white);
}
.modalNewstyle .btn-close {
	--closeIconSize: 10px;
  --closeIconPosition: 15px;
	padding: 4px;
	width: var(--closeIconSize);
	height: var(--closeIconSize);
	position: absolute;
	right: var(--closeIconPosition);
	top: var(--closeIconPosition);
	margin: 0;
}
.modalForm {
	margin: 0 auto;
	max-width: 520px;
}
.sideLinesDivider {
  overflow: hidden;
  text-align: center;
  position: relative;
}
.sideLinesDivider > .dividerText {
	display: inline-block;
	position: relative;
	padding: 0 20px;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: var(--dark);
	font-weight: 600;
}
.sideLinesDivider > .dividerText::before, .sideLinesDivider > .dividerText::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 100vw;
  margin-top: -1px;
  border-top: 2px solid currentColor;
  opacity: 0.2;
}
.sideLinesDivider > .dividerText::before {
  right: 100%;
}
.sideLinesDivider > .dividerText::after {
  left: 100%;
}
.rightIconFld {
	position: relative;
}
.rightIconFld > .inputFieldIcon {
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translate(0, -50%);
	pointer-events: none;
  z-index: 2;
}
.fieldIcon {
	height: auto;
	width: 22px;
	display: block;
	opacity: 0.6;
}



.formStyle {
  font-size: 16px;
}
.formStyle input[type="date"] ~ .inputFieldIcon, .formStyle input[type="time"] ~ .inputFieldIcon {
  background-color: var(--white);
}
.formStyle .form-select, .formStyle .form-control {
	border-radius: 30px;
	padding-top: 12px;
	padding-bottom: 12px;
	padding-left: 20px;
	border-width: 2px;
}
.formStyle .form-select {
	background-size: 16px auto;
	background-position: right 18px center;
}
.formStyle textarea.form-control {
	height: 120px;
	resize: none;
	border-radius: 16px;
}
.formStyle .form-check {
	font-size: 16px;
	font-weight: normal;
	line-height: 1.2;
	margin-bottom: 0;
	min-height: auto;
}
.formStyle .form-check .form-check-input {
	margin-top: 2px;
}
.formStyle .form-check-input:checked {
	background-color: var(--primary);
	border-color: var(--primary);
}

.formStyle .rightIconFld .form-control {
	padding-right: 50px;
}
.formStyle .rightIconFld .form-control.reservationField {
	padding-right: 15px;
}
input[type="date"]::-webkit-calendar-picker-indicator {
  display: none;
  -webkit-appearance: none;
}
input[type="date"]::-moz-calendar-picker-indicator {
  display: none;
  pointer-events: none;
}

/* Target the custom container */
.customDatePicker input[type="date"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
}
.datePlaceholder {
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  color: #aaa;
  pointer-events: none;
  transition: 0.2s;
}

.modalNewstyle .form-label {
	font-size: 12px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 4px;
}
.errorMsg {
	font-size: 14px;
	color: var(--error);
	letter-spacing: 0.5px;
	font-weight: 400;
	margin: 4px 0;
	line-height: 1.2;
  display: none;
}
#resend_otp {
  transition: color var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}
#timer {
	font-size: 16px;
	font-weight: 400;
	line-height: 1;
}
.recaptchaCol {
	border-radius: 8px;
	overflow: hidden;
  display: inline-flex;
  max-width: 100%;
}


/* back to top */
#backToTop {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 100;
  width: 56px;
  height: 56px;
  border: none;
  background: var(--dark, #000);
  color: var(--white, white);
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(0,0,0,0.13);
  display: none;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, opacity 0.2s, transform 0.2s;
  opacity: 0.95;
  cursor: pointer;
  padding: 0;
  overflow: visible;
}
#backToTop:hover {
  background: var(--black);
  opacity: 1;
  transform: translateY(-6px) scale(1.07);
}
.backToTop-arrow {
  width: 38px;
  height: 38px;
  display: block;
  pointer-events: none;
}
/* Arrow animation */
#backToTop .arrow-shaft {
  stroke-dasharray: 16;
  stroke-dashoffset: 16;
  animation: arrow-shaft-in 0.7s 0.1s cubic-bezier(.77,0,.18,1) forwards;
}
@keyframes arrow-shaft-in {
  to { stroke-dashoffset: 0; }
}
#backToTop .arrow-head {
  stroke-dasharray: 18;
  stroke-dashoffset: 18;
  animation: arrow-head-in 0.7s 0.3s cubic-bezier(.77,0,.18,1) forwards;
}
@keyframes arrow-head-in {
  to { stroke-dashoffset: 0; }
}


.selectionFilterOptions {
  margin-bottom: 90px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 15px;
  row-gap: 15px;
}
.filterTrigger {
  --xSpace: 20px;
  --ySpace: 10px;
   --br: 50px;
  font-size: 14px;
  line-height: 1.2;
  transition: var(--transition);
  font-weight: 500;
  letter-spacing: 1px;
  padding: var(--ySpace) var(--xSpace);
  display: inline-block;
  position: relative;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: var(--br);
  text-transform: uppercase;
}
.filterTrigger.active, .filterTrigger:hover {
  color: var(--primary);
  border-color: var(--primary);
}
.selectionCard {
  display: flex;
  flex-direction: column;
  row-gap: 12px;
  position: relative;
  line-height: 1.2;
}
.selectionCard > p:last-child {
	margin-bottom: 0;
}
.selectionCard .d-flex {
  align-items: center;
}
.dishName {
  font-weight: 500;
  text-transform: uppercase;
  font-family: var(--titleFont);
}
.dishPrice {
  font-weight: 700;
  font-family: var(--titleFont);
}
.blankLink {
  position: absolute;
  inset: 0;
  z-index: 2;
}
.dishLine {
  border-top: 1px dashed var(--dark);
  opacity: 0.5;
}


.chefSuggestSlider {
  padding: 40px 40px 0;
}
.chefSuggestSlider .dishCardStyle {
  display: block;
  text-align: center;
}
.chefSuggestSlider .dishCardStyle .dsImgStyle {
  width: 100%;
  min-height: 540px;
  height: 100%;
  position: relative;
  display: block;
  overflow: hidden;
}
.chefSuggestSlider .dishCardStyle .dsImgStyle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  inset: 0;
  position: absolute;
  object-position: center;
  backface-visibility: hidden;
  will-change: transform;
  transition: transform 1400ms ease;
}
.chefSuggestSlider .dishCardStyle .dsText {
  margin-top: 20px;
  display: block;
  font-size: 30px;
  color: var(--primary);
  font-family: var(--titleFont);
}
.chefSuggestSlider .swiper-slide {
  width: 100%;
  overflow: hidden;
}
.chefSuggestSlider .swiper-wrapper {
  transition-timing-function: linear !important;
}


.socialBtnReview {
  max-width: 700px;
  margin: 0 auto;
}
.socialBtn span.btnIcon {
  --iconSize: 56px;
  display: block;
  width: var(--iconSize);
  height: var(--iconSize);
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.14);
}
a.socialBtn {
  display: flex;
  align-items: center;
  /* gap: 20px; */
  border-radius: 50px;
  font-size: 20px;
  font-weight: 600;
  transition: opacity var(--transition);
  color: var(--white);
}
a.socialBtn:hover {
  opacity: 0.7;
}
.socialBtn span.btnIcon + span {
	padding: 0 50px 0 20px;
}
.socialBtn span.btnIcon img {
  display: block;
}
.gradientBg1 {
  background: linear-gradient(to right,  #12a7fb 0%,#0070e6 100%);
}
.gradientBg2 {
  background: linear-gradient(to bottom,  #a80bf6 0%,#f829c0 21%,#fb2966 46%,#f7951a 100%);
}
.gradientBg3 {
  background: linear-gradient(135deg,  #06383d 2%,#06383d 40%,#149495 100%);
}


.reservationSection .formStyle {
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
}
.chefSuggestSection {
  background-color: var(--black, #000);
  color: var(--white, #fff);
}
.reservationSection {
  background-color: var(--black, #000);
  color: var(--white, #fff);
}
.reservationSection svg.fieldIcon {
    color: var(--dark);
}
.reservationSection .formStyle .form-select, 
.reservationSection .formStyle .form-control {
    border: 0;
}


.cardStyle1 .cardImg {
  padding-top: calc(373 / 404 * 100%);
  position: relative;
}
.cardStyle1 .cardImg img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
}
.cardStyle1 .dateCol > span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 2;
  background-color: var(--darkBg);
  font-style: normal;
}
.dateCol.lineSubTitle {
	--lineWd: 100vw;
}
.cardDesc h3 {
  font-size: 26px;
}

.gallerySection {
  background-color: var(--black, #000);
  color: var(--white, #fff);
}
.galleryImg > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.galleryVariable {
  --gImgSize: 314px;
  --gImgGap: 15px;
}
.galleryMd {
  height: var(--gImgSize);
}
.galleryLg {
  height: calc(var(--gImgSize) * 1.5 + var(--gImgGap));
}
.thumbCol {
  display: flex;
  flex-direction: column;
  gap: var(--gImgGap);
}


/****** Footer css Start ******/
.footerColMain {
  padding-bottom: 100px;
  --pd: 74px;
}
.footerTop p,
.footerTop ul li {
  font-size: 18px;
  line-height: 1.8;
}
.footerTop p span {
  font-weight: 600;
}
.copyrightCol {
  font-size: 16px;
}
.socialMenu ul li + li {
  margin-left: 15px;
}
.socialMenu a {
  transition: opacity var(--transition);
  display: block;
  color: var(--primary);
}
.socialMenu a:hover {
	opacity: 0.6;
}
.footerCol h3.mdTitle {
  font-size: 18px;
}
.hpCol {
  padding-left: 80px;
}
.footerBottom {
  padding: var(--pd) 0;
  position: relative;
}
.footerBottom::before, .footerBottom::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  border-top: 1px solid;
  border-image: linear-gradient(to right,#FAF4EE, black, #FAF4EE); /* Example gradient */
  border-image-slice: 1;
}
.footerBottom::before {
  top: 0;
}
.footerBottom::after {
  bottom: 0;
}
.footerCopyright {
  padding-top: var(--pd);
}
.footerTop {
  padding-bottom: var(--pd);
}
.ftColLeft > h3 {
  font-size: 30px;
}
.ftLinks, .ftLinks a {
  display: flex;
  gap: 10px;
}
.ftColRight .ftLinks {
  gap: 20px;
  justify-content: end;
}
.ftColLeft {
    max-width: 500px;
}

/******* Media Quary *******/
@media (min-width:768px) {
  .modal-md {
    --bs-modal-width: 600px;
  }
}
@media (min-width:768px) and (max-width:991px) {
  .modal-lg {
    --bs-modal-width: 650px;
  }
}
@media (max-width: 1399px) {
  .xlTitle {
    font-size: 50px;
  }
  .logo {
    max-width: 160px;
  }
  .navItems {
    column-gap: 30px;
    font-size: 16px;
  }
  .headerRightOption {
    column-gap: 12px;
  }
  .chefSuggestSlider .dishCardStyle .dsImgStyle {
    min-height: 460px;
  }
}

@media (max-width: 1199px) {
  body {
    font-size: 16px;
  }
  .subtitle {
    font-size: 20px;
  }
  .xlTitle {
    font-size: 40px;
  }
  .bannerContentMaxWd {
    max-width: 820px;
  }
  .bannerStyle {
    padding: 50px 0 130px;
  }
  .bannerContent {
    row-gap: 20px;
  }
  .sectionSpace {
    padding: 100px 0;
  }
  .logo {
    max-width: 140px;
  }
  .headerSection .btn > span {
    padding: 14px 20px;
  }
  .navItems {
    column-gap: 24px;
    font-size: 15px;
  }
  .footerColMain {
    padding-bottom: 80px;
    --pd: 50px;
  }
  .galleryVariable {
    --gImgSize: 230px;
  }
  .ftColLeft {
    max-width: 380px;
  }
  .hpCol {
    padding-left: 30px;
  }
  .chefSuggestSlider .dishCardStyle .dsImgStyle {
    min-height: 360px;
  }
  .chefSuggestSlider .dishCardStyle .dsText {
    font-size: 24px;
  }
  .selectionFilterOptions {
    margin-bottom: 60px;
  }
}

@media (max-width: 991px) {
  .menuColMain {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: 280px;
    z-index: 99;
    background-color: var(--dark);
    color: var(--white);
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2);
    transition: transform var(--transition);
    transform: translateX(-200%);
    justify-content: flex-start;
    flex-direction: column;
    padding: 20px;
  }
  .actNav .menuColMain {
    transform: translateX(0);
  }
  .actNav .menuBackDrop {
    opacity: 1;
    visibility: visible;
    pointer-events: initial;
  }
  .logo {
    max-width: 160px;
  }
  .navItems {
    flex-direction: column;
  }
  .navItems > li {
    display: block;
  }
  .navItems a {
    --pVal: 12px 0;
  }
  .navItems > li + li {
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  header.headerSection {
    padding: 12px 0;
  }
  .cardStyle1 {
    text-align: center;
    margin-bottom: 30px;
  }
  .galleryVariable {
    --gImgSize: 180px;
  }
  .cardDesc h3 {
    font-size: 20px;
  }
  .sectionSpace {
    padding: 80px 0;
  }
  .footerTop {
    text-align: center;
  }
  .ftColLeft {
    max-width: 100%;
    margin-bottom: 30px;
  }
  .ftColRight .ftLinks {
    gap: 20px;
    justify-content: center;
  }
  .ftLinks, .ftLinks a {
    justify-content: center;
  }
  .footerColMain {
    --pd: 35px;
  }
  .hpCol {
    padding-left: 0;
    margin: 30px 0;
  }
  .footerCol {
    text-align: center;
  }
  .selectionFilterOptions {
    overflow-x: auto;
    overflow-y: hidden;
    flex-wrap: nowrap;
    white-space: nowrap;
    margin-bottom: 30px;
    justify-content: flex-start;
    padding-bottom: 10px;
  }
  a.socialBtn {
    font-size: 16px;
  }
  .socialBtn span.btnIcon + span {
    padding: 0 30px 0 12px;
  }
  .socialBtn span.btnIcon {
    --iconSize: 44px;
  }
  .chefSuggestSlider .dishCardStyle .dsImgStyle {
    min-height: 300px;
  }
}

@media (max-width:767px) {
  .modalNewstyle {
    --xSpace: 15px;
    --ySpace: 20px;
  }
  .modal .formStyle .form-check {
    font-size: 14px;
  }
  .galleryVariable {
    --gImgSize: 280px;
  }
  .galleryLg {
    height: calc(var(--gImgSize) * 1 + var(--gImgGap));
  }
  .midCol {
    margin: 15px 0;
  }
  .galleryImg {
    margin-bottom: 0;
  }
  .ftColLeft > h3 {
    font-size: 24px;
  }
  .ftColRight .ftLinks {
    flex-direction: column;
    gap: 15px;
  }
}
@media (max-width:575px) {
  .xlTitle {
    font-size: 34px;
  }
  .sectionSpace {
    padding: 60px 0;
  }
  .formStyle .form-select, .formStyle .form-control {
    padding-left: 15px;
  }
  .bannerBtns {
    column-gap: 15px;
  }
  .btn>span {
    padding: 14px 20px;
  }
}

@media (max-width:360px) {
  .modalNewstyle .rightIconFld > .inputFieldIcon {
    right: 14px;
  }
  .formStyle .rightIconFld .form-control {
    padding-right: 40px;
  }
  .formStyle .form-control {
    font-size: 14px;
  }
  .inputFieldIcon {
    height: auto;
    width: 20px;
  }
  .modalNewstyle#reservationModal {
    --xSpace: 10px;
  }
  .xlTitle {
    font-size: 30px;
  }
}
/* Mobile Cart footer section CSS */
.mobile_footer_tape {
  position: relative;
  z-index: 999;
  display: none;
  color: #1B2126;
}
.mobile_footer_tape .pageContent {
  padding: 0;
  position: relative;
}
@media (max-width: 1199px) {
  .mobile_footer_tape {
    display: block;
  }
  .mobile_footer_tape .sidebarright {
    position: fixed;
    left: 0;
    right: 0;
    top: auto;
    bottom: 0;
    width: 100%;
    background-color: transparent;
    z-index: 11;
    margin: 0;
    overflow-y: inherit;
    transition: all 300ms ease-in-out 0s;
    transform: translateY(200%);
  }
  .mobile_footer_tape .nwCartMain {
    background-color: #FFFFFF;
    box-shadow: 0 0 24px rgba(0, 0, 0, 0.14);
    border-radius: 30px 30px 0 0;
    padding: 15px;
  }
  .mobile_footer_tape .nwCartMain .nwCartTitle {
    position: relative;
    padding: 0 0 15px;
    border-bottom: 1px solid #E3E3E3;
  }
  .mobile_footer_tape .nwCartMain .nwCartTitle h2 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 0;
  }
  .mobile_footer_tape .nwCartMain .nwCartTitle .cartBackIcon {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    margin-top: -6px;
  }
  .mobile_footer_tape .nwCartMain .nwCartTitle .cartBackIcon img {
    display: block;
  }
  .mobile_footer_tape .nwCartInner {
    max-height: calc(100vh - 200px);
    overflow-y: auto;
    overflow-x: hidden;
    padding: 10px 0 70px;
  }
  .mobile_footer_tape .cartCardImg {
    width: 50px;
  }
  .mobile_footer_tape .cartCardImg img {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    object-fit: cover;
  }
}
.mobile_footer_tape .nwaddDetailInner {
  margin-top: 25px;
}
.mobile_footer_tape .nwaddDetail {
  border-bottom: 1px solid #E3E3E3;
  margin-bottom: 15px;
  padding-bottom: 15px;
}
.mobile_footer_tape .nwaddDetail h2 {
  font-size: 14px;
  margin: 0;
}
.mobile_footer_tape .nwaddDetail p {
  margin: 0 0 2px;
  font-size: 14px;
  line-height: 1.2;
  color: #130F26;
}
.mobile_footer_tape .textandwordWrap span {
  font-size: 10px;
  display: inline-block;
}
.mobile_footer_tape .sizeCol > p {
  font-size: 12px;
  margin: 0;
}
.mobile_footer_tape .edRMainCol {
  padding-top: 10px;
}
.mobile_footer_tape .rEdCol ul li {
  display: inline-block;
  vertical-align: middle;
  font-size: 14px;
  font-weight: 500;
}
.mobile_footer_tape .rEdCol ul li + li {
  margin-left: 15px;
}
.mobile_footer_tape .rEdCol ul li span {
  display: inline-block;
  vertical-align: middle;
}
.mobile_footer_tape .rEdCol ul li span img {
  display: block;
}
.mobile_footer_tape .cart-inc-dec .quantity {
  border: 1px solid #dddddd;
  width: 84px;
  height: 30px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.mobile_footer_tape .cart-inc-dec .quantity .minus {
  border: 0;
  background-color: transparent;
  font-size: 40px;
  line-height: 1;
  font-weight: normal;
  box-shadow: none;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTEiIGhlaWdodD0iMiIgdmlld0JveD0iMCAwIDExIDIiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CiAgPHBhdGggZD0iTTAuNSAxSDEwLjUiIHN0cm9rZT0iYmxhY2siIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8L3N2Zz4=");
  background-repeat: no-repeat;
  background-position: center center;
  font-size: 0;
  height: 100%;
  width: 26px;
  flex: 0 0 auto;
  border-radius: 30px 0px 0px 30px;
  box-shadow: none;
}
.mobile_footer_tape .cart-inc-dec .quantity .qty {
  font-size: 14px;
  font-weight: 400;
  width: 25px;
  height: 100%;
  background-color: transparent;
  border: none;
  box-shadow: none;
  color: #000;
  flex: 1 0 0;
  text-align: center;
}
.mobile_footer_tape .cart-inc-dec .quantity .plus {
  border: 0;
  background-color: transparent;
  box-shadow: none;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTIiIGhlaWdodD0iMTIiIHZpZXdCb3g9IjAgMCAxMiAxMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTYgMVYxMSIgc3Ryb2tlPSJibGFjayIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+CjxwYXRoIGQ9Ik0xIDZIMTEiIHN0cm9rZT0iYmxhY2siIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8L3N2Zz4=");
  background-repeat: no-repeat;
  background-position: center center;
  font-size: 0;
  height: 100%;
  width: 26px;
  flex: 0 0 auto;
  border-radius: 0px 30px 30px 0px;
  box-shadow: none;
}
.mobile_footer_tape .addchilliSelect {
  position: relative;
  transition: all 300ms ease-in-out 0s;
}
.mobile_footer_tape a.removeStyle {
  color: #d33315;
}
.mobile_footer_tape .nwaddText h3 {
  font-size: 16px;
  color: #130F26;
  font-weight: 700;
  margin: 0;
}

.floatingCart {
  padding: 15px;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #FFFFFF;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 30px 30px 0 0;
  z-index: 7;
}

.btn.payBtn {
  font-size: 14px;
  line-height: 1.3;
  display: inline-flex;
  padding: 20px;
}
.btn.payBtn> span {
  padding-left: 5px !important;  
}
@media (max-width: 575px) {
    .btn.payBtn> span {
        padding: 0px !important;
    }
}

@media (max-width: 1199px) {
  .cartSlide .mobile_footer_tape .sidebarright {
    transform: translateY(0%);
  }
  .p2pCol {
    padding: 20px 15px;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #FFFFFF;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 20px 20px 0 0;
    z-index: 9999;
  }
  .priceLgText {
    font-size: 22px;
    font-weight: bold;
  }
  html.cartSlide {
    position: relative;
    overflow: hidden;
  }
  html.cartSlide::before {
    content: "";
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    transition: all 300ms ease-in-out 0s;
    background-color: rgba(19, 15, 38, 0.8);
    z-index: 100;
  }
}
/* force flex layout on all cart form‑rows */
.nwCartMain .form-row.align-items-center,
.floatingCart .form-row.align-items-center {
  display: flex !important;
}
/* bold the price spans */
.floatingCart .cartPrice > span,
.nwCartMain .nwaddText h3 {
  font-weight: 600;
}
.nwCartMain .nwaddDetail .form-row {
  display: flex !important;
  gap: 10px;
}
.nwCartMain .payBtn,
.floatingCart .payBtn {
  background-color: var(--primary-theme-color);
  color: white !important;
}
@media (max-width: 575px) {
  #otpVerifyModal .formStyle .form-control {
    margin-left: 0px !important;
    width: 100% !important;
  }
}

