@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap');
@font-face {
  font-family: 'Be Vietnam';
  src: url('../fonts/BeVietnam-Regular.eot');
  src: url('../fonts/BeVietnam-Regular.eot?#iefix') format('embedded-opentype'),
    url('../fonts/BeVietnam-Regular.woff2') format('woff2'),
    url('../fonts/BeVietnam-Regular.woff') format('woff'),
    url('../fonts/BeVietnam-Regular.ttf') format('truetype'),
    url('../fonts/BeVietnam-Regular.svg#BeVietnam-Regular') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Be Vietnam';
  src: url('../fonts/BeVietnam-Medium.eot');
  src: url('../fonts/BeVietnam-Medium.eot?#iefix') format('embedded-opentype'),
    url('../fonts/BeVietnam-Medium.woff2') format('woff2'),
    url('../fonts/BeVietnam-Medium.woff') format('woff'),
    url('../fonts/BeVietnam-Medium.ttf') format('truetype'),
    url('../fonts/BeVietnam-Medium.svg#BeVietnam-Medium') format('svg');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Be Vietnam';
  src: url('../fonts/BeVietnam-SemiBold.eot');
  src: url('../fonts/BeVietnam-SemiBold.eot?#iefix') format('embedded-opentype'),
    url('../fonts/BeVietnam-SemiBold.woff2') format('woff2'),
    url('../fonts/BeVietnam-SemiBold.woff') format('woff'),
    url('../fonts/BeVietnam-SemiBold.ttf') format('truetype'),
    url('../fonts/BeVietnam-SemiBold.svg#BeVietnam-SemiBold') format('svg');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Be Vietnam';
  src: url('../fonts/BeVietnam-Bold.eot');
  src: url('../fonts/BeVietnam-Bold.eot?#iefix') format('embedded-opentype'),
    url('../fonts/BeVietnam-Bold.woff2') format('woff2'),
    url('../fonts/BeVietnam-Bold.woff') format('woff'),
    url('../fonts/BeVietnam-Bold.ttf') format('truetype'),
    url('../fonts/BeVietnam-Bold.svg#BeVietnam-Bold') format('svg');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Be Vietnam';
  src: url('../fonts/BeVietnam-ExtraBold.eot');
  src: url('../fonts/BeVietnam-ExtraBold.eot?#iefix') format('embedded-opentype'),
    url('../fonts/BeVietnam-ExtraBold.woff2') format('woff2'),
    url('../fonts/BeVietnam-ExtraBold.woff') format('woff'),
    url('../fonts/BeVietnam-ExtraBold.ttf') format('truetype'),
    url('../fonts/BeVietnam-ExtraBold.svg#BeVietnam-ExtraBold') format('svg');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

:root {
  --baseFont: 'Be Vietnam';
  --subTitleFont: "Great Vibes", cursive;
  --headerBg: #253622;
  --primary: #0D2009;
  --secondary: #EEC926;
  --secondary-rgba: 238, 201, 38;
  --white: #FFFFFF;
  --dark: #050403;
  --gray: #D9D9D9;
  --darkBg: #050403;
  --primaryBg: #0D2009;
  --primaryLightBg: #FDFAE9;
  --secondaryBg: #EEC926;
  --secondaryLightBg: #FBF3CC;
  --error: #ff5151;
  --fbColor: #1877F2;
  --googleColor: #5F6368;
  --transition: 400ms ease-in-out 0s;
}
body {
  font-size: 18px;
  line-height: 1.7;
  color: var(--dark);
  font-weight: normal;
  font-family: var(--baseFont);
}
a, a:hover {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
img, svg {
  max-width: 100%;
}

/* custom */
.sectionSpace {
  padding: 150px 0;
}
.white {
  color: var(--white);
}
.secondaryColor {
  color: var(--secondary);
}
.primaryBg {
  background-color: var(--primaryBg);
}
.primaryLightBg {
  background-color: var(--primaryLightBg);
}
.secondaryBg {
  background-color: var(--secondaryBg);
}
.darkBg {
  background-color: var(--darkBg);
}
.xlTitle {
	font-size: 70px;
	line-height: 1.2;
  font-weight: 800;
  text-transform: capitalize;
}
.lgTitle {
	font-size: 42px;
	line-height: 1.2;
  font-weight: 800;
  text-transform: capitalize;
}
.mdTitle {
	font-size: 36px;
	line-height: 1.2;
  font-weight: 800;
}
.smTitle {
	font-size: 26px;
	line-height: 1.2;
  font-weight: 700;
}
.subTitle {
  font-size: 40px;
  font-family: var(--subTitleFont);
  text-transform: capitalize;
  letter-spacing: 3px;
}
.pText {
  font-size: 14px;
}
.centerTitle {
  margin: 0 auto;
  max-width: 1020px;
  text-align: center;
}

/* custom */

/* btn */
.btn {
  font-size: 16px;
  font-weight: 500;
  padding: 14px 30px;
  border-radius: 50px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  column-gap: 15px;
  border: 0;
}
.btnSecondary {
  background-color: var(--secondary);
  color: var(--white);
}
.btnSecondary:hover {
  background-color: var(--darkBg);
  color: var(--white);
}
.btnLight {
  background-color: var(--white);
  color: var(--dark);
}
.btnLight:hover {
  background-color: var(--primaryLightBg);
  color: var(--dark);
}
.btn-check:checked+.btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check)+.btn:active {
  background-color: var(--white);
  color: var(--dark);
}
@keyframes arrow-move-up {
  0% {
    opacity: 1;
    transform: translateX(0px) translateY(0px) scale(1);
  }
  25% {
    opacity: 0;
    transform: translateX(10px) translateY(-10px) scale(0.9);
  }
  26% {
    opacity: 0;
    transform: translateX(-10px) translateY(10px) scale(0.9);
  }
  55% {
    opacity: 1;
    transform: translateX(0px) translateY(0px) scale(1);
  }
}
.btn:hover .btnArrow {
  animation: arrow-move-up 1s forwards;
}


/* Modal */
/* 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(--black);
}
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: #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%;
}
.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%;
}
/* form style */
.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 {
  font-size: 16px;
}
.formStyle .rightIconFld .form-control {
	padding-right: 50px;
}
.formStyle .form-select, .formStyle .form-control {
  border-radius: 30px;
  padding-top: 12px;
  padding-bottom: 12px;
  padding-left: 20px;
  border-width: 2px;
}
.formStyle .rightIconFld .form-control.reservationField {
	padding-right: 15px;
}
input[type="date"]::-webkit-calendar-picker-indicator {
  opacity: 0;
  width: 0;
  height: 0;
  padding: 0;
  margin: 0;
  -webkit-appearance: none;
}
input[type="date"]::-moz-calendar-picker-indicator {
  display: none;
  pointer-events: none;
}
form.formStyle[data-bs-theme=dark] .form-control, form.formStyle[data-bs-theme=dark] .form-select,
form.reservationForm .form-control, form.reservationForm .form-select {
  background-color: transparent;
  border-color: rgba(255,255,255,0.4);
  color: var(--white);
}
form.reservationForm .form-select option {
  background-color: var(--dark);
  color: var(--white);
}

/* 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;
}
/* Opening Hour */
.titleLbl {
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 700;
}
.openingHourModalContent {
  display: flex;
  flex-direction: column;
  row-gap: 24px;
  font-size: 14px;
}
.simpleList > li + li {
	margin-top: 8px;
}

/* btn */
.btnStyle {
  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;
  border-color: var(--black);
  background-color: var(--bodyBg);
  color: var(--black);
  border: 1px solid;
  transition: background-color var(--transition), color var(--transition), border-color var(--transition);
}
.btnStyle > span {
  position: relative;
  z-index: 2;
}
.btnStyle::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;
}
.btnStyle:hover::before {
	width: 100%;
	transform: skew(0deg);
	left: 0;
}
.btnStyle:hover {
  color: var(--white);
}
.btnWhiteOutline::before {
  background-color: var(--primary);
}
.btnWhiteOutline.fbBtn::before {
  background-color: var(--fbColor);
}
.btnWhiteOutline.fbBtn:hover {
	border-color: var(--fbColor);
}
.btnWhiteOutline.googleBtn::before {
  background-color: var(--googleColor);
}
.btnWhiteOutline.googleBtn:hover {
  border-color: var(--googleColor);
}
.btnPrimary {
  border-color: transparent;
  color: var(--white);
  background-color: var(--primary);
  transition: background-position var(--transition);
}
.btnPrimary:hover {
  color: var(--black);
}
/* btn.btnPrimary: used in OTP modal (Bootstrap .btn base, no .btnStyle overlay).
   Higher specificity overrides the .btnPrimary:hover color above.
   Transparent border in default prevents layout shift on hover. */
