@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap");

:root {
  --baseFont: "Jost", sans-serif;
  --primary: #FF304F;
  --primaryDark: #FF0D31;
  --secondary: #FFBB00;
  --bodyBg: #000;
  --white: #FFFFFF;
  --black: #000;
  --darkBg: #252525;
  --error: #ff5151;
  --fbColor: #1877F2;
  --googleColor: #5F6368;
  --transition: 400ms ease-in-out 0s;
}
/* .modal-content {
  color: var(--bs-modal-color) !important;
  background-color: var(--bs-modal-bg) !important;
} */
body {
  font-size: 20px;
  line-height: 1.6;
  color: var(--white);
  font-family: var(--baseFont);
  background-color: var(--bodyBg);
  font-weight: 300;
}
a, a:hover {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
img {
  max-width: 100%;
}

/* cursor */
.customCursor {
  --normalSize: 10px;
  --spotlightSize: 80px;
  --linkSize: 5px;
  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(--darkBg);
  }

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

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

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

/* components */
.mdContainer {
  max-width: 840px;
  margin-left: auto;
  margin-right: auto;
}
.textPrimary {
  color: var(--primary);
}
.textSecondary {
  color: var(--secondary);
}
.darkBg {
  background-color: var(--darkBg);
}

.xlTitle {
  font-size: 80px;
  line-height: 1.1;
  font-weight: 700;
}
.lgTitle {
  font-size: 48px;
  line-height: 1.1;
  font-weight: 600;
}
.mdTitle {
  font-size: 30px;
  line-height: 1.2;
  font-weight: 500;
}
.smTitle {
  font-size: 22px;
  line-height: 1.2;
  font-weight: 500;
}
.lineSubTitle {
  --lineWd: 120px;
  --lineSpace: 15px;
  position: relative;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
  padding: 0 var(--lineWd);
  display: inline-block;
  font-style: italic;
}
.lineSubTitle > span {
  position: relative;
}
.lineSubTitle > span::before, .lineSubTitle > span::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border-top: 1px solid var(--white);
  width: 0;
  transition: width 1200ms ease-in-out 100ms;
}
.lineSubTitle > span::before {
  right: calc(100% + var(--lineSpace));
}
.aos-animate.lineSubTitle > span::after {
  left: calc(100% + var(--lineSpace));
}
.aos-animate.lineSubTitle > span::before, .aos-animate.lineSubTitle > span::after {
  width: var(--lineWd);
}