.btn.btnPrimary {
  border: 2px solid transparent !important;
}
.btn.btnPrimary:hover,
.btn.btnPrimary:focus {
  border-color: var(--primary) !important;
  background-color: transparent;
  color: var(--primary);
}
.btnPrimary::before {
  background-color: var(--white);
}
/* Dark outline button (Resend Code in OTP modal etc.) */
.btnDarkOutline {
  border: 2px solid var(--dark) !important;
  background-color: transparent;
  color: var(--dark);
  transition: background-color var(--transition), color var(--transition);
}
.btnDarkOutline:hover,
.btnDarkOutline:focus {
  background-color: var(--dark);
  color: var(--white);
}
/* Modal */

/* Header */

/* hamburger */
.nav-toggler .hidden-bar-opener {
  width: 50px;
  height: 50px;
  background-color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 8px;
}
.hamburger {
  display: flex;
  align-self: center;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  cursor: pointer;
}
.hamburger span {
  height: 2px;
  width: 83.33333333%;
  background: var(--white);
  transition: all 400ms ease-in-out;
  margin-left: auto;
}
.hamburger .meat {
  width: 100%;
  transition: all 200ms ease-in-out;
}
.hamburger .bottom-bun {
  width: 58.33333333%;
  transition: all 100ms ease-in-out;
}
.hamburger:hover span {
  width: 100%;
}
html:not(.body-menu-opened) .hamburger .top-bun {
  -webkit-animation: burger-hover 1s infinite ease-in-out alternate forwards 200ms;
  animation: burger-hover 1s infinite ease-in-out alternate forwards 200ms;
}
html:not(.body-menu-opened) .hamburger .meat {
  -webkit-animation: burger-hover 1s infinite ease-in-out alternate forwards 400ms;
  animation: burger-hover 1s infinite ease-in-out alternate forwards 400ms;
}
html:not(.body-menu-opened) .hamburger .bottom-bun {
  -webkit-animation: burger-hover 1s infinite ease-in-out alternate forwards 600ms;
  animation: burger-hover 1s infinite ease-in-out alternate forwards 600ms;
}
@-webkit-keyframes burger-hover {
  0% {
    width: 100%;
  }
  50% {
    width: 50%;
  }
  100% {
    width: 100%;
  }
}
@keyframes burger-hover {
  0% {
    width: 100%;
  }
  50% {
    width: 50%;
  }
  100% {
    width: 100%;
  }
}
/* hamburger */

.headerSection {
  position: absolute;
  z-index: 99;
  top: 0;
  left: 0;
  right: 0;
}
@media (max-width: 991px) {
  .headerSection {
    position: fixed;
  }
}
@media (min-width: 992px) {
  .headerSection .headerStickey {
    margin-top: 20px;
    -moz-transition: margin-top 800ms ease-in-out 0s;
    -o-transition: margin-top 800ms ease-in-out 0s;
    -webkit-transition: margin-top 800ms ease-in-out 0s;
    transition: margin-top 800ms ease-in-out 0s;
  }
  .headerSection .headerStickey.isSticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    animation: 0.95s ease-in-out 0s normal none 1 running headerAnimation;
    z-index: 9;
    -moz-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
    -o-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
    -webkit-transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
    background-color: var(--headerBg);
    margin-top: 0;
  }
}
@media (max-width: 991px) {
  .headerSection .headerStickey {
    background-color: var(--headerBg);
  }
}

@keyframes headerAnimation {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.headerCol {
  background-color: var(--headerBg);
  padding: 20px 40px;
  border-radius: 50px;
}
@media (max-width: 991px) {
  .headerCol {
    padding: 20px 0px;
  }
}
.menuColMain {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  width: 370px;
  color: var(--white);
  background-color: var(--primary);
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2);
  transition: transform var(--transition);
  transform: translateX(-200%);
  padding: 85px 20px 50px;
  overflow-y: auto;
  z-index: 99;
}
.actNav .menuColMain {
  transform: translateX(0);
}
.menuBackDrop {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: var(--transition);
  z-index: 9;
  background-color: rgba(0, 0, 0, 0.8);
}
.actNav .menuBackDrop {
  opacity: 1;
  visibility: visible;
  pointer-events: initial;
  opacity: 0.9;
}
.closeIcon {
  border: 1px solid var(--white);
  border-radius: 50%;
  color: var(--white);
  cursor: pointer;
  height: 30px;
  line-height: 24px;
  position: absolute;
  right: 30px;
  text-align: center;
  top: 30px;
  width: 30px;
  padding: 8px;
  transition: var(--transition);
}
.closeIcon:hover {
  border-color: var(--secondary);
  color: var(--secondary);
}
.closeIcon > svg {
  width: 100%;
  height: 100%;
  display: block;
}
.logo svg, .sidebarLogo svg {
  max-width: 100%;
  height: auto;
}
.sidebarLogo {
  margin-bottom: 40px;
  text-align: center;
}
.sidebarLogo a {
  display: inline-block;
  max-width: 160px;
}
.logo {
  --logo-height: 50px;
  height: var(--logo-height);
  max-width: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.logo > a > img, .logo > a > svg {
  max-width: 100%;
  object-fit: contain;
  max-height: var(--logo-height);
}
.navItems {
  border-top: 1px solid rgba(255,255,255,0.2);
  position: relative;
}
.navItems li {
  border-bottom: 1px solid rgba(255,255,255,0.2);
  display: block;
  position: relative;
}
.navItems a {
  color: var(--white);
  display: block;
  font-size: 16px;
  font-weight: 300;
  padding-bottom: 12px;
  padding-top: 12px;
  position: relative;
  transition: all .3s ease;
  -moz-transition: all .3s ease;
  -webkit-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
}
.navItems a.active, .navItems a:hover {
  color: var(--secondary);
}
.headerRightOption {
  display: flex;
  align-items: center;
  column-gap: 15px;
  justify-content: end;
}
.hrLinksCol {
  width: 50px;
  height: 50px;
  position: relative;
  border: 1px solid var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  transition: var(--transition);
}
.hrLinksCol::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: var(--white);
  border-radius: 50%;
  transform: scale(0);
  transition: var(--transition);
}
.hrLinksCol:hover::before {
  transform: scale(1);
}
.hrLinksCol svg {
  display: block;
  position: relative;
  color: var(--white);
  transition: var(--transition);
}
.hrLinksCol:hover svg {
  color: var(--dark);
}
.cartCount {
  color: var(--dark);
  background-color: var(--white);
  font-size: 10px;
  padding: 2px;
  position: absolute;
  top: 8px;
  right: 8px;
  line-height: 1;
  border-radius: 10px;
  min-width: 14px;
  text-align: center;
  font-weight: 600;
  border: 1px solid var(--dark);
}
/* userLogin dropdown */
.userLogin {
  position: relative;
}
.userLogin .dropMenu {
  position: absolute;
  top: 100%;
  right: 0;
  background: var(--darkBg);
  box-shadow: 0px 0px 7px rgba(0, 0, 0, 0.9);
  width: 210px;
  text-align: left;
  display: none;
  z-index: 999;
  padding: 6px 0;
  border-radius: 8px;
}
.userLogin > a {
  padding: 8px 28px 8px 0;
  display: flex;
  align-items: center;
  column-gap: 6px;
  position: relative;
  color: var(--white);
}
.userLogin > a::after {
  content: "";
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath fill='%23ffffff' 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: 15px;
  font-weight: 500;
  white-space: nowrap;
}
.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.05);
  padding-left: 20px;
}
/* Header */