.btn {
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 16px 25px;
  min-width: 120px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  column-gap: 10px;
  line-height: 1.2;
  border-width: 1px;
  position: relative;
  overflow: hidden;
}
.btn > span {
  position: relative;
  z-index: 2;
}
.btn::before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: -15%;
	right: 0;
	width: 0;
	height: 106%;
	transform: skew(45deg);
	transition: all 0.4s ease-in-out;
	z-index: 2;
}
.btn:hover::before {
	width: 100%;
	transform: skew(0deg);
	left: 0;
}
.btnPrimary {
  border-color: transparent;
	background-color: var(--primary);
	color: var(--white);
  background: linear-gradient(to right,  var(--primaryDark) 0%,var(--primary) 50%,var(--primaryDark) 100%);
  background-size: 200% auto;
  background-position: left top;
  transition: background-position var(--transition);
}
.btnPrimary::before {
  background-color: var(--darkBg);
}
.btnPrimary:hover {
  background-position: right top;
  color: var(--white);
}
.btnWhiteOutline {
  border-color: var(--white);
  background-color: var(--darkBg);
  color: var(--white);
  transition: background-color var(--transition), color var(--transition), border-color var(--transition);
}
.btnWhiteOutline:hover {
  color: var(--white);
}
.btnWhiteOutline::before {
  background-color: var(--primary);
}
.btnWhiteOutline.fbBtn::before {
  background-color: var(--fbColor);
}
.btnWhiteOutline.googleBtn::before {
  background-color: var(--googleColor);
}
.btnLight {
  border-color: transparent;
	background-color: var(--white);
	color: var(--primary);
}
.btnLight:hover {
	color: var(--white);
  border-color: var(--white);
  background-color: var(--white);
}
.btnLight::before {
  background-color: var(--darkBg);
}
.btnLight.iconBtn::after {
	background-image: url('../images/btn-arrow-primary.svg');
  transition: filter var(--transition);
}
.btnLight.iconBtn:hover::after {
	filter: brightness(10) contrast(10);
}
.iconBtn::after {
	content: "";
	background-image: url('../images/btn-arrow.svg');
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	width: 10px;
	height: 10px;
  display: inline-block;
  position: relative;
  z-index: 2;
}
.btnSvg {
	width: 20px;
	height: auto;
	display: block;
}
.parallaxBg {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.inlineCheckList {
  --iconSpace: 24px;
  --iconSize: 19px;
  --iconPositionX: 0;
  --iconPositionY: 4px;
  display: flex;
  flex-wrap: wrap;
  column-gap: 30px;
  row-gap: 20px;
  line-height: 1.2;
  text-align: left;
}
.inlineCheckList > li {
  position: relative;
  padding-left: var(--iconSpace);
}
.inlineCheckList > li::before {
  content: "";
  position: absolute;
  left: var(--iconPositionX);
  top: var(--iconPositionY);
  width: var(--iconSize);
  height: var(--iconSize);
  background-image: url('../images/primary-circle-check.svg');
  background-repeat: no-repeat;
  background-size: contain;
}

/* 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(--darkBg);
  color: var(--white);
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.menuColMain {
  display: flex;
  justify-content: center;
}
.navItems {
  display: flex;
  column-gap: 40px;
  font-size: 18px;
}
.navItems a {
  font-weight: 500;
  color: var(--white);
  transition: color var(--transition);
}
.navItems a.active, .navItems a:hover {
  color: var(--primary);
}

.headerRightOption {
  display: flex;
  align-items: center;
  column-gap: 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(--white);
  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(--darkBg);
	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;
}



.bannerSection {
  --bannerPd: 60px;
	padding: var(--bannerPd);
	display: flex;
	flex-direction: column;
	justify-content: center;
  position: relative;
}
.bannerSection::before, .bannerStyle2::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--black);
  opacity: 0.8;
}
.bannerStyle2 {
  position: relative;
  padding: 100px 0
}
.bannerInnerCol {
  background-color: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255,255,255,0.2);
  min-height: calc(100vh - calc((var(--bannerPd) * 2) + 100px));
  padding: 60px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.bannerContent {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}
.bContentMaxWd {
  margin-left: auto;
  margin-right: auto;
  max-width: 850px;
}
.bannerBtns {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}



.heroImages{
  position: relative;
  padding: 0 42px 0 80px;
  z-index: 1;
}
.heroImages figure {
  margin: 0;
}
.heroImage,
.heroImage figure{
  display: block;
  border-radius: 999px;
  overflow: hidden;
}
.heroImage img{
  width: 100%;
  aspect-ratio: 1 / 1.58;
  object-fit: cover;
  border-radius: 999px;
}
.heroCircleImg-1, .heroCircleImg-2 {
  --imgSize: 160px;
  --borderSize: 6px;
  --yPosition: 80px;
}
.heroCircleImg-1{
  position: absolute;
  top: var(--yPosition);
  right: 0;
  z-index: 1;
}
.heroCircleImg-2{
  position: absolute;
  bottom: var(--yPosition);
  left: 0;
  z-index: 1;
}
.heroCircleImg-1 figure,
.heroCircleImg-2 figure{
  width: 100%;
  max-width: var(--imgSize);
  border-radius: 50%;
}
.heroCircleImg-1 img,
.heroCircleImg-2 img{
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: var(--borderSize) solid var(--white);
  border-radius: 50%;
}
.imageAnimation {
	position: relative;
	overflow: hidden;
	margin: 0;
}
.imageAnimation:after{
	content: "";
	position: absolute;
  width: 200%;
  height: 0%;
  left: 50%;
  top: 50%;
  background-color: rgba(255,255,255,.3);
  transform: translate(-50%,-50%) rotate(-45deg);
  z-index: 1;
  pointer-events: none;
}
.imageAnimation:hover:after{
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}

.sectionSpace {
  padding: 150px 0;
}
.reservationSection {
  --sideSpace: 100px;
  --lineSpace: calc(var(--sideSpace) / 3);
  position: relative;
  padding: var(--sideSpace);
}
.reservationSection::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--black);
  opacity: 0.7;
}
.reservationSection::after {
  content: "";
  position: absolute;
  left: var(--lineSpace);
  right: var(--lineSpace);
  top: var(--lineSpace);
  bottom: var(--lineSpace);
  background-color: var(--black);
  border: 1px solid var(--white);
  opacity: 0.2;
}
.formStyle {
  font-size: 16px;
}
.formStyle input[type="date"] ~ .inputFieldIcon, .formStyle input[type="time"] ~ .inputFieldIcon {
  background-color: var(--darkBg);
}
.formStyle .form-select, .formStyle .form-control {
	border-radius: 30px;
	padding-top: 12px;
	padding-bottom: 12px;
	padding-left: 20px;
	border-width: 2px;
}
.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);
}


.elementImg {
  position: absolute;
  --el1Size: 158px;
  --el2Size: 220px;
  --el3Size: 430px;
}
.element1 {
  left: -10px;
  bottom: calc(var(--el2Size) * 1.5);
  width: var(--el1Size);
}
.element2 {
  left: 8vw;
  width: var(--el2Size);
  bottom: 20px;
}
.element3 {
  right: -10px;
  width: var(--el3Size);
  top: 0px;
  max-width: 20vw;
}

.aboutInfoSection {
  --marginY: 80px;
  --imgBorderSize: 16px;
  background-color: var(--primary);
  margin-top: calc(var(--marginY) * 2);
  margin-bottom: calc(var(--marginY) * 2);
}
.aboutImgStyle {
	width: 430px;
  margin-top: calc(-1 * var(--marginY));
  margin-bottom: calc(-1 * var(--marginY));
  margin-left: auto;
  margin-right: auto;
}
.aboutImgStyle .imageAnimation {
  height: 100%;
}
.aboutImgStyle img {
	width: 100%;
  height: 100%;
  object-fit: cover;
  border: var(--imgBorderSize) solid var(--darkBg);
  aspect-ratio: 1 / 1.4;
}

.sinceCol {
	text-align: center;
}
.yearText {
	display: block;
	font-size: 70px;
	line-height: 1;
	font-weight: 700;
	padding-bottom: 25px;
	border-bottom: 1px solid;
	max-width: 300px;
	margin: 0 auto 30px;
}
.fromTheMenu {
	text-align: center;
	border: 5px solid var(--white);
	padding: 40px 20px;
}
.fromTheMenu .lineSubTitle {
	--lineWd: 70px;
	--lineSpace: 10px;
}

.suggestionCard {
	--imgBorderSize: 10px;
	display: flex;
	flex-direction: column;
	row-gap: 40px;
	text-align: center;
}
.suggestionImgCol {
  position: relative;
}
.suggestionImgCol::before {
	content: "";
	position: absolute;
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	left: 50%;
	transform: translateX(-50%);
}
.suggestionImgCol img {
	aspect-ratio: 1 / 1.19;
	width: 100%;
}
.suggestionContentCol h4 {
	font-size: 30px;
	font-weight: 500;
	font-style: italic;
	color: var(--secondary);
}
.suggestionContentCol p {
  margin-bottom: 0;
}
.suggestionContentCol > p:not(:first-child) {
	padding-top: 8px;
}


.selectionFilterOptions {
	margin-bottom: 40px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
  column-gap: 40px;
  row-gap: 15px;
}
.filterTrigger {
  --xSpace: 10px;
  --ySpace: 6px;
  font-size: 18px;
  line-height: 1.2;
  transition: color var(--transition);
  font-weight: 500;
  letter-spacing: 1px;
  padding: var(--ySpace) var(--xSpace);
  display: inline-block;
  position: relative;
}
.filterTrigger.active, .filterTrigger:hover {
  color: var(--primary);
}
.filterTrigger:before, .filterTrigger:after {
	position: absolute;
	width: 20px;
	height: 2px;
	background: currentColor;
	content: '';
	opacity: 0.2;
	transition: all 0.3s;
	pointer-events: none;
}
.filterTrigger:before {
	top: 0;
	left: 0;
  transform: rotate(90deg) translateX(calc(50% + var(--ySpace))) translateY(var(--xSpace));
}
.filterTrigger:after {
	right: 0;
	bottom: 0;
  transform: rotate(90deg) translateX(calc(-50% + (-1 * var(--ySpace)))) translateY(calc(-1 * var(--xSpace)));
}
.filterTrigger:hover:before, .filterTrigger:hover:after, .filterTrigger:focus:before, .filterTrigger:focus:after, .filterTrigger.active:before, .filterTrigger.active:after {
	opacity: 1;
}
.filterTrigger:hover:before, .filterTrigger:focus:before, .filterTrigger.active:before {
	left: 50%;
	transform: rotate(0deg) translateX(-50%);
}
.filterTrigger:hover:after, .filterTrigger:focus:after, .filterTrigger.active:after {
	right: 50%;
	transform: rotate(0deg) translateX(50%);
}


.fullImgCol {
	height: 100%;
}
.fullImgCol img.fullImg {
	height: 100%;
  width: 100%;
  object-fit: cover;
}
.infoCard {
  border: 1px solid rgba(255,255,255,.1);
  height: 100%;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.infoCardContent {
  width: 100%;
  max-width: 580px;
  text-align: center;
  display: flex;
  flex-direction: column;
  row-gap: 60px;
}

.simpleList > li + li {
  margin-top: 10px;
}
.icContent > p:last-child {
  margin-bottom: 0;
}

.selectionCard {
  --br: 8px;
	padding: 20px;
	border: 1px solid rgba(255,255,255,0.1);
	background-color: rgba(0,0,0,0.05);
	display: flex;
	flex-direction: column;
	row-gap: 12px;
  position: relative;
  border-radius: var(--br);
  line-height: 1.2;
}
.selectionCard::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: 2;
  pointer-events: none;
  border: 2px solid var(--primary);
  opacity: 0;
  transition: opacity var(--transition);
  box-shadow: 0 0 30px var(--primary);
  border-radius: var(--br);
}
.selectionCard:hover::before {
  opacity: 0.1;
}
.selectionCard > p:last-child {
	margin-bottom: 0;
}
.dishName {
  color: var(--primary);
  font-weight: 500;
  font-style: italic;
}
.dishPrice {
  font-weight: 700;
}
.blankLink {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.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);
}
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%);
}

/****** Common css Start ******/
.arrowLink {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 1px;
  position: relative;
  padding-bottom: 2px;
}
.arrowLink:after {
  content: "";
  background-image: url('../images/btn-arrow-primary.svg');
  width: 10px;
  height: 12px;
  background-size: 100%;
  background-repeat: no-repeat;
}
.arrowLink:hover {
  color: var(--primary);
}
.arrowLink::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;
}
.arrowLink:hover::before {
  transform: scaleX(1);
  transform-origin: bottom left;
}
.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;
}