/* Banner */ 
.bannerSection {
  --topSpace: 112px;
  --bannerWidth: 60%;
  background-color: var(--primaryBg);
  padding-top: var(--topSpace);
  position: relative;
}
.bannerSection::before {
  content: "";
  position: absolute;
  top: var(--topSpace);
  bottom: 0;
  right: 0;
  background-image: var(--bannerBg, url(../images/banner-img.webp));
  background-repeat: no-repeat;
  background-size: cover;
  width: var(--bannerWidth);
  -webkit-clip-path: inset(0 0 0 100%);
  clip-path: inset(0 0 0 100% );
  transition: -webkit-clip-path .8s cubic-bezier(.45, .05, .15, .93);
  transition: clip-path .8s cubic-bezier(.45, .05, .15, .93);
  transition: clip-path .8s cubic-bezier(.45, .05, .15, .93), -webkit-clip-path .8s cubic-bezier(.45, .05, .15, .93);
}
.bannerSection.aos-animate::before {
  -webkit-clip-path: inset(0 0 0 0);
  clip-path: inset(0 0 0 0);
}
.bannerSection::after {
  content: "";
  position: absolute;
  top: var(--topSpace);
  bottom: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.4);
  width: var(--bannerWidth);
  -webkit-clip-path: inset(0 0 0 100%);
  clip-path: inset(0 0 0 100% );
  transition: -webkit-clip-path .8s cubic-bezier(.45, .05, .15, .93);
  transition: clip-path .8s cubic-bezier(.45, .05, .15, .93);
  transition: clip-path .8s cubic-bezier(.45, .05, .15, .93), -webkit-clip-path .8s cubic-bezier(.45, .05, .15, .93);
}
.bannerSection.aos-animate::after {
  -webkit-clip-path: inset(0 0 0 0);
  clip-path: inset(0 0 0 0);
}
.bannerInner {
  max-width: 760px;
  padding: 220px 0;
  position: relative;
  z-index: 1;
  color: var(--white);
}
.bannerInner h3 {
  animation: fadeInLeft 2s ease-in-out;
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
  }
}
.bannerInner h1 {
  animation: fadeInRight 2s ease-in-out;
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
  }
}
.bannerInner h1.xlTitle {
  padding-bottom: 10px;
}
.bannerBtns {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 40px;
}
/*rt */
.socialLinks {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 50px;
}
.socialLinks {
  left: 14px;
}
.rtStar {
  max-width: 20px;
}
.rt-text {
  writing-mode: sideways-lr;
  text-orientation: mixed;
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 18px;
  font-family: inherit;
  animation: fadeInUp 1s;
  text-transform: uppercase;
}
.rt-text > span {
  transform: rotate(180deg);
  display: block;
}
.rt-line {
  width: 2px;
  height: 40px;
  background: var(--white);
  margin-bottom: 10px;
  animation: growLine 1.2s;
}
.socialIcons {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.socialIcons > a, .socialIcons > a > svg {
  transition: var(--transition);
  color: var(--white);
}
.socialIcons > a:hover > svg {
  color: var(--secondary);
}
@keyframes growLine {
  0% { height: 0; }
  100% { height: 60px; }
}
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(20px);}
  100% { opacity: 1; transform: translateY(0);}
}
.reservationIcon > a {
  width: 33px;
  height: 33px;
  display: block;
  border-radius: 50%;
  animation: pulse-dot 1.25s cubic-bezier(0.455, 0.03, 0.515, 0.955) -.4s infinite;
}
@keyframes pulse-dot {
  0% {
    transform: scale(.9);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(.9);
  }
}
/*rt*/

/* Banner */ 

/* secure */
.secureSection {
  padding: 60px 0;
}
/* secure */

/* About */
.aboutContent {
  max-width: 600px;
}
.aboutDt {
  display: flex;
  flex-wrap: wrap;
  margin-top: 40px;
  row-gap: 20px;
}
.aboutDt > li {
  display: flex;
  align-items: center;
  flex-direction: column;
  max-width: 130px;
  text-align: center;
  margin: 0 auto;
  padding: 0 15px;
  position: relative;
  height: 100%;
  min-height: 95px;
}
.aboutDt > li + li::before {
  content: "";
  position: absolute;
  left: -15px;
  top: 0;
  bottom: 0;
  width: 1px;
  background-color: var(--gray);
}
.aboutDtText {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  margin-top: 5px;
}

:root{
  --stroke: 2px;
  --t: 1s;
  --ease: cubic-bezier(.22,.61,.36,1);
}
.aboutImg {
  position: relative;
  margin-left: 50px;
}
.main-img {
  display: block;
  width: 100%;
  object-fit: cover;
  height: 100%;
}
.frame {
  position: absolute;
  z-index: -1;
  left: 65px;
  top: -40px;
  bottom: 65px;
  right: -40px;
}
.line{
  position: absolute;
  background: var(--dark);
  opacity: 1;
}
.line.top{
  top: 0;
  left: 0;
  height: var(--stroke);
  width: 100%;
  transform-origin: left center;
  transform: scaleX(0);
  animation: drawX var(--t) var(--ease) forwards 0s;
}
.line.right{
  top: 0;
  right: 0;
  width: var(--stroke);
  height: 100%;
  transform-origin: center top;
  transform: scaleY(0);
  animation: drawY var(--t) var(--ease) forwards calc(var(--t));
}
.line.bottom{
  bottom: 0;
  right: 0;
  height: var(--stroke);
  width: 100%;
  transform-origin: right center;
  transform: scaleX(0);
  animation: drawX var(--t) var(--ease) forwards calc(var(--t) * 2);
}
.line.left{
  bottom: 0;
  left: 0;
  width: var(--stroke);
  height: 100%;
  transform-origin: center bottom;
  transform: scaleY(0);
  animation: drawY var(--t) var(--ease) forwards calc(var(--t) * 3);
}
@keyframes drawX { to { transform:scaleX(1); } }
@keyframes drawY { to { transform:scaleY(1); } }