.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;
}
/****** Gallery css Start ******/
.wAuto {
  width: auto !important;
}
.easeLinear {
  transition-timing-function: linear !important;
}
.galleryImg > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.galleryVariable {
  --gImgSize: 314px;
  --gImgGap: 15px;
}
.galleryMd {
  width: var(--gImgSize);
  height: var(--gImgSize);
}
.galleryLg {
  width: calc(var(--gImgSize) * 2);
  height: calc(var(--gImgSize) * 2 + var(--gImgGap));
}
.thumbCol {
  display: flex;
  flex-direction: column;
  gap: var(--gImgGap);
}
/****** Footer css Start ******/
.footerColMain {
  padding-bottom: 100px;
}
.footerTop p,
.footerTop ul li {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.8;
}
.footerTop ul li span {
  font-weight: 500;
}
.addressCol {
  border-left: 1px solid rgba(255,255,255,0.2);
  border-right: 1px solid rgba(255,255,255,0.2);
}
.footerBtm {
  margin-top: 75px;
}
.footerLogo {
  position: relative;
}
.footerLogo:before {
  content: "";
  background-color: var(--white);
  position: absolute;
  height: 1px;
  left: 0;
  right: 0;
  top: 50%;
  -webkit-transform: translate(0,-50%);
  -moz-transform: translate(0,-50%);
  transform: translate(0,-50%);
  z-index: 1;
}
.footerCopyright {
  margin-top: 50px;
}
.footerLogo span {
  padding: 0 40px;
  background-color: var(--bodyBg);
  display: inline-block;
  position: relative;
  z-index: 2;
}
.copyrightCol {
  font-size: 16px;
  font-weight: 300;
}
.socialMenu ul li + li {
  margin-left: 20px;
}
.socialMenu a {
  transition: opacity var(--transition);
}
.socialMenu a:hover {
	opacity: 0.5;
}