/* leaf pop-in */
.leaf {
  position: absolute;
  top: -70px;
  left: -90px;
  transform-origin: center;
  transform: scale(0);
  animation: leafIn .6s var(--ease) forwards calc(var(--t) * 3 + .1s);
}
@keyframes leafIn{
  0%{ transform:scale(0); filter:blur(1px); }
  80%{ transform:scale(1.05); }
  100%{ transform:scale(1); filter:blur(0); }
}

/* chef-suggest */
.chefImgLeft {
  height: 100%;
  position: relative;
  overflow: hidden;
}
.chefImgLeft::before, .chefImgLeft::after {
    content: " ";
    height: 0px;
    position: absolute;
    width: 0px;
    transform: rotate(180deg);
    background: none 0px 0px repeat scroll rgba(219, 219, 219, 0.2);
    padding: 0px;
    transition: 0.8s;
}
.chefImgLeft::before {
    left: 0px;
    top: 0px;
}
.chefImgLeft::after {
    bottom: 0px;
    right: 0px;
}

.chefImgLeft:hover::before, 
.chefImgLeft:hover::after {
    height: 100%;
    width: 100%;
    transform: rotate(0deg);
}


.chefImgLeft img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  position: absolute;
  object-position: center;
}
.chefContentMain {
  --imgSize: 480px;
  height: 100%;
}
.chefImgCol {
  min-height: var(--imgSize);
  position: relative;
  overflow: hidden;
}
.chefImgCol img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  position: absolute;
  object-position: center;
}
.chefContent {
  padding: 55px;
  text-align: center;
  height: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
.chefContent .btnCol {
  padding-top: 40px;
}
.chefImgCaption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 40px 20px 18px;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 100%);
  color: var(--white);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
}
/* chef-suggest */

/* chef dish grid */
.chefDishCard { position: relative; overflow: hidden; }
.chefDishStack { display: flex; flex-direction: column; }
.chefDishStack .chefDishCard { flex: 1; }
.chefDishImg { overflow: hidden; }
.chefDishImg img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}
.chefDishCard:hover .chefDishImg img { transform: scale(1.06); }
.chefDishCaption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.45) 55%, transparent 100%);
  padding: 60px 24px 28px;
  display: flex; flex-direction: column; gap: 5px;
}
.chefDishName {
  font-size: 22px; font-weight: 600; color: var(--white);
  text-decoration: none; line-height: 1.3; display: block;
}
.chefDishName:hover { color: var(--secondary); }
.chefDishPrice { font-size: 17px; color: var(--secondary); font-weight: 600; }

/* chef dish grid */

/* specail-offer */
.selectionCardCol {
  padding: 20px;
  border: 1px solid rgba(0,0,0,0.1);
  background-color: transparent;
  transition: var(--transition);
}
.selectionCardCol.active, .selectionCardCol:hover {
  background-color: var(--secondaryLightBg);
}
.selectionCardCol > p {
  font-style: italic;
  font-size: 16px;
  padding-bottom: 10px;
}
.selectionCard {
  --fontSize: 18px;
  display: flex;
  flex-direction: column;
  row-gap: 12px;
  position: relative;
  line-height: 1.2;
  padding: 10px 0;
  margin-top: 10px;
}
.specialOfferInner {
  margin-top: 80px;
  padding: 40px;
}
.blankLink {
  position: absolute;
  inset: 0;
  z-index: 2;
}
.dishName {
  color: var(--dark);
  font-weight: 600;
  font-size: var(--fontSize);
}
.dishPrice {
  font-weight: 600;
  font-size: var(--fontSize);
}
.selectionCard > p {
  font-size: 14px;
}
.selectionCard > p:last-child {
  margin-bottom: 0;
}
.selectionCardCol + .selectionCardCol {
  margin-top: 35px;
}
/* specail-offer */

/* Testimonial */
.reviewSliderCol {
  padding: 130px 0;
  max-width: 920px;
}
.reviewCard {
  position: relative;
  display: flex;
  flex-direction: column;
  padding-bottom: 100px;
  align-items: start;
}
.reviewCard > h2 {
  font-size: 42px;
  font-weight: 700;
  margin: 50px 0 30px;
}
.reviewCard p {
  font-size: 18px;
  line-height: 1.7;
}
.reviewContent {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}
.reviewImgCol {
  text-align: center;
  --imgSize: 80px;
}
.reviewImgCol > img {
  width: var(--imgSize);
  height: var(--imgSize);
  object-fit: cover;
  border-radius: 50%;
}
.reviewerName {
  font-size: 20px;
  line-height: 1.5;
  text-align: left;
}
.reviewerDesignation {
  display: block;
  font-size: 16px;
  opacity: 0.7;
}
.swiper-pagination.reviewPagination {
  text-align: start;
}
.reviewSwiper .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border-radius: 50px;
  background-color: var(--white);
  opacity: 1;
}
.reviewSwiper .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 50px;
  background-color: var(--secondary);
}
.socialBtnReview {
  background-color: rgba(255,255,255,0.1);
  height: 100%;
  width: 160px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  gap: 80px;
  color: var(--white);
}
.sbCol {
  width: 100%;
  border-left: 1px solid;
}
.sbCol:nth-child(2) {
  width: 100%;
  border-left: 0;
  border-right: 1px solid;
}
.sbCol h6 {
  font-size: 16px;
  margin: 10px 0 0;
}
.sbCol span {
  display: block;
  font-size: 14px;
  opacity: 0.8;
}
/* Testimonial */