/* login modal */
.modalNewstyle {
  --xSpace: 30px;
  --ySpace: 30px;
}
.modalNewstyle .modal-body,
.modalNewstyle .modal-header {
  padding: var(--ySpace) var(--xSpace);
  position: relative;
}
.modalNewstyle .modal-header {
	flex-direction: column;
	row-gap: 10px;
}
.modalNewstyle .modal-header + .modal-body {
  padding-top: 10px;
  padding-bottom: calc(var(--ySpace) + 10px);
}
.modalNewstyle .modal-content {
  background-color: var(--darkBg);
}
.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: #c1c5d0;
  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.5;
}
.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%;
}



/******* 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 (min-width:992px) {
  .suggestionCard:nth-child(3n+2) .suggestionImgCol {
    order: 2;
  }
  .suggestionCard:nth-child(3n+2) .suggestionImgCol img {
    border-top: var(--imgBorderSize) solid var(--primary);
  }
  .suggestionCard:not(:nth-child(3n+2)) .suggestionImgCol img {
    border-bottom: var(--imgBorderSize) solid var(--primary);
  }
  .suggestionCard:nth-child(3n+2) .suggestionImgCol::before {
    bottom: 100%;	
    border-bottom: 12px solid var(--primary);
  }
  .suggestionCard:not(:nth-child(3n+2)) .suggestionImgCol::before {
    top: 100%;	
    border-top: 12px solid var(--primary);
  }
  .infoCardContent {
    row-gap: 40px;
  }
  .container.lgFullContainer {
    max-width: 100%;
  }
}

@media (max-width: 1399px) {
  .xlTitle {
    font-size: 64px;
  }
  .lgTitle {
    font-size: 36px;
  }
  .mdTitle {
    font-size: 26px;
  }
  .smTitle {
    font-size: 20px;
  }

  .logo {
    max-width: 160px;
  }
  .navItems {
    column-gap: 30px;
    font-size: 16px;
  }
  .headerRightOption {
    column-gap: 12px;
  }
  .btn {
    letter-spacing: 0.5px;
    padding: 14px 20px;
    min-width: 110px;
    column-gap: 5px;
  }
  .selectionCard {
    padding: 15px;
  }
}

@media (max-width: 1199px) {
  body {
    font-size: 18px;
  }
  .xlTitle {
    font-size: 54px;
  }
  .lgTitle {
    font-size: 32px;
  }
  .mdTitle {
    font-size: 24px;
  }
  .smTitle {
    font-size: 18px;
  }
  .bContentMaxWd {
    max-width: 700px;
  }
  .heroImages {
    max-width: 410px;
    margin: 0 auto;
    padding: 0 40px 0 40px;
  }
  .logo {
    max-width: 140px;
  }
  .reservationSection {
    --sideSpace: 60px;
  }
  .heroCircleImg-1, .heroCircleImg-2 {
    --imgSize: 110px;
    --borderSize: 3px;
    --yPosition: 60px;
  }
  .sectionSpace {
    padding: 100px 0;
  }
  .elementImg {
    opacity: 0.2;
  }
  .element2 {
    bottom: -90px;
  }
  .mdContainer {
    max-width: 700px;
  }
  .aboutInfoSection {
    --marginY: 60px;
    --imgBorderSize: 10px;
    margin-top: var(--marginY);
    margin-bottom: 0;
    padding-bottom: 80px;
  }
  .aboutImgStyle {
    width: 380px;
    margin-bottom: 30px;
  }
  .aboutImgStyle img {
    aspect-ratio: 1 / 1.2;
  }
  .suggestionContentCol h4 {
    font-size: 24px;
  }
  .infoCardContent {
    row-gap: 20px;
  }
  .galleryVariable {
    --gImgSize: 280px;
  }
}

@media (max-width: 991px) {
  .menuColMain {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: 280px;
    z-index: 99;
    background-color: var(--darkBg);
    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 a {
    display: block;
    padding: 10px 0;
  }
  .navItems > li + li {
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  header.headerSection {
    padding: 12px 0;
  }
  .xlTitle {
    font-size: 44px;
  }
  .mdTitle {
    font-size: 22px;
  }
  .bannerInnerCol {
    min-height: initial;
  }
  .bannerStyle2 {
    padding: 60px 0;
  }
  .parallaxBg {
    background-position: center top !important;
    background-size: cover !important;
    background-attachment: initial !important;
  }
  .lineSubTitle {
    --lineWd: 80px;
    --lineSpace: 10px;
  }

  .aboutImgStyle {
    width: 320px;
    max-width: 100%;
  }
  .yearText {
    font-size: 50px;
    padding-bottom: 20px;
    max-width: 200px;
  }
  .suggestionCard {
    --imgBorderSize: 5px;
    row-gap: 20px;
  }
  .suggestionImgCol img {
    border-bottom: var(--imgBorderSize) solid var(--primary);
  }
  .suggestionImgCol::before {
    top: calc(100% - 2px);	
    border-top: 10px solid var(--primary);
  }

  .addressCol {
    border: 0;
  }

  .selectionFilterOptions {
    overflow-x: auto;
    overflow-y: hidden;
    flex-wrap: nowrap;
    white-space: nowrap;
    margin-bottom: 30px;
    justify-content: flex-start;
    padding-bottom: 10px;
    column-gap: 30px;
  }
  a.socialBtn {
    font-size: 16px;
  }
  .socialBtn span.btnIcon + span {
    padding: 0 30px 0 12px;
  }
  .socialBtn span.btnIcon {
    --iconSize: 44px;
  }
  .galleryVariable {
    --gImgSize: 220px;
  }
}

@media (max-width:767px) {
  .bannerSection {
    --bannerPd: 30px;
  }
  .xlTitle {
    font-size: 34px;
  }
  .lgTitle {
    font-size: 26px;
  }
  .sectionSpace {
    padding: 80px 0;
  }
  .sinceCol {
    margin-bottom: 40px;
  }

  .copyrightCol {
    margin-top: 15px;
  }
  .footerLogo span {
    padding: 0 15px;
  }
  .footerLogo svg {
    max-width: 180px;
  }
  .fromTheMenu {
    border: 2px solid var(--white);
  }
  .galleryVariable {
    --gImgSize: 180px;
  }
  .modalNewstyle {
    --xSpace: 15px;
    --ySpace: 20px;
  }
}


@media (max-width:575px) {
  .bannerSection {
    padding: 40px 15px;
  }
  .reservationSection {
    --sideSpace: 30px;
    padding: 50px var(--sideSpace);
  }
  .lineSubTitle {
    --lineWd: 40px;
    --lineSpace: 8px;
  }
  .xlTitle {
    font-size: 30px;
  }
  .mdTitle {
    font-size: 20px;
  }
  .bannerInnerCol {
    padding: 40px 10px;
  }
  .btn {
    letter-spacing: 0.1px;
    padding: 14px 18px;
    min-width: 100px;
  }
  .bannerBtns {
    gap: 10px;
  }
  .heroCircleImg-1, .heroCircleImg-2 {
    --imgSize: 90px;
    --borderSize: 2px;
    --yPosition: 30px;
  }
  .heroImages {
    max-width: 390px;
    padding: 0 20px 0 20px;
  }
  .sectionSpace {
    padding: 60px 0;
  }
  .reservationSection {
    --sideSpace: 20px;
  }
  .galleryVariable {
    --gImgSize: 120px;
    --gImgGap: 10px;
  }
  .formStyle .form-select, .formStyle .form-control {
    padding-left: 15px;
  }
}

@media (max-width:360px) {
  .bannerSection {
    padding: 40px 10px;
  }
  .xlTitle {
    font-size: 28px;
  }
  .bannerBtns .btn {
    padding: 10px 12px;
    min-width: 80px;
    font-size: 13px;
  }
  .reservationSection {
    --sideSpace: 12px;
  }
  .galleryVariable {
    --gImgSize: 100px;
  }
  .infoCard {
    padding: 30px 15px;
  }
  .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;
  }
}

/* ——— Restore your template’s dark modal look ——— */
.modal {
  /* override Bootstrap’s defaults on the modal container */
  --bs-modal-bg:    #212529 !important;  /* dark gray background */
  --bs-modal-color: #dee2e6 !important;  /* light gray text */
}

.modal-content {
  /* ensure modal-content picks up the new variables */
  background-color: var(--bs-modal-bg) !important;
  color:            var(--bs-modal-color) !important;
}

/* 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;
}

@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;
}