/* Info Img */
.infoCard {
  color: var(--white);
  text-align: center;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 100px 15px;
  position: relative;
  height: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: var(--primaryBg);
}
.infoCard::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.7);
}
.reservationBg {
  background-image: url(../images/reservation-bg.jpg);
}
.visitBg {
  background-image: url(../images/visit-bg.jpg);
}
.infoCardContent {
  width: 100%;
  max-width: 520px;
  text-align: center;
  display: flex;
  flex-direction: column;
  row-gap: 40px;
  margin: 0 auto;
  position: relative;
}
.icContent .subTitle {
  font-size: 30px;
}
.icContent {
  font-size: 16px;
}
/* Info Img */

/* Blog */
.bogInner {
  padding-top: 60px;
}
.blogCard {
  position: relative;
}
.blogCardLg .blogCardImg > img {
  height: 280px;
}
.blogCardMd .blogCardImg > img {
  height: 225px;
}
.blogCardImg > img {
  border-radius: 20px;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.blogCardContent {
  padding-top: 10px;
}
.blogUserImg {
  width: 100%;
  max-width: 30px;
  border-radius: 50%;
  display: block;
}
.blogUser {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
}
.blogUserImg img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 50%;
}
.dateCol {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}
.blogCardContent > h3 {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
}
.blogCardContent > p {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  font-size: 14px;
  -webkit-box-orient: vertical;
}
.blogCardContent > p:last-child {
  margin-bottom: 0;
}
.blogCardDesc {
  padding-top: 20px;
}
.blogRtCard {
  display: flex;
  gap: 15px;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.readMoreBtn .btn {
  padding: 0;
  background-color: transparent;
  border-radius: 0;
  color: var(--secondary);
}
/* Blog */

/*** Gallery ***/
.gallerySection {
  background-color: var(--dark);
}
.wAuto {
  width: auto !important;
}
.easeLinear {
  transition-timing-function: linear !important;
}
.galleryImg {
  overflow: hidden;
  position: relative;
}
.galleryImg::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  bottom: auto;
  height: 0;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(var(--secondary-rgba), 0.1) 0%, rgba(var(--secondary-rgba), 0.4) 100%);
  transition: var(--transition);
}
.galleryImg:hover::before {
  top: 0;
  height: 100%;
}
.galleryImg > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-transition: .4s ease-in-out;
  transition: .4s ease-in-out;
}
.galleryImg:hover img {
	-webkit-transform: scale(1);
	transform: scale(1);
}
.galleryVariable {
  --gImgwd: 460px;
  --gImght: 660px;
}
.galleryMd {
  width: var(--gImgwd);
  height: var(--gImght);
}
.thumbCol {
  display: flex;
  flex-direction: column;
}


.slideTextSlider .swiper-slide {
  width: auto;
  flex-shrink: 0;
}
.slideTextSlider .swiper-wrapper {
  transition-timing-function: linear !important;
}
.sliderText {
  flex-shrink: 0;
  display: inline-block;
  padding: 0 30px;
}
.sliderText h2 {
  text-align: center;
  font-size: 96px;
  line-height: 1.4;
  font-family: var(--subTitleFont);
  color: var(--white);
}
.swiper.slideTextSlider {
  padding: 20px 0;
}
/*** Gallery ***/

/* footer */
footer {
  background-color: var(--dark);
  display: block;
  margin: 0;
}
.footerSection {
  background-color: var(--dark);
  padding: 100px 0;
  color: var(--white);
}
.footerText > h2 {
  font-size: 65px;
  font-weight: 700;
  margin: 0;
}
.footerBtn .btn {
  padding: 24px 30px;
  min-width: 260px;
  font-size: 24px;
}
.footerInner {
  padding-bottom: 100px;
  margin-bottom: 100px;
  border-bottom: 1px solid rgba(255,255,255,0.3);
}
.footerSocialLinks {
  display: flex;
  gap: 15px;
}
.footerSocialIcons {
  display: flex;
  gap: 20px;
  padding-left: 45px;
  position: relative;
  margin-left: 10px;
}
.footerSocialIcons::before {
  content: "";
  width: 35px;
  left: 0;
  background-color: var(--white);
  height: 1px;
  top: 50%;
  transform: translate(0, -50%);
  position: absolute;
}
.poweredBy {
  display: flex;
  align-items: center;
  gap: 15px;
}

/******* 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) {
  .container.lgFullContainer {
    max-width: 100%;
    padding: 0;
  }
}
@media (max-width: 1599px) {
  .chefContentMain {
    --imgSize: 400px;
  }
  .chefContent {
    padding: 30px;
  }
  .galleryVariable {
    --gImgwd: 360px;
    --gImght: 540px;
  }
}
@media (max-width: 1399px) {
  .sectionSpace {
    padding: 120px 0;
  }
  .btn {
    padding: 14px 26px;
    column-gap: 12px;
  }
  .galleryVariable {
    --gImgwd: 320px;
    --gImght: 500px;
  }
  .sliderText h2 {
    font-size: 80px;
  }
  .chefContentMain {
    --imgSize: 350px;
  }
  .footerText > h2 {
    font-size: 60px;
  }
}
@media (max-width: 1199px) {
  .headerCol {
    padding: 15px 20px;
  }
  .headerRightOption {
    column-gap: 10px;
  }
  .bannerSection {
    --topSpace: 102px;
  }
  .bannerInner {
    max-width: 100%;
    padding: 150px 30px;
  }
  .aboutImg {
    margin-left: 20px;
  }
  body {
    font-size: 16px;
    line-height: 1.7;
  }
  .aboutDtText {
    font-size: 14px;
  }
  .aboutDtIcon img {
    max-width: 40px;
  }
  .aboutDt > li {
    max-width: 110px;
    padding: 0 10px;
  }
  .aboutDt > li + li::before {
    display: none;
  }
  .leaf {
    max-width: 130px;
    top: -50px;
    left: -60px;
  }
  .frame {
    left: 45px;
    top: -30px;
    bottom: 45px;
    right: -30px;
  }
  .chefContentMain {
    --imgSize: 300px;
  }
  .specialOfferInner {
    margin-top: 60px;
    padding: 20px;
  }
  .selectionCardCol + .selectionCardCol {
    margin-top: 15px;
  }
  .reviewCard p {
    font-size: 16px;
  }
  .reviewSliderCol {
    padding: 100px 0;
    max-width: 700px;
  } 
  .infoCardContent {
    row-gap: 30px;
  }
  .socialBtnReview {
    width: 140px;
  }
  .galleryVariable {
    --gImgwd: 280px;
    --gImght: 420px;
  }
  .sliderText h2 {
    font-size: 60px;
  }
  .footerText > h2 {
    font-size: 50px;
  }
  .footerInner {
    padding-bottom: 80px;
    margin-bottom: 80px;
  }
  .footerBtn .btn {
    padding: 18px 30px;
    min-width: 200px;
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  body {
    font-size: 16px;
  }
  .btn {
    padding: 10px 24px;
    column-gap: 10px;
  }
  .menuColMain {
    width: 320px;
    padding: 60px 10px 30px;
  }
  .closeIcon {
    width: 25px;
    height: 25px;
    right: 15px;
    top: 15px;
    padding: 5px;
  }
  .bannerInner {
    max-width: 100%;
    padding: 120px 0;
    text-align: center;
  }
  .bannerSection {
    --topSpace: 80px;
    --bannerWidth: 100%;
  }
  .bannerSection::after {
    background-color: rgba(0, 0, 0, 0.6);
  }
  .bannerBtns {
    margin-top: 30px;
    justify-content: center;
  }
  .navItems .socialLinks {
    position: static;
    transform: none;
    margin-top: 0;
  }
  .navItems li:last-child {
    border-bottom: 0;
  }
  .logo {
    max-width: 160px;
  }
  .hrLinksCol {
    width: 42px;
    height: 42px;
  }
  .cartCount {
    top: 5px;
    right: 5px;
  }
  .nav-toggler .hidden-bar-opener {
    width: 42px;
    height: 42px;
  }
  .socialIcons {
    flex-direction: row;
    justify-content: start;
    width: 100%;
  }
  .xlTitle {
    font-size: 60px;
  }
  .aboutImg {
    margin-left: 0;
    padding: 20px;
  }
  .frame {
    left: 50px;
    top: 0;
    bottom: 50px;
    right: 0;
  }
  .leaf {
    max-width: 110px;
    top: -20px;
    left: -20px;
  }
  .aboutContent {
    max-width: 100%;
    text-align: center;
  }
  .subTitle {
    font-size: 30px;
  }
  .lgTitle {
    font-size: 34px;
  }
  .sectionSpace {
    padding: 80px 0;
  }
  .socialBtnReview {
    gap: 20px;
    width: 100%;
    flex-direction: row;
    margin-top: 60px;
    justify-content: space-between;
    height: auto;
    padding: 15px;
  }
  .reviewCard > h2 {
    font-size: 30px;
    margin: 20px 0;
  }
  .quoteIcon img {
    max-width: 45px;
  }
  .reviewCard {
    align-items: center;
    text-align: center;
    padding-bottom: 80px;
  }
  .reviewImgCol {
    --imgSize: 60px;
  }
  .swiper-pagination.reviewPagination {
    text-align: center;
  }
  .reviewSliderCol {
    padding: 80px 0;
    max-width: 100%;
  }
  .infoCard {
    margin-top: 30px;
    height: auto;
  }
  .blogCardDesc {
    text-align: center;
  }
  .blogCard {
    margin-top: 30px;
  }
  .bogInner {
    padding-top: 20px;
  }
  .sbCol:nth-child(1) {
    border-left: 0;
    border-right: 1px solid;
  }
  .sbCol:nth-child(2) {
    border-right: 0;
  }
  .galleryVariable {
    --gImgwd: 240px;
    --gImght: 320px;
  }
  .sliderText h2 {
    font-size: 50px;
  }
  .footerSection {
    text-align: center;
    padding: 60px 0;
  }
  .footerText > h2 {
    font-size: 40px;
    padding-bottom: 30px;
  }
  .footerBtn .btn {
    padding: 12px 20px;
    min-width: 180px;
    font-size: 18px;
  }
  .footerInner {
    padding-bottom: 60px;
    margin-bottom: 60px;
  }
  .footerSocialLinks, .poweredBy {
    justify-content: center;
  }
  .poweredBy {
    padding-top: 20px;
  }
  .poweredBy svg {
    max-width: 150px;
  }
}
@media (max-width:767px) {
   .modalNewstyle {
    --xSpace: 15px;
    --ySpace: 20px;
  }
  .formStyle .form-control, .formStyle .form-select {
    font-size: 14px;
  }
  .galleryVariable {
    --gImgSize: 180px;
  }
  .subTitle {
    font-size: 26px;
  }
  .icContent .subTitle {
    font-size: 26px;
  }
  .xlTitle {
    font-size: 46px;
  }
  .btn {
    padding: 10px 20px;
    font-size: 14px;
  }
  .btn svg.btnArrow {
    max-width: 10px;
  }
  body {
    font-size: 14px;
  }
  .specialOfferInner {
    margin-top: 30px;
  }
  .lgTitle {
    font-size: 28px;
  }
  .selectionCard {
    --fontSize: 16px;
    row-gap: 8px;
    margin-top: 0;
  }
  .smTitle {
    font-size: 24px;
    text-align: center;
  }
  .selectionCardCol > p {
    font-size: 14px;
    text-align: center;
  }
  .galleryVariable {
    --gImgwd: 200px;
    --gImght: 260px;
  }
  .sliderText h2 {
    font-size: 40px;
  }
  .footerText > h2 {
    font-size: 30px;
  }
  .footerInner {
    padding-bottom: 40px;
    margin-bottom: 40px;
  }
}
@media (max-width:575px) {
  .headerCol {
    padding: 15px 0;
  }
  .btn {
    padding: 10px 15px;
  }
  .bannerInner {
    padding: 80px 0;
  }
  .leaf {
    max-width: 80px;
    top: 0;
    left: 0;
  }
  .sectionSpace {
    padding: 60px 0;
  }
  .formStyle .form-select, .formStyle .form-control {
    padding-left: 15px;
  }
  .infoCard {
    padding: 60px 15px;
  }
  .icContent .subTitle {
    font-size: 20px;
  }
  .galleryVariable {
    --gImgwd: 120px;
    --gImght: 160px;
  }
  .sliderText h2 {
    font-size: 30px;
  }
  .reviewCard > h2 {
    font-size: 20px;
  }
  .reviewCard p {
    font-size: 14px;
  }
  .swiper.slideTextSlider {
    padding: 0;
  }
  .footerText > h2 {
    font-size: 24px;
  }
  .footerBtn .btn {
    padding: 10px 20px;
    min-width: 150px;
    font-size: 16px;
  }
}
@media (max-width:360px) {
  .menuColMain {
    width: 100%;
  }
  .aboutImgStyle {
    height: 280px;
  }
  .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;
  }
  .galleryVariable {
    --gImgSize: 100px;
  }
}

/* custom css for orderart theme 18 */
@media (max-width: 991px) {
  header.headerSection, .fixed-header .headerSection {
      padding: 0px !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;
  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 20px;
  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;
}
.floatingCart .cartPrice {
  font-size: 18px;
  font-weight: bold;
}
.floatingCart .cartPrice > span {
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
}
.floatingCart .cartPrice > span + span {
  margin-left: 5px;
}
.floatingCart .cartPrice > span > img {
  display: block;
}
.floatingCart .cartPrice svg path {
  fill: var(--primary-theme-color) !important;
}
.floatingCartFixBtn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 20px;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
}
.floatingCartFixBtn .fixBtnCol {
  flex: 0 0 50%;
  border-radius: 10px;
  padding: 10px;
}
.floatingCartFixBtn .fixBtnCol span.cartPrice {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.fixBtnCol .cartPrice svg {
  width: 18px;
  display: block;
}
.cartRightText.viewCartItems.btn_primary.btn {
  margin-bottom: 0px;
  padding: 10px;
}
.nwCartTitle.text-center > h2 {
  color: black;
}
@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;
  }
  .sidebarright {
    position: fixed;
    left: 0;
    right: 0;
    top: auto;
    bottom: 0;
    width: 100% !important;
    background-color: transparent;
    z-index: 11;
    margin: 0;
    overflow-y: inherit;
    transition: all 300ms ease-in-out 0s;
    transform: translateY(200%) !important;
  }
  .cartSlide .sidebarright {
    transform: translateY(0%) !important;
  }
  .mobile_footer_tape .nwCartInner {
    max-height: calc(100vh - 200px);
    overflow-y: auto;
    overflow-x: hidden;
    padding: 10px 0 100px;
  }
  .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;
  }
  .cartBackIcon {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    margin-top: -6px;
  }
  .cartBackIcon > img {
    display: block;
  }
  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: 10 !important;
  }
  .mobile_footer_tape {
    display: block;
  }
  .cartSlide .productDetailPage .sidebarright {
    top: auto;
  }
  .mobile_footer_tape .pageContent.mobilePageContent {
    padding: 0;
  }
}
@media (max-width: 767px) {
  .floatingCart {
    padding: 10px 15px;
    border-radius: 20px 20px 0 0;
  }
  .floatingCart .cartPrice svg {
    width: 20px;
  }
  .floatingCart .cartPrice {
    font-size: 16px;
  }
}

/* ── v18 btn_primary: Bootstrap 5 resets .btn background to transparent; this
   loads after Bootstrap so the specificity + order win restores the theme color ── */
.btn.btn_primary {
  background-color: var(--primary-theme-color) !important;
  color: #ffffff !important;
  border: 0 !important;
}
.btn.btn_primary:hover,
.btn.btn_primary:focus {
  color: #ffffff !important;
  opacity: 0.85;
}

/* ── v18 Proceed To Pay button: gold background matches v18 CTA design ── */
.btn.btn_primary.payBtn {
  background-color: var(--secondary) !important;
  color: var(--dark) !important;
  font-weight: 700 !important;
}
.btn.btn_primary.payBtn:hover,
.btn.btn_primary.payBtn:focus {
  opacity: 0.9;
  color: var(--dark) !important;
